Move AppSrc/AppSink from gst-plugins-bad. Fixes #564421
[platform/upstream/gstreamer.git] / ChangeLog
1 2009-01-05  Jan Schmidt  <jan.schmidt@sun.com>
2
3         * configure.ac:
4         * docs/libs/Makefile.am:
5         * docs/libs/gst-plugins-base-libs-docs.sgml:
6         * docs/libs/gst-plugins-base-libs-sections.txt:
7         * docs/plugins/Makefile.am:
8         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10         * docs/plugins/gst-plugins-base-plugins.args:
11         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12         * docs/plugins/gst-plugins-base-plugins.interfaces:
13         * docs/plugins/gst-plugins-base-plugins.prerequisites:
14         * docs/plugins/gst-plugins-base-plugins.signals:
15         * docs/plugins/inspect/plugin-app.xml:
16         * gst-libs/gst/Makefile.am:
17         * gst-libs/gst/app/gstappsink.c:
18         * gst-libs/gst/app/gstappsrc.c:
19         * tests/examples/Makefile.am:
20         * tests/examples/app/Makefile.am:
21
22         Move AppSrc/AppSink from gst-plugins-bad. Fixes #564421
23
24 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
25
26         * gst-libs/gst/audio/gstbaseaudiosink.c:
27         (gst_base_audio_sink_change_state):
28         Avoid holding the OBJECT_LOCK when calling ringbuffer functions that
29         take the ringbuffer lock because rinbuffer lock > OBJECT_LOCK. We can do
30         this because the async_play method is deprecated and usually not called 
31         anymore.
32
33 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
34
35         * gst/playback/gstplaybin2.c: (notify_source_cb), (activate_group):
36         Disconnect signal handlers before destroying a previous decodebin so
37         that we don't end up causing deadlocks. Fixes #566586.
38
39 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
40
41         * gst/audiotestsrc/gstaudiotestsrc.c:
42         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
43         (gst_audio_test_src_check_get_range),
44         (gst_audio_test_src_set_property),
45         (gst_audio_test_src_get_property):
46         * gst/audiotestsrc/gstaudiotestsrc.h:
47         Add property to control pull/push based scheduling.
48
49 2009-01-02  Alessandro Decina  <alessandro.d@gmail.com>
50
51         * configure.ac:
52         * tests/examples/seek/Makefile.am:
53         * tests/icles/Makefile.am:
54         Make the seek and colorkey examples depend on gtk+-x11 as they use
55         GDK_WINDOW_XID.
56         Fixes the build with gtk+-quartz.
57
58 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
59
60         * win32/common/libgstaudio.def:
61         * win32/common/libgsttag.def:
62         * win32/common/libgstvideo.def:
63         Add new exports to win32 files.
64
65 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
66
67         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_result_get_type):
68         * gst-libs/gst/tag/gsttagdemux.h:
69         Add GType for GstTagDemuxResult enum.
70
71 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
72
73         * gst-libs/gst/video/Makefile.am:
74         * gst-libs/gst/video/video.h:
75         Add glib-mkenum for GstVideoFormat enum GTYPE auto-generation.
76         This will help bindings to use it.
77
78 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
79
80         * gst-libs/gst/audio/Makefile.am:
81         * gst-libs/gst/audio/audio.c:
82         * gst-libs/gst/audio/multichannel.h:
83         * gst-libs/gst/audio/testchannels.c:
84         * win32/MANIFEST:
85         * win32/common/audio-enumtypes.c:
86         (gst_audio_channel_position_get_type),
87         (gst_ring_buffer_state_get_type),
88         (gst_ring_buffer_seg_state_get_type),
89         (gst_buffer_format_type_get_type), (gst_buffer_format_get_type):
90         * win32/common/audio-enumtypes.h:
91         * win32/common/multichannel-enumtypes.c:
92         * win32/common/multichannel-enumtypes.h:
93         * win32/vs6/grammar.dsp:
94         * win32/vs6/libgstaudio.dsp:
95         * win32/vs7/libgstaudio.vcproj:
96         * win32/vs8/libgstaudio.vcproj:
97         Switch glib-mkenum for gst-libs/gst/audio from multichannel- to
98         audio- in order to wrap all enums declarations of that library.
99         This modification should not matter since that header file is not a
100         public header (it will be included by public headers).
101         Modify win32 crap^Wfiles accordingly.
102
103 2008-12-30  Edward Hervey  <edward.hervey@collabora.co.uk>
104
105         * gst-libs/gst/audio/gstbaseaudiosrc.h:
106         * gst-libs/gst/audio/gstbaseaudiosink.h:
107         Complete Sebastien's commit from the 13th by exporting the
108         _slave_method_get_type() methods.
109
110 2008-12-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
111
112         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_query):
113         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_class_init),
114         (gst_gio_base_src_query):
115         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_query):
116         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
117         (gst_gnome_vfs_src_query):
118         Implement URI query. Fixes bug #562949.
119
120 2008-12-20  Wim Taymans  <wim.taymans@collabora.co.uk>
121
122         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
123         Add some debug info.
124
125         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
126         (gst_play_sink_reconfigure), (gst_play_sink_request_pad),
127         (gst_play_sink_release_pad):
128         Add some more debug info.
129         Reconfigure the audio chain when we switch between raw and encoded audio
130         in gapless playback.
131
132 2008-12-20  Wim Taymans  <wim.taymans@collabora.co.uk>
133
134         * gst-libs/gst/audio/gstbaseaudiosink.c:
135         (gst_base_audio_sink_setcaps):
136         Pause the write thread before deactivating and releasing the ringbuffer
137         to avoid a deadlock when we do gapless playback with different sample
138         rates in playbin2.  Fixes #564929.
139
140 2008-12-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
141
142         * gst-libs/gst/audio/gstbaseaudiosrc.c:
143         Make GstAudioSrcSlaveMethod get_type() function non-static
144         as it's public now.
145
146         * win32/common/libgstaudio.def:
147         * win32/common/libgstnetbuffer.def:
148         Add some missing functions to the list of exported symbols.
149
150 2008-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
151
152         Patch by: Andrew Feren <acferen at yahoo dot com>
153
154         * gst-libs/gst/netbuffer/gstnetbuffer.c:
155         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address),
156         (gst_netaddress_get_address_bytes),
157         (gst_netaddress_set_address_bytes):
158         * gst-libs/gst/netbuffer/gstnetbuffer.h:
159         Make gst_netaddress_get_ip4_address fail for v6 addresses.
160         Make gst_netaddress_get_ip6_address either fail or return the v4
161         address as a transitional v6 address.
162         Add two convenience functions:
163         API: gst_netaddress_get_address_bytes()
164         API: gst_netaddress_set_address_bytes()
165         Fixes #564896.
166
167 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
168
169         * gst/adder/Makefile.am:
170         * gst/adder/gstadder.c:
171           Cleanup variable names to make the adder-loop easier to understand.
172           Also try to use liboil to spee it up, but ifdef it out as it does not
173           make any change for me (Intel pentim M (sse,sse2) please try on other
174           systems).
175
176 2008-12-16  Wim Taymans  <wim.taymans@collabora.co.uk>
177
178         * docs/plugins/Makefile.am:
179         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
180         * docs/plugins/gst-plugins-base-plugins-sections.txt:
181         * gst/tcp/gsttcpclientsink.c:
182         * gst/tcp/gsttcpclientsrc.c:
183         * gst/tcp/gsttcpserversrc.c:
184         Add minimal docs to make the remaining tcp elements show up.
185         Fixes #564139.
186
187 2008-12-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
188
189         * win32/common/config.h:
190           Update to CVS version.
191
192         * win32/common/config.h.in:
193           Hardcode path to plugin install helper exe, just like we hardcode
194           the paths in core. Removes another source of VCS conflicts for
195           people hacking gst-plugins-base on systems with autotools.
196
197 2008-12-13  Edward Hervey  <bilboed@gmail.com>
198
199         * m4/Makefile.am:
200         And a couple more .m4 that don't exist anymore with gettext 0.17
201
202 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
203
204
205         * m4/Makefile.am:
206         inttypes.m4 hasn't been available since gettext-0.15, and since we now
207         require gettext >= 0.17 ... we can remove it from the list of files to
208         dist.
209
210 2008-12-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
211
212         * gst-libs/gst/audio/gstbaseaudiosink.c:
213         (gst_base_audio_sink_slave_method_get_type),
214         (gst_base_audio_sink_class_init):
215         * gst-libs/gst/audio/gstbaseaudiosink.h:
216         * gst-libs/gst/audio/gstbaseaudiosrc.c:
217         (gst_base_audio_src_slave_method_get_type),
218         (gst_base_audio_src_class_init):
219         * gst-libs/gst/audio/gstbaseaudiosrc.h:
220         API: Add GST_TYPE_BASE_AUDIO_(SRC|SINK)_SLAVE_METHOD to the
221         public API. This is needed for the C++ bindings to be able
222         to use this base classes. Fixes bug #564200, #564206.
223
224 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
225
226         * gst-libs/gst/cdda/gstcddabasesrc.c:
227         (gst_cdda_base_src_handle_event):
228         Remove erroneous gst_buffer_ref().
229         * tests/check/libs/rtp.c: (GST_START_TEST):
230         Don't forget to unref the buffer once you're done with it.
231
232 2008-12-12  Stefan Kost  <ensonic@users.sf.net>
233
234         * gst/playback/gstplaybin.c:
235         * gst/playback/gstplaybin2.c:
236           XRef to GstXOverlay.
237
238 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
239
240         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_finalize):
241         Free the factory array when finalizing.
242         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
243         Use a GstStaticPadTemplate since the src pad caps are fixed.
244
245 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
246
247         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_base_init),
248         (gst_vorbis_enc_init):
249         Make vorbisenc's pad template behave like vorbisdec's. Fixes a leak with
250         pad templates.
251
252 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
253
254         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
255         (gst_riff_create_video_template_caps):
256         Add mapping for VP6 in avi/riff.
257
258 2008-12-11  Edward Hervey  <edward.hervey@collabora.co.uk>
259
260         * gst/subparse/samiparse.c: (sami_context_push_state),
261         (sami_context_pop_state), (start_sami_element), (end_sami_element):
262         Some versions of libxml seem to be very picky as to strict formatting
263         of the input and never 'close' the final </body> tag.
264         In order to fix that bad behaviour, we trigger the flushing of
265         remaining data on both </body> and </sami>.
266         Fixes #557365
267
268 2008-12-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
269
270         Patch by: Guillaume Emont <guillaume at fluendo dot com>
271
272         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
273         Add typefinders for MS Word files and OS X .DS_Store files to
274         prevent them to be recognized as MPEG files. Fixes bug #564098.
275
276 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
277
278         * gst/playback/gstplaysink.c: (gen_audio_chain),
279         (gst_play_sink_reconfigure):
280         Add some more debug info.
281         Fix linking of just an encoded sink.
282         Handle failure to create a sink chain more gracefully than crashing.
283
284 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
285
286         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
287         Pushing 10 buffers is enough to run the test.
288
289 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
290
291         * tests/examples/seek/seek.c: (do_seek), (stop_cb),
292         (skip_toggle_cb), (rate_spinbutton_changed_cb), (msg_segment_done),
293         (main):
294         Hook up the SKIP seek flag.
295
296 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
297
298         * gst/playback/gstplaybin2.c: (pad_added_cb):
299         Error out with a missing-plugin error when the input-selector was not
300         found.
301
302         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
303         Indentation.
304
305 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
306
307         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
308         (gst_play_sink_dispose), (gst_play_sink_finalize), (try_element),
309         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
310         (gst_play_sink_send_event), (gst_play_sink_change_state):
311         Use G_DEFINE_TYPE.
312         Try to set the selected sink to READY before using it. This will allow
313         for detection of incompatible formats sooner.
314         Don't cause a fatal error when conversion elements are missing but post
315         a missing-element message and a warning instead because things might
316         still link and run fine.
317         Simplyfy the construction of audio and video sink chains.
318
319 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
320
321         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init),
322         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize):
323         Use G_DEFINE_TYPE for the OggPad to get some threadsafe type 
324         init from glib.
325
326 2008-12-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
327
328         Patch by: Luis Menina <liberforce at freeside dot fr>
329
330         * gst-libs/gst/floatcast/floatcast.h:
331         * gst/typefind/gsttypefindfunctions.c:
332         Include glib.h instead of a specific GLib header. Including single
333         GLib headers is deprecated. Fixes bug #563904.
334
335 2008-12-09  Julien Moutte  <julien@fluendo.com>
336
337         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): 
338         Support higher max audio rates for some formats (WAV, Vorbis, LPCM).
339
340 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
341
342         * gst-libs/gst/riff/riff-read.c:
343           Fix handling of odd chunks in riff metadata.
344
345 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
346
347         * gst/volume/gstvolume.c: (gst_volume_class_init),
348         (volume_before_transform), (volume_transform_ip):
349         Use new basetransform vmethod to reconfigure the dynamic properties and
350         any pending volume/mute changes. Fixes #563508.
351
352 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
353
354         * configure.ac:
355         First check for "theoraenc theoradec" and if that failed check
356         for "theora >= 1.0alpha5". The former appeared in 1.0beta3 and
357         deprecate the latter. Also linking on Windows fails with just "theora"
358         and the version check would fail for the release candidates.
359         Fixes bug #563718.
360
361 2008-12-08  Stefan Kost  <ensonic@users.sf.net>
362
363         * gst/playback/gstdecodebin.c:
364         * gst/playback/gstdecodebin2.c:
365           Add basic docs to decodebin and link to decodebin from decodebin2.
366           
367 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
368
369         Patch by: Olivier Crete  <tester at tester ca>
370
371         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_remove):
372         * gst-libs/gst/rtp/gstrtcpbuffer.h:
373         Implement gst_rtcp_packet_remove(). Fixes #563174.
374
375         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
376         Add unit test for some RTCP functions.
377
378 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
379
380         * configure.ac:
381         Apparently AC_CONFIG_MACRO_DIR breaks when using more
382         than one macro directory, reverting last change.
383
384 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
385
386         * configure.ac:
387         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
388         our M4 macros.
389
390 2008-12-03  Edward Hervey  <edward.hervey@collabora.co.uk>
391
392         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
393         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
394         Clear all flags on buffers returned from the image pool.
395         Fixes #563143
396
397 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
398
399         Patch by: Cygwin Ports maintainer
400                   <yselkowitz at users dot sourceforge dot net>
401
402         * autogen.sh:
403         * configure.ac:
404         Require gettext 0.17 because older versions don't mix with libtool
405         2.2. At build time an older gettext version will still work.
406         Fixes bug #556091.
407
408 2008-11-28  Christian Schaller <christian.schaller@collabora.co.uk>
409
410         * gst/speexresample/Makefile.am: fix build by removing -lgstaudio 
411
412 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
413
414         * docs/plugins/gst-plugins-base-plugins.args:
415         * docs/plugins/gst-plugins-base-plugins.hierarchy:
416         * docs/plugins/gst-plugins-base-plugins.interfaces:
417         * docs/plugins/gst-plugins-base-plugins.prerequisites:
418         * docs/plugins/inspect/plugin-videorate.xml:
419         * gst/speexresample/gstspeexresample.c:
420         Update documentation of speexresample for the new element name.
421
422 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
423
424         * gst/speexresample/README:
425         Update README with the latest diff between the Speex resampler
426         and our copy.
427
428 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
429
430         * gst/speexresample/gstspeexresample.c: (plugin_init):
431         Update the debug category from speex_resample to audioresample.
432
433 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
434
435         * gst/audioresample/Makefile.am:
436         * gst/audioresample/buffer.c:
437         * gst/audioresample/buffer.h:
438         * gst/audioresample/debug.c:
439         * gst/audioresample/debug.h:
440         * gst/audioresample/functable.c:
441         * gst/audioresample/functable.h:
442         * gst/audioresample/gstaudioresample.c:
443         * gst/audioresample/gstaudioresample.h:
444         * gst/audioresample/resample.c:
445         * gst/audioresample/resample.h:
446         * gst/audioresample/resample_chunk.c:
447         * gst/audioresample/resample_functable.c:
448         * gst/audioresample/resample_ref.c:
449         * tests/check/elements/audioresample.c:
450         Remove audioresample files.
451
452 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
453
454         * docs/plugins/inspect/plugin-audioresample.xml:
455         Regenerated for library filename change.
456
457 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
458
459         * configure.ac:
460         * docs/plugins/Makefile.am:
461         * docs/plugins/gst-plugins-base-plugins-sections.txt:
462         * docs/plugins/gst-plugins-base-plugins.args:
463         * docs/plugins/gst-plugins-base-plugins.hierarchy:
464         * docs/plugins/gst-plugins-base-plugins.interfaces:
465         * docs/plugins/gst-plugins-base-plugins.prerequisites:
466         * docs/plugins/inspect/plugin-adder.xml:
467         * docs/plugins/inspect/plugin-alsa.xml:
468         * docs/plugins/inspect/plugin-audioconvert.xml:
469         * docs/plugins/inspect/plugin-audiorate.xml:
470         * docs/plugins/inspect/plugin-audioresample.xml:
471         * docs/plugins/inspect/plugin-audiotestsrc.xml:
472         * docs/plugins/inspect/plugin-cdparanoia.xml:
473         * docs/plugins/inspect/plugin-decodebin.xml:
474         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
475         * docs/plugins/inspect/plugin-gdp.xml:
476         * docs/plugins/inspect/plugin-gio.xml:
477         * docs/plugins/inspect/plugin-gnomevfs.xml:
478         * docs/plugins/inspect/plugin-libvisual.xml:
479         * docs/plugins/inspect/plugin-ogg.xml:
480         * docs/plugins/inspect/plugin-pango.xml:
481         * docs/plugins/inspect/plugin-playback.xml:
482         * docs/plugins/inspect/plugin-queue2.xml:
483         * docs/plugins/inspect/plugin-subparse.xml:
484         * docs/plugins/inspect/plugin-tcp.xml:
485         * docs/plugins/inspect/plugin-theora.xml:
486         * docs/plugins/inspect/plugin-typefindfunctions.xml:
487         * docs/plugins/inspect/plugin-uridecodebin.xml:
488         * docs/plugins/inspect/plugin-video4linux.xml:
489         * docs/plugins/inspect/plugin-videorate.xml:
490         * docs/plugins/inspect/plugin-videoscale.xml:
491         * docs/plugins/inspect/plugin-videotestsrc.xml:
492         * docs/plugins/inspect/plugin-volume.xml:
493         * docs/plugins/inspect/plugin-vorbis.xml:
494         * docs/plugins/inspect/plugin-ximagesink.xml:
495         * docs/plugins/inspect/plugin-xvimagesink.xml:
496         * gst/speexresample/gstspeexresample.c: (plugin_init):
497         * gst/speexresample/Makefile.am:
498         * tests/check/Makefile.am:
499         * tests/check/elements/speexresample.c: (setup_speexresample),
500         (GST_START_TEST), (test_pipeline):
501         Rename the moved speexresample to audioresample, integrate into the
502         build system and remove the old audioresample from the build system.
503         Fixes bug #558124, #385061, #346218, #116051.
504
505 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
506
507         * gst-libs/gst/audio/gstbaseaudiosrc.c:
508         (gst_base_audio_src_get_offset), (gst_base_audio_src_create):
509         Avoid nasty int overflows after about 12 hours and 25 minutes when these
510         code paths are triggered. 
511         A free beer to Håvard Graff for finding this!
512
513 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
514
515         Patch by: 이문형 <iwings at gmail dot com>
516
517         * gst-libs/gst/rtsp/gstrtspconnection.c:
518         (gst_rtsp_connection_connect):
519         A successful gst_poll_wait() doesn't always mean successful connect() on
520         Windows.  We should check errors by calling gst_poll_fd_has_error().
521         See #561924.
522
523 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
524
525         * gst-libs/gst/rtp/gstrtcpbuffer.c:
526         Fix typo in the docs.
527
528 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
529
530         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_event):
531         If no stream was found before receiving EOS, post an error message.
532         Fixes #561924.
533
534 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
535
536         * ext/theora/gsttheoraenc.h:
537         * ext/theora/theoraenc.c: (gst_theora_enc_init),
538         (theora_buffer_from_packet), (theora_push_packet),
539         (theora_enc_sink_event), (theora_enc_is_discontinuous),
540         (theora_enc_chain):
541         Parse segment events.
542         Pass incomming buffer timestamps to outgoing buffers.
543         Use the running_time to construct the granulepos.
544         Fixes #562163.
545
546 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
547
548         * gst/playback/gstplaybin2.c: (activate_group):
549         Fix buffer-duration property.
550
551 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
552
553         * gst-libs/gst/audio/gstbaseaudiosink.c:
554         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
555         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
556         (gst_base_audio_sink_change_state):
557         Really fix audiosink drain handling by keeping track of the running_time
558         of the last sample.
559
560 2008-11-24  Michael Smith <msmith@songbirdnest.com>
561
562         * gst/playback/gstplaybin2.c:
563           Add notification of current stream. Add ability to configure buffer
564           sizes.
565         * gst/playback/gsturidecodebin.c:
566           Add ability to configure buffer sizes for streaming mode.
567           Bug #561734.
568
569 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
570
571         * gst-libs/gst/audio/gstbaseaudiosink.c:
572           Time is already in running_time. Remove base_time handling. Fixes
573           audiosinks not draining and thus chopping some audio in the end.
574
575 2008-11-24  David Schleef  <ds@schleef.org>
576
577         * ext/ogg/gstoggmux.c:
578         * ext/ogg/gstoggmux.h:
579           If we're muxing a dirac stream, flush the page after every picture.
580
581 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
582
583         * gst-libs/gst/audio/gstbaseaudiosink.c:
584           Add one log message to check for audio_drained. Sync one log message
585           with the condition. Send EOS after draining audio in pull mode.
586
587 2008-11-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
588
589         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
590         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
591         Use gst_buffer_try_new_and_alloc() and fail properly if the
592         allocation failed. This prevents abort() if downstream elements
593         request an insane amount of memory.
594
595 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
596
597         * gst/volume/gstvolume.c: (volume_choose_func),
598         (volume_update_volume), (gst_volume_set_volume),
599         (gst_volume_get_volume), (gst_volume_set_mute),
600         (gst_volume_class_init), (gst_volume_init),
601         (volume_process_double), (volume_process_float),
602         (volume_process_int32), (volume_process_int32_clamp),
603         (volume_process_int24), (volume_process_int24_clamp),
604         (volume_process_int16), (volume_process_int16_clamp),
605         (volume_process_int8), (volume_process_int8_clamp), (volume_setup),
606         (volume_transform_ip), (volume_set_property),
607         (volume_get_property):
608         * gst/volume/gstvolume.h:
609         Cleanup volume, define and use default values.
610         Recalculate new volume and mute setup before processing. Fixes #561789.
611
612         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
613         Add controller unit test. Patch by: Jonathan Matthew
614         Fix bogus test that messed with basetransform's internal state.
615
616 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
617
618         * gst/videorate/gstvideorate.c:
619         Add jpeg and png image media types to the caps. Fixes #561436.
620
621 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
622
623         * gst/playback/gstplaysink.c: (gen_audio_chain):
624         Don't post an error when we can't configure the volume but post a
625         warning instead. Fixes #561780.
626
627 2008-11-21  David Schleef  <ds@schleef.org>
628
629         Patch by: Jonathan Rosser <jonathan.rosser@rd.bbc.co.uk>
630
631         * gst/videotestsrc/gstvideotestsrc.c:
632         * gst/videotestsrc/gstvideotestsrc.h:
633         * gst/videotestsrc/videotestsrc.c:
634         * gst/videotestsrc/videotestsrc.h:
635           Add a zone plate pattern generator based on BBC R&D Report
636           1978/23 (yeah *that* 1978).  Try 'videotestsrc pattern=zone-plate
637           kx2=20 ky2=20 kt=1'.
638
639 2008-11-20  Michael Smith <msmith@songbirdnest.com>
640
641         * gst/playback/gstdecodebin2.c:
642           Fix random fat-fingering making this not compile.
643
644 2008-11-20  Michael Smith <msmith@songbirdnest.com>
645
646         * gst/playback/gstdecodebin2.c:
647           If the top-level type of the stream is plain text, don't try to decode
648           it, matching behaviour of decodebin.
649         * gst/playback/gstplaysink.c:
650           If we fail to generate a text chain (e.g. due to missing optional
651           plugins), don't crash.
652
653 2008-11-20  Michael Smith <msmith@songbirdnest.com>
654
655         * gst-libs/gst/rtsp/gstrtspdefs.c:
656           Fix win32 build. Oops.
657
658 2008-11-20  Michael Smith <msmith@songbirdnest.com>
659
660         * gst-libs/gst/rtsp/gstrtspdefs.c:
661           Use WSAGetLastError() rather than errno/h_errno on win32.
662
663 2008-11-20  Michael Smith <msmith@songbirdnest.com>
664
665         * gst-libs/gst/riff/riff-media.c:
666           Support WMA Lossless properly.
667
668 2008-11-18  David Schleef  <ds@schleef.org>
669
670         * gst/videotestsrc/gstvideotestsrc.c:
671         * gst/videotestsrc/gstvideotestsrc.h:
672         * gst/videotestsrc/videotestsrc.c:
673         * gst/videotestsrc/videotestsrc.h:
674           Add "colorspec" property, specifying whether to generate BT.601
675           or BT.709 video.  This only affects YCbCr values, not RGB, since
676           if you're generating a 709 test pattern, presumably you want
677           709 RGB primaries, not 601.  Also add "smpte75" pattern, which
678           uses 75% colors instead of 100%, since this is often more useful
679           for testing (and also follows the SMPTE EG-1 guideline).
680
681 2008-11-18  Alessandro Decina  <alessandro.d@gmail.com>
682
683         * gst/playback/gstdecodebin.c:
684         Add a "sink-caps" property to decodebin like it's done for decodebin2.
685         Fixes #560380.
686
687 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
688
689         * gst/audioresample/gstaudioresample.c:
690         Guard against a NULL dereference I somehow encountered -
691         with a FLUSH_STOP arriving either before basetransform _start(),
692         or after _stop().
693
694         * gst/typefind/gsttypefindfunctions.c:
695         Make sure we never jump backwards when typefinding corrupt mov files.
696
697 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
698
699         * gst-libs/gst/interfaces/propertyprobe.c:
700         Fix random type causing a docs warning.
701
702 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
703
704         * sys/v4l/gstv4l.c:
705           Give it a minimal rank for autovideosrc.
706
707 2008-11-13  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
708
709         * gst/typefind/gsttypefindfunctions.c: (jp2_type_find),
710         (plugin_init):
711         Improve typefinding of ISO JPEG2000 mime types.
712
713 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
714
715         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
716         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_setcaps),
717         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
718         * sys/xvimage/xvimagesink.h:
719         Avoid typechecking when we do trivial casts.
720         Move error handling out of the main program flow.
721         Sneak in the display-region caps property, not completely correct yet.
722         Cache the width/height in buffer_alloc instead of parsing it from the
723         caps all the time.
724
725 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
726
727         * gst/playback/gstplaybin2.c: (deactivate_group):
728         don't try to unlink the selector sinkpad when we don't have it yet. This
729         can happen if an error occured before the group was complete.
730
731 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
732
733         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
734         (gst_rtp_buffer_set_packet_len), (gst_rtp_buffer_get_packet_len),
735         (gst_rtp_buffer_get_header_len), (gst_rtp_buffer_get_version),
736         (gst_rtp_buffer_set_version), (gst_rtp_buffer_get_padding),
737         (gst_rtp_buffer_set_padding), (gst_rtp_buffer_pad_to),
738         (gst_rtp_buffer_get_extension), (gst_rtp_buffer_set_extension),
739         (gst_rtp_buffer_get_extension_data),
740         (gst_rtp_buffer_set_extension_data), (gst_rtp_buffer_get_ssrc),
741         (gst_rtp_buffer_set_ssrc), (gst_rtp_buffer_get_csrc_count),
742         (gst_rtp_buffer_get_csrc), (gst_rtp_buffer_set_csrc),
743         (gst_rtp_buffer_get_marker), (gst_rtp_buffer_set_marker),
744         (gst_rtp_buffer_get_payload_type),
745         (gst_rtp_buffer_set_payload_type), (gst_rtp_buffer_get_seq),
746         (gst_rtp_buffer_set_seq), (gst_rtp_buffer_get_timestamp),
747         (gst_rtp_buffer_set_timestamp),
748         (gst_rtp_buffer_get_payload_subbuffer),
749         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload):
750         Avoid expensive type checks we already did as part of the 
751         _validate() function that should be called first.
752
753 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
754
755         * gst-libs/gst/rtp/gstbasertpdepayload.c: (create_segment_event),
756         (gst_base_rtp_depayload_push_full),
757         (gst_base_rtp_depayload_set_gst_timestamp):
758         Fix some cases where a newsegment event was not sent.
759
760 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
761
762         * gst/playback/gstplaybin2.c: (activate_group):
763         Catch state change errors and stop from the uridecodebin elements
764         instead of trying to continue in vain.
765
766 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
767
768         * gst-libs/gst/audio/gstbaseaudiosink.c:
769         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
770         (gst_base_audio_sink_callback):
771         Use gst_base_sink_do_preroll() to wait for PLAYING and before waiting
772         for the latency to expire, fixes #559567.
773
774 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
775
776         * gst/adder/gstadder.c:
777           Change author string after seeing output of gst-inspector.
778
779 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
780
781         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
782         Don't try to do crazy things when we only have a text pad without a
783         video pad. Fixes #559478.
784
785 2008-11-06  Wim Taymans  <wim.taymans@collabora.co.uk>
786
787         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
788         Fix case where we don't have a range for the rates or channels as is the
789         case with truespeech.
790
791 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
792
793         * gst/volume/gstvolume.c: (volume_update_real_volume),
794         (gst_volume_set_volume), (gst_volume_get_volume),
795         (gst_volume_set_mute), (gst_volume_init), (volume_setup),
796         (volume_transform_ip), (volume_update_mute),
797         (volume_update_volume), (volume_get_property):
798         * gst/volume/gstvolume.h:
799         Keep negotiated state in a separate variable.
800         Protect the volume and mute properties with the object lock.
801         Protect modifying the transform with the transform lock.
802
803 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
804
805         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
806         (gst_ffmpeg_pixfmt_to_caps):
807         Only convert caps to string when debug is enabled.
808
809 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
810
811         * ext/theora/gsttheoradec.h:
812         * ext/theora/theoradec.c: (gst_theora_dec_init),
813         (gst_theora_dec_reset), (theora_dec_src_event),
814         (theora_dec_sink_event), (theora_handle_type_packet):
815         Copy seqnum.
816         Keep events in a pending list, like vorbisdec, instead of trying
817         to construct a segment event ourselves.
818
819         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
820         (vorbis_dec_src_event), (vorbis_dec_sink_event):
821         * ext/vorbis/vorbisdec.h:
822         Copy seqnum.
823
824 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
825
826         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
827         (gst_ogg_demux_deactivate_current_chain),
828         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page),
829         (gst_ogg_demux_loop):
830         * ext/ogg/gstoggdemux.h:
831         Copy seqnums around to track playback segments and messages.
832
833 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
834
835         Based on patch by: Matthias Kretz <kretz at kde dot org>
836
837         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
838         (gst_alsasink_prepare), (gst_alsasink_unprepare),
839         (gst_alsasink_write):
840         Make all access non-blocking so that we can better handle unplugging
841         of usb devices. Fixes #559111
842
843 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
844
845         Patch by: Damien Lespiau  <damien.lespiau gmail com>
846
847         * gst-libs/gst/rtsp/gstrtspconnection.c:
848         (gst_rtsp_connection_write):
849         Make the next call to poll not depend on previous calls to poll with or
850         without reading from the active descriptor. Fixes #544293.
851
852 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
853
854         Patch by: Nick Haddad <nick at haddads dot net>
855
856         * gst-libs/gst/riff/riff-ids.h:
857         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
858         Add support for other fourcc codes that are commonly used for
859         'uncompressed RGB', including 'RGB ', 'RAW ', and 0.
860         Fixes #558553.
861
862 2008-10-30  Stefan Kost  <ensonic@users.sf.net>
863
864         * gst/audioresample/gstaudioresample.c:
865           Return the result of parent_class->event().
866
867 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
868
869         * gst/audioresample/gstaudioresample.c:
870         (gst_audioresample_class_init), (audioresample_fixate_caps):
871         Fixate the rate to the nearest supported rate instead of
872         the first one. Fixes bug #549510.
873
874 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
875
876         * win32/common/libgstaudio.def:
877         Add new symbols.
878
879 2008-10-23  Wim Taymans  <wim.taymans@collabora.co.uk>
880
881         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
882         Attempt to make obfuscated code clearer.
883
884 2008-10-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
885
886         * docs/libs/gst-plugins-base-libs-sections.txt:
887         * gst-libs/gst/floatcast/floatcast.h:
888         Move float endianness conversion macros to core. Second part of
889         bug ##555196.
890
891 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
892
893         * sys/ximage/ximagesink.h:
894         * sys/xvimage/xvimagesink.h:
895           Don't mark as gtk-doc docs as they aren't public.
896
897 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
898
899         * sys/xvimage/xvimagesink.c:
900         * sys/xvimage/xvimagesink.h:
901         * tests/icles/Makefile.am:
902         * tests/icles/test-colorkey.c:
903           Allow setting colorkey if possible. Implement property probe interface
904           for optional X features (autopaint-colorkey, double-buffer and
905           colorkey). Fixes #554533
906
907 2008-10-22  Sebastian Dröge  <slomo@circular-chaos.org>
908
909         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
910         Remove useless buffer size assignment. It already has this value.
911
912 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
913
914         * gst-libs/gst/audio/gstaudiosink.c:
915         (gst_audioringbuffer_class_init), (gst_audioringbuffer_acquire),
916         (gst_audioringbuffer_activate), (gst_audioringbuffer_release),
917         (gst_audioringbuffer_stop):
918         Implement a separate activate functions to start monitoring the segments
919         or, in pull mode, pulling in data.
920
921         * gst-libs/gst/audio/gstbaseaudiosink.c:
922         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
923         (gst_base_audio_sink_query_pad), (gst_base_audio_sink_query),
924         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_callback),
925         (gst_base_audio_sink_activate_pull),
926         (gst_base_audio_sink_async_play),
927         (gst_base_audio_sink_change_state):
928         Implement pad and element convert query function.
929         Activate the ringbuffer.
930         Use the segment last_stop value as the offset to pull.
931         Use new basesink _do_preroll() method to preroll in the pulling thread.
932         Take appropriate locking in the pulling thread.
933
934         * gst-libs/gst/audio/gstringbuffer.h:
935         Update some docs.
936
937 2008-10-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
938
939         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find):
940         Improve MXF typefinding a bit by searching for a header partition
941         pack instead of just a general partition pack and checking more
942         bytes for valid values.
943
944 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
945
946         * tests/icles/.cvsignore:
947         update ignore file.
948
949         * tests/icles/Makefile.am:
950         * tests/icles/test-box.c: (make_pipeline), (main):
951         Add another interactive command line experimentation suite for
952         dynamically boxing/cropping/saling an input video.
953
954 2008-10-17  Wim Taymans  <wim.taymans@collabora.co.uk>
955
956         * docs/libs/gst-plugins-base-libs-sections.txt:
957         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_convert),
958         (gst_ring_buffer_activate), (gst_ring_buffer_is_active):
959         * gst-libs/gst/audio/gstringbuffer.h:
960         Add methods to more accuratly control the pulling thread of a
961         ringbuffer.
962         Add format conversion helper code to the ringbuffer.
963         API: GstRingBuffer:gst_ring_buffer_activate()
964         API: GstRingBuffer:gst_ring_buffer_is_active()
965         API: GstRingBuffer:gst_ring_buffer_convert()
966
967 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
968
969         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
970         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
971         (gst_audioringbuffer_stop):
972         Signal thread startup earlier so that we can immediatly go into pull
973         mode when we have to and block on preroll.
974
975 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
976
977         * gst-libs/gst/audio/gstringbuffer.c:
978         (gst_ring_buffer_prepare_read):
979         In pull mode we want the callback to prepull a buffer we can preroll on
980         even when we are not yet playing.
981
982 2008-10-16  Stefan Kost  <ensonic@users.sf.net>
983
984         * ext/alsa/Makefile.am:
985         * ext/cdparanoia/Makefile.am:
986         * ext/gio/Makefile.am:
987         * ext/gnomevfs/Makefile.am:
988         * ext/libvisual/Makefile.am:
989         * ext/ogg/Makefile.am:
990         * ext/pango/Makefile.am:
991         * ext/theora/Makefile.am:
992         * ext/vorbis/Makefile.am:
993         * gst/adder/Makefile.am:
994         * gst/audioconvert/Makefile.am:
995         * gst/audiorate/Makefile.am:
996         * gst/audioresample/Makefile.am:
997         * gst/audiotestsrc/Makefile.am:
998         * gst/ffmpegcolorspace/Makefile.am:
999         * gst/gdp/Makefile.am:
1000         * gst/playback/Makefile.am:
1001         * gst/subparse/Makefile.am:
1002         * gst/tcp/Makefile.am:
1003         * gst/typefind/Makefile.am:
1004         * gst/videorate/Makefile.am:
1005         * gst/videoscale/Makefile.am:
1006         * gst/videotestsrc/Makefile.am:
1007         * gst/volume/Makefile.am:
1008         * sys/v4l/Makefile.am:
1009         * sys/ximage/Makefile.am:
1010         * sys/xvimage/Makefile.am:
1011           Don't install static libs for plugins. Fixes #550851 for base.
1012
1013 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
1014
1015         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init):
1016         Set the default blocksize to -1 because we will then use the configured
1017         samplesperbuffer to create our output buffer.
1018
1019 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1020
1021         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1022         (gst_riff_create_video_template_caps):
1023         Add mappping for the KMVC (Karl Morton's Video) Codec.
1024
1025 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1026
1027         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1028         Don't forget to advance the offset of what we're matching against, else
1029         we end up in a forever loop.
1030
1031 2008-10-15  Sebastian Dröge  <slomo@circular-chaos.org>
1032
1033         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
1034         Improve typefinding a bit. If we don't have a Unicode charset
1035         try GST_SUBTITLE_ENCODING and otherwise try ISO-8859-15.
1036
1037 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1038
1039         * ext/theora/theoradec.c: (theora_dec_decode_buffer):
1040         Fix build on macosx.
1041
1042 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1043
1044         Based on patch by: Robin Stocker <robin at nibor dot org>
1045
1046         * ext/theora/gsttheoradec.h:
1047         * ext/theora/theoradec.c: (gst_theora_dec_init),
1048         (theora_dec_setcaps), (theora_handle_type_packet),
1049         (theora_dec_decode_buffer), (theora_dec_change_state):
1050         Parse input caps and make the PAR override the encoded PAR when
1051         specified by a container. Fixes #555699.
1052
1053 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1054
1055         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1056         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
1057         (gst_base_rtp_depayload_set_gst_timestamp),
1058         (gst_base_rtp_depayload_change_state):
1059         * gst-libs/gst/rtp/gstbasertpdepayload.h:
1060         Add some more G_LIKELY
1061         Fail when the setcaps function was not called.
1062
1063         * gst-libs/gst/rtp/gstbasertppayload.c:
1064         (gst_basertppayload_set_outcaps):
1065         Propagate return value of setcaps.
1066
1067 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1068
1069         * gst/subparse/Makefile.am:
1070         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1071         (gst_sub_parse_class_init), (gst_sub_parse_init),
1072         (gst_convert_to_utf8), (detect_encoding), (convert_encoding),
1073         (get_next_line), (gst_sub_parse_data_format_autodetect),
1074         (feed_textbuf), (handle_buffer), (gst_sub_parse_change_state),
1075         (gst_subparse_type_find):
1076         * gst/subparse/gstsubparse.h:
1077         Add support for UTF16/UTF32 subtitles as long as the first bytes of
1078         the first buffer contain the BOM. This also adds support for other
1079         encodings that allow NUL bytes via the encoding property.
1080         Fixes bugs #552237 and #456788.
1081
1082 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1083
1084         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
1085         Don't drop the last byte of image tags if they're not an URI list.
1086         Fixes bug #556066.
1087
1088 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1089
1090         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1091         For looking at the 4th byte we have to get 4 bytes of course
1092         and not 3.
1093
1094 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1095
1096         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1097         Improve FLAC-without-headers typefinding by looking at most of the
1098         frame header and checking if invalid values are used. Should prevent
1099         quite some false positives compared to the old version which only
1100         check if the first 14 bits are set.
1101
1102 2008-10-11  Stefan Kost  <ensonic@users.sf.net>
1103
1104         * sys/xvimage/xvimagesink.c:
1105           Don't assert on caps==NULL.
1106
1107 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1108
1109         * gst/subparse/gstsubparse.c:
1110         (gst_sub_parse_data_format_autodetect), (handle_buffer),
1111         (gst_sub_parse_change_state):
1112         * gst/subparse/gstsubparse.h:
1113         * tests/check/elements/subparse.c: (GST_START_TEST):
1114         Add support for subtitle files with UTF-8 BOM at the beginning
1115         by simple stripping it from the first line before passing it
1116         to any parsing code. Fixes bug #555257 and playback of files
1117         created by Gnome Subtitles.
1118
1119 2008-10-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1120
1121         * gst/audiotestsrc/gstaudiotestsrc.c:
1122         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
1123         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
1124         (gst_audio_test_src_start), (gst_audio_test_src_stop),
1125         (gst_audio_test_src_do_seek), (gst_audio_test_src_check_get_range),
1126         (gst_audio_test_src_create):
1127         * gst/audiotestsrc/gstaudiotestsrc.h:
1128         Define the default property values in the usual place.
1129         Implement start/stop to reset values correctly.
1130         Calculate the sample size only once when we negotiate.
1131         Rename some values to make more sense.
1132         Keep track of our byte range.
1133         Add support for pull based scheduling. Disabled for now until we have
1134         the whole stack working.
1135         Set the BUFFER_OFFSET correctly.
1136
1137 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1138
1139         Based on a patch by: xavierb at gmail dot com
1140
1141         * gst/subparse/gstsubparse.c:
1142         (gst_sub_parse_data_format_autodetect):
1143         * tests/check/elements/subparse.c: (GST_START_TEST):
1144         Make the detection of the used subtitle a bit less strict
1145         for srt subtitles. Fixes bug #555607.
1146
1147 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1148
1149         * ext/vorbis/vorbisenc.c:
1150         (gst_vorbis_enc_buffer_check_discontinuous):
1151         Fix discontinuity detection which was broken by last commit.
1152
1153 2008-10-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
1154
1155         * configure.ac::
1156           Require core CVS for ghostpad API additions used by decodebin2.
1157
1158 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1159
1160         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1161         (gst_base_audio_src_create):
1162         Fix debug statements (space between '%' and actual format).
1163
1164 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1165
1166         * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
1167         Remove bogus assert, the decodepad could have been created inside an
1168         already existing group.
1169
1170 2008-10-08  Andy Wingo  <wingo@pobox.com>
1171
1172         * gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
1173         target instead of setting it.
1174         (gst_decode_pad_activate, gst_decode_pad_unblock): This is now the
1175         API for a decode pad. The bugfix is that we set the group in
1176         activate(), not when the pad was created because it might be NULL
1177         then.
1178         (gst_decode_group_control_source_pad, gst_decode_group_expose):
1179         Update to use the API.
1180
1181 2008-10-08  Andy Wingo  <wingo@pobox.com>
1182
1183         * gst/playback/gstdecodebin2.c (struct _GstDecodePad): Change to
1184         be a subclass of GstGhostPad.
1185         (analyze_new_pad): So, when emitting the signals that determine
1186         how we do autoplugging, already create the ghost pad and use it as
1187         the pad in the signal arguments. This allows applications to make
1188         a connection between the pad passed in e.g. autoplug-continue, and
1189         the pad passed in new-decoded-pad.
1190         (connect_pad, expose_pad): Update to receive the ghosted decode
1191         pad in the args, retargetting it as necessary if we have to plug
1192         the target pad through a multiqueue.
1193         (gst_decode_group_control_source_pad): Adapt to receive an
1194         already-ghosted pad that just needs activation, blocking, and
1195         drain notification.
1196         (sort_end_pads): Adapt for decode pads actually being pads.
1197         (gst_decode_group_expose): Adapt for decode pads actually being
1198         pads. Rewrite the decode pad names so they appear in order. Adds a
1199         new error case if we couldn't set the name.
1200         (gst_decode_group_free, gst_decode_group_hide): Adapt cleanup
1201         logic.
1202         (gst_decode_pad_set_blocked, gst_decode_pad_add_drained_check):
1203         New API for the decode pad, needed because we shouldn't do these
1204         things inside gst_decode_pad_new(), but after.
1205         (gst_decode_pad_new): Change to actually make the real pad, and
1206         delay the blocking/drainage bits.
1207
1208 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1209
1210         Patch by: Daniel Drake <dsd at laptop dot org>
1211
1212         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear_collectpads):
1213         Unref all buffers when clearing collectpads. Fixes bug #546955.
1214
1215 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1216
1217         Based on a patch by: Klaas <klaas at rivercrew dot net>
1218
1219         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_sink_event),
1220         (gst_vorbis_enc_buffer_check_discontinuous),
1221         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
1222         * ext/vorbis/vorbisenc.h:
1223         Keep track of the upstream segments and use the running time on that
1224         segment instead of the buffer timestamp everywhere. Fixes bug #525807.
1225
1226 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1227
1228         * gst/audioconvert/audioconvert.c: (audio_convert_convert):
1229         Prevent overflows with big buffer when calculating the size of
1230         the intermediate buffer by using gst_util_uint64_scale() instead of
1231         plain arithmetics. Fixes bug #552801.
1232
1233 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1234
1235         Patch by: Pavel Zeldin <pzeldin at gmail dot com>
1236
1237         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time),
1238         (gst_clock_overlay_class_init), (gst_clock_overlay_finalize),
1239         (gst_clock_overlay_init), (gst_clock_overlay_set_property),
1240         (gst_clock_overlay_get_property):
1241         * ext/pango/gstclockoverlay.h:
1242         API: Add ability to specify format for date/time display by
1243         adding a "time-format" property.
1244         Fixes bug #554879.
1245
1246 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1247
1248         Patch by: Jan Gerber <j at oil21 dot org>
1249
1250         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1251         (gst_riff_create_video_template_caps):
1252         Add FFV1 fourcc to support playback of FFMPEG lossless video
1253         in AVI. Fixes bug #555319.
1254
1255 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1256
1257         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
1258
1259         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1260         (gst_base_audio_src_create):
1261         Implement skew clock slaving. Fixes #552559.
1262
1263 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1264
1265         * gst-libs/gst/audio/multichannel.c:
1266         * gst-libs/gst/audio/testchannels.c:
1267         Fix include of config.h
1268
1269 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1270
1271         Based on Patch by: Tero Saarni <tero dot saarni at gmail dot com>
1272
1273         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_parse_line),
1274         (print_media), (gst_sdp_message_dump):
1275         Fix parsing of the c= field containing multicast addresses.
1276         Fixes #552199.
1277         Add the connection info to the session or streams.
1278         Fix parsing of the bandwidth.
1279         Add debugging for the connections and bandwidths for a media.
1280         Add debugging for the bandwidth of the session. 
1281
1282 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1283
1284         * gst-libs/gst/rtp/gstbasertppayload.c:
1285         (gst_basertppayload_change_state):
1286         Configure the next seqnum and timestamp in the state change so that they
1287         can be queried soon after.
1288
1289 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1290
1291         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1292         (gst_base_rtp_depayload_chain):
1293         Improve debugging of the rtptime.
1294
1295 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
1296
1297         * configure.ac:
1298         Back to development -> 0.10.21.1
1299
1300 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1301
1302         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1303         (plugin_init):
1304         Add typefinding for FLAC without headers in the beginning.
1305         This is already handled by flacdec and friends.
1306
1307 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1308
1309         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find),
1310         (plugin_init):
1311         Add typefinder for MXF.
1312
1313 2008-10-03  Jan Schmidt  <jan.schmidt@sun.com>
1314
1315         * tests/icles/Makefile.am:
1316         Only build test-colorkey if GTK+ is available.
1317
1318 === release 0.10.21 ===
1319
1320 2008-10-03  Jan Schmidt <jan.schmidt@sun.com>
1321
1322         * configure.ac:
1323           releasing 0.10.21, "We Could Be Wrong"
1324
1325 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
1326
1327         * configure.ac:
1328         0.10.20.4 pre-release
1329
1330 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1331
1332         Patch by: Vincent Penquerc'h <ogg dot k dot ogg dot k at googlemail dot com>
1333
1334         * ext/theora/theoraparse.c: (theora_parse_set_streamheader):
1335         Set the BOS flag on the BOS packet. Fixes #553244.
1336
1337 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1338
1339         * gst-libs/gst/rtsp/gstrtspmessage.c:
1340         (gst_rtsp_message_parse_request),
1341         (gst_rtsp_message_parse_response):
1342         Fix the g_return_val_if_fail() statements.
1343
1344 2008-09-22  Michael Smith <msmith@songbirdnest.com>
1345
1346         * gst-libs/gst/tag/gsttagdemux.c:
1347           Fail to activate if there's insufficient data in the file to be usable,
1348           preventing an assertion fail later. Fixes #552960
1349
1350 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>
1351
1352         * gst-libs/gst/pbutils/descriptions.c:
1353         * gst/typefind/gsttypefindfunctions.c:
1354           Recognise Kate subtitle streams (#550582).
1355
1356 2008-09-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
1357
1358         * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
1359           Remove trailing comma from enum list, which causes problems
1360           with -pendantic (#550729).
1361
1362 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
1363
1364         * configure.ac:
1365         0.10.20.2 pre-release
1366
1367         * po/LINGUAS:
1368         * po/id.po:
1369         * po/pt_BR.po:
1370
1371         New translations.
1372
1373 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1374
1375         * gst-libs/gst/interfaces/propertyprobe.c:
1376           (gst_property_probe_get_properties),
1377           (gst_property_probe_get_property),
1378           (gst_property_probe_probe_property),
1379           (gst_property_probe_probe_property_name),
1380           (gst_property_probe_needs_probe),
1381           (gst_property_probe_needs_probe_name),
1382           (gst_property_probe_get_values),
1383           (gst_property_probe_get_values_name),
1384           (gst_property_probe_probe_and_get_values),
1385           (gst_property_probe_probe_and_get_values_name):
1386           More sanity checks for our second-favourite interface.
1387
1388 2008-09-05  Stefan Kost  <ensonic@users.sf.net>
1389
1390         * gst-libs/gst/interfaces/propertyprobe.c:
1391           Check for NULL pointer, in the hope that this fixes #532864.
1392
1393 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1394
1395         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
1396           No really, the next release is 0.10.21 (fix Since: tags in docs).
1397
1398 2008-09-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1399
1400         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
1401         Disable a code path that is now called but causes a deadlock for some
1402         reason and is unneeded.
1403
1404 2008-09-04  Stefan Kost  <ensonic@users.sf.net>
1405
1406         * sys/xvimage/xvimagesink.c:
1407         * sys/xvimage/xvimagesink.h:
1408           Add a "draw-border" property that can be set to false to disable
1409           drawing borders.
1410           
1411         * tests/icles/test-colorkey.c:
1412         * tests/icles/Makefile.am:
1413           Add new test application for the colorkey handling.
1414
1415 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1416
1417         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
1418         Use a decent caps for TrueSpeech instead of a ffmpeg-specific one.
1419         This will also be fixed for upcoming gst-ffmpeg release so that once
1420         this release of -base is out, it will work with the latest gst-ffmpeg
1421         release.
1422
1423 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1424
1425         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
1426         (gst_riff_create_audio_template_caps):
1427         Add Truespeech mapping for RIFF formats (AVI/WAV).
1428         Fixes #550656
1429
1430 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1431
1432         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1433         Typefind video/mj2 and image/jp2 ISO JPEG2000 mime types.
1434         Fixes #550638.
1435
1436 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1437
1438         * configure.ac:
1439         * gst/subparse/Makefile.am:
1440         * gst/subparse/gstsubparse.c:
1441         * gst/subparse/samiparse.c:
1442         * tests/check/elements/subparse.c:
1443           Rework last change, so that we build subparse, but just disable the
1444           sami parse functionality, if we're configured to not use xml. In the
1445           tests only the sami test is disabled now.
1446
1447 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1448
1449         * configure.ac:
1450           Disable subparse when xml is disabled. It woundn't work anyway. Fixes
1451           test runs.
1452
1453 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1454
1455         * po/POTFILES.in:
1456           Add some more files with strings for translation.
1457
1458 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1459
1460         * gst-libs/gst/tag/gstvorbistag.c:
1461         * tests/check/libs/tag.c:
1462           Use new geo location tags from core. Fixes #481169
1463
1464 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1465
1466         * tests/check/elements/audioresample.c: (setup_audioresample),
1467         (fail_unless_perfect_stream), (test_perfect_stream_instance),
1468         (test_discont_stream_instance):
1469         Now that GstBaseTransform is 'fixed' ... remove cruft from tests.
1470         Add debugging for coherence.
1471
1472 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1473
1474         Patch by: Jonathan Matthew  <notverysmart gmail com>
1475
1476         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1477           Add typefinder for PDF documents (which is nice to have, since it's a
1478           common format, but also helps prevent false positives). Fixes #549814.
1479
1480 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1481
1482         * gst/playback/gstplaybin2.c: (selector_blocked), (pad_added_cb),
1483         (no_more_pads_cb):
1484         Fix nasty race where multiple decodebins could start pushing data before
1485         we manage to configure the sinks, resulting in not-linked errors in
1486         typical RTSP streaming cases.
1487
1488 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1489
1490         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
1491         Since we now call stop, we trigger this code path that causes a deadlock
1492         is apparently not needed.
1493
1494 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1495
1496         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
1497         (gst_ring_buffer_stop):
1498         Also allow the case where the ringbuffer was paused when we try to stop
1499         it so that the basesrc stop function is still called.
1500
1501 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1502
1503         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
1504
1505         * sys/v4l/gstv4lelement.c: (gst_v4l_class_probe_devices):
1506         Reprobe devices again instead of taking a cached list as new
1507         devices could've been plugged in. Fixes bug #549062.
1508
1509 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1510
1511         Patch by: Alessandro Dessina <alessandro nnva org>
1512
1513         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
1514         (gst_ogg_demux_activate_chain):
1515         Don't add pads and activate them for skeleton streams. These are already
1516         handled inside oggdemux. Fixes bug #537599.
1517
1518 2008-08-22  Wim Taymans  <wim.taymans@collabora.co.uk>
1519
1520         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
1521         Reset variable so that query and convert fail after going back to
1522         READY. Fixes #548898.
1523
1524 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1525
1526         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
1527         If a buffer arrives with a timestamp before the timestamp+duration
1528         of the previous buffer clip it instead of dropping it completely.
1529         Slight improvement for the unfixable bug #548913.
1530
1531 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1532
1533         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1534         Take the current timestamp instead of timestamp+duration for the offset.
1535         This offset will later be used for calculating the timestamp and
1536         otherwise vorbisdec will interpolate timestamps wrong if upstream
1537         only sends timestamps and no granulepos.
1538
1539 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1540
1541         * tests/examples/seek/seek.c:
1542           Don't crash when having no visualisations.
1543
1544 2008-08-16  David Schleef  <ds@schleef.org>
1545
1546         * gst/typefind/gsttypefindfunctions.c: DV typefinding.  Remove
1547           check for a bit that is 0 in IEC 61384, but not SMPTE 314M.
1548           Fixes #548065.
1549
1550 2008-08-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1551
1552         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
1553         When cleaning up the caps fields also remove "depth" for the same
1554         reason we remove "width".
1555
1556 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
1557
1558         * gst-libs/gst/pbutils/descriptions.c: (format_info_get_desc):
1559           Add Lead H.264 here as well.
1560
1561 2008-08-14  Julien Moutte  <julien@fluendo.com>
1562
1563         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1564         (gst_riff_create_video_template_caps): Add Lead H.264 variant.
1565
1566 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1567
1568         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1569         (gst_base_audio_src_create):
1570         When not slaved to another clock also subtract the base_time from our
1571         internal clock time to get the running time.
1572
1573 2008-08-12  David Schleef  <ds@schleef.org>
1574
1575         * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
1576           since it has no basis in libtheora.
1577
1578 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
1579
1580         * gst-libs/gst/interfaces/propertyprobe.h:
1581           Remove double "interface" from doc-string.
1582
1583         * gst-libs/gst/interfaces/xoverlay.h:
1584           Document interface.
1585
1586         * gst-libs/gst/riff/riff.c:
1587           Add basic doc blobs.
1588
1589 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1590
1591         * gst-libs/gst/audio/Makefile.am:
1592           Don't try to build that example anymore.
1593
1594 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1595
1596         * gst-libs/gst/audio/.cvsignore:
1597         * gst-libs/gst/audio/Makefile.am:
1598         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1599         * gst-libs/gst/audio/make_filter:
1600           Move audiofiltertemplate to gst-template.
1601
1602 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1603
1604         * docs/libs/gst-plugins-base-libs-sections.txt:
1605         * gst-libs/gst/audio/gstaudiosrc.h:
1606           More docs and shuffling. What can we do with the hundreds of #defines.
1607
1608 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1609
1610         * gst-libs/gst/audio/audio.h:
1611         * gst-libs/gst/audio/gstaudiofilter.h:
1612         * gst-libs/gst/audio/gstringbuffer.h:
1613         * gst-libs/gst/interfaces/propertyprobe.h:
1614         * gst-libs/gst/tag/gsttagdemux.h:
1615           Reducing number of dundocumented symbols.
1616
1617 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1618
1619         * gst-libs/gst/audio/audio.c:
1620           Fix doc comment syntax.
1621
1622         * gst-libs/gst/interfaces/propertyprobe.c:
1623           Add more doc-comments and a FIXME: for the signal.    
1624
1625 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1626
1627         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sink_event),
1628         (gst_ogg_mux_request_new_pad):
1629         * ext/ogg/gstoggmux.h:
1630         Don't pretend to support NEWSEGMENT events, instead override the
1631         GstCollectPads event function to return FALSE on NEWSEGMENT events
1632         and do the normal work for other events.
1633
1634         This prevents elements like flacenc to seek to the start and rewrite
1635         some data which then results in a broken Ogg packet.
1636
1637 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1638
1639         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1640
1641         * ext/alsa/gstalsaplugin.c: (plugin_init):
1642         * ext/cdparanoia/gstcdparanoiasrc.c: (plugin_init):
1643         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1644         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
1645         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init):
1646         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
1647         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal):
1648         * gst/playback/gstdecodebin.c: (plugin_init):
1649         * gst/playback/gstdecodebin2.c: (gst_decode_bin_plugin_init):
1650         * gst/playback/gstplayback.c: (plugin_init):
1651         * gst/playback/gstqueue2.c: (plugin_init):
1652         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_plugin_init):
1653         * sys/v4l/gstv4l.c: (plugin_init):
1654         Make sure gettext returns translations in UTF-8 encoding rather
1655         than in the current locale encoding (#546822).
1656
1657 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
1658
1659         * gst-libs/gst/pbutils/descriptions.c:
1660           Add audio/x-qdm for qtdemux.
1661
1662 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
1663
1664         * ext/vorbis/vorbisdec.c:
1665           Do not leak old taglist.
1666
1667 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
1668
1669         * tests/icles/test-scale.c:
1670           Include <stdlib.h> for atoi().
1671
1672 2008-08-04  Andy Wingo  <wingo@pobox.com>
1673
1674         * gst/audiotestsrc/gstaudiotestsrc.c: Very crucial and important
1675         documentation fix.
1676
1677 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1678
1679         * gst/adder/gstadder.c:
1680           Cleanup lots of empty lines that came from gst-indent going havoc
1681           before I added the INDENT_ON/OFF marker some time agao.
1682
1683 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1684
1685         * configure.ac:
1686         * gst-libs/gst/riff/riff-read.c:
1687           Bump requirement to latest core and use new tag for riff formats.
1688           Needed for #520694.
1689
1690 2008-08-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1691
1692         * tests/examples/dynamic/Makefile.am:
1693         * tests/examples/dynamic/codec-select.c: (make_encoder),
1694         (make_pipeline), (do_switch), (my_bus_callback), (main):
1695         Add example app that dynamically switches between 3 'encoders'.
1696
1697 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1698
1699         * gst/playback/gstplaysink.c: (gst_play_sink_set_vis_plugin):
1700         Add some more comments.
1701
1702 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1703
1704         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_getcaps),
1705         (gst_video_test_src_create):
1706         Discard buffers of the wrong size after renegotiation, this is perfectly
1707         possible with things like capsfilter that could suggest caps changes
1708         upstream without knowing the size of the buffer.
1709
1710 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1711
1712         * tests/icles/.cvsignore:
1713         * tests/icles/Makefile.am:
1714         * tests/icles/test-scale.c: (make_pipeline), (main):
1715         Add dynamic rescaling tests for the new basetransform.
1716
1717 2008-07-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1718
1719         * gst/audioconvert/Makefile.am:
1720           Dist recently-added gstfastrandom.h.
1721
1722 2008-07-30  Edward Hervey  <edward.hervey@collabora.co.uk>
1723
1724         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1725         Fix a "may be used uninitialized in this function" which weirdly only
1726         appears on macosx (?).
1727
1728 2008-07-30  Stefan Kost  <ensonic@users.sf.net>
1729
1730         * gst-libs/gst/riff/riff-ids.h:
1731           Adding acid chunk for tempo and loop information.
1732
1733 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1734
1735         * sys/xvimage/Makefile.am:
1736           floor() needs linking to $(LIBM).
1737
1738 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1739
1740         * ext/gnomevfs/gstgnomevfssrc.c:
1741           Aggregate short reads and add some comments and debug logging.
1742           Fixes #537380
1743
1744 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1745
1746         * gst/playback/gstplaybasebin.c:
1747           Fix property doc markup (its not a signal).
1748
1749         * sys/xvimage/xvimagesink.c:
1750           Add since tag for new proeprties (also add sice tags fro the last two
1751           other additions).
1752
1753 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1754
1755         * sys/xvimage/xvimagesink.c:
1756         * sys/xvimage/xvimagesink.h:
1757           Add autofill/colorkey properties. Fixes #538656.
1758
1759 2008-07-28  David Schleef  <ds@schleef.org>
1760
1761         * sys/xvimage/xvimagesink.c:
1762           Fix rounding errors when converting colorbalance values
1763           between hardware and object property ranges.  Partial
1764           fix for #537889, however, there still seems to be a small
1765           drift problem that could be totem's fault.
1766
1767 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1768
1769         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
1770         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
1771         Don't use GST_CLOCK_TIME_NONE as start of NEWSEGMENT events.
1772         This fixes a critical warning.
1773
1774 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1775
1776         * ext/ogg/gstoggmux.c:
1777         Allow muxing of CELT into Ogg streams.
1778
1779 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1780
1781         * gst/typefind/gsttypefindfunctions.c: (celt_type_find),
1782         (plugin_init):
1783         Add simple typefinder for the CELT codec (www.celt-codec.org).
1784
1785 2008-07-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1786
1787         Patch by: Jan Gerber <j at oil21 dot org>
1788
1789         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone):
1790         Fix calculation of the start time from skeleton streams.
1791         Fixes bug #530068.
1792
1793 2008-07-24  Stefan Kost  <ensonic@users.sf.net>
1794
1795         * tests/examples/seek/seek.c:
1796           Use 64 bit constant GST_CLOCK_TIME_NONE instead of plain -1.
1797
1798 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1799
1800         * gst/audioconvert/audioconvert.h:
1801         * gst/audioconvert/gstaudioquantize.c:
1802         (gst_audio_quantize_setup_dither),
1803         (gst_audio_quantize_free_dither):
1804         * gst/audioconvert/gstfastrandom.h:
1805         Implement a linear congruential generator as pseudo random number
1806         generator for the dither noise. This is about 2 times faster than
1807         using GLib's mersenne twister. Also this uses only integer math for
1808         generating integers while GLib internally uses floating point math.
1809
1810 2008-07-23  Michael Smith <msmith@songbirdnest.com>
1811
1812         * configure.ac:
1813           Remove AC_ISC_POSIX; it breaks on some systems and is not needed.
1814
1815 2008-07-23  Tim-Philipp Müller  <tim.muller at collabora co uk>
1816
1817         Patch by: Damien Lespiau  <damien.lespiau gmail com>
1818
1819         * gst-libs/gst/sdp/gstsdpmessage.c: (print_media):
1820           Use GST_STR_NULL to avoid crashes with libcs that don't
1821           like NULL strings in printf args (such as the win32 one).
1822           Fixes #544306.
1823
1824 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1825
1826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
1827         Oops - set the size of the image used for probing back to 1x1, for
1828         consistency with ximagesink
1829
1830 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1831
1832         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1833         (gst_ximagesink_ximage_new):
1834         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
1835         (gst_xvimagesink_xvimage_new):
1836
1837         Apparently on Solaris and OS/X (at least), it's not legal to ask the
1838         X server to attach to a shared memory segment after we've deleted it,
1839         with the result that MIT-SHM is disabled. Instead, remove it only after 
1840         X succeeds in attaching too.
1841
1842 2008-07-16  David Schleef  <ds@schleef.org>
1843
1844         * gst/audiotestsrc/gstaudiotestsrc.c:
1845         * gst/audiotestsrc/gstaudiotestsrc.h:
1846           Add 'ticks', a 1/30 second sine wave pulse every second.
1847
1848 2008-07-15  David Schleef  <ds@schleef.org>
1849
1850         * gst-libs/gst/video/video.c: Revert ABI change.
1851
1852 2008-07-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1853
1854         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1855         Make it impossible to have NULL caps at the point where we set
1856         framerate and other things. Also don't return immediately for "3ivd"
1857         video and let framerate, etc be set. Might fix bug #542508.
1858
1859 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1860
1861         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps):
1862         Video format can also be conveniently determined from (many)
1863         non-fixed caps.
1864
1865 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
1866
1867         * gst/playback/gstplaybasebin.c:
1868         * gst/playback/gstplaybasebin.h:
1869         * gst/playback/gstplaybin.c:
1870         * gst/playback/gststreamselector.c:
1871         First stab at integrating DVD subpicture overlay into
1872         playbin. Successfully plugs and plays, but the queues need
1873         shrinking - 3 seconds of video is too much buffering.
1874
1875 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1876
1877         * gst/audioconvert/gstaudioconvert.c:
1878           Remove now obsolete note in the docs.
1879
1880 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1881
1882         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1883         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1884         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1885         * docs/plugins/gst-plugins-base-plugins.args:
1886         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1887         * docs/plugins/gst-plugins-base-plugins.interfaces:
1888         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1889         * docs/plugins/gst-plugins-base-plugins.signals:
1890         * docs/plugins/inspect/plugin-adder.xml:
1891         * docs/plugins/inspect/plugin-alsa.xml:
1892         * docs/plugins/inspect/plugin-audioconvert.xml:
1893         * docs/plugins/inspect/plugin-audiorate.xml:
1894         * docs/plugins/inspect/plugin-audioresample.xml:
1895         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1896         * docs/plugins/inspect/plugin-cdparanoia.xml:
1897         * docs/plugins/inspect/plugin-decodebin.xml:
1898         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1899         * docs/plugins/inspect/plugin-gdp.xml:
1900         * docs/plugins/inspect/plugin-gnomevfs.xml:
1901         * docs/plugins/inspect/plugin-libvisual.xml:
1902         * docs/plugins/inspect/plugin-ogg.xml:
1903         * docs/plugins/inspect/plugin-pango.xml:
1904         * docs/plugins/inspect/plugin-playback.xml:
1905         * docs/plugins/inspect/plugin-queue2.xml:
1906         * docs/plugins/inspect/plugin-subparse.xml:
1907         * docs/plugins/inspect/plugin-tcp.xml:
1908         * docs/plugins/inspect/plugin-theora.xml:
1909         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1910         * docs/plugins/inspect/plugin-uridecodebin.xml:
1911         * docs/plugins/inspect/plugin-video4linux.xml:
1912         * docs/plugins/inspect/plugin-videorate.xml:
1913         * docs/plugins/inspect/plugin-videoscale.xml:
1914         * docs/plugins/inspect/plugin-videotestsrc.xml:
1915         * docs/plugins/inspect/plugin-volume.xml:
1916         * docs/plugins/inspect/plugin-vorbis.xml:
1917         * docs/plugins/inspect/plugin-ximagesink.xml:
1918         * docs/plugins/inspect/plugin-xvimagesink.xml:
1919         * ext/alsa/gstalsamixer.c:
1920         * ext/alsa/gstalsasink.c:
1921         * ext/alsa/gstalsasrc.c:
1922         * ext/gio/gstgiosink.c:
1923         * ext/gio/gstgiosrc.c:
1924         * ext/gio/gstgiostreamsink.c:
1925         * ext/gio/gstgiostreamsrc.c:
1926         * ext/gnomevfs/gstgnomevfssink.c:
1927         * ext/gnomevfs/gstgnomevfssrc.c:
1928         * ext/ogg/gstoggdemux.c:
1929         * ext/ogg/gstoggmux.c:
1930         * ext/pango/gstclockoverlay.c:
1931         * ext/pango/gsttextoverlay.c:
1932         * ext/pango/gsttextrender.c:
1933         * ext/pango/gsttimeoverlay.c:
1934         * ext/theora/theoradec.c:
1935         * ext/theora/theoraenc.c:
1936         * ext/theora/theoraparse.c:
1937         * ext/vorbis/vorbisdec.c:
1938         * ext/vorbis/vorbisenc.c:
1939         * ext/vorbis/vorbisparse.c:
1940         * ext/vorbis/vorbistag.c:
1941         * gst/adder/gstadder.c:
1942         * gst/audioconvert/gstaudioconvert.c:
1943         * gst/audioresample/gstaudioresample.c:
1944         * gst/audiotestsrc/gstaudiotestsrc.c:
1945         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1946         * gst/gdp/gstgdpdepay.c:
1947         * gst/gdp/gstgdppay.c:
1948         * gst/playback/gstdecodebin2.c:
1949         * gst/playback/gstplaybin.c:
1950         * gst/playback/gstplaybin2.c:
1951         * gst/playback/gstqueue2.c:
1952         * gst/playback/gsturidecodebin.c:
1953         * gst/tcp/gstmultifdsink.c:
1954         * gst/tcp/gsttcpserversink.c:
1955         * gst/videorate/gstvideorate.c:
1956         * gst/videoscale/gstvideoscale.c:
1957         * gst/videotestsrc/gstvideotestsrc.c:
1958         * gst/volume/gstvolume.c:
1959         * sys/ximage/ximagesink.c:
1960         * sys/xvimage/xvimagesink.c:
1961           Cleanup Plugin docs. Link to signals and properties. Fix sub-section
1962           titles. Drop mentining that all our example pipelines are "simple"
1963           pipelines.
1964
1965 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1966
1967         * tests/examples/seek/Makefile.am:
1968         Fix out of tree build by adding all required CFLAGS.
1969
1970 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1971
1972         * gst/playback/gstdecodebin.c: (add_raw_queue):
1973         And ref the pad before returning it again when linking to the queue
1974         failed. Otherwise we will unref the pad twice later and things break.
1975
1976 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1977
1978         * gst/playback/gstdecodebin.c: (add_raw_queue):
1979         If linking the raw pad with a queue fails, try it without a queue
1980         instead of failing completely. This should never happen.
1981
1982 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1983
1984         Patch by: Evgeniy Stepanov <eugeni dot stepanov at gmail dot com>
1985
1986         * gst/playback/gstdecodebin.c: (add_raw_queue), (close_pad_link):
1987         Add a queue after a demuxer if the demuxer outputs raw data. This was
1988         done before only for non-raw data but is required in this case too.
1989         Fixes bug #540215.
1990
1991         decodebin2 doesn't have this issue because all streams of a group
1992         go through multiqueue.
1993
1994 2008-07-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1995
1996         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
1997
1998         * gst-libs/gst/sdp/gstsdpmessage.c:
1999         Makes libgstsdp compile with mingw32 by defining the right WINVER so
2000         that getaddrinfo() can be used. Fixes #541358.
2001
2002 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
2003
2004         * gst/videotestsrc/gstvideotestsrc.c:
2005         (gst_video_test_src_class_init), (gst_video_test_src_init),
2006         (gst_video_test_src_set_property),
2007         (gst_video_test_src_get_property), (gst_video_test_src_create):
2008         * gst/videotestsrc/gstvideotestsrc.h:
2009         Cleanups, use default property values as defines.
2010         Add property to enable/disable peer buffer allocation.
2011
2012 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2013
2014         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
2015         * tests/check/pipelines/streamheader.c: (streamheader_suite):
2016         Enable unit tests on PPC again as the bugs are now fixed.
2017
2018 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2019
2020         * gst-libs/gst/riff/riff-ids.h:
2021         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2022         (gst_riff_create_audio_template_caps):
2023         Add support for ADPCM IMA DK3 and DK4 variant in RIFF containers.
2024         Fixes bug #540351.
2025
2026 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2027
2028         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2029         (gst_ffmpeg_pixfmt_to_caps):
2030         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2031         (gst_ffmpegcsp_get_unit_size):
2032         Only set/get on the PAL8 format, ffmpegcolorspace doesn't support
2033         it on other formats. Also adjust the unit size only for that format
2034         to not include the palette. Fixes bug #540497.
2035
2036 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
2037
2038         * gst/adder/gstadder.c:
2039           Use GST_DEBUG_FUNCPTR and remove some extra vlnak lines.
2040
2041 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
2042
2043         * ChangeLog:
2044           ChangeLog surgery.
2045   
2046         * tests/examples/seek/seek.c:
2047           Move variable into ifdef too.
2048         
2049
2050 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
2051
2052         * tests/examples/seek/seek.c:
2053           Include config.h and check if we have X. Remove XInitThread(), don't
2054           think its needed. Fixes: #540334.
2055
2056 2008-06-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2057
2058         Patch by: Sam Morris <sam at robots dot org to uk>
2059
2060         * gst-libs/gst/interfaces/mixertrack.c:
2061         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
2062         (gst_mixer_track_set_property):
2063         API: Add "index" property to GstMixerTrack to differantiate between
2064         multiple mixer tracks with the same label.
2065
2066         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
2067         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
2068         Set the "index" property of GstMixerTrack to the index given by ALSA.
2069         Fixes bug #528299.
2070
2071 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
2072
2073         * tests/examples/seek/Makefile.am:
2074         * tests/examples/seek/seek.c:
2075           Remove libgstvideo usage. Use gtk_get_option_group instead of
2076           gtk_init().
2077
2078 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2079
2080         * tests/check/Makefile.am:
2081           Name the test registry format neutral.
2082
2083 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2084
2085         * gst/playback/gstqueue2.c:
2086           Do not double notify. Remove the unsued return value.
2087
2088 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2089
2090         * ext/alsa/gstalsamixer.c:
2091           Also consider "speaker" as a name for master volume. If that doesn't
2092           help look for the first non-mono volume control that also has a
2093           playback switch.
2094
2095 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2096
2097         * ChangeLog:
2098           Forgot to save the ChangeLog :/
2099
2100 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2101
2102         * tests/examples/seek/Makefile.am:
2103         * tests/examples/seek/seek.c:
2104           Embedd the xwindow. Allow to play multiple files.
2105
2106 2008-06-24  Jan Schmidt  <jan.schmidt@sun.com>
2107
2108         * sys/ximage/ximagesink.c (gst_ximagesink_ximage_put),
2109         (gst_ximagesink_setcaps):
2110         * sys/ximage/ximagesink.h:
2111         When the caps change, make sure to re-draw borders in
2112         force-aspect-ratio=true mode.
2113         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_put):
2114         Don't clear the border_draw flag until we actually draw the border.
2115         * tests/check/Makefile.am:
2116         Ignore alsasink/src during the states test too, so it doesn't fail
2117         when running without access to the sound device.
2118
2119 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
2120
2121         * tests/examples/seek/seek.c:
2122           Fix crasher when playing a parse-launch line the 2nd time.
2123
2124 2008-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2125
2126         * tests/check/pipelines/oggmux.c:
2127           Properly ifdef tests to fix compilation.
2128
2129 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2130
2131         * gst/playback/gstplay-marshal.list:
2132         * gst/playback/gstplaybin2.c:
2133           Add get-video-pad, get-audio-pad, get-text-pad action signals to
2134           playbin2. This allows the user to get to the selector's sinkpads, and
2135           thus inspect a range of things - caps, tags, etc. 
2136
2137 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2138
2139         * gst/playback/gstplaybin2.c:
2140           Use a different constant for the convert-frame signal id.
2141           Fixes #537009.
2142
2143 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2144
2145         * gst/playback/gstplaybin2.c:
2146         * gst/playback/gstplaysink.c:
2147           Fix a whole bunch of typos in comments and log statements. 
2148
2149 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2150
2151         * sys/xvimage/xvimagesink.c:
2152           Don't set colour balance values on the Xv port if the user hasn't
2153           changed them (via properties or the interface). Avoids accumulating
2154           rounding errors for the common case.
2155           Partial fix for bug #537889.
2156
2157 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2158
2159         * gst/playback/gstdecodebin2.c:
2160           Ensure decodebin2 emits 'drained' signal once, and only once, when all
2161           pads are drained.
2162
2163 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2164
2165         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_get_latency),
2166         (gst_vorbis_enc_src_query), (gst_vorbis_enc_chain):
2167         Report the encoder latency. Fixes #538232.
2168
2169 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2170
2171         * gst/playback/gstplaybin2.c: (gst_play_bin_get_property),
2172         (notify_source), (activate_group):
2173         Implement the source property, emit notify when it changes in the
2174         underlying uridecodebin.
2175
2176 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2177
2178         * tests/examples/seek/seek.c: (stop_cb):
2179         Free and clear the seek element list so that we don't use invalid
2180         references when seeking after recreating a gst-launch line.
2181
2182 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2183
2184         * gst-libs/gst/audio/gstbaseaudiosink.c:
2185         (gst_base_audio_sink_query), (gst_base_audio_sink_skew_slaving),
2186         (gst_base_audio_sink_render):
2187         Report latency even if we are not live instead of hiding it.
2188         Take ts-offset and render-delay of the basesink into account when
2189         scheduling samples.
2190         Rework the clipping code so that we can take the various offsets into
2191         account and still do correct clipping.
2192
2193 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
2194
2195         * configure.ac:
2196         Bump verion back to devel -> 0.10.20.1
2197
2198 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
2199
2200         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
2201         Don't increase the size of non-string image buffers by one as this
2202         might in theory confuse decoders. Still increase it by one for string
2203         image buffers to append '\0'.
2204
2205 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
2206
2207         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2208         
2209         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset):
2210         Fix a buffer memleak and remove a confusing and wrong debug output.
2211         Fixes bug #538663.
2212
2213 === release 0.10.20 ===
2214
2215 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
2216
2217         * configure.ac:
2218           releasing 0.10.20, "Here I Go Again"
2219
2220 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
2221
2222         * configure.ac:
2223         0.10.19.3 pre-release
2224
2225 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
2226
2227         * gst-libs/gst/rtsp/gstrtspconnection.c:
2228         Fix build on win32.
2229         Patch By: David Schleef <ds@schleef.org>
2230         Fixes: #536874
2231
2232 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
2233
2234         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_finalize),
2235         (gst_gio_base_src_create):
2236         * ext/gio/gstgiobasesrc.h:
2237         Try to read the requested number of bytes, even if the first
2238         read returns less than requested, until nothing is read anymore
2239         or we have the requested amount of bytes. This fixes playback of
2240         files via Samba as Samba only allows to read 64k at once.
2241
2242         Implement a caching algorithm that makes sure that we read at
2243         least 4k of data every time. Some elements will try to read a few
2244         bytes, then seek, read again a few bytes and so on and this is
2245         painfully slow as every operation has to go over DBus if GVfs is
2246         used as backend.
2247
2248         Fixes bug #536849 and #536848.
2249
2250         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init),
2251         (gst_gio_src_check_get_range):
2252         Override check_get_range() to blacklist http/https URIs
2253         and whitelist file URIs. More to be added on demand.
2254
2255 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
2256
2257         * configure.ac:
2258         0.10.19.2 pre-release
2259
2260 2008-06-04  Jan Schmidt  <jan.schmidt@sun.com>
2261
2262         * win32/common/libgstrtsp.def:
2263         * win32/common/libgsttag.def:
2264         Add new API functions to the dll exports
2265
2266 2008-06-04  Michael Smith <msmith@songbirdnest.com>
2267
2268         * gst/playback/gstplaybasebin.c:
2269           Disconnect signals from decodebins we created before we remove it
2270           from playbin, to avoid crashes if the decodebin is eventually
2271           disposed after the playbin itself (possible if the app takes a
2272           reference on the decodebin).
2273           Fixes #536521.
2274
2275 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2276
2277         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
2278           (mp3_type_find), (musepack_type_find), (MULTIPART_MAX_HEADER_SIZE),
2279           (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
2280           (h264_video_type_find), (mpeg_video_stream_type_find),
2281           (dv_type_find), (mmsh_type_find):
2282           Bunch of small clean-ups: use gst_type_find_suggest_simple(); don't
2283           copy caps for no good reason (this may be desirable to make it easier
2284           to detect leaks, but then it should probably be done for all caps
2285           in the typefinder somewhere).
2286
2287 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2288
2289         * tests/check/Makefile.am:
2290         Do not try to run the check tests for subparse unless it has been
2291         built.
2292
2293 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2294
2295         * tests/check/pipelines/streamheader.c: (buffer_probe_cb),
2296         (test_multifdsink_gdp_vorbisenc), (streamheader_suite):
2297         Do not try to run a test which requires vorbisenc unless we have
2298         actually built it.
2299
2300 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2301
2302         * gst-libs/gst/rtsp/gstrtspconnection.c:
2303         (gst_rtsp_connection_set_auth), (gst_rtsp_connection_set_auth_param),
2304         (gst_rtsp_connection_clear_auth_params),
2305         (gst_rtsp_connection_set_qos_dscp), (gst_rtsp_connection_get_ip):
2306         * gst-libs/gst/rtsp/gstrtspconnection.h:
2307         Add a couple of missing argument guards.
2308         Add a way of setting the DSCP for an RTSP connection.
2309         Add an accessor method for the ip member of GstRTSPConnection as all
2310         members are supposed to be private.
2311
2312 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2313
2314         * gst/tcp/gstmultifdsink.c: (setup_dscp_client):
2315         Fixed accidental use of IPv4 options for all IPv6 addresses.
2316
2317 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2318
2319         * gst-libs/gst/interfaces/mixertrack.h:
2320           Document mixer track flags.
2321
2322 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2323
2324         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2325
2326         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader):
2327         Don't set caps on the buffers that contain a copy of the buffer
2328         including the caps of them resulting in an always increasing refcount
2329         of the caps and insanely large caps. Instead include a buffer without
2330         caps in the new caps. Fixes bug #536475.
2331
2332 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2333
2334         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2335         Transform a given PAR to a range on the struct with the generic
2336         height/width instead of the struct with the possibly restricted
2337         height/width.
2338
2339 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2340
2341         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2342         Prefer the given format if it contains something stricter than [1,MAX]
2343         for height or width and only put a structure that requires rescaling
2344         as second. This makes it possible to use videoscale in pipelines where
2345         the source can actually produce the wanted height/width but usually
2346         selects a different one from the requested.
2347
2348 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2349
2350         Based on patch by: John Millikin <jmillikin gmail com>
2351
2352         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches), (gst_vorbis_tag_add),
2353           (gst_vorbis_tag_add_coverart):
2354           Retrieve COVERART tags from vorbis comments (#512333)
2355
2356 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2357
2358         * gst-libs/gst/tag/tag.h:
2359         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
2360           Don't forget to add new enum value here too (should probably use
2361           glib-mkenums here...).
2362
2363 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2364
2365         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_add_id3_image):
2366         * gst-libs/gst/tag/tag.h: (GST_TAG_IMAGE_TYPE_NONE),
2367         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
2368           (gst_tag_image_type_get_type), (gst_tag_image_type_is_valid),
2369           (gst_tag_image_data_to_image_buffer):
2370           Add two utility functions to avoid code duplication (#512333):
2371           API: add gst_tag_image_data_to_image_buffer()
2372           API: add gst_tag_list_add_id3_image()
2373           API: add GST_TAG_IMAGE_TYPE_NONE enum value
2374
2375 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2376
2377         * win32/common/libgstaudio.def:
2378         Add gst_audio_check_channel_positions() to the exported symbols.
2379
2380 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2381
2382         * docs/libs/gst-plugins-base-libs-sections.txt:
2383         * gst-libs/gst/audio/multichannel.c:
2384         (gst_audio_check_channel_positions):
2385         * gst-libs/gst/audio/multichannel.h:
2386         API: Make gst_audio_check_channel_positions() public.
2387
2388         * tests/check/libs/audio.c: (GST_START_TEST):
2389         Add some simple checks for gst_audio_check_channel_positions().
2390
2391 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2392
2393         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
2394           minrange and maxrange are scaled according to the frequency
2395           multiplier.
2396
2397 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2398
2399         * ext/pango/Makefile.am:
2400         * ext/pango/gsttextoverlay.c: (gst_text_overlay_shade_y),
2401           (gst_text_overlay_blit_yuv420), (gst_text_overlay_push_frame):
2402           Use gstvideo functions to calculate strides and plane offsets. Fixes
2403           rendering issue ('ghost' images of the text on the chroma planes)
2404           with widths or heights that are not multiples of 8 (#506659 and
2405           probably also #485729).
2406
2407         * tests/icles/test-textoverlay.c: (show_text), (test_textoverlay),
2408           (main):
2409           Test with odd height/width too.
2410
2411 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
2412
2413         * gst/adder/gstadder.c: (gst_adder_query_duration),
2414         (gst_adder_query_latency):
2415         When using gst_element_iterate_pads() one has to unref every pad
2416         after usage.
2417
2418 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2419
2420         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2421         (gst_base_audio_src_class_init):
2422         Add a gtk-doc chunk for the new properties to have a Since: indication.
2423
2424 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2425
2426         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2427         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
2428         (gst_base_audio_src_get_property), (gst_base_audio_src_setcaps),
2429         (gst_base_audio_src_change_state):
2430         Provide readable actual-buffer-time and actual-latency-time properties
2431         that reflect the configured ringbuffer values. Fixes #524724.
2432         API: GstBaseAudioSrc:actual-buffer-time
2433         API: GstBaseAudioSrc:actual-latency-time
2434
2435 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2436
2437         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push),
2438         (gst_basertppayload_change_state):
2439         Simply converting the running time into an RTP timestamp by scaling it
2440         based on the clock-rate is good enough for making an RTP timestamp. This
2441         has the added benefit that we can later on expose a property with the
2442         RTP timestamp of running time 0, as is needed for RTSP servers to
2443         generate the response of the PLAY request.
2444
2445 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
2446
2447         * gst/audioconvert/gstaudioconvert.c:
2448         (structure_has_fixed_channel_positions),
2449         (gst_audio_convert_transform_caps):
2450         Allow up to 11 positioned channels now that audioconvert can handle
2451         this but add no default positions for > 8 channels.
2452         
2453         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2454         Add some unit tests for the above change: Test conversion of
2455         11 positioned channels to stereo and the other way around, test
2456         conversion of 15 unpositioned channels in different ways.
2457
2458 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2459
2460         * win32/common/libgstaudio.def:
2461         Add gst_audio_clock_reset to the list of exported symbols.
2462
2463 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2464
2465         * tests/check/elements/vorbisdec.c: (vorbisdec_suite):
2466         Remove wrong_channels_identification_header unit test as we now
2467         support 7 (and more channels).
2468
2469 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2470
2471         * gst/audioconvert/gstchannelmix.c:
2472         (gst_channel_mix_fill_one_other):
2473         If mixing left or right to center (or the other way around) only take
2474         the complete value if we don't already have the original position in
2475         the source.
2476
2477 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2478
2479         * gst-libs/gst/audio/multichannel.c:
2480         (gst_audio_check_channel_positions),
2481         (gst_audio_set_structure_channel_positions_list),
2482         (gst_audio_fixate_channel_positions):
2483         Allow rear center together with rear left/right and other previously
2484         conflicting channel positions. The reason why they weren't allowed
2485         was the channel mixing implementation in audioconvert.
2486         Also take this into account when fixing channel layouts.
2487
2488         Allow setting channel positions for 1/2 channels when using
2489         gst_audio_set_structure_channel_position().
2490
2491         * gst/audioconvert/gstchannelmix.c:
2492         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
2493         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
2494         (gst_channel_mix_fill_special), (gst_channel_mix_fill_matrix):
2495         Major rewrite of the channel mixing.
2496
2497         We now allow previously conflicting channel positions to appear
2498         together (rear center and rear left/right for example).
2499         Fixes bug #533817.
2500
2501         Rework the way channels are mixed together to take more possible
2502         channel positions into account, properly mix from/to side channels
2503         and don't assume that either center, left&right or nothing of a
2504         specific position is available anymore.
2505
2506         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2507         Adjust unit tests with non-standard 1/2 channel layouts to the more
2508         correct new behaviour.
2509
2510         Add a unit test for 5.1->Stereo downmixing.
2511
2512 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2513
2514         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
2515         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps):
2516         Add sane defaults for the 7 and 8 channel layouts as those are
2517         undefined in the Vorbis spec. Use NONE channel layouts when decoding
2518         more than 8 channels instead of erroring out. Fixes bug #535356.
2519
2520 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2521
2522         * docs/plugins/Makefile.am:
2523         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2524         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2525         * ext/theora/theoraparse.c:
2526         Add theoraparse to the docs and fix some docs.
2527
2528 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2529
2530         * gst-libs/gst/cdda/gstcddabasesrc.c:
2531         (gst_cdda_base_src_add_track), (gst_cdda_base_src_create):
2532         Fix EOS condition and track addition check, the track.end sector is
2533         included in the track. Fixes #533265.
2534
2535 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2536
2537         Patch by: Mark Nauwelaerts <manauw at skynet be>
2538
2539         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
2540         (gst_video_rate_flush_prev), (gst_video_rate_event),
2541         (gst_video_rate_chain):
2542         * gst/videorate/gstvideorate.h:
2543         React (more) to NEWSEGMENT
2544         Small adjustment in timestamp calculation to prevent mismatches
2545         Fixes #435633.
2546
2547 2008-05-28  Tim-Philipp Müller  <tim.muller at collabora co uk>
2548
2549         * tests/examples/seek/seek.c: (make_parselaunch_pipeline):
2550           Initialise error to NULL as we should.
2551
2552 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
2553
2554         * gst/adder/gstadder.c: (gst_adder_query_duration),
2555         (gst_adder_query_latency), (gst_adder_query):
2556         Implement latency query.
2557
2558 2008-05-27  Sebastian Dröge  <slomo@circular-chaos.org>
2559
2560         * gst/adder/gstadder.c: (gst_adder_query_duration):
2561         Correctly resync the iterator if gst_iterator_next() returns
2562         GST_ITERATOR_RESYNC.
2563
2564 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2565
2566         * win32/vs6/libgstpbutils.dsp:
2567           Add pbutils-enumtypes.c to sources (#518037).
2568
2569 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2570
2571         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
2572         (gst_audio_clock_reset), (gst_audio_clock_get_internal_time):
2573         * gst-libs/gst/audio/gstaudioclock.h:
2574         Add method to inform the clock that the time starts from 0 again. We use
2575         this info to calculate a clock offset so that the time we report in
2576         internal_time is monotonically increasing, as required by the clock base
2577         class. Fixes #521761.
2578         API: GstAudioClock::gst_audio_clock_reset()
2579
2580         * gst-libs/gst/audio/gstbaseaudiosink.c:
2581         (gst_base_audio_sink_skew_slaving),
2582         (gst_base_audio_sink_change_state):
2583         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2584         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2585         Reset reported time when we (re)create the ringbuffer.
2586
2587 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2588
2589         * ext/alsa/gstalsamixertrack.c:
2590           (gst_alsa_mixer_track_update_alsa_capabilities):
2591           Make sure playback volumes aren't accidentally overwritten by
2592           capture volumes if an alsa mixer track has both playback and
2593           capture capabilities: we create two GstMixerTracks in that
2594           case, so make sure we query only the alsa capabilities that
2595           refer to the type of GstMixerTrack we created from the dual
2596           capability alsa element. Should fix issues with Audigy2 sound
2597           cards (#518082).
2598
2599 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2600
2601         * tests/check/pipelines/oggmux.c: (test_pipeline):
2602           Don't use deprecated function.
2603
2604 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2605
2606         * gst/playback/gstdecodebin2.c:
2607         (gst_decode_group_control_source_pad), (gst_decode_group_expose):
2608         Check for NULL cases and log them, creating ghostpads can, for example,
2609         fail when the pad returns wrong caps.
2610
2611         * gst/playback/gstplaybin2.c: (perform_eos):
2612         When pushing out the EOS event, collect the return value and warn when
2613         something failed.
2614
2615 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
2616
2617         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2618         (gst_riff_create_video_template_caps):
2619         Add support for DVCPRO.
2620
2621 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2622
2623         * gst/videoscale/gstvideoscale.c: (DEFAULT_PROP_METHOD):
2624           Change default scaling method from nearest-neighbour to bilinear.
2625
2626 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2627
2628         * tests/check/libs/video.c:
2629           More checks.
2630
2631 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
2632
2633         * gst/subparse/gstsubparse.c: (parser_state_init),
2634           (gst_sub_parse_format_autodetect), (handle_buffer):
2635         * gst/subparse/gstsubparse.h:
2636         * tests/check/elements/subparse.c: (test_tmplayer_style3b):
2637           Limit duration to a maximum of five seconds for tmplayer format where
2638           we can guess the duration only from the timestamp of the next line of
2639           text. We don't want to show a text for eternities just because nothing
2640           else is being said for a while.
2641
2642 2008-05-23  Wim Taymans  <wim.taymans@collabora.co.uk>
2643
2644         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2645         (gst_base_rtp_depayload_chain),
2646         (gst_base_rtp_depayload_handle_sink_event),
2647         (gst_base_rtp_depayload_push_full),
2648         (gst_base_rtp_depayload_change_state):
2649         Check sequence numbers, mark input buffers with a discont flag for the
2650         subclass when we detected a gap, drop duplicate buffers. We do this
2651         because one can use the element without a jitterbuffer in front and we
2652         don't want to feed the subclasses invalid or reordered data.
2653         Do an error when the subclass did not provide a process function instead
2654         of crashing.
2655         Some other small cleanups.
2656
2657 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
2658
2659         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2660           May just as well use the precalculated uvstride here.
2661
2662 2008-05-22  Jan Schmidt  <jan.schmidt@sun.com>
2663
2664         * docs/plugins/Makefile.am:
2665         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
2666         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2667         * docs/plugins/gst-plugins-base-plugins.args:
2668         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2669         * docs/plugins/gst-plugins-base-plugins.interfaces:
2670         * docs/plugins/gst-plugins-base-plugins.prerequisites:
2671         * docs/plugins/inspect/plugin-adder.xml:
2672         * docs/plugins/inspect/plugin-alsa.xml:
2673         * docs/plugins/inspect/plugin-audioconvert.xml:
2674         * docs/plugins/inspect/plugin-audiorate.xml:
2675         * docs/plugins/inspect/plugin-audioresample.xml:
2676         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2677         * docs/plugins/inspect/plugin-cdparanoia.xml:
2678         * docs/plugins/inspect/plugin-decodebin.xml:
2679         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2680         * docs/plugins/inspect/plugin-gdp.xml:
2681         * docs/plugins/inspect/plugin-gio.xml:
2682         * docs/plugins/inspect/plugin-gnomevfs.xml:
2683         * docs/plugins/inspect/plugin-libvisual.xml:
2684         * docs/plugins/inspect/plugin-ogg.xml:
2685         * docs/plugins/inspect/plugin-pango.xml:
2686         * docs/plugins/inspect/plugin-playback.xml:
2687         * docs/plugins/inspect/plugin-queue2.xml:
2688         * docs/plugins/inspect/plugin-subparse.xml:
2689         * docs/plugins/inspect/plugin-tcp.xml:
2690         * docs/plugins/inspect/plugin-theora.xml:
2691         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2692         * docs/plugins/inspect/plugin-uridecodebin.xml:
2693         * docs/plugins/inspect/plugin-video4linux.xml:
2694         * docs/plugins/inspect/plugin-videorate.xml:
2695         * docs/plugins/inspect/plugin-videoscale.xml:
2696         * docs/plugins/inspect/plugin-videotestsrc.xml:
2697         * docs/plugins/inspect/plugin-volume.xml:
2698         * docs/plugins/inspect/plugin-vorbis.xml:
2699         * docs/plugins/inspect/plugin-ximagesink.xml:
2700         * docs/plugins/inspect/plugin-xvimagesink.xml:
2701         * ext/cdparanoia/gstcdparanoiasrc.c:
2702         * ext/ogg/gstoggdemux.c:
2703         * ext/ogg/gstoggdemux.h:
2704         * ext/ogg/gstoggmux.c:
2705         * ext/ogg/gstoggmux.h:
2706         * gst/audioconvert/audioconvert.c:
2707         * gst/audioconvert/audioconvert.h:
2708         * gst/audioconvert/gstaudioconvert.h:
2709         * gst/gdp/gstgdpdepay.h:
2710         * gst/gdp/gstgdppay.h:
2711         * gst/playback/gstdecodebin.c:
2712         * gst/playback/gstdecodebin2.c:
2713         * gst/playback/gstplaybin.c:
2714         * gst/playback/gstplaybin2.c:
2715         * gst/playback/gsturidecodebin.c:
2716         * gst/tcp/gstmultifdsink.c:
2717         * gst/tcp/gstmultifdsink.h:
2718         * gst/tcp/gsttcp.h:
2719
2720         Add some documentation comments, and some new headers to be scanned.
2721         Rename some internal enum declarations (audioconvert's DitherType and
2722         NoiseShapingType, GstUnitType from the TCP elements) to match the
2723         documented GObject type names so that the docs pick them up.
2724         Name the playbin2 docs markups properly so they get picked up. They'll
2725         need renaming back when/if playbin2 becomes playbin.
2726
2727         100% symbol coverage for the plugin docs, booya.
2728
2729 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
2730
2731         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
2732
2733         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2734         Fix generation of NV12/NV21 frames. Fixes bug #532454.
2735
2736 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
2737
2738         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2739
2740         * gst/playback/gstdecodebin.c: (remove_fakesink):
2741         Lock the fakesink before setting the state to NULL and removing it from
2742         the bin so that a concurrent state change cannot interfere. 
2743         Fixes #534331.
2744
2745 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2746
2747         * docs/Makefile.am:
2748         Fix installing plugin documentation when gtk-doc is disabled.
2749
2750 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2751
2752         * gst-libs/gst/rtsp/Makefile.am:
2753         Distribute, don't install md5.h
2754
2755 2008-05-21  Julien Moutte  <julien@fluendo.com>
2756
2757         * gst/tcp/gstmultifdsink.c: (setup_dscp_client): Use IPPROTO_IP
2758         instead of SOL_IP, works on more platforms.
2759         * gst/typefind/gsttypefindfunctions.c: (aac_type_find): Fix printf
2760         arguments.
2761
2762 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2763
2764         * ext/vorbis/vorbisdec.c:
2765         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
2766         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame):
2767         Some debug and comment fixes.
2768
2769         * tests/examples/dynamic/addstream.c: (main):
2770         Fix , to ;
2771
2772 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2773
2774         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2775         * gst/playback/decodetest.c: (new_decoded_pad_cb):
2776         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2777         (try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
2778         (cleanup_decodebin):
2779         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
2780         (connect_element), (gst_decode_group_control_demuxer_pad):
2781         * gst/playback/gstplaybasebin.c: (queue_remove_probe),
2782         (queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
2783         (mute_group_type):
2784         * gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
2785         (gst_play_bin_set_property), (handoff), (gen_video_element),
2786         (gen_text_element), (gen_audio_element), (gen_vis_element),
2787         (remove_sinks), (add_sink), (setup_sinks):
2788         * gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
2789         * gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
2790         (gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
2791         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
2792         (gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
2793         (gen_video_chain), (gen_text_chain), (gen_audio_chain),
2794         (gen_vis_chain), (gst_play_sink_reconfigure),
2795         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
2796         (gst_play_sink_request_pad):
2797         * gst/playback/gsturidecodebin.c: (type_found), (setup_source):
2798         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
2799         (cb_newpad):
2800         * gst/playback/test6.c: (new_decoded_pad_cb):
2801         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2802         * tests/check/elements/audiorate.c: (test_injector_chain),
2803         (do_perfect_stream_test):
2804         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2805         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2806         * tests/check/elements/gnomevfssink.c:
2807         * tests/check/elements/textoverlay.c:
2808         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
2809         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
2810         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2811         * tests/check/pipelines/oggmux.c: (test_pipeline):
2812         * tests/check/pipelines/streamheader.c: (GST_START_TEST):
2813         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2814         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2815         * tests/examples/seek/scrubby.c: (make_wav_pipeline):
2816         * tests/examples/seek/seek.c: (make_mod_pipeline),
2817         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
2818         (make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
2819         (make_theora_pipeline), (make_vorbis_theora_pipeline),
2820         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
2821         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
2822         (update_fill), (msg_buffering):
2823         Don't use bad gst_element_get_pad().
2824
2825 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
2826
2827         * gst-libs/gst/riff/riff-media.c:
2828           Fix wrong method name in docs. Fix calculation of strf fields for
2829           broken mulaw/alaw.
2830   
2831         * gst-libs/gst/riff/riff-read.c:
2832           Whitespace fix and removing double ';'.
2833
2834 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2835
2836         * docs/design/part-playbin2.txt:
2837         Add some leftover doc.
2838
2839 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2840
2841         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2842         Fix copy & paste error in last commit.
2843
2844 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2845
2846         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2847         Add support for mixing GST_AUDIO_CHANNEL_POSITION_SIDE_* from/to
2848         other channel positions when source has SIDE channels and dest doesn't
2849         or the other way around.
2850
2851 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2852
2853         Patch by: Henrik Eriksson <henriken at axis dot com>
2854
2855         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2856         (gst_multi_fd_sink_init), (setup_dscp_client), (setup_dscp),
2857         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_set_property),
2858         (gst_multi_fd_sink_get_property):
2859         * gst/tcp/gstmultifdsink.h:
2860         Add support for DSCP QOS. Fixes #469933.
2861
2862 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2863
2864         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2865         Add another test that checks if conversion between standard 1 and 2
2866         channel layouts with and without positions set is working.
2867
2868 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2869
2870         * gst-libs/gst/audio/multichannel.c:
2871         (gst_audio_check_channel_positions):
2872         Allow non-standard 2 channel layouts.
2873         
2874         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2875         Add some tests for converting and remapping non-standard 1 and 2
2876         channel layouts.
2877
2878 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2879
2880         * gst/audioconvert/gstchannelmix.c:
2881         (gst_channel_mix_fill_normalize):
2882         Prevent division by zero if the channel mix matrix contains only
2883         zeroes.
2884
2885 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2886
2887         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2888
2889         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain):
2890         Close a buffer memory leak. Fixes bug #534071.
2891
2892 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2893
2894         * gst-libs/gst/rtsp/gstrtsptransport.h:
2895         Make the GstRTSPTransport struct members public as there are no
2896         setters/getters and it's supposed to be changed directly.
2897         Fixes bug #533087.
2898
2899 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2900
2901         * gst/adder/gstadder.c:
2902         Adder also doesn't support audio/x-raw-int with width!=depth so don't
2903         claim this on the pad template caps.
2904
2905 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2906
2907         * gst-libs/gst/audio/gstbaseaudiosink.c:
2908         (gst_base_audio_sink_sync_latency):
2909         We can only use our optimal calibration if we prerolled before the
2910         latency expired.
2911
2912 2008-05-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
2913
2914         * configure.ac:
2915           Require core CVS for GstBaseSrc buffer caps setting magic.
2916
2917 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2918
2919         * gst/audioconvert/gstaudioconvert.c:
2920         (gst_audio_convert_fixate_channels):
2921         Fix logic in last commit.
2922
2923 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2924
2925         * gst/audioconvert/gstaudioconvert.c:
2926         (gst_audio_convert_fixate_channels):
2927         Passthrough the channel positions if the number of output channels is
2928         the same as the number of input channels, the input had a channel
2929         layout and downstream requests no special one. We did this already for
2930         > 2 channels but now it's also done for 1 channel. Fixes bug #533617.
2931
2932 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2933
2934         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
2935         (gst_gnome_vfs_src_finalize),
2936         (gst_gnome_vfs_src_received_headers_callback),
2937         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_stop):
2938         * ext/gnomevfs/gstgnomevfssrc.h:
2939         Set the ICY caps on the srcpad from where they get picked up by the base
2940         class now and set on the outgoing buffers.
2941
2942         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2943         (gst_base_audio_src_create):
2944         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
2945         BaseSrc now sets the caps on outgoing buffers automatically.
2946
2947 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2948
2949         * gst-libs/gst/audio/gstbaseaudiosink.c:
2950         (gst_base_audio_sink_resample_slaving),
2951         (gst_base_audio_sink_skew_slaving),
2952         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
2953         (gst_base_audio_sink_async_play),
2954         (gst_base_audio_sink_change_state):
2955         Change the way in which the ringbuffer is started when dealing with a
2956         slaved clock and latency. We now sync to the clock until we reach
2957         upstream latency before starting the ringbuffer. This has the effect
2958         that we can accurately align the master and slave clocks and let the
2959         rate correction code take care of the initial drift or rounding errors
2960         instead of leaving them uncorrected with the old approach.
2961
2962 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2963
2964         * gst/audioconvert/gstaudioconvert.c:
2965         (gst_audio_convert_fixate_channels):
2966         Correctly set the default channel positions when converting to 8
2967         channels.
2968
2969 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2970
2971         * configure.ac:
2972           Error out if we don't have the required version of core.
2973
2974 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2975
2976         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
2977           Use data scan helper in aac typefinder and stop scanning
2978           for headers when we've found a type. Also fix potential invalid
2979           memory access when calculating the frame length.
2980
2981 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2982
2983         * gst/typefind/gsttypefindfunctions.c: (data_scan_ctx_ensure_data),
2984           (mpeg_sys_is_valid_pack):
2985           Don't modify scan context when we return FALSE in ensure_data, so
2986           it's possible to continue scanning, and we don't end up with a NULL
2987           data pointer and a positive size, which might bite us the next time
2988           we're called. Small constification.
2989
2990 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
2991
2992         * gst/adder/gstadder.c:
2993         Adder doesn't support 24 bit samples so don't claim it supports them
2994         in the pad template caps.
2995
2996 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2997
2998         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2999         (gst_base_rtp_depayload_chain):
3000         Validate the RTP packet before further processing it. It's just too
3001         dangerous to accept random packets and people are not forced to use a
3002         jitterbuffer or session manager to filter out the bad packets.
3003
3004         * gst-libs/gst/rtp/gstrtpbuffer.c:
3005         (gst_rtp_buffer_set_extension_data),
3006         (gst_rtp_buffer_get_payload_subbuffer):
3007         Small cleanups.
3008         When setting extension data in a buffer that is too small, we fail and
3009         we should not set the extension bit.
3010         Change GST_WARNINGS into g_warning because they really are
3011         programming errors.
3012
3013         * tests/check/libs/rtp.c: (GST_START_TEST):
3014         Catch the g_warnings now in the unit tests and that fact that failing to
3015         set extension data left the extension bit untouched.
3016
3017 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3018
3019         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
3020           Revert previous change which made basetransform handle buffer_alloc
3021           and which breaks things badly in the non-passthrough case since it
3022           returned buffers with a different (ie. sometimes smaller) size than
3023           the size requested.
3024
3025 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3026
3027         Patch by: Bernard B <b-gnome at largestprime dot net>
3028
3029         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum):
3030         Fix seqnum compare function for bordercase values and fix the docs
3031         again. Fixes #533075.
3032
3033         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
3034         Add a testcase for seqnum compare function.
3035
3036 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
3037
3038         * gst/adder/gstadder.c: (gst_adder_setcaps),
3039         (gst_adder_class_init):
3040         Correctly declare the supported endianness on the pad templates
3041         and check for correct endianness in the set caps function. Adder
3042         only supports native endianness.
3043         Also use gst_element_class_set_details_simple().
3044
3045 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
3046
3047         * sys/xvimage/xvimagesink.c:
3048           Better debug logging in port value handling. Merging separate port
3049           value loops into one.
3050
3051 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3052
3053         Patch by: Hannes Bistry <hannesb at gmx dot de>
3054
3055         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
3056         * gst/tcp/gsttcpserversink.c:
3057         (gst_tcp_server_sink_handle_server_read),
3058         (gst_tcp_server_sink_handle_wait), (gst_tcp_server_sink_init_send):
3059         Fix regression in clientsrc because we did not add the fd to the poll
3060         set anymore. Fixes #532364.
3061         Do some cleanups here and there.
3062
3063 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3064
3065         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
3066         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
3067         * gst/playback/gstplay-marshal.list:
3068         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
3069         Use correct marshallers. GstCaps are a boxed type and no GObject
3070         subclass.
3071
3072 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3073
3074         * win32/common/libgstrtsp.def:
3075         Add gst_rtsp_connection_(set|clear)_auth_param() to the exported
3076         symbols.
3077
3078 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3079
3080         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3081
3082         * tests/check/elements/audioresample.c:
3083         (live_switch_alloc_only_48000), (live_switch_get_sink_caps),
3084         (live_switch_push), (GST_START_TEST):
3085         Add unit test for the latest basetransform negotiation changes.
3086         See bug #526768.
3087
3088 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3089
3090         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
3091         Fix nv12<->nv21 conversion if stride is larger than width.
3092
3093 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3094
3095         Patch by: Jan Gerber <j at oil21 dot org>
3096
3097         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
3098         (gst_ogg_pad_parse_skeleton_fisbone):
3099         * ext/ogg/gstoggdemux.h:
3100         Parse presentation time from skeleton streams and use it as offset
3101         for the timestamps. Fixes bug #530068.
3102
3103 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3104
3105         * gst-libs/gst/audio/gstbaseaudiosink.c:
3106         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
3107         Revert previous patch that attempted to more accurately calculate the
3108         initial offset between master and slave clock. The best thing we can do
3109         in general is take the time of both clocks as the diff since we don't
3110         know when the actual preroll happened.
3111
3112 2008-05-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
3113
3114         * gst-libs/gst/pbutils/install-plugins.c:
3115           Fix docs: type and missing word.
3116
3117 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
3118
3119         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
3120           Don't do lots of 4-byte peeks, but use the 'new' data scan helper
3121           for this instead; don't check if we've found enough markers after
3122           each and every step, it's enough to do that only if we've actually
3123           found a new marker.
3124           Embed a G_UNLIKELY into the IS_MPEG_HEADER macro.
3125
3126 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
3127
3128         * gst/typefind/gsttypefindfunctions.c:
3129           (DATA_SCAN_CTX_CHUNK_SIZE), (DataScanCtx), (data_scan_ctx_advance),
3130           (data_scan_ctx_ensure_data), (GST_MPEGVID_TYPEFIND_TRY_SYNC),
3131           (mpeg_video_stream_type_find):
3132           Move scan helper thingy to the beginning of the file so we can use
3133           it in other typefind functions. Rename it to something more
3134           generic. Also improve handling of things towards the end of the
3135           typefind data: peek as much as we can if we know the size of the
3136           data, rather than just min_size.
3137
3138 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
3139
3140         * docs/libs/gst-plugins-base-libs-sections.txt:
3141         * gst-libs/gst/interfaces/colorbalance.c:
3142         * gst-libs/gst/interfaces/colorbalance.h:
3143         * gst-libs/gst/interfaces/colorbalancechannel.c:
3144         * gst-libs/gst/interfaces/colorbalancechannel.h:
3145         * gst-libs/gst/interfaces/tuner.c:
3146         * gst-libs/gst/interfaces/tunerchannel.c:
3147         * gst-libs/gst/interfaces/tunerchannel.h:
3148         * gst-libs/gst/interfaces/tunernorm.c:
3149         * gst-libs/gst/interfaces/tunernorm.h:
3150         * gst-libs/gst/video/video.c:
3151         * gst-libs/gst/video/video.h:
3152         Document the GstTuner and GstColorBalance interfaces, and some
3153         other random API functions that needed it. 70% symbol coverage, woo.
3154
3155 2008-05-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3156
3157         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
3158         Choose to allocate one less segment but require one additional segment
3159         as latency. 
3160
3161         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_acquire):
3162         No need to increment the number of segments in the source.
3163
3164         * gst-libs/gst/audio/gstbaseaudiosink.c:
3165         (gst_base_audio_sink_get_time), (clock_convert_external),
3166         (gst_base_audio_sink_resample_slaving),
3167         (gst_base_audio_sink_skew_slaving),
3168         (gst_base_audio_sink_none_slaving), (gst_base_audio_sink_render),
3169         (gst_base_audio_sink_async_play):
3170         Remove adding latency when returning the internal time while subtracting
3171         it again when we use the value a little later.
3172         When calculating the end timestamp, we are making a rounding error
3173         with the current algorithm. Ensure that we don't accumulate these
3174         rounding errors when aligning samples by not resampling at all if we
3175         don't need to. Fixes #419351.
3176         Make the initial calibration of the clock slaving a little more
3177         predictable and accurate. Also handle the case where we don't do
3178         clock slaving.
3179
3180 2008-05-09  Sebastian Dröge  <slomo@circular-chaos.org>
3181
3182         Based on a patch by:
3183           Björn Benderius <bjoern dot benderius at axis dot com>
3184
3185         * gst/ffmpegcolorspace/avcodec.h:
3186         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3187         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
3188         (gst_ffmpegcsp_avpicture_fill):
3189         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
3190         * gst/ffmpegcolorspace/imgconvert_template.h:
3191         Add conversions from/to NV12 and NV21 and conversions between those
3192         two formats. Fixes bug #532166.
3193
3194 2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>
3195
3196         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
3197         Abort the h264 typefinding as soon as _peek() doesn't return anything,
3198         which happens for example with files smaller than 128kb.
3199
3200 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
3201
3202         Patch by: Wouter Cloetens <zombie at e2big dot org>
3203
3204         * gst-libs/gst/rtsp/Makefile.am:
3205         * gst-libs/gst/rtsp/gstrtspconnection.c:
3206         (gst_rtsp_connection_create), (md5_digest_to_hex_string),
3207         (auth_digest_compute_hex_urp), (auth_digest_compute_response),
3208         (add_auth_header), (gst_rtsp_connection_free),
3209         (gst_rtsp_connection_set_auth), (str_case_hash), (str_case_equal),
3210         (gst_rtsp_connection_set_auth_param),
3211         (gst_rtsp_connection_clear_auth_params):
3212         * gst-libs/gst/rtsp/gstrtspconnection.h:
3213         Add Digest authorization support for RTSP connections. See #532065.
3214
3215         * gst-libs/gst/rtsp/md5.c:
3216         * gst-libs/gst/rtsp/md5.h:
3217         Yeap, another md5 implementation until we can depend on a glib that has
3218         support for it.
3219
3220 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
3221
3222         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3223
3224         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
3225         Let audioresample use the buffer allocation of basetransform instead
3226         of it's own stuff.
3227
3228         * tests/check/elements/audioresample.c: (alloc_only_48000),
3229         (GST_START_TEST), (audioresample_suite):
3230         Add unit test for the recent basetransform bugfix, where upstream
3231         changes caps to something that can't be passed through anymore.
3232
3233 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
3234
3235         * win32/common/config.h.in:
3236           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
3237           use the real thing than having "???" unconditionally.
3238
3239 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3240
3241         * gst-libs/gst/audio/gstbaseaudiosink.c:
3242         (gst_base_audio_sink_query):
3243         Report the latency with the new seglatency parameter.
3244
3245         * gst-libs/gst/audio/gstringbuffer.c:
3246         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
3247         (gst_ring_buffer_acquire):
3248         * gst-libs/gst/audio/gstringbuffer.h:
3249         Add new field to the ringbufferspec to specify the expected latency
3250         between the underlying device read/write pointer, this is needed
3251         when writing sinks that sit a little closer to the hardware.
3252         Add some more docs for other fields.
3253
3254 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3255
3256         * gst/volume/gstvolume.c: (volume_transform_ip):
3257         Return NOT_NEGOTIATED if we didn't set a process function yet for some
3258         reason instead of crashing later. Might fix bug #509125.
3259
3260 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3261
3262         Based on a patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
3263
3264         * gst/audioconvert/audioconvert.c: (audio_convert_prepare_context):
3265         * gst/audioconvert/audioconvert.h:
3266         * gst/audioconvert/gstaudioconvert.c:
3267         (gst_audio_convert_parse_caps),
3268         (structure_has_fixed_channel_positions),
3269         (gst_audio_convert_transform_caps):
3270         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_matrix):
3271         Add support for more than 8 channels and NONE channel layouts. For
3272         more than 8 channels no channel conversion is supported yet, only
3273         format conversions are supported. Fixes bug #398033.
3274
3275         * tests/check/elements/audioconvert.c: (verify_convert),
3276         (GST_START_TEST), (audioconvert_suite):
3277         Add some unit tests by Tim for checking the NONE channel layouts
3278         and more than 8 channels and add some more unit tests for channel
3279         conversions.
3280
3281 2008-05-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3282
3283         * gst/playback/gstdecodebin2.c: (connect_pad):
3284         When autoplugging fails, set the element back to NULL before
3285         unreffing it.
3286
3287 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3288
3289         * win32/common/libgstaudio.def:
3290         Add gst_base_audio_src_[sg]et_slave_method() to the exported
3291         symbols.
3292
3293 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3294
3295         * gst/subparse/samiparse.c: (handle_start_sync),
3296         (end_sami_element), (characters_sami):
3297         Remove trailing, leading and double whitespaces.
3298         Correctly timestamp buffers and output the last buffer too.
3299
3300         * tests/check/elements/subparse.c: (GST_START_TEST),
3301         (subparse_suite):
3302         Add a simple unit test for SAMI parsing.
3303
3304 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3305
3306         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3307
3308         * gst/subparse/samiparse.c: (handle_start_sync),
3309         (start_sami_element), (end_sami_element), (characters_sami),
3310         (sami_context_reset):
3311         Only output characters inside the "sync" elements. There could be
3312         other elements like "style" that have some content but should
3313         not be printed. Fixes bug #467911.
3314
3315 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3316
3317         * gst/playback/gstplaybasebin.c: (set_audio_mute),
3318         (set_active_source):
3319         * gst/playback/gstplaybasebin.h:
3320         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3321         (playbin_set_audio_mute):
3322         Allow setting -1 as current-audio to mute the current audio stream,
3323         similar to what is done for subtitles. Fixes bug #342294.
3324
3325 2008-05-05  Edward Hervey  <edward.hervey at collabora co uk>
3326
3327         * gst-libs/gst/pbutils/descriptions.c: (formats): 
3328         It's SorensOn and not SorensEn.
3329
3330 2008-05-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3331
3332         * gst-libs/gst/pbutils/descriptions.c: (formats):
3333           Fix description of video/x-flash-video.
3334
3335 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
3336
3337         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
3338         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
3339         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
3340         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps_list):
3341         Remove some unused code.
3342
3343         * gst/audioconvert/gstaudioquantize.c:
3344         (gst_audio_quantize_free_noise_shaping):
3345         Don't return before freeing the noise shaping history.
3346
3347 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3348
3349         * tests/check/elements/subparse.c: (do_test),
3350           (test_tmplayer_style3b), (subparse_suite):
3351           Add unit test for the tmplayer variant from bug #530962.
3352
3353 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3354
3355         * gst/subparse/gstsubparse.c: (handle_buffer),
3356           (gst_sub_parse_sink_event):
3357         * gst/subparse/tmplayerparse.c: (tmplayer_process_buffer),
3358           (tmplayer_parse_line):
3359           Fix parsing of tmplayer subtitle variant where every single line contains
3360           text and there isn't an empty line after each line to determine the
3361           duration (#530962). Improve EOS handling for tmplayer subtitles a bit by
3362           making sure that we push out the last line of text without a duration if
3363           there's still text left in the buffer at the end.
3364
3365 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3366
3367         * gst/subparse/gstsubparse.c: (feed_textbuf):
3368           Fix detection of discontinuities based on the buffer offset (doesn't work
3369           so well if no buffer offset is set) and also check for the DISCONT buffer
3370           flag. This keeps the parser state from being reset after each buffer in
3371           the unit test.
3372
3373 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3374
3375         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
3376           Further fine-tuning: don't absolutely require sequence or GOP headers
3377           (as introduced in the previous commit), but adjust the typefind
3378           probabilities returned accordingly if we don't see them. Also make sure
3379           picture header and first slice are somewhat close to each other (which
3380           is not perfect but still better than requiring a fixed offset or having
3381           no limit at all).
3382
3383 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3384
3385         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
3386         (gst_basertppayload_sink_setcaps),
3387         (gst_basertppayload_sink_getcaps):
3388         Rename the setcaps/getcaps function internally to make it clear that
3389         they are called for the sink pad.
3390
3391 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3392
3393         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3394         (gst_base_rtp_depayload_class_init),
3395         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
3396         (gst_base_rtp_depayload_packet_lost),
3397         (gst_base_rtp_depayload_set_gst_timestamp):
3398         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3399         Catch packet-lost events from the jitterbuffer and convert them into a
3400         vmethod call (lost-packet) so that depayloaders can do something smart.
3401         Also add a default packet-lost function that sends out a segment update
3402         to the decoders.
3403
3404 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
3405
3406         * gst/playback/test4.c:
3407         * gst/playback/test5.c:
3408         * gst/playback/test6.c:
3409         * gst/playback/test7.c:
3410           Also include config.h when relying on defines from it. Fixes the
3411           build. Its been a please to serve :)
3412
3413 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
3414
3415         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
3416         (paint_setup_NV21), (paint_hline_NV12_NV21):
3417         Add support for NV12 and NV21 in videotestsrc
3418
3419 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
3420
3421         * gst/videoscale/gstvideoscale.c:
3422         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
3423         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
3424         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
3425         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
3426         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
3427         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
3428         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
3429         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
3430         (vs_image_scale_linear_RGB555):
3431         Support 1x1 images as input and output as for example the BBC HQ new
3432         streams have 1x1 GIFs in the playlists for some reason.
3433
3434 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
3435
3436         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
3437           (try_to_link_1):
3438           If we can't activate one of the decoders we plugged in (such as,
3439           say, musepackdec) for some reason (it might not support push mode,
3440           for example), remove any pad probes that close_pad_link() might
3441           have set up. This makes sure we later don't try to remove a probe
3442           for a pad that doesn't exist any longer, and avoids nast warnings
3443           and probably other things too.
3444
3445 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3446
3447         * gst/typefind/gsttypefindfunctions.c:
3448           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
3449           (plugin_init):
3450           Rework mpeg video stream typefinding a bit more: make sure sequence,
3451           GOP, picture and slice headers appear in the order they should and
3452           that we've in fact at least had one of each; fix picture header
3453           detection; decouple picture and slice header check - don't assume
3454           they're at a fixed offset, there may be extra data in between. Also,
3455           announce varying degrees of probability depending on what we found
3456           exactly (multiple pictures, at least one picture, just sequence and
3457           GOP headers). Finally, in _ensure_data(), take into account that we
3458           might be typefinding smaller amounts of data, such as the first
3459           buffer of a stream, so fall back to the minimum size needed as long
3460           as that's available, instead of erroring out if there's less than
3461           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
3462           fuzzed file from #399342 as valid.
3463
3464 2008-04-30  Michael Smith <msmith@songbirdnest.com>
3465
3466         * ext/theora/theoradec.c:
3467           Cool kids don't divide by zero.
3468           Treat PAR of x:0 as 1:1.
3469           Fixes #530719.
3470
3471 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3472
3473         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
3474           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
3475           (mpeg_video_stream_type_find):
3476           Refactor a bit: use context structure to track parsing offset and
3477           size of available data and make the code a bit clearer. Fixes bad
3478           memory access in #356937.
3479
3480 2008-04-28  Michael Smith <msmith@songbirdnest.com>
3481
3482         * gst/playback/test4.c:
3483         * gst/playback/test5.c:
3484         * gst/playback/test6.c:
3485         * gst/tcp/gstmultifdsink.c:
3486           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
3487           is defined.
3488
3489 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3490
3491         * gst-libs/gst/audio/gstbaseaudiosink.h:
3492         Clarify some docs.
3493
3494         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
3495         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
3496         (gst_base_audio_src_set_slave_method),
3497         (gst_base_audio_src_get_slave_method),
3498         (gst_base_audio_src_set_property),
3499         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
3500         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3501         Add property and methods for selecting the clock slave method in the
3502         source, like in the sink.
3503         We only implement "none" and "re-timestamp" for now.
3504         API: gst_base_audio_src_set_slave_method()
3505         API: gst_base_audio_src_get_slave_method()
3506
3507 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
3508
3509         * gst-libs/gst/rtp/gstrtpbuffer.c:
3510         Fix the docs about the seqnum compare function, it returns a difference.
3511
3512 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
3513
3514         * ext/alsa/gstalsadeviceprobe.c:
3515         (gst_alsa_get_device_list): Don't return before freeing up
3516         the allocated structures.
3517
3518 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
3519
3520         * gst/playback/gstplaybin.c:
3521           Remove obsolete streaminfo code and fix a leak. Fixes #529546
3522
3523 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3524
3525         * ext/ogg/gstoggdemux.c:
3526           Revert the event part, that should not go in.
3527
3528 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3529
3530         * ext/ogg/gstoggdemux.c:
3531           Don't leak GstPluginFeatures when filtering.
3532
3533 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3534
3535         * sys/xvimage/xvimagesink.c:
3536           Add some logging for cases when grabbing the xv failed.
3537
3538 2008-04-21  David Schleef  <ds@schleef.org>
3539
3540         * ext/ogg/gstoggmux.c:
3541           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
3542           packet.  Should conform to what we currently think is the
3543           final Ogg/Dirac muxing spec.
3544
3545 2008-04-21  David Schleef  <ds@schleef.org>
3546
3547         * sys/xvimage/xvimagesink.c:
3548           Fix typo that causes the overlay keying color to bright green
3549           on a 16-bit display.  Dark grey good.  Bright green bad.
3550
3551 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
3552
3553         * ext/gnomevfs/gstgnomevfsuri.c:
3554           Add  FIXME comment about using uri-list for source and sink.
3555
3556 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3557
3558         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
3559         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
3560         vaargs functions to gint. Otherwise the fractions will get 0 set
3561         instead of the correct value on big endian systems. Fixes bug #529018.
3562
3563 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3564
3565         * ext/gnomevfs/gstgnomevfssink.c:
3566         (gst_gnome_vfs_sink_uri_get_protocols):
3567         * ext/gnomevfs/gstgnomevfssrc.c:
3568         (gst_gnome_vfs_src_uri_get_protocols):
3569         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
3570         (gst_gnomevfs_get_supported_uris):
3571         Get the list of supported URI schemes in a threadsafe way and use the
3572         same list for the source and sink.
3573
3574 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3575
3576         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
3577         (gst_gio_get_supported_protocols):
3578         Don't generate a new supported protocols list on each call but cache
3579         it. It's supposed to be static anyway, this way we only leak it once
3580         per process.
3581
3582         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
3583         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
3584         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
3585         (gst_gio_sink_start):
3586         * ext/gio/gstgiosink.h:
3587         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
3588         (gst_gio_src_class_init), (gst_gio_src_finalize),
3589         (gst_gio_src_set_property), (gst_gio_src_get_property),
3590         (gst_gio_src_start):
3591         * ext/gio/gstgiosrc.h:
3592         API: Add "file" properties where one can set a GFile as
3593         source/destination.
3594
3595         Add locking to the properties and use
3596         gst_element_class_set_details_simple() instead of a static
3597         GstElementDetails struct.
3598
3599 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3600
3601         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
3602         (plugin_init):
3603         Add "mpp" and "mp+" as possible extensions for MusePack files.
3604
3605         Add typefinding for MusePack StreamVersion 8 files and include the
3606         stream version in the caps.
3607
3608 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3609
3610         * gst-libs/gst/rtp/gstrtppayloads.c:
3611         (gst_rtp_payload_info_for_name):
3612         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
3613
3614 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
3615
3616         * configure.ac:
3617           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
3618           (NB: this only affects compilation of some of the examples).
3619           Remove some configure.ac cruft that's not needed any longer.
3620
3621 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
3622
3623         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3624         Don't validate the payload if there isn't any.
3625         Fixes #525915
3626
3627 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3628
3629         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
3630         Use g_atomic_int_set() instead of gst_atomic_int_set().
3631
3632 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3633
3634         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3635         Return NULL instead of a gchar * array with one NULL element if we
3636         don't get any supported URI schemes from GIO.
3637
3638 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3639
3640         * gst/audiotestsrc/gstaudiotestsrc.c:
3641           Remove cpp style commented old code.
3642
3643 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3644
3645         * gst/playback/gstdecodebin2.c:
3646           Fix signal docs.
3647
3648 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
3649
3650         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3651           (gst_text_overlay_init):
3652           Fix textoverlay unit test again by making the supposed default
3653           value for the wait-text property the actual default value.
3654           Also fix Since: tag for new property.
3655
3656 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
3657
3658         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
3659           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
3660           (gst_video_format_get_pixel_stride),
3661           (gst_video_format_get_component_width),
3662           (gst_video_format_get_component_height),
3663           (gst_video_format_get_component_offset), (gst_video_format_get_size),
3664           (gst_video_format_convert):
3665           Add guards to these functions to ensure sane input values.
3666
3667         * tests/check/libs/video.c:
3668           Fix unit test not to create caps with width=0 and height=0.
3669
3670 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3671
3672         * docs/design/draft-keyframe-force.txt:
3673         Fix typo.
3674
3675         * gst/playback/gstqueue2.c: (update_buffering),
3676         (gst_queue_handle_src_query):
3677         Set buffering mode in the messages.
3678         Set buffering percent in the query.
3679
3680         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
3681         (do_stream_buffering), (do_download_buffering), (msg_buffering):
3682         Do some more fancy things based on the buffering method in use.
3683
3684 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3685
3686         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
3687         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
3688         (msg_buffering), (main):
3689         Add basic download reports to seek using the new buffering API.
3690
3691 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3692
3693         * gst/playback/gstqueue2.c: (update_buffering),
3694         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
3695         (gst_queue_src_checkgetrange_function):
3696         Include extra buffering stats in the buffering message.
3697         Implement BUFFERING query.
3698
3699         * gst/playback/gsturidecodebin.c: (do_async_start),
3700         (do_async_done), (type_found), (setup_streaming), (setup_source),
3701         (gst_uri_decode_bin_change_state):
3702         Only add decodebin2 when the type is found in streaming mode.
3703         Make uridecodebin async to PAUSED even when we don't have decodebin2
3704         added yet.
3705
3706 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
3707
3708         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3709         Filter cdda from the supported URI schemes. We can't support
3710         musicbrainz tags and everything else one expects from a cdda source
3711         with GIO. Fixes bug #526794.
3712
3713 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
3714
3715         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
3716         (gst_xvimagesink_buffer_alloc):
3717         Fix calculation of 'expected size' for YV12 buffers.
3718         Be a little more verbose in the debug output for buffer-alloc'ed
3719         buffers which turn out to have the wrong size.
3720
3721 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
3722
3723         * NEWS:
3724         * RELEASE:
3725         * gst-plugins-base.doap:
3726           Merge other changes from 0.10.19 release branch.
3727
3728 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3729
3730         * gst-libs/gst/audio/gstbaseaudiosink.c:
3731           (gst_base_audio_sink_class_init):
3732         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3733           (gst_base_audio_src_class_init):
3734         * gst/playback/gstplayback.c: (plugin_init):
3735         * gst/volume/gstvolume.c: (plugin_init):
3736           Work around missing bits of thread-safety on older GLibs some
3737           more to avoid assertions when starting up multiple playbin
3738           objects concurrently (see #512382).
3739
3740 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3741
3742         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
3743           Remove some more fields.
3744
3745 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
3746
3747         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3748
3749         * configure.ac:
3750         Actually build dlls when cross-compiling with mingw32.
3751         Fixes bug #526247.
3752
3753 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3754
3755         * configure.ac:
3756           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
3757
3758 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3759
3760         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
3761         (msg_buffering), (connect_bus_signals), (main):
3762         Add statusbar.
3763         Add buffering support with feedback in the statusbar.
3764
3765 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3766
3767         * ext/ogg/gstoggmux.c:
3768           Fix sample pipeline description.
3769
3770 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
3771
3772         * docs/plugins/Makefile.am:
3773         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3774         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
3775         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3776           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
3777
3778         * docs/plugins/gst-plugins-base-plugins.args:
3779         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3780         * docs/plugins/gst-plugins-base-plugins.interfaces:
3781         * docs/plugins/gst-plugins-base-plugins.prerequisites:
3782         * docs/plugins/inspect/plugin-adder.xml:
3783         * docs/plugins/inspect/plugin-alsa.xml:
3784         * docs/plugins/inspect/plugin-audioconvert.xml:
3785         * docs/plugins/inspect/plugin-audiorate.xml:
3786         * docs/plugins/inspect/plugin-audioresample.xml:
3787         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3788         * docs/plugins/inspect/plugin-cdparanoia.xml:
3789         * docs/plugins/inspect/plugin-decodebin.xml:
3790         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3791         * docs/plugins/inspect/plugin-gdp.xml:
3792         * docs/plugins/inspect/plugin-gnomevfs.xml:
3793         * docs/plugins/inspect/plugin-libvisual.xml:
3794         * docs/plugins/inspect/plugin-ogg.xml:
3795         * docs/plugins/inspect/plugin-pango.xml:
3796         * docs/plugins/inspect/plugin-playback.xml:
3797         * docs/plugins/inspect/plugin-queue2.xml:
3798         * docs/plugins/inspect/plugin-subparse.xml:
3799         * docs/plugins/inspect/plugin-tcp.xml:
3800         * docs/plugins/inspect/plugin-theora.xml:
3801         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3802         * docs/plugins/inspect/plugin-uridecodebin.xml:
3803         * docs/plugins/inspect/plugin-video4linux.xml:
3804         * docs/plugins/inspect/plugin-videorate.xml:
3805         * docs/plugins/inspect/plugin-videoscale.xml:
3806         * docs/plugins/inspect/plugin-videotestsrc.xml:
3807         * docs/plugins/inspect/plugin-volume.xml:
3808         * docs/plugins/inspect/plugin-vorbis.xml:
3809         * docs/plugins/inspect/plugin-ximagesink.xml:
3810         * docs/plugins/inspect/plugin-xvimagesink.xml:
3811           Update introspection data.
3812
3813         * ext/ogg/gstoggmux.c:
3814           Document oggmux.
3815
3816         * gst/playback/gstdecodebin2.c:
3817           Don't use gtk-doc style comment start for private stuff, but make it
3818           formatted like this for consistency.
3819
3820 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3821
3822         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3823         (gst_decode_bin_init), (gst_decode_bin_dispose),
3824         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
3825         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
3826         (analyze_new_pad), (connect_pad), (expose_pad),
3827         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
3828         (gst_decode_group_expose), (gst_decode_group_free),
3829         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
3830         Remove fakesink hack, we can now implement this more elegantly.
3831         Added property to bypass typefinding.
3832         Removed underrun callback and demuxer pad probe, we now use the srcpad
3833         probe to expose groups.
3834         API::sink-caps property
3835
3836         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
3837         Guard against multiple emissions of the no_more_pads signal, which
3838         happens when we are dealing with chained oggs.
3839
3840         * gst/playback/gsturidecodebin.c: (remove_decoders),
3841         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
3842         (setup_source):
3843         For streams, use our own typefind element and plug our queue after it.
3844         We will need this to determine the type of buffering to use for the
3845         queue soon.
3846
3847 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3848
3849         * gst-libs/gst/audio/gstbaseaudiosink.c:
3850         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
3851         Guard against over and underflows because of clock slaving.
3852         When we are using our own clock, still compensate for any calibrations
3853         that we might have done to our clock.
3854
3855 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3856
3857         * ext/theora/theoradec.c: (theora_handle_type_packet),
3858         (theora_dec_chain):
3859         Don't try to do anything fancy with the return code from pushing an
3860         event, it does not have enough information to turn it into a
3861         GST_FLOW_ERROR.
3862
3863 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3864
3865         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
3866         (gst_ogg_demux_chain_elem_pad):
3867         Add small debug line.
3868         Pass return code from the internal decoder instead of the too generic
3869         GST_FLOW_ERROR.
3870
3871 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
3872
3873         * gst-libs/gst/cdda/Makefile.am:
3874         * gst-libs/gst/cdda/base64.c:
3875         * gst-libs/gst/cdda/base64.h:
3876         * gst-libs/gst/cdda/gstcddabasesrc.c:
3877         (gst_cddabasesrc_calculate_musicbrainz_discid):
3878         Use GLib's base64 implementation instead of our own.
3879
3880 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3881
3882         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3883         (gst_ogg_demux_read_chain):
3884         Refix oggdemux, we only have a problem if we failed to find a chain and
3885         we are not EOF.
3886
3887 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3888
3889         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
3890
3891         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3892         (gst_ogg_demux_read_chain):
3893         When we fail to find a BOS page and we and up with no chain, error out
3894         properly instead of segfaulting. Fixes #525665.
3895
3896 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3897
3898         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3899         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
3900         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
3901         no-more-pads...
3902
3903 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3904
3905         * gst/playback/gstqueue2.c: (update_out_rates),
3906         (gst_queue_open_temp_location_file),
3907         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
3908         (gst_queue_handle_src_query), (gst_queue_set_property):
3909         Update the estimated input data when we push out a buffer.
3910         Add some debug info about the temp file.
3911         Only forward src events when we are not using a temp file.
3912         Don't block the duration query, we need to find something better.
3913         Don't leak the temp filename.
3914
3915 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
3916
3917         * configure.ac:
3918         Require GLib 2.12 and liboil 0.3.14.
3919
3920         * gst/volume/gstvolume.c: (volume_process_double):
3921         Unconditionally use liboil 0.3.14 function.
3922
3923 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
3924
3925         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3926         ms-gsm can have arbitrarty sample rates. See #481354.
3927
3928 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3929
3930         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3931         MP4S is generic MPEG-4, not a microsoft variant.
3932
3933 2008-03-27  Michael Smith <msmith@fluendo.com>
3934
3935         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3936           Check the body CRC (if set) when depayloading.
3937           Fixes #522401.
3938
3939 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
3940
3941         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3942           Fix Since: version for new property.
3943
3944 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3945
3946         * gst-libs/gst/rtsp/gstrtspconnection.c:
3947         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3948         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
3949         Don't error when poll_wait returns EAGAIN.
3950
3951 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3952
3953         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
3954         The queue is never filled when there are no buffers in the queue at all.
3955         Fixes #523993.
3956
3957 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3958
3959         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
3960         (init_group), (free_group), (gst_play_bin_init),
3961         (gst_play_bin_finalize), (gst_play_bin_set_uri),
3962         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
3963         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
3964         (gst_play_bin_set_current_video_stream),
3965         (gst_play_bin_set_current_audio_stream),
3966         (gst_play_bin_set_current_text_stream),
3967         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
3968         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
3969         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
3970         (activate_group), (deactivate_group), (setup_next_source),
3971         (save_current_group), (gst_play_bin_change_state):
3972         Update some docs.
3973         Add new locks and conds to protect pipeline creation and group
3974         switching.
3975         Implement the sub-uri property.
3976         Keep track of pending uridecodebin creation and configure the output
3977         pipeline after all streams are configured.
3978         Propagate subtitle encoding to the uridecodebins.
3979         Implement getting the video/audio/visualisation elements.
3980         Use input-selector for stream switching.
3981         If we are asked to do visualisation, prefer to autoplug raw sinks
3982         instead of sinks that accept encoded data.
3983
3984 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3985
3986         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
3987         (gst_play_sink_init), (gst_play_sink_dispose),
3988         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
3989         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
3990         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
3991         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
3992         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
3993         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
3994         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
3995         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
3996         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
3997         * gst/playback/gstplaysink.h:
3998         Add methods to get audio/video/vis elements.
3999         Add methods to set the font description for the overlay.
4000         Remove properties, we're using this element with its methods only.
4001         Add support for subtitles.
4002         Rearrange the locking a bit to not use the object lock for protecting
4003         the pipeline construction.
4004         Try to use the volume and mute property on the sink when its available.
4005         Implement the mute option with volume when the sink does not have a mute
4006         property.
4007         Only add volume element when the sink has no volume property.
4008         Only do visualisations with raw audio pads.
4009
4010 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4011
4012         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
4013         (gst_text_overlay_init), (gst_text_overlay_set_property),
4014         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
4015         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
4016         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
4017         (gst_text_overlay_change_state):
4018         * ext/pango/gsttextoverlay.h:
4019         Add property to configure waiting for text on the textpad or not, with
4020         the default behaviour being the old one (always wait for text before
4021         rendering the video). This default behaviour is usually not the best one
4022         because the text stream can very sparse and could require queueing a lot
4023         of video.
4024         Fix the flushing and EOS handing so that we don't mix up their meaning.
4025
4026 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4027
4028         * gst/playback/gsturidecodebin.c:
4029         (gst_uri_decode_bin_autoplug_factories),
4030         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
4031         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
4032         (gst_uri_decode_bin_set_property),
4033         (gst_uri_decode_bin_get_property), (no_more_pads_full),
4034         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
4035         (proxy_autoplug_factories_signal), (make_decoder),
4036         (source_new_pad), (setup_source):
4037         Add a readonly source property and notify.
4038         Add new lock for protecting the construction of the pipeline.
4039         Keep track of the decodebins we plugged.
4040         Correctly proxy the autoplug signal so that it actually continues.
4041         Proxy subtitle-encoding to the decodebins.
4042
4043 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4044
4045         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
4046         (text_toggle_cb), (update_streams), (main):
4047         Rearrange some buttons in playbin2 and make some other boxes insensitive
4048         when needed.
4049         Add language codes to subtitle selection boxes when we gind the right
4050         tags for the streams.
4051
4052 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4053
4054         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
4055         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
4056         (gst_decode_bin_set_subs_encoding),
4057         (gst_decode_bin_get_subs_encoding),
4058         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
4059         (deactivate_free_recursive):
4060         Protect caps property with the object lock.
4061         Protect encoding property with the object lock.
4062         Keep list of elements we added that have the subtitle-encoding property.
4063         Distribute the subtitle-encoding to all of the elements when it
4064         changes.
4065
4066 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4067
4068         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
4069         Small debug improvement.
4070
4071         * gst-libs/gst/audio/gstbaseaudiosink.c:
4072         (gst_base_audio_sink_render):
4073         Fix bug in determining the sample start/stop position, we want to base
4074         this decision on the fact that we are going forwards or backwards, not
4075         slower or faster. This fixes some ugly resync warnings when playing at
4076         very slow speeds.
4077
4078 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
4079
4080         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
4081         Correctly set the supported URI schemes and don't leave
4082         some schemes in the middle or at the start at NULL.
4083
4084 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
4085
4086         * tests/check/elements/gdpdepay.c:
4087           Make test compile without unused function/variable warnings on PPC.
4088  
4089 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4090
4091         * configure.ac:
4092         * ext/alsa/gstalsamixerelement.c:
4093         (gst_alsa_mixer_element_class_init):
4094         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
4095         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
4096         * ext/cdparanoia/gstcdparanoiasrc.c:
4097         (gst_cd_paranoia_src_class_init):
4098         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
4099         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
4100         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
4101         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
4102         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
4103         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
4104         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
4105         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
4106         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
4107         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
4108         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
4109         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
4110         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
4111         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
4112         (gst_audio_filter_template_class_init):
4113         * gst-libs/gst/audio/gstbaseaudiosink.c:
4114         (gst_base_audio_sink_class_init):
4115         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4116         (gst_base_audio_src_class_init):
4117         * gst-libs/gst/cdda/gstcddabasesrc.c:
4118         (gst_cdda_base_src_class_init):
4119         * gst-libs/gst/interfaces/mixertrack.c:
4120         (gst_mixer_track_class_init):
4121         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4122         (gst_base_rtp_depayload_class_init):
4123         * gst-libs/gst/rtp/gstbasertppayload.c:
4124         (gst_basertppayload_class_init):
4125         * gst/audioconvert/gstaudioconvert.c:
4126         (gst_audio_convert_class_init):
4127         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
4128         * gst/audioresample/gstaudioresample.c:
4129         (gst_audioresample_class_init):
4130         * gst/audiotestsrc/gstaudiotestsrc.c:
4131         (gst_audio_test_src_class_init):
4132         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
4133         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
4134         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
4135         (preroll_unlinked):
4136         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
4137         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
4138         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
4139         * gst/playback/gstqueue2.c: (gst_queue_class_init):
4140         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
4141         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
4142         (gst_stream_selector_class_init):
4143         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
4144         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4145         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4146         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4147         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4148         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4149         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4150         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
4151         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4152         * gst/videotestsrc/gstvideotestsrc.c:
4153         (gst_video_test_src_class_init):
4154         * gst/volume/gstvolume.c: (gst_volume_class_init):
4155         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
4156         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
4157         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
4158         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
4159         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
4160         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
4161         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
4162         static strings (i.e. all). This gives us less memory usage,
4163         fewer allocations and thus less memory defragmentation. Depend
4164         on core CVS for this. Fixes bug #523806.
4165
4166 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4167
4168         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
4169         Filter http and https protocols. GIO/GVfs handles them but it's
4170         impossible to implement iradio/icecast with it. Better use
4171         souphttpsrc or something else for this.
4172
4173         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
4174         If getting the file informations by a query fails try it with the
4175         seek-to-end trick too.
4176
4177 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4178
4179         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
4180         (gst_volume_base_init), (gst_volume_class_init),
4181         (volume_process_double), (volume_process_float),
4182         (volume_transform_ip), (plugin_init):
4183         memset buffers to zero if we get a GAP buffer. We usually see a
4184         buffer as one unit so let's handle it as one and don't care about
4185         volume changes while processing one buffer.
4186         Also clean up some stuff a bit.
4187
4188 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4189
4190         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
4191         (gst_audio_convert_create_silence_buffer),
4192         (gst_audio_convert_transform):
4193         Make audioconvert GAP-aware by outputting silence buffers when the
4194         input has the GAP flag set. This is up to 8x faster.
4195         Based on a patch by Stefan Kost. Fixes bug #517813.
4196
4197 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4198
4199         * gst/volume/gstvolume.c: (volume_process_double):
4200         Use oil_scalarmultiply_f64_ns() for double processing when it's
4201         available at compile time.
4202
4203 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4204
4205         * configure.ac:
4206         Fix lrint/lrintf checks to actually work. These functions are
4207         in libm on Linux at least so try to link to it.
4208
4209 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
4210
4211         * configure.ac:
4212         Back to development - 0.10.18.1
4213
4214 === release 0.10.18 ===
4215
4216 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
4217
4218         * configure.ac:
4219           releasing 0.10.18, "I will follow"
4220
4221 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
4222
4223         * configure.ac:
4224         * win32/common/config.h:
4225         0.10.17.4 pre-release
4226
4227 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4228
4229         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
4230         Use GST_STR_NULL when trying to print strings that could be NULL because
4231         this might crash on some platforms. See #520808.
4232
4233 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4234
4235         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
4236
4237         * gst-libs/gst/rtsp/gstrtspconnection.c:
4238         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
4239         (read_line), (gst_rtsp_connection_read_internal):
4240         Generic Windows fixes that makes libgstrtsp work on Windows when
4241         coupled with the new GstPoll API. See #520808.
4242
4243 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
4244
4245         Patch by: Milosz Derezynski <internalerror at gmail dot com>
4246
4247         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
4248           If seeking to a new position succeeds don't simply return from
4249           create() without creating a buffer. Do this only in the case
4250           seeking to the new position fails. Fixes bug #523054.
4251
4252 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
4253
4254         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
4255           (gst_video_format_from_rgba32_masks):
4256           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
4257           (#522635).
4258
4259         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
4260           Add unit test for the RGB caps parsing and creation, checking for
4261           internal consistency of the new API and consistency of the API with
4262           the old GST_VIDEO_CAPS_* defines.
4263
4264 2008-03-14  David Schleef  <ds@schleef.org>
4265
4266         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
4267           because -base is in freeze.
4268
4269 2008-03-14  David Schleef  <ds@schleef.org>
4270
4271         Patch by: William M. Brack
4272
4273         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
4274
4275 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4276
4277         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4278         (gst_selector_pad_chain):
4279         * gst/playback/gststreamselector.h:
4280         Revert change that caused regression until a real fix is found.
4281         Fixes #522203.
4282
4283 2008-03-12  Michael Smith <msmith@fluendo.com>
4284
4285         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4286         * gst-libs/gst/audio/gstringbuffer.h:
4287           Rename recently added buffer types to make more sense.
4288         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
4289         (gst_alsasink_write):
4290           Adapt for above API changes.
4291           Fixes bug #520523.
4292
4293 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
4294
4295         * win32/common/libgstnetbuffer.def:
4296         Add new symbol gst_netaddress_equal. Fixes bug #521743.
4297
4298 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
4299
4300         * configure.ac:
4301         * win32/common/config.h:
4302         0.10.17.3 pre-release
4303
4304 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4305
4306         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4307         (gst_base_audio_src_create):
4308         Fix duration when no clock was provided. Fixes #520300.
4309
4310 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4311
4312         Patch by: Olivier Crete  <tester at tester ca>
4313
4314         * docs/libs/gst-plugins-base-libs-sections.txt:
4315         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
4316         * gst-libs/gst/netbuffer/gstnetbuffer.h:
4317         Add trivial function to compare GstNetAddress. See #520626.
4318         API: GstNetBuffer::gst_netaddress_equal
4319
4320 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4321
4322         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4323         Update mode property docs, it's deprecated now.
4324
4325 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4326
4327         * gst-libs/gst/rtsp/gstrtspconnection.c:
4328         (gst_rtsp_connection_create):
4329         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
4330         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
4331         * gst/tcp/gstmultifdsink.h:
4332         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
4333         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
4334         Remove GstPollMode from gstpoll constructor.
4335
4336 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
4337
4338         * configure.ac:
4339         * win32/common/config.h:
4340         0.10.17.2 pre-release
4341
4342 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
4343
4344         * gst/Makefile.am:
4345         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
4346         them twice
4347
4348         * win32/common/libgstinterfaces.def:
4349         * win32/common/libgstrtp.def:
4350         Add new API to the defs
4351
4352 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4353
4354         Patch by: Mersad Jelacic  <mersad at axis dot com>
4355
4356         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4357         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4358         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
4359         possible to specify the sample size in bits. (#509637)
4360
4361 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4362
4363         * tests/check/libs/mixer.c:
4364           Add a few simple checks for the new message types.
4365
4366 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4367
4368         * docs/libs/gst-plugins-base-libs-sections.txt:
4369         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
4370           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
4371           (gst_mixer_message_get_type),
4372           (gst_mixer_message_parse_option_changed),
4373           (gst_mixer_message_parse_options_list_changed):
4374         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
4375           (GST_MIXER_MESSAGE_OPTION_CHANGED),
4376           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
4377           (GST_MIXER_MESSAGE_MIXER_CHANGED):
4378           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
4379           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
4380
4381 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4382
4383         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
4384           (gst_mixer_options_get_values):
4385         * gst-libs/gst/interfaces/mixeroptions.h:
4386           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
4387           (_GstMixerOptions), (_GstMixerOptionsClass):
4388           API: add GstMixerOptions::get_values vfunc (#519906)
4389
4390 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4391
4392         * configure.ac:
4393         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
4394         plug-ins are included/excluded. (#498222)
4395
4396 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4397
4398         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4399         Add typefinder for IMelody files, using audio/x-imelody.
4400         See bug #519516.
4401
4402 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4403
4404         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
4405         * ext/alsa/gstalsasink.c: (set_hwparams):
4406         * ext/alsa/gstalsasrc.c: (set_hwparams):
4407         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
4408         * ext/ogg/gstoggmux.h:
4409         * ext/ogg/gstogmparse.c:
4410         * gst-libs/gst/audio/audio.c:
4411         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
4412         * gst-libs/gst/pbutils/missing-plugins.c:
4413         (gst_missing_uri_sink_message_new),
4414         (gst_missing_element_message_new),
4415         (gst_missing_decoder_message_new),
4416         (gst_missing_encoder_message_new):
4417         * gst-libs/gst/rtp/gstbasertppayload.c:
4418         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4419         (gst_rtcp_packet_bye_get_reason):
4420         * gst/audioconvert/gstaudioconvert.c:
4421         * gst/audioresample/gstaudioresample.c:
4422         * gst/ffmpegcolorspace/imgconvert.c:
4423         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
4424         * gst/typefind/gsttypefindfunctions.c:
4425         * gst/videoscale/vs_4tap.c:
4426         * gst/videoscale/vs_4tap.h:
4427         * sys/v4l/gstv4lelement.c:
4428         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
4429         * sys/v4l/v4l_calls.c:
4430         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
4431         (gst_v4lsrc_try_capture):
4432         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
4433         (gst_ximagesink_ximage_new):
4434         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
4435         (gst_xvimagesink_xvimage_new):
4436         * tests/check/elements/audioconvert.c:
4437         * tests/check/elements/audioresample.c:
4438         (fail_unless_perfect_stream):
4439         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
4440         * tests/check/elements/decodebin.c:
4441         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
4442         (setup_gdpdepay_streamheader):
4443         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
4444         (setup_gdppay_streamheader):
4445         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
4446         * tests/check/elements/multifdsink.c: (setup_multifdsink):
4447         * tests/check/elements/textoverlay.c:
4448         * tests/check/elements/videorate.c: (setup_videorate):
4449         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
4450         * tests/check/elements/volume.c: (setup_volume):
4451         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
4452         * tests/check/elements/vorbistag.c:
4453         * tests/check/generic/clock-selection.c:
4454         * tests/check/generic/states.c: (setup), (teardown):
4455         * tests/check/libs/cddabasesrc.c:
4456         * tests/check/libs/video.c:
4457         * tests/check/pipelines/gio.c:
4458         * tests/check/pipelines/oggmux.c:
4459         * tests/check/pipelines/simple-launch-lines.c:
4460         (simple_launch_lines_suite):
4461         * tests/check/pipelines/streamheader.c:
4462         * tests/check/pipelines/theoraenc.c:
4463         * tests/check/pipelines/vorbisdec.c:
4464         * tests/check/pipelines/vorbisenc.c:
4465         * tests/examples/seek/scrubby.c:
4466         * tests/examples/seek/seek.c: (query_positions_elems),
4467         (query_positions_pads):
4468         * tests/icles/stress-xoverlay.c: (myclock):
4469         Correct all relevant warnings found by the sparse semantic code
4470         analyzer. This include marking several symbols static, using
4471         NULL instead of 0 for pointers and using "foo (void)" instead
4472         of "foo ()" for declarations.
4473
4474         * win32/common/libgstrtp.def:
4475         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
4476
4477 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4478
4479         Patch by: José Alburquerque <jaalburqu svn gnome org>
4480
4481         * gst/playback/gstplaybin2.c:
4482           Make the function signature of the _get_*_tags() functions match
4483           the signature of the vfuncs they implement, ie. return a
4484           GstTagList rather than a GstStructure, which is more correct,
4485           even if one is typedef'ed to the other (#518940).
4486
4487 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4488
4489         * gst-libs/gst/rtsp/gstrtspconnection.c:
4490           Don't include unix headers unconditionally (fixes #518037).
4491
4492 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4493
4494         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
4495           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
4496           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
4497           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
4498           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
4499           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
4500           (gst_video_format_is_packed), (video_format_is_packed):
4501           Add unit test that makes sure that the strides, offsets and
4502           sizes returned for the various YUV formats by the new video API
4503           match the old reference implementation in videotestsrc.
4504
4505 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4506
4507         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
4508           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
4509           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
4510           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
4511           (gst_video_format_get_pixel_stride),
4512           (gst_video_format_get_component_width),
4513           (gst_video_format_get_component_height),
4514           (gst_video_format_get_component_offset), (gst_video_format_get_size):
4515         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
4516           (GST_VIDEO_FORMAT_Y42B):
4517           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
4518
4519 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4520
4521         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
4522           YV12 is I420 with swapped components 1 and 2, so the offset of
4523           component 1 for I420 should be the offset for component 2 for YV12
4524           and vice versa.
4525
4526 2008-02-29  Rene Stadler  <mail@renestadler.de>
4527
4528         * sys/v4l/gstv4lelement.c:
4529         Add missing semicolon to fix indentation.
4530
4531 2008-02-29  Julien Moutte  <julien@fluendo.com>
4532
4533         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
4534         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
4535         if we can do SPDIF output.
4536         * ext/alsa/gstalsa.h:
4537         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
4538         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
4539         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
4540         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4541         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
4542         to support AC3, EC3 and IEC958 buffers.
4543
4544 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
4545
4546         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
4547           (gst_mixer_message_parse_mute_toggled),
4548           (gst_mixer_message_parse_record_toggled),
4549           (gst_mixer_message_parse_volume_changed),
4550           (gst_mixer_message_parse_option_changed):
4551           De-cruft and fix message type assertions (NULL is not a really
4552           valid mixer message type string).
4553
4554 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4555
4556         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
4557         When negotiating, actually start from a format that we can support
4558         instead of from the too generic template.
4559
4560 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4561
4562         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
4563         Enable vis setting.
4564
4565         * gst/playback/gstplaysink.c: (gst_play_sink_init),
4566         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
4567         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
4568         (gen_vis_chain):
4569         Implement vis switching while playing.
4570
4571 2008-02-28  David Schleef  <ds@schleef.org>
4572
4573         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
4574
4575 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4576
4577         Patch by: Peter Kjellerstedt  <pkj at axis com>
4578
4579         * gst/tcp/Makefile.am:
4580         * gst/tcp/fdsetstress.c:
4581         * gst/tcp/gstfdset.c:
4582         * gst/tcp/gstfdset.h:
4583         Removed fdset and stress test, they are now known as GstPoll in
4584         core. 
4585
4586         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
4587         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
4588         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
4589         (gst_multi_fd_sink_handle_client_write),
4590         (gst_multi_fd_sink_queue_buffer),
4591         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
4592         (gst_multi_fd_sink_stop):
4593         * gst/tcp/gstmultifdsink.h:
4594         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
4595         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
4596         (gst_tcp_gdp_read_caps):
4597         * gst/tcp/gsttcp.h:
4598         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
4599         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
4600         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
4601         * gst/tcp/gsttcpclientsink.h:
4602         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
4603         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
4604         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
4605         * gst/tcp/gsttcpclientsrc.h:
4606         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
4607         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
4608         * gst/tcp/gsttcpserversink.h:
4609         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
4610         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
4611         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
4612         * gst/tcp/gsttcpserversrc.h:
4613         Port to GstPoll. See #505417.
4614
4615 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4616
4617         Patch by: Peter Kjellerstedt  <pkj at axis com>
4618
4619         * gst-libs/gst/rtsp/gstrtspconnection.c:
4620         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
4621         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
4622         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
4623         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
4624         (gst_rtsp_connection_flush):
4625         * gst-libs/gst/rtsp/gstrtspconnection.h:
4626         Use GstPoll for the rtsp connection. See #505417.
4627
4628 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4629
4630         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
4631         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
4632         Add combo box for visualisations, populate it with a factory list
4633         of all visualisation plugins, configure vis plugin instance in
4634         playbin2. 
4635
4636 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4637
4638         * tests/check/libs/rtp.c: (GST_START_TEST):
4639         Add check for RTP buffer defaults, padding and marker bit API.
4640
4641 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
4642
4643         * gst-libs/gst/cdda/sha1.c: (sha_transform):
4644         Use memcpy() instead of upcasting a byte array to long *. This
4645         fixes an unaligned memory access, resulting in SIGBUS on IA64.
4646         This should be ported to GCheckSum once we can use GLib 2.16.
4647         Partially fixes bug #500833.
4648
4649 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
4650
4651         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
4652           Push tag event after the newsegment event. Log the pointer of
4653           the buffer we're actually going to push rather than the buffer
4654           we're feeding to _make_metadata_writable().
4655
4656 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4657
4658         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4659         Comment smoke typefinder for now. The smokedec plugin needs one
4660         frame per buffer but we have no parser yet, thus it simply crashes
4661         in most situations.
4662
4663 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4664
4665         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4666         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
4667
4668 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4669
4670         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
4671         (plugin_init):
4672         Add midi typefinder, copied from the timidity plugin.
4673
4674 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
4675
4676         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
4677
4678         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
4679         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
4680           (subparse_suite):
4681           Forward slashes at the beginning and end of a line also signify
4682           italics (Fixes: #518162).
4683
4684 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4685
4686         * tests/check/gst-plugins-base.supp:
4687         Add a suppression for a cached value in GIO that wasn't moved
4688         while moving gio from -bad to -base.
4689
4690 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4691
4692         Patch by: Brian Cameron <brian dot cameron at sun dot com>
4693
4694         * configure.ac:
4695         Don't hardcode -Wall and -Werror for configure checks, this fails
4696         with non-GCC compilers. Fixes bug #517991.
4697
4698 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4699
4700         * gst/audioconvert/gstaudioconvert.c:
4701         * gst/audioconvert/gstaudioquantize.c:
4702         * gst/audioconvert/gstaudioquantize.h:
4703           Make audioconvert gap aware. If noiseshaping is used, wait for
4704           noiseshaping to converge before marking as GAP. Fixes #517813.
4705
4706 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4707
4708         * gst/audiotestsrc/gstaudiotestsrc.c:
4709           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
4710
4711 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
4712
4713         * ext/gnomevfs/gstgnomevfssink.c:
4714         (gst_gnome_vfs_sink_handle_event):
4715         Return FALSE when seeking for a new segment fails instead
4716         of silently ignoring the failure and appending every buffer
4717         that comes for the new segment.
4718
4719 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4720
4721         * gst/playback/gstplaysink.c: (find_property),
4722         (gst_play_sink_find_property), (gen_video_chain),
4723         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
4724         Recursively search the sink element for a last-frame property so that we
4725         can also find the property in autovideosink and friends that don't
4726         always proxy the internal sink properties.
4727
4728 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4729
4730         * gst-libs/gst/audio/multichannel.c:
4731           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
4732           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
4733           (gst_audio_set_structure_channel_positions_list),
4734           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
4735           (gst_audio_fixate_channel_positions):
4736           Fix confusing terminology in docs and code: structure fields are
4737           'fields' and not 'properties'.
4738
4739 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4740
4741         * gst-libs/gst/audio/multichannel.c:
4742           (gst_audio_check_channel_positions), (add_list_to_struct):
4743           Give more useful warning messages if one of the channel
4744           layout enums passed to us is invalid and if the "channels"
4745           field in the caps has a GType we don't expect.
4746
4747 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4748
4749         * gst-libs/gst/audio/multichannel.c:
4750           Fix typo in docs blurb.
4751
4752 2008-02-19  Julien Moutte  <julien@fluendo.com>
4753
4754         Patch by: Josep Torra Valles <josep@fluendo.com>
4755
4756         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
4757         typefind lookup to fix typefinding on HD clips.
4758
4759 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4760
4761         * gst/playback/gstscreenshot.c:
4762         * gst/playback/gstscreenshot.h:
4763           Fix up copyright (I rewrote the GStreamer-0.10 code for
4764           this from scratch back in the days).
4765
4766 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4767
4768         * gst/playback/Makefile.am:
4769         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
4770         (create_element), (gst_play_frame_conv_convert):
4771         * gst/playback/gstscreenshot.h:
4772         Add screenshot conversion code from totem.
4773
4774         * gst/playback/gstplay-marshal.list:
4775         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
4776         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
4777         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
4778         Implement frame property to get a color-unconverted snapshot.
4779         Implement convert-frame action signal to get a converted snapshot image.
4780         Configure connection speed in uridecodebin.
4781         Document some more properties.
4782
4783         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4784         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
4785         (gst_play_sink_get_last_frame):
4786         * gst/playback/gstplaysink.h:
4787         Use last-buffer property of the video sink to get a video snapshot.
4788
4789         * tests/examples/seek/seek.c: (shot_cb), (main):
4790         Add snapshot button for playbin2 and use the frame property to save the
4791         frame as a png in the current directory.
4792
4793 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
4794
4795         Patch by: Josep Torra Valles <josep at fluendo dot com>
4796
4797         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
4798         (plugin_init):
4799         Add typefinding support for h264 elementary streams.
4800         Fixes bug #517420.
4801
4802 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
4803
4804         * configure.ac:
4805           Require CVS of core for new API in collectpads.
4806
4807         * gst/adder/gstadder.c:
4808           Use new API to make adder sparse stream aware.
4809
4810 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4811
4812         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
4813         (no_more_pads_cb):
4814         Get the object data correct so that we can remove our channels
4815         correctly.
4816
4817         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
4818         (gen_vis_chain), (gst_play_sink_reconfigure),
4819         (gst_play_sink_request_pad):
4820         Add option to disable async behaviour in the sinks when possible. This
4821         makes it possible to avoid an audio queue when dealing with
4822         visualisations.
4823         Add option to add a queue for the audio path.
4824
4825         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
4826         (main):
4827         Disable the vis checkbox to match the defaults of playbin2.
4828         Only get the stream info when we need to.
4829
4830 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
4831
4832         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
4833         (gst_gio_base_sink_set_stream):
4834         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
4835         (gst_gio_base_src_set_stream):
4836         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
4837         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
4838         Don't use async operations as they require a running main loop.
4839         This makes us block again when closing streams and unable
4840         to mount the enclosing volume of an URI if it isn't yet.
4841
4842 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
4843
4844         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4845         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
4846         (gen_vis_chain), (gst_play_sink_reconfigure),
4847         (gst_play_sink_request_pad):
4848         Move tee in front of the audio and vis pipelines.
4849         Add queue for audio for now.
4850         Add visualisation support.
4851
4852         * tests/examples/seek/seek.c: (main):
4853         Visualisation is by default disabled.
4854
4855 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
4856
4857         * ext/gio/gstgiobasesink.c: (close_stream_cb):
4858         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
4859         Improve debugging a bit.
4860
4861         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
4862         * ext/gio/gstgiosink.h:
4863         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
4864         * ext/gio/gstgiosrc.h:
4865         Try to mount the enclosing volume of a GFile if it isn't mounted
4866         yet. This requires us to wait for an async operation to finish, done
4867         with an nested GMainLoop. Authentication is not supported yet, will
4868         come later.
4869
4870 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4871
4872         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4873         (gst_play_bin_set_property), (gst_play_bin_get_property),
4874         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
4875         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4876         (gst_play_sink_get_mute), (gen_audio_chain):
4877         * gst/playback/gstplaysink.h:
4878         Add mute property.
4879
4880         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4881         (gst_selector_pad_chain):
4882         * gst/playback/gststreamselector.h:
4883         Make sure we forward the event only once.
4884
4885         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
4886         Add and implement the mute button for playbin2.
4887
4888 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4889
4890         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4891
4892         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
4893         Add some more debug info.
4894         Make sure we never return a negative delay. Fixes #516246.
4895
4896 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4897
4898         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
4899           Revert patch that makes the sink hold the object lock when
4900           calling snd_pcm_delay(), since it breaks playback for me.
4901
4902 2008-02-12  Julien Moutte  <julien@fluendo.com>
4903
4904         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
4905         some seek flags when changing rate.
4906
4907 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4908
4909         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4910         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
4911         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
4912         Fix potential leaks.
4913
4914         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
4915         Fix leak when there is no function configured.
4916
4917 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4918
4919         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
4920         (gst_v4lsrc_buffer_finalize):
4921         Correctly chain up the finalize method.
4922
4923 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4924
4925         * ext/gio/gstgiostreamsink.c:
4926         * ext/gio/gstgiostreamsrc.c:
4927         Add documentation and example code for giostreamsink/giostreamsrc.
4928
4929         * tests/check/pipelines/gio.c: (GST_START_TEST):
4930         Ask the GMemoryOutputStream for the data instead of assuming that
4931         the pointer to the data stayed the same. It could've been realloc'ed.
4932
4933 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4934
4935         * ext/gio/gstgiosink.c:
4936         * ext/gio/gstgiosrc.c:
4937         Make the documentation of giosink/giosrc complete, large parts
4938         are based on the gnomevfssink/gnomevfssrc docs.
4939
4940 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4941
4942         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4943         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4944         * docs/plugins/gst-plugins-base-plugins.args:
4945         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4946         * docs/plugins/gst-plugins-base-plugins.interfaces:
4947         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4948         * docs/plugins/gst-plugins-base-plugins.signals:
4949         * docs/plugins/inspect/plugin-adder.xml:
4950         * docs/plugins/inspect/plugin-audioconvert.xml:
4951         * docs/plugins/inspect/plugin-audiorate.xml:
4952         * docs/plugins/inspect/plugin-audioresample.xml:
4953         * docs/plugins/inspect/plugin-decodebin.xml:
4954         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4955         * docs/plugins/inspect/plugin-gdp.xml:
4956         * docs/plugins/inspect/plugin-gio.xml:
4957         * docs/plugins/inspect/plugin-gnomevfs.xml:
4958         * docs/plugins/inspect/plugin-libvisual.xml:
4959         * docs/plugins/inspect/plugin-ogg.xml:
4960         * docs/plugins/inspect/plugin-pango.xml:
4961         * docs/plugins/inspect/plugin-playback.xml:
4962         * docs/plugins/inspect/plugin-queue2.xml:
4963         * docs/plugins/inspect/plugin-subparse.xml:
4964         * docs/plugins/inspect/plugin-theora.xml:
4965         * docs/plugins/inspect/plugin-uridecodebin.xml:
4966         * docs/plugins/inspect/plugin-videorate.xml:
4967         * docs/plugins/inspect/plugin-videoscale.xml:
4968         * docs/plugins/inspect/plugin-volume.xml:
4969         * docs/plugins/inspect/plugin-vorbis.xml:
4970         Add the GIO documentation again and while at that run make update.
4971
4972 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4973
4974         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
4975         * ext/alsa/gstalsasink.c: (set_swparams):
4976         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
4977           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
4978           against libasound >= 1.0.16, since it's been deprecated in
4979           0.10.16, and alignment is always 1 then, apparently. (#512899)
4980
4981 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4982
4983         * gst/playback/gstplaybin.c: (gen_audio_element):
4984         * gst/playback/gstplaysink.c: (gen_audio_chain):
4985           Handle case where we can't create the volume element a bit
4986           better (#514307).
4987
4988 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4989
4990         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
4991         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4992           Add support for https protocol. Fixes #510229.
4993
4994 2008-02-11  Julien Moutte  <julien@fluendo.com>
4995         
4996         Patch by: Alan Peevers <peeves@pacbell.net>
4997
4998         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
4999         lock when calling alsa methods.
5000
5001 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
5002
5003         * gst/typefind/gsttypefindfunctions.c:
5004           Bump rank of jpeg and png typefinders, which will return maximum
5005           probability in the most common cases (thus short-circuiting more
5006           expensive typefinders like the mp3 one for these two quite common
5007           image types).
5008
5009 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5010
5011         * ext/theora/theoraparse.c:
5012         Fix long description of the theora parser to be more verbose than just
5013         the type name.
5014
5015 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5016
5017         Patch by: Branko Čibej <brane at xbc dot nu>
5018
5019         * sys/xvimage/xvimagesink.c:
5020         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
5021         Fixes bug #515654.
5022
5023 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5024
5025         * gst/playback/gstplaybasebin.c:
5026         Set is_dynamic as True if there are elements with both request
5027         and sometimes src pad templates instead of breaking out when it
5028         finds the first pad template that is a src.
5029
5030 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5031
5032         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
5033         (update_streams), (video_combo_cb), (audio_combo_cb),
5034         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
5035         Add some stream switching and volume gui for playbin2.
5036
5037 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5038
5039         * gst/playback/gstplay-marshal.list:
5040         Added marshal for streamselector Tags.
5041
5042         * gst/playback/gstplaybasebin.c: (set_active_source):
5043         Streamselector now selects pads based on the pad object instead of its
5044         name.
5045
5046         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5047         (init_group), (gst_play_bin_init), (get_group), (get_tags),
5048         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
5049         (gst_play_bin_get_text_tags),
5050         (gst_play_bin_set_current_video_stream),
5051         (gst_play_bin_set_current_audio_stream),
5052         (gst_play_bin_set_current_text_stream),
5053         (gst_play_bin_set_property), (gst_play_bin_get_property),
5054         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
5055         Remove option to mute streams with the current-a/v/t property, we have
5056         this functionality in the flags.
5057         Add signals to notify when the number of A/V/T channels changed.
5058         Add action signals to get tags for the A/V/T streams.
5059         Implement setting the current A/V/T stream.
5060         Rearrange some things to simplify stream selection.
5061         Implement volume.
5062
5063         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
5064         (gst_play_sink_get_volume), (gst_play_sink_set_property),
5065         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
5066         (activate_vis), (gst_play_sink_reconfigure):
5067         * gst/playback/gstplaysink.h:
5068         Add and implement volume setting methods.
5069
5070         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
5071         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
5072         (gst_selector_pad_event), (gst_stream_selector_class_init),
5073         (gst_stream_selector_init), (gst_stream_selector_finalize),
5074         (gst_stream_selector_set_property),
5075         (gst_stream_selector_get_property),
5076         (gst_stream_selector_get_linked_pad),
5077         (gst_stream_selector_request_new_pad):
5078         * gst/playback/gststreamselector.h:
5079         Add pad properties for tags and status of pads.
5080         Keep tags on pads.
5081         Make active pad selection based on pad object instead of name.
5082
5083 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
5084
5085         * configure.ac:
5086           Revert last change as we now check in gtk-doc.m4 for sed.
5087
5088 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
5089
5090         * configure.ac:
5091         Find and subst SED when building the docs.
5092
5093 2008-02-08  Julien Moutte  <julien@fluendo.com>
5094
5095         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
5096         (main): Make sure bus signals are reconnected when pressing STOP
5097         and then PLAY again for a parse launch pipeline. Fix a ref leak
5098         on the bus.
5099         * win32/common/config.h: Updated.
5100
5101 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5102
5103         * configure.ac:
5104         Make DISABLE_DEPRECATED defined *only* during CVS, not during
5105         pre-releases or releases.
5106
5107 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5108
5109         * configure.ac:
5110         * ext/gio/Makefile.am:
5111         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
5112         reporting
5113
5114 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5115
5116         * docs/plugins/Makefile.am:
5117         Add the headers which need scanning for the GIO plugin. The rest of
5118         the docs still need migrating.
5119
5120 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5121
5122         * ext/Makefile.am:
5123         * tests/check/Makefile.am:
5124         * tests/check/pipelines/.cvsignore:
5125         Add gio in a few more places.
5126
5127 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5128
5129         * configure.ac:
5130         * ext/Makefile.am:
5131         * tests/check/Makefile.am:
5132         Move gio plugin from -bad and mark as experimental.
5133
5134 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5135
5136         * gst-libs/gst/interfaces/mixeroptions.c:
5137         * gst-libs/gst/interfaces/mixertrack.c:
5138         Comment out a couple of other things which break the build when
5139         GST_DISABLE_DEPRECATED isn't on but -Werror is.
5140
5141 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5142
5143         * docs/libs/gst-plugins-base-libs-sections.txt:
5144           Fix pbutils header.
5145
5146 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5147
5148         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5149         Fix compiler warning.
5150
5151 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5152
5153         Patch by: Peter Kjellerstedt  <pkj at axis com>
5154
5155         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
5156         Clear the addrinfo struct using memset. Fixes #514937.
5157
5158 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5159
5160         * gst/tcp/gstfdset.h:
5161         Remove unused field to same some memory.
5162
5163         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
5164         Mark action signals as such.
5165
5166 2008-02-06  Michael Smith <msmith@fluendo.com>
5167
5168         * ext/theora/theoradec.c: (_theora_granule_frame),
5169         (_inc_granulepos):
5170           Increment granulepos for new-bitstream versions appropriately.
5171           Fixes #514623.
5172
5173 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5174
5175         * tests/examples/seek/seek.c: (do_seek),
5176         (rate_spinbutton_changed_cb), (update_streams), (main):
5177         Remove obsolete stream_time reset after flushing seek, core does that
5178         automatically now.
5179         Improve accuracy of speed spinbutton.
5180         Only do playbin2 stuff when we actually use it.
5181
5182 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5183
5184         * tests/check/Makefile.am:
5185           Revert previous change of the test environment's GST_PLUGIN_PATH.
5186           The problem is not with the plugins, but with element factories
5187           and only occurs if elements are split out from existing plugins
5188           or if plugins change name (see #512740).
5189
5190 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5191
5192         * tests/check/Makefile.am:
5193           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
5194           with the core's plugins first and our local build directories last,
5195           since we might be building against an installed core, and that
5196           core's plugin directory may contain older or other versions of
5197           our own -base plugins, but we really do want to test our local
5198           ones (if there are multiple plugins or element factories with the
5199           same name, those inspected last will trump those read in earlier).
5200           Fixes #512740 for the most part.
5201
5202 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
5203
5204         * configure.ac:
5205         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5206         Use gmtime_r if available as gmtime is not MT-safe.
5207         Fixes bug #511810.
5208
5209 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
5210
5211         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5212         Cast glong to time_t as time_t might have a different type on
5213         other platforms, like FreeBSD, and we get a compiler warning
5214         otherwise. Fixes bug #511825.
5215
5216 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5217
5218         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5219         (get_group), (get_n_pads), (gst_play_bin_get_property),
5220         (pad_added_cb), (no_more_pads_cb), (perform_eos),
5221         (autoplug_select_cb), (deactivate_group):
5222         Remove stream-info, we going for something easier.
5223         Refactor getting the current group.
5224         Implement getting the number of audio/video/text streams.
5225
5226         * gst/playback/gststreamselector.c:
5227         (gst_stream_selector_class_init), (gst_stream_selector_init),
5228         (gst_stream_selector_get_property),
5229         (gst_stream_selector_request_new_pad),
5230         (gst_stream_selector_release_pad):
5231         * gst/playback/gststreamselector.h:
5232         Add property for number of pads.
5233
5234         * tests/examples/seek/seek.c: (set_scale), (update_flag),
5235         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
5236         (text_toggle_cb), (update_streams), (msg_async_done),
5237         (msg_state_changed), (main):
5238         Block slider callback when updating the slider position.
5239         Add gui elements for controlling playbin2.
5240         Add callback for async_done that updates position/duration.
5241
5242 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
5243
5244         * docs/plugins/Makefile.am:
5245         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5246         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5247         * docs/plugins/gst-plugins-base-plugins.hierarchy:
5248         * docs/plugins/gst-plugins-base-plugins.interfaces:
5249         * docs/plugins/gst-plugins-base-plugins.prerequisites:
5250           First round of plugin docs cleansups.
5251
5252         * docs/plugins/inspect/plugin-adder.xml:
5253         * docs/plugins/inspect/plugin-alsa.xml:
5254         * docs/plugins/inspect/plugin-audioconvert.xml:
5255         * docs/plugins/inspect/plugin-audiorate.xml:
5256         * docs/plugins/inspect/plugin-audioresample.xml:
5257         * docs/plugins/inspect/plugin-audiotestsrc.xml:
5258         * docs/plugins/inspect/plugin-cdparanoia.xml:
5259         * docs/plugins/inspect/plugin-decodebin.xml:
5260         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5261         * docs/plugins/inspect/plugin-gdp.xml:
5262         * docs/plugins/inspect/plugin-gnomevfs.xml:
5263         * docs/plugins/inspect/plugin-libvisual.xml:
5264         * docs/plugins/inspect/plugin-ogg.xml:
5265         * docs/plugins/inspect/plugin-pango.xml:
5266         * docs/plugins/inspect/plugin-subparse.xml:
5267         * docs/plugins/inspect/plugin-tcp.xml:
5268         * docs/plugins/inspect/plugin-theora.xml:
5269         * docs/plugins/inspect/plugin-typefindfunctions.xml:
5270         * docs/plugins/inspect/plugin-video4linux.xml:
5271         * docs/plugins/inspect/plugin-videorate.xml:
5272         * docs/plugins/inspect/plugin-videoscale.xml:
5273         * docs/plugins/inspect/plugin-videotestsrc.xml:
5274         * docs/plugins/inspect/plugin-volume.xml:
5275         * docs/plugins/inspect/plugin-vorbis.xml:
5276         * docs/plugins/inspect/plugin-ximagesink.xml:
5277         * docs/plugins/inspect/plugin-xvimagesink.xml:
5278           Regenerate.
5279
5280         * ext/ogg/Makefile.am:
5281         * ext/ogg/gstoggmux.c:
5282         * ext/ogg/gstoggmux.h:
5283           Add header for oggmux. the c-file needs a doc blob still.
5284
5285 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5286
5287         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5288
5289         * gst-libs/gst/rtp/gstrtpbuffer.c:
5290         (gst_rtp_buffer_set_extension_data):
5291         * gst-libs/gst/rtp/gstrtpbuffer.h:
5292         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
5293         Add gst_rtp_buffer_set_extension_data() 
5294         Add a unit test for this addition. Fixes #511478.
5295         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
5296
5297 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5298
5299         * configure.ac:
5300         Back to CVS
5301
5302 === release 0.10.17 ===
5303
5304 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
5305
5306         * configure.ac:
5307           releasing 0.10.17, "Peanut Butter and Jelly"
5308
5309 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5310
5311         * gst-libs/gst/interfaces/mixeroptions.c:
5312         * gst-libs/gst/interfaces/mixertrack.c:
5313         Also remove the conditional registration of the signals
5314         that disappeared with the ABI change in 0.10.14
5315
5316 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5317
5318         * gst-libs/gst/rtsp/gstrtspconnection.c:
5319         Revert patch to gstrtspconnection.c for brown paper bag
5320         release of -base. Re-opens: #511825
5321
5322 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5323
5324         * gst-libs/gst/interfaces/mixeroptions.h:
5325         * gst-libs/gst/interfaces/mixertrack.h:
5326         Change the way these deprecated function pointers are removed
5327         so that the compiled ABI is unconditionally smaller. This 
5328         sets in stone an ABI break that actually occurred when the
5329         things were deprecated in 0.10.14, which seems to be the best
5330         fix as the only known users are oss-mixer and sunaudio-mixer in 
5331         gst-plugins-good.
5332         Fixes: #513018
5333
5334 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
5335
5336         * win32/common/libgstpbutils.def:
5337           Export the two new _get_type() functions which are needed
5338           by the python bindings.
5339
5340 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5341
5342         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5343         Cast glong to time_t as time_t might have a different type on
5344         other platforms, like FreeBSD, and we get a compiler warning
5345         otherwise. Fixes bug #511825.
5346
5347 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5348
5349         * gst-libs/gst/audio/gstaudiofilter.c:
5350         (gst_audio_filter_class_init):
5351         Initialize the GstRingerBuffer class to get it's debug category
5352         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
5353         category and otherwise we get some g_critical(). Fixes bug #512334.
5354
5355 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
5356
5357         * configure.ac:
5358         Back to CVS
5359
5360 === release 0.10.16 ===
5361
5362 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
5363
5364         * configure.ac:
5365           releasing 0.10.16, "Scheduled Interruption"
5366
5367 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
5368
5369         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5370
5371         * gst-libs/gst/rtp/gstrtpbuffer.c:
5372         (gst_rtp_buffer_get_extension_data):
5373         Fix typos and wrong extension check. Fixes #511274.
5374
5375 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
5376
5377         * po/sk.po:
5378         Oops - add new sk.po mentioned in the LINGUAS I just committed
5379
5380 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
5381
5382         * po/LINGUAS:
5383         Add ca translation to the disted list.
5384
5385         * win32/vs6/libgstsdp.dsp:
5386         Convert line endings to CRLF
5387
5388 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
5389
5390         * win32/MANIFEST:
5391         Add win32/vs6/libgstrtsp.dsp to MANIFEST
5392
5393 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5394
5395         * win32/common/libgstsdp.def:
5396         * win32/common/libgstvideo.def:
5397         Add new API declarations
5398
5399 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5400
5401         * ext/theora/gsttheoradec.h:
5402         * ext/theora/gsttheoraparse.h:
5403         * ext/theora/theoradec.c:
5404         * ext/theora/theoraparse.c:
5405         Take a 2nd stab at handling libtheora granulepos changes in the decoder
5406         and parser by inspecting the bitstream version of the incoming data.
5407
5408 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
5409
5410         * configure.ac:
5411         * pkgconfig/Makefile.am:
5412         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
5413         * pkgconfig/gstreamer-audio.pc.in:
5414         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
5415         * pkgconfig/gstreamer-cdda.pc.in:
5416         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
5417         * pkgconfig/gstreamer-fft.pc.in:
5418         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
5419         * pkgconfig/gstreamer-floatcast.pc.in:
5420         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
5421         * pkgconfig/gstreamer-interfaces.pc.in:
5422         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
5423         * pkgconfig/gstreamer-netbuffer.pc.in:
5424         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
5425         * pkgconfig/gstreamer-pbutils.pc.in:
5426         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
5427         * pkgconfig/gstreamer-riff.pc.in:
5428         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
5429         * pkgconfig/gstreamer-rtp.pc.in:
5430         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
5431         * pkgconfig/gstreamer-rtsp.pc.in:
5432         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
5433         * pkgconfig/gstreamer-sdp.pc.in:
5434         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
5435         * pkgconfig/gstreamer-tag.pc.in:
5436         * pkgconfig/gstreamer-video-uninstalled.pc.in:
5437         * pkgconfig/gstreamer-video.pc.in:
5438         Provide one pkg-config file for every gst-plugins-base library.
5439         This makes linking to those libraries much more intuitive and
5440         provides standard pkg-config behaviour for them. Fixes bug #499697.
5441
5442 2008-01-13  David Schleef  <ds@schleef.org>
5443
5444         * gst/videoscale/vs_4tap.c:
5445           Fix valgrind error on 4tap scaling method.
5446
5447 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
5448
5449         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
5450         Include Winsock2.h for VS6 and use a different way initialize
5451         hints structure so it can build with VS6.
5452         * win32/MANIFEST:
5453         * win32/vs6/libgstsdp.dsp:
5454         * win32/common/libgstsdp.def:
5455         Add new files for libgstsdp.
5456         * win32/vs6/grammar.dsp:
5457         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
5458         * win32/vs6/gst_plugins_base.dsw:
5459         * win32/vs6/libgstdecodebin.dsp:
5460         * win32/vs6/libgstdecodebin2.dsp:
5461         * win32/vs6/libgstplaybin.dsp:
5462         * win32/vs6/libgstvolume.dsp:
5463         Add new dependencies to the link list.
5464
5465 2008-01-13  Julien Moutte  <julien@fluendo.com>
5466
5467         * win32/common/config.h:
5468         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
5469         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
5470         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
5471         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
5472         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
5473         * win32/common/interfaces-enumtypes.c:
5474         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
5475         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
5476         (gst_mixer_track_flags_get_type),
5477         (gst_tuner_channel_flags_get_type):
5478         * win32/common/multichannel-enumtypes.c:
5479         (gst_audio_channel_position_get_type):
5480         * win32/common/pbutils-enumtypes.c:
5481         (gst_install_plugins_return_get_type):
5482         * win32/common/pbutils-enumtypes.h: Update/Add generated files
5483         in the win32 build directory.
5484
5485 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5486
5487         * tests/check/Makefile.am:
5488         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
5489
5490         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
5491         * tests/check/elements/playbin.c:
5492         * tests/check/libs/mixer.c: (test_element_interface_supported),
5493         (gst_implements_interface_init):
5494         * tests/check/libs/rtp.c: (GST_START_TEST):
5495         Fix various assignment type mismatches.
5496
5497 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5498
5499         * configure.ac:
5500         * gst-libs/gst/rtsp/Makefile.am:
5501         Add test to see if hstrerror is available or if we need libresolv
5502         (Solaris) for it, then use it in libgstrtsp.
5503
5504 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5505
5506         * gst-libs/gst/tag/Makefile.am:
5507         Fix include path order
5508
5509 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
5510
5511         * gst-libs/gst/pbutils/install-plugins.c:
5512         (gst_install_plugins_context_copy),
5513         (gst_install_plugins_context_get_type):
5514         * gst-libs/gst/pbutils/install-plugins.h:
5515         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
5516         for bindings.
5517
5518 2008-01-11  Michael Smith <msmith@fluendo.com>
5519
5520         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
5521         (_theora_granule_frame), (_theora_granule_start_time),
5522         (theora_dec_sink_convert), (theora_dec_decode_buffer):
5523           Adapt for post-alpha meaning of granulepos, when we
5524           have a newer version of libtheora.
5525         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
5526         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
5527         (theora_enc_is_discontinuous), (theora_enc_chain):
5528           Likewise.
5529         * tests/check/Makefile.am:
5530           Link libtheora into theoraenc test so we can check which version of
5531           libtheora we're testing against.
5532         * tests/check/pipelines/theoraenc.c: (check_libtheora),
5533         (check_buffer_granulepos),
5534         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
5535         (theoraenc_suite):
5536           Adapt tests to check the values that are now defined for theora; make
5537           the tests backwards-adapt the passed values if we're running against an
5538           old libtheora.
5539           Fixes #497964
5540
5541 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
5542
5543         * gst-libs/gst/audio/gstbaseaudiosink.c:
5544           (gst_base_audio_sink_class_init):
5545         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5546           (gst_base_audio_src_class_init):
5547           Ref audio clock class from a thread-safe context to make sure
5548           we're not bit by GObjects lack of thread-safety here (#349410),
5549            however unlikely that may be in practice.
5550
5551 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
5552
5553         * autogen.sh:
5554           Add -Wno-portability to the automake parameters to stop warnings
5555           about GNU make extensions being used. We require GNU make in almost
5556           every Makefile anyway.
5557           
5558         * configure.ac:
5559           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
5560           at the same time is required for per target flags.
5561
5562 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5563
5564         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
5565           Post an error message if we can't pull as many bytes as we need
5566           for the tag. This makes sure the user gets to see a proper error
5567           message if a file with a partial ID3 tag is fed to decodebin, and
5568           not a 'no ID3 tag demuxer' error, which would be confusing
5569           (see #508138).
5570
5571 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5572
5573         * gst-libs/gst/pbutils/descriptions.c: (formats):
5574           Add description strings for ID3, APE, and ICY tags.
5575
5576 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5577
5578         * gst/playback/gstdecodebin.c: (try_to_link_1):
5579           Make sure we error out correctly if we can't activate one of
5580           the elements we've added.  Fixes #508138.
5581           
5582 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5583
5584         Patch by: Bastien Nocera <hadess at hadess net>
5585
5586         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
5587           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
5588           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
5589           the volume is the same for all channels. This works around
5590           some problem in alsa that leaves us with inconsistent state
5591           for some reason (#486840).
5592
5593 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5594
5595         Patch by: Jerone Young <jerone at gmail com>
5596
5597         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
5598           If there's no mixer track by the name of 'Master' or 'Front',
5599           check if there's one called 'PCM' before trying the generic
5600           fallback logic (fixes #506928, where we pick 'Mic' as master
5601           track for the AD1984 card in a Thinkpad T61/X61 laptop).
5602
5603 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5604
5605         * gst/playback/gstplay-enum.c:
5606         (register_gst_autoplug_select_result),
5607         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
5608         (gst_play_flags_get_type):
5609         * gst/playback/gstplay-enum.h:
5610         Add enums for configuration flags.
5611
5612         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5613         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
5614         (gst_play_bin_get_property), (no_more_pads_cb),
5615         (autoplug_select_cb), (gst_play_bin_change_state):
5616         Merge mode with flags.
5617         Add more property getters/setters, defaults and docs.
5618         Add properties to get number of audio/video/text streams.
5619         Create sink object in _init so that we can always rely on it being
5620         there.
5621
5622         * gst/playback/gstplaysink.c: (gst_play_sink_init),
5623         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
5624         (activate_vis), (gst_play_sink_reconfigure),
5625         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
5626         (gst_play_sink_change_state):
5627         * gst/playback/gstplaysink.h:
5628         Use flags to configure the sink pipelines.
5629         Add tee before audio pipeline so that we can use it for visualisations.
5630         Start working on integrating visualisations.
5631         Remove mode, we can do everything with the flags now.
5632         Add method to configue the sink pipeline.
5633
5634 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
5635
5636         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
5637           (check_buffer_timestamp), (check_buffer_duration):
5638           Turn these functions into macros so we can see right away
5639           where the failure occured.
5640
5641 2008-01-05  Julien Moutte  <julien@fluendo.com>
5642
5643         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
5644         debugging information to understand how X calculates the stride
5645         for XvImages.
5646
5647 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5648
5649         * gst/volume/Makefile.am:
5650         * gst/volume/gstvolume.c: (volume_choose_func),
5651         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
5652         (volume_setup):
5653         * gst/volume/gstvolume.h:
5654         Use GstAudioFilter as base class for the volume element instead of
5655         plain GstBaseTransform.
5656
5657 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5658
5659         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
5660         Don't set element details for the abstract GstAudioFilter class.
5661
5662 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
5663
5664         * gst-libs/gst/audio/gstaudiofilter.c:
5665         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
5666         Implement get_unit_size() vmethod of GstBaseTransform.
5667
5668 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
5669
5670         * gst-libs/gst/pbutils/Makefile.am:
5671         * gst-libs/gst/pbutils/pbutils.h:
5672         Use glib-enum generator to have a proper enum GType for
5673         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
5674
5675 2007-12-31  David Schleef  <ds@schleef.org>
5676
5677         * tests/check/Makefile.am:
5678         * tests/check/pipelines/theoraenc.c:
5679           Reenable theoraenc test, which fails on the buildbot but
5680           not locally.
5681
5682 2007-12-31  David Schleef  <ds@schleef.org>
5683
5684         * docs/libs/.cvsignore:
5685         * docs/plugins/.cvsignore:
5686           Add *-undeclared.txt to fix buildbot.
5687
5688 2007-12-31  David Schleef  <ds@schleef.org>
5689
5690         * tests/check/Makefile.am:
5691           Second attempt at disabling theoraenc test long enough to
5692           get buildbot to compile -base.
5693
5694 2007-12-31  David Schleef  <ds@schleef.org>
5695
5696         * tests/check/pipelines/theoraenc.c:
5697           Disable theoraenc test long enough to get the buildbot to
5698           compile a recent -base.
5699
5700 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
5701
5702         * tests/examples/seek/seek.c: (stop_cb):
5703         Make sure we reset the slider value to 0.0 without racing against a
5704         possible g_idle that sets it to something else.
5705
5706 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
5707
5708         * sys/ximage/ximagesink.c:
5709         fix typo
5710
5711 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5712
5713         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
5714         * gst-libs/gst/rtsp/gstrtspdefs.h:
5715         Add Location header so that we can start implementing redirects.
5716         See #506025.
5717
5718 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5719
5720         * gst/subparse/gstssaparse.c:
5721         combine if's
5722
5723 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5724
5725         * gst/subparse/gstssaparse.c:
5726         remove duplicate log message
5727
5728 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
5729
5730         * ext/libvisual/visual.c: (gst_visual_chain):
5731         Fix 'xyz may be used uninitialized' compiler warnings caused
5732         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
5733         abort() in any case but properly report the error.
5734
5735 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5736
5737         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5738         (gst_play_bin_finalize), (gst_play_bin_set_uri),
5739         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5740         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
5741         (autoplug_select_cb), (activate_group), (deactivate_group),
5742         (setup_next_source), (save_current_group),
5743         (gst_play_bin_change_state):
5744         Code cleanups.
5745         Remove next-uri, we can use the uri property just fine.
5746         Fix some crasher.
5747         Unref uridecodebin when switching.
5748         Fix going to READY.
5749
5750         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
5751         (gst_play_sink_init), (gst_play_sink_dispose),
5752         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
5753         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5754         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5755         (gst_play_sink_set_property), (gst_play_sink_get_property),
5756         (gen_video_chain), (gen_text_element), (gen_audio_chain),
5757         (gen_vis_element), (gst_play_sink_get_mode),
5758         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
5759         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
5760         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5761         (gst_play_sink_change_state):
5762         * gst/playback/gstplaysink.h:
5763         Add some locking to make things threadsafe.
5764
5765         * gst/playback/test7.c: (about_to_finish_cb):
5766         Fix test.
5767
5768 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
5769
5770         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
5771           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
5772           (gst_video_scale_transform):
5773           Don't claim to be able to handle/transform caps that can't really
5774           be handled by the currently selected scaling method (here: RGB or
5775           packed YUV with 4-tap method). Also add locking to method property.
5776
5777         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
5778           (test_basetransform_based):
5779           Some test pipelines for the above (not entirely valgrind clean yet
5780           apparently).
5781
5782 2007-12-21  David Schleef  <ds@schleef.org>
5783
5784         * gst-libs/gst/video/video.c:
5785         * gst-libs/gst/video/video.h:
5786           Add additional RGBA and RGB-24 video formats.
5787
5788 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5789
5790         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
5791           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
5792           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
5793         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
5794           (cddabasesrc_suite):
5795           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
5796           deprecated in the future (see #498924).
5797
5798 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5799
5800         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
5801           Don't leak event.
5802
5803 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
5804
5805         * gst-libs/gst/riff/riff-read.c:
5806         Use GST_ROUND_UP_2 macro
5807
5808 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5809
5810         * gst/playback/.cvsignore:
5811           Ignore more.
5812
5813 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5814
5815         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
5816         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
5817           (set_active_source):
5818         * gst/playback/gstplaybasebin.h:
5819         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5820           (setup_sinks), (playbin_set_subtitles_visible):
5821           Make switching off of subtitles work. To avoid all kind of
5822           problems with unlinking of the subtitle input, we just keep
5823           the subtitle inputs linked as they are and tell textoverlay
5824           not to render them. Fixes #373011.
5825           Other subtitle switching issues (esp. when there are both
5826           external and in-stream subtitles) remain. They'll be solved
5827           in playbin2.
5828
5829 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5830
5831         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
5832         Init the pad segment too.
5833
5834 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5835
5836         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
5837         (gst_audioringbuffer_open_device),
5838         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
5839         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5840         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
5841         (gst_audio_sink_create_ringbuffer):
5842         Improve debug output.
5843
5844         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
5845         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
5846         Prevent some functions from doing things and failing when the
5847         ringbuffer is not yet acquired.
5848
5849 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5850
5851         * gst-libs/gst/interfaces/interfaces.h:
5852           Also remove interfaces.h from CVS as it is not needed anymore.
5853
5854 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5855
5856         * gst-libs/gst/interfaces/Makefile.am:
5857           interfaces.h is not used anymore so remove it from the build
5858           process.
5859
5860 2007-12-17  David Schleef  <ds@schleef.org>
5861
5862         * gst/videotestsrc/gstvideotestsrc.c:
5863         * gst/videotestsrc/gstvideotestsrc.h:
5864           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
5865           for testing vertical refresh synchronization.
5866
5867 2007-12-17  David Schleef  <ds@schleef.org>
5868
5869         * docs/libs/gst-plugins-base-libs-sections.txt:
5870         * gst-libs/gst/video/video.c:
5871         * gst-libs/gst/video/video.h:
5872           Add new GstVideFormat enum and write a bunch of helper functions
5873           based around it.
5874
5875 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
5876
5877         * Makefile.am:
5878           Use new common/win32.mak.
5879
5880 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5881
5882         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5883         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5884         Add debug info.
5885         When going from PLAYING to PAUSED, pause the ringbuffer before calling
5886         the parent state change function, just like the audiosink, because the
5887         parent waits for the element to finish its processing before completing
5888         the state change. This makes going to PAUSED a lot snappier.
5889         When going from READY to PAUSED, don't allow the ringbuffer to start
5890         yet.
5891
5892 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5893
5894         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5895         Yet another fix for broken software that produce files with an empty
5896         blockalign field. Instead of completely failing, make a second attempt
5897         at guessing the width/depth by looking at strf->size.
5898
5899 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
5900
5901         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
5902           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
5903         * gst-libs/gst/pbutils/install-plugins.c:
5904           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
5905         * gst-libs/gst/pbutils/missing-plugins.c:
5906           (gst_missing_plugin_message_get_installer_detail),
5907           (gst_missing_encoder_installer_detail_new):
5908         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
5909         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5910           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
5911           avoid compiler warnings (#503930).
5912
5913 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5914
5915         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5916         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
5917         for jpeg video streams.
5918         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
5919         for the above modification.
5920
5921 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
5922
5923         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
5924           (gst_x_overlay_handle_events):
5925           More guards (we don't want klass to end up being NULL).
5926
5927 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
5928
5929         * configure.ac:
5930         * gst/volume/gstvolume.c: (gst_volume_init):
5931           Use new gst_base_transform_set_gap_aware() function as volume
5932           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
5933           for this.
5934
5935 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5936
5937         * tests/examples/seek/seek.c: (msg_segment_done), (main):
5938         Don't go to READY on EOS as this avoids testing of seeking and
5939         restarting after EOS, use the stop button when you want to READY.
5940         Don't try to do a flushing seek in segment-done, it does not make
5941         sense to use this for gapless playback and is not needed.
5942
5943 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5944
5945         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
5946         (reset_rate_timer), (update_in_rates), (update_out_rates),
5947         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5948         (gst_queue_chain), (gst_queue_loop):
5949         Use separate timers for input and output rates.
5950         Pause measuring the output rate when we block for more data.
5951         See #503262.
5952
5953 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5954
5955         * gst/playback/gstqueue2.c: (gst_queue_chain):
5956         Pause the timer to measure the input rate when we block because the
5957         queue is filled. See #503262.
5958
5959 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5960
5961         Patch by: Peter Kjellerstedt  <pkj at axis com>
5962
5963         * gst-libs/gst/rtsp/gstrtspconnection.c:
5964         (gst_rtsp_connection_free):
5965         Close control sockets. Fixes #503440.
5966
5967 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5968
5969         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
5970         Expose the right pad in the right place with the right element.
5971
5972 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5973
5974         * gst-libs/gst/pbutils/descriptions.c: (formats):
5975           Add description for 'private' dts caps (who come up with that name?).
5976
5977 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5978
5979         * Makefile.am:
5980           Add check-exports target and run it with 'make check'.
5981
5982         * configure.ac:
5983           Be stricter about what we export in our libraries: change regexp so that
5984           we only export _gst_foo(), but not __gst_foo().
5985
5986         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
5987         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
5988           Change internal functions to __gst_foo so they dont' get exported.
5989
5990         * win32/common/libgstaudio.def:
5991           Add missing symbols.
5992
5993 2007-12-11  David Schleef  <ds@schleef.org>
5994
5995         * ChangeLog: remove conflict markers
5996
5997 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
5998
5999         * ext/gnomevfs/Makefile.am:
6000         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
6001           Use gst_tag_freeform_string_to_utf8() here, which also takes
6002           into account any character sets specified by the user via
6003           environment variables.
6004
6005 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
6006
6007         * gst/audioconvert/Makefile.am:
6008         Also link to libm.
6009
6010 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
6011
6012         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6013         No need for floating point operations here. avoids having to link
6014         against the math library too.
6015
6016 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
6017
6018         * gst-libs/gst/pbutils/descriptions.c: (formats),
6019           (format_info_get_desc):
6020         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
6021           (GST_START_TEST):
6022           Add one or two missing formats.  Generate ADPCM description
6023           dynamically depending on layout/format.
6024
6025 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
6026
6027         * configure.ac:
6028           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
6029
6030 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
6031
6032         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
6033
6034         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
6035           Some .srt files start with chunk number 0 and not chunk number 1,
6036           recognise and accept those as well (fixes #502497).
6037
6038         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
6039           (test_src):
6040           Add unit test for the above.
6041
6042 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
6043
6044         * gst/playback/gstplay-enum.c:
6045         (register_gst_autoplug_select_result),
6046         (gst_autoplug_select_result_get_type):
6047         * gst/playback/gstplay-enum.h:
6048         Add missing files.
6049
6050 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
6051
6052         * gst/playback/Makefile.am:
6053         Group decodebin2 and uridecodebin into the same plugin so that they
6054         can share the GEnumType.
6055
6056         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
6057         (_gst_select_accumulator), (gst_decode_bin_class_init),
6058         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
6059         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
6060         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
6061         Add signal to sort factories instead of the more awkward autoplug-select
6062         signal.
6063         Modify autoplug_select so that we can try, skip or expose the
6064         autopluggin of an element on a pad.
6065
6066         * gst/playback/gstfactorylists.c: (compare_ranks),
6067         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
6068         (element_filter), (gst_factory_list_get_elements),
6069         (gst_factory_list_debug), (gst_factory_list_filter):
6070         * gst/playback/gstfactorylists.h:
6071         Simplify the API, allow getting elements based on mask.
6072
6073         * gst/playback/gstplay-marshal.list:
6074         Add some more marshallers.
6075
6076         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
6077         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
6078         (autoplug_select_cb), (activate_group):
6079         Add support for managing non-raw sinks by providing a custom element and
6080         sink list to decodebin2.
6081         Try to plug non-raw sinks when decodebin2 using autoplug-select of
6082         decodebin2.
6083
6084         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
6085         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
6086         * gst/playback/gstplaysink.h:
6087         Add support for raw and non-raw sinks. 
6088         Add support to force sinks selected by playbin2.
6089         Don't plug raw converters for non-raw sinks.
6090
6091         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
6092         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
6093         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
6094         (plugin_init):
6095         Use right accumulators.
6096         Proxy new signal.
6097
6098 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
6099
6100         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6101         Use runnning time as the base time instead of the timestamp.
6102         Spotted by Saur on IRC.
6103
6104 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
6105
6106         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6107         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
6108
6109 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
6110
6111         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
6112         (gst_ogg_demux_read_chain):
6113         If we find a new serial number but it does not contain a BOS page, make
6114         sure we initialize the chain to NULL because else we will try to scan it
6115         and crash. Fixes #500763
6116
6117 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
6118
6119         * gst/playback/Makefile.am:
6120         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
6121         (get_feature_array), (decoders_filter), (sinks_filter),
6122         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
6123         (gst_factory_list_filter):
6124         * gst/playback/gstfactorylists.h:
6125         Refactor some common code to filter factories and check caps compat.
6126
6127         * gst/playback/gstdecodebin.c:
6128         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6129         (gst_decode_bin_init), (gst_decode_bin_dispose),
6130         (gst_decode_bin_autoplug_continue),
6131         (gst_decode_bin_autoplug_factories),
6132         (gst_decode_bin_autoplug_select), (analyze_new_pad),
6133         (find_compatibles):
6134         * gst/playback/gstplaybin.c:
6135         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
6136         (gst_play_bin_init), (gst_play_bin_finalize),
6137         (autoplug_factories_cb), (activate_group):
6138         * gst/playback/gstqueue2.c:
6139         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
6140         (proxy_autoplug_continue_signal),
6141         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
6142         (proxy_drained_signal):
6143         Add some more debug info and use factor filtering code.
6144
6145 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
6146
6147         * gst/audiotestsrc/gstaudiotestsrc.c:
6148         * gst/volume/gstvolume.c:
6149         * gst/volume/gstvolume.h:
6150           Add GAP-flag support.
6151
6152 2007-11-24  Julien MOUTTE  <julien@moutte.net>
6153
6154         * tests/examples/seek/seek.c: (main): Increase the range of the
6155         rate selector as I would like to test QOS behavior at higher
6156         forward and reverse playback speed like say 64x.
6157
6158 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
6159
6160         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6161         (audioresample_query), (audioresample_query_type),
6162         (gst_audioresample_set_property):
6163         Implement latency query.
6164
6165 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
6166
6167         * gst-libs/gst/audio/gstbaseaudiosink.c:
6168         (gst_base_audio_sink_drain):
6169         Our EOS time contains the base_time, _wait_eos() expects a running_time
6170         so we have to subtract the base_time again before calling the function.
6171         This fixes an EOS regression where the base_time was added twice and EOS
6172         took longer and longer in certain situations.
6173         Fixes #498767.
6174
6175 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
6176
6177         * docs/libs/gst-plugins-base-libs-sections.txt:
6178         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
6179         (gst_base_audio_sink_set_provide_clock),
6180         (gst_base_audio_sink_get_provide_clock),
6181         (gst_base_audio_sink_set_slave_method),
6182         (gst_base_audio_sink_get_slave_method),
6183         (gst_base_audio_sink_set_property),
6184         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
6185         (gst_base_audio_sink_none_slaving),
6186         (gst_base_audio_sink_handle_slaving):
6187         * gst-libs/gst/audio/gstbaseaudiosink.h:
6188         Expose methods for some object properties so that subclasses can more
6189         easily configure them.
6190         Added slave method none, that completely disables slaving to the
6191         internal clock.
6192         API: gst_base_audio_sink_set_provide_clock()
6193         API: gst_base_audio_sink_get_provide_clock()
6194         API: gst_base_audio_sink_set_slave_method()
6195         API: gst_base_audio_sink_get_slave_method()
6196
6197         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6198         (gst_base_audio_src_set_provide_clock),
6199         (gst_base_audio_src_get_provide_clock),
6200         (gst_base_audio_src_set_property),
6201         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
6202         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6203         Expose methods for some object properties so that subclasses can more
6204         easily configure them.
6205         API: gst_base_audio_src_set_provide_clock()
6206         API: gst_base_audio_src_get_provide_clock()
6207
6208 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
6209
6210         Patch by: Joe Peterson <lavajoe at gentoo dot org>
6211
6212         * gst-libs/gst/sdp/gstsdpmessage.c:
6213         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
6214
6215 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
6216
6217         * tests/check/libs/fft.c: (GST_START_TEST):
6218         Fix scaling to really have dB instead of something else.
6219
6220 2007-11-19  Julien MOUTTE  <julien@moutte.net>
6221
6222         * tests/examples/seek/seek.c: (main): There's a nice macro to check
6223         GTK version, use it.
6224
6225 2007-11-19  Julien MOUTTE  <julien@moutte.net>
6226
6227         * tests/examples/seek/seek.c: (main): Try to support stable version
6228         of GTK.
6229
6230 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
6231
6232         * gst/playback/README:
6233         * gst/playback/test7.c:
6234           Fix the build + little README update.
6235
6236 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6237
6238         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
6239         Add playbin2 seek pipeline.
6240
6241 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6242
6243         * gst/playback/Makefile.am:
6244         * gst/playback/gstplayback.c: (plugin_init):
6245         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
6246         (eos_cb), (about_to_finish_cb), (main):
6247         Add playbin2.
6248         Added gapless playback example.
6249
6250         * gst/playback/gstplaybasebin.c:
6251         * gst/playback/gstplaybasebin.h:
6252         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
6253         * gst/playback/gstqueue2.c:
6254         * gst/playback/test.c:
6255         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6256         (pad_removed_cb):
6257         * gst/playback/gststreaminfo.h:
6258         Change email.
6259
6260         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
6261         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
6262         (gst_play_bin_dispose), (gst_play_bin_set_uri),
6263         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
6264         (gst_play_bin_get_property), (gst_play_bin_handle_message),
6265         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
6266         (drained_cb), (unlink_group), (activate_group),
6267         (setup_next_source), (gst_play_bin_change_state),
6268         (gst_play_bin2_plugin_init):
6269         Added raw first version of playbin2. Does chained oggs and gapless
6270         playback fine. No support for raw sinks yet. No visualisations or
6271         subtitles yet.
6272
6273         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
6274         (gst_play_sink_class_init), (gst_play_sink_init),
6275         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
6276         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
6277         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
6278         (gst_play_sink_set_property), (gst_play_sink_get_property),
6279         (post_missing_element_message), (free_chain), (add_chain),
6280         (activate_chain), (gen_video_chain), (gen_text_element),
6281         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
6282         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
6283         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
6284         (gst_play_sink_send_event), (gst_play_sink_change_state):
6285         * gst/playback/gstplaysink.h:
6286         Added Element that abstracts the sinks and their pipelines for playbin2.
6287
6288 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6289
6290         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
6291         (gst_selector_pad_class_init), (gst_selector_pad_init),
6292         (gst_selector_pad_finalize), (gst_selector_pad_reset),
6293         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
6294         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
6295         (gst_selector_pad_chain), (gst_stream_selector_get_type),
6296         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
6297         (gst_stream_selector_init), (gst_stream_selector_set_property),
6298         (gst_stream_selector_get_linked_pad),
6299         (gst_stream_selector_getcaps),
6300         (gst_stream_selector_is_active_sinkpad),
6301         (gst_stream_selector_activate_sinkpad),
6302         (gst_stream_selector_get_linked_pads),
6303         (gst_stream_selector_request_new_pad),
6304         (gst_stream_selector_release_pad):
6305         * gst/playback/gststreamselector.h:
6306         Improve streamselector, make it select and unselect the current pad more
6307         intelligently. 
6308         Subclass GstPad for the sinkpads of the selector.
6309         Handle segments more correctly.
6310         Fix caps negotiation.
6311         Implement release_pad.
6312
6313 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6314
6315         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6316         (gst_decode_group_check_if_drained), (source_pad_event_probe),
6317         (remove_fakesink):
6318         Add drained signal fired when decodebin finishes decoding the data.
6319         Remove deprecated STATE_DIRTY message.
6320
6321         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6322         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
6323         (analyse_source), (proxy_drained_signal), (make_decoder),
6324         (source_new_pad), (value_list_append_structure_list),
6325         (handle_redirect_message), (handle_message):
6326         Proxy the new drained signal.
6327         Handle pad removed from decodebin.
6328         Handle redirect messages by sorting multiple redirections based on the
6329         connection speed.
6330
6331 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6332
6333         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6334
6335         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
6336         Fix leaking headers. Fixes #496761.
6337
6338 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6339
6340         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6341
6342         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
6343         (gst_ximagesink_change_state):
6344         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
6345         Don't leak the PAR on errors. Fixes #496731.
6346
6347 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
6348
6349         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
6350           (gst_tag_from_id3_user_tag):
6351           Add mapping for audio cd discid tags, so we can extract
6352           them from tags as well (see #347848). Also compare identifiers
6353           in ID3v2 TXXX frames in a case-insensitive way to increase
6354           compatibility when reading tags (discid vs. DiscID vs. DiscId).
6355
6356 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6357
6358         * gst-plugins-base.doap:
6359         Oops, fix the release name.
6360
6361 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6362
6363         * gst-plugins-base.doap:
6364         Add 0.10.15 release
6365
6366 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6367
6368         * configure.ac:
6369         Back to CVS
6370
6371 === release 0.10.15 ===
6372
6373 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
6374
6375         * configure.ac:
6376           releasing 0.10.15, "No need to argue"
6377
6378 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
6379
6380         * win32/vs6/libgstfft.dsp:
6381         Convert line endings to DOS.
6382
6383 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
6384
6385         * win32/vs6/gst_plugins_base.dsw:
6386         * win32/vs6/libgstfft.dsp:
6387         * win32/MANIFEST:
6388         Add a project file for fft plugin and remove socket
6389         based plugin which don't build from the workspace.
6390         * win32/vs6/libgstaudio.dsp:
6391         * win32/vs6/libgstrtp.dsp:
6392         * win32/vs6/libgsttag.dsp:
6393         Convert line endings back to DOS.
6394         Fixes #496724
6395
6396 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6397
6398         * win32/vs6/libgstinterfaces.dsp:
6399         * win32/vs6/libgstrtsp.dsp:
6400         Convert line endings back to DOS
6401
6402 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6403
6404         * gst-libs/gst/fft/kiss_fft_f32.h:
6405         * gst-libs/gst/fft/kiss_fft_f64.h:
6406         * gst-libs/gst/fft/kiss_fft_s16.h:
6407         * gst-libs/gst/fft/kiss_fft_s32.h:
6408         Don't include malloc.h which doesn't exist on Mac OSX.
6409         Instead, pull in glib.h and use g_malloc/g_free for 
6410         consistency. Fixes: #496548
6411
6412 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
6413
6414         * gst/playback/gstdecodebin2.c:
6415           Dont leak ghostpad. Fixes #475451.
6416
6417 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
6418
6419         * docs/design/design-decodebin.txt:
6420         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6421         Update some more docs and comments.
6422
6423 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6424
6425         Patch by: Sebastien Moutte  <sebastien moutte net>
6426
6427         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
6428           (gst_rtcp_unix_to_ntp):
6429         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
6430           Fix some C99-isms and and a missing function that some versions of
6431           MSVC don't like too much (#494346).
6432
6433         * win32/vs6/gst_plugins_base.dsw:
6434         * win32/vs6/libgstaudio.dsp:
6435         * win32/vs6/libgstrtp.dsp:
6436         * win32/vs6/libgsttag.dsp:
6437           Update vs6 projects files (#494346).
6438
6439 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6440
6441         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6442
6443         * win32/common/libgstaudio.def:
6444         * win32/common/libgstcdda.def:
6445         * win32/common/libgstinterfaces.def:
6446         * win32/common/libgstnetbuffer.def:
6447         * win32/common/libgstpbutils.def:
6448         * win32/common/libgstrtp.def:
6449         * win32/common/libgstrtsp.def:
6450         * win32/common/libgsttag.def:
6451         * win32/common/libgstvideo.def:
6452           More missing symbols to export (fixes #493986).
6453
6454 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
6455
6456         * docs/libs/gst-plugins-base-libs-sections.txt:
6457         * gst-libs/gst/fft/gstfftf32.c:
6458         * gst-libs/gst/fft/gstfftf32.h:
6459         * gst-libs/gst/fft/gstfftf64.c:
6460         * gst-libs/gst/fft/gstfftf64.h:
6461         * gst-libs/gst/fft/gstffts16.c:
6462         * gst-libs/gst/fft/gstffts16.h:
6463         * gst-libs/gst/fft/gstffts32.c:
6464         * gst-libs/gst/fft/gstffts32.h:
6465         * tests/check/libs/fft.c: (GST_START_TEST):
6466         Remove the magnitude and phase calculation functions as these have
6467         very special use cases and can't even be used for the spectrum
6468         element. Also adjust the docs to mention some properties of the used
6469         FFT implemention, i.e. how the values are scaled. Fixes #492098.
6470
6471 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6472
6473         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
6474           (finish_source):
6475           Avoid crash when there are external subtitles (fixes #491722).
6476
6477 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
6478
6479         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
6480         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
6481           'Could not open resource for writing' is not an acceptable
6482           error message when we can't open the audio device (see #492334),
6483           even less so when we're trying to open it to record something.
6484
6485 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6486
6487         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6488
6489         * win32/common/libgstrtp.def:
6490           Add some more missing symbols (#492813).
6491
6492 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6493
6494         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
6495
6496         * tests/check/elements/audioconvert.c: (verify_convert):
6497           Add check to make sure that the out caps have a channel layout
6498           set on them where they should have one.
6499
6500 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6501
6502         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
6503
6504         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
6505         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
6506           Include our own _stdint.h instead of sys/types.h, makes MingW happy
6507           (#492306).
6508
6509         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
6510           Use _pipe directly, GLib doesn't have a pipe() macro any longer
6511           (it disappeared in GLib 2.14.0) (#492306).
6512
6513         * gst-libs/gst/sdp/Makefile.am:
6514         * gst-libs/gst/sdp/gstsdpmessage.c:
6515           Fix includes and LIBS for win32/Mingw (#492306).
6516
6517         * tests/examples/dynamic/addstream.c (pause_play_stream):
6518           Use more portable g_usleep() instead of sleep() (#492306).
6519
6520 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6521
6522         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6523
6524         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
6525           (gst_ring_buffer_parse_caps):
6526           Return NULL instead of an enum that happens to be 0, fixes warning
6527           on MSVC (#492114).
6528
6529         * gst-libs/gst/audio/gstringbuffer.h:
6530           No trailing commas in enum list (for gcc-2.9x).
6531
6532         * gst/videotestsrc/videotestsrc.c: (random_char):
6533           Make information loss explicit instead of implicitly truncating to
6534           eight bits via the return value.  Fixes runtime error on MSVC when
6535           using the debug CRT (#492114).
6536
6537         * win32/common/config.h.in:
6538           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
6539
6540         * win32/common/libgstinterfaces.def:
6541         * win32/common/libgstrtp.def:
6542           Export a few more symbols (#492114).
6543
6544 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
6545
6546         * gst-libs/gst/audio/audio.c:
6547         * gst-libs/gst/audio/audio.h:
6548           Readd the deprecation guards, but preserve compilability.
6549
6550 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6551
6552         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
6553           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
6554           Preserve channel layout when fixating the number of channels in the
6555           output caps, or make sure there's a suitable channel position layout
6556           set on the caps if required. Fixes #430677.
6557
6558 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6559
6560         * tests/check/elements/decodebin.c: (test_text_plain_streams):
6561           Make sure the pipeline really operates in push mode as it should
6562           in this case.
6563
6564 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6565
6566         * gst-libs/gst/audio/audio.h:
6567           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
6568           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
6569           (ie. normal cvs builds) will fail.
6570
6571 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
6572
6573         * docs/libs/Makefile.am:
6574         * gst-libs/gst/audio/audio.c:
6575         * gst-libs/gst/audio/audio.h:
6576         * gst-libs/gst/interfaces/mixer.c:
6577           tell gtk-doc about the deprecation guard. Apply more doc fixes.
6578
6579 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6580
6581         * tests/check/libs/audio.c: (init_value_to_channel_layout),
6582           (test_channel_layout_value_intersect), (audio_suite):
6583           Add simple unit test to make sure GstValue intersection
6584           of channel layouts works the way I think it does.
6585
6586 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6587
6588         * docs/libs/gst-plugins-base-libs-sections.txt:
6589         * gst-libs/gst/audio/gstaudiofilter.h:
6590         * gst-libs/gst/interfaces/mixer.h:
6591         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6592         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6593         * gst-libs/gst/sdp/gstsdpmessage.c:
6594           Fix the docs according to what gtk-doc complained about.
6595
6596 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6597
6598         * tests/icles/stress-playbin.c:
6599           Fix the build.
6600
6601 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
6602
6603         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
6604         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6605           Post nice/more useful error message if we don't have a decoder for
6606           the primary type.
6607
6608 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6609
6610         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
6611         Be a bit more useful, unblock the pads after we fired the no-more-pads
6612         signal so that we can use the signal to inspect and connect all pads
6613         without having to keep extra state outside of decodebin.
6614
6615 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6616
6617         * gst/playback/gsturidecodebin.c:
6618         (gst_uri_decode_bin_autoplug_continue),
6619         (gst_uri_decode_bin_class_init), (no_more_pads_full):
6620         Implement default signal handler so that we return TRUE when nothing is
6621         connected.
6622
6623 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
6624
6625         * gst-libs/gst/riff/riff-media.c:
6626         (gst_riff_wavext_add_channel_layout),
6627         (gst_riff_wave_add_default_channel_layout),
6628         (gst_riff_wavext_get_default_channel_mask),
6629         (gst_riff_create_audio_caps):
6630         Use the ALSA channel layout as default for wav files without channel
6631         layout information. This fixes playback of chan-id.wav on 5.1 systems
6632         for example. Also refactor the channel layout setting a bit and add
6633         more default channel orders. Fixes #489010.
6634
6635 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
6636
6637         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
6638           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
6639           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
6640           instead.
6641
6642 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
6643
6644         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6645         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
6646         (gst_decode_bin_set_subs_encoding),
6647         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
6648         (gst_decode_bin_get_property), (analyze_new_pad):
6649         Move subtitle encoding property to decodebin2 so that it can set the
6650         property value on all elements that it autoplugs and that require it.
6651         Make caps refcounting more consistent in get/set.
6652
6653         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
6654         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
6655         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
6656         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
6657         (proxy_autoplug_continue_signal),
6658         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
6659         (make_decoder):
6660         Proxy properties and relevant signals from the internal decodebin.
6661         Make properties MT safe.
6662
6663 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
6664
6665         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
6666         * gst-libs/gst/tag/tags.c:
6667           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
6668           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
6669
6670         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
6671           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
6672
6673         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
6674           (gst_tag_to_vorbis_comments):
6675           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
6676           just mapping everything I found in the wild) (#414539).
6677
6678 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
6679
6680         Inspired by patch of: René Stadler <mail at renestadler dot de>
6681
6682         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6683         (gst_decode_bin_autoplug_continue),
6684         (gst_decode_bin_autoplug_factories),
6685         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
6686         (find_compatibles):
6687         * gst/playback/gstplay-marshal.list:
6688         Remove the autoplug-sort signal and replace it with a binding friendly
6689         autoplug-select signal.
6690         Add an autoplug-factories signal that can be used to generate a list of
6691         factories to try to autoplug.
6692         Add the GstPad to the autoplugging signal args as it might be needed to
6693         make a good factory selection.
6694         Fix up the marshallers for this. Fixes #407282.
6695
6696 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
6697
6698         * gst-libs/gst/tag/gsttagdemux.c:
6699           Don't abort with an assertion if we receive a seek event with
6700           a start type of NONE (see launchpad bug #155878).
6701
6702 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
6703
6704         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
6705         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
6706         (gst_ximagesink_change_state), (gst_ximagesink_reset):
6707         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
6708         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
6709         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
6710         Make sure that before we clean up the X resources, we shutdown and join
6711         the event thread.
6712         Also make sure the event thread does not shut down immediatly after
6713         startup because the running variable is not yet correctly set.
6714         Fixes #378770. 
6715
6716 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6717
6718         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
6719         Make the window for a race in typefind and shutting down smaller until
6720         we figure out the right locking here. Avoids #485753 usually.
6721
6722         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
6723         Remove unneeded lock causing a race in typefind and shutting down.
6724         Fixes #485753.
6725
6726         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
6727         Also remove sinks when going to NULL because we might not complete the
6728         state change to PAUSED, causing the PAUSED->READY state change not to
6729         happen.
6730
6731 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6732
6733         * gst-libs/gst/audio/gstbaseaudiosink.c:
6734         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
6735         Also explicitly release the ringbuffer when going to NULL because it
6736         is required in the setcaps function, before the state change to PAUSED
6737         completes.
6738
6739 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
6740
6741         * tests/icles/.cvsignore:
6742         * tests/icles/Makefile.am:
6743         * tests/icles/stress-playbin.c:
6744           Does what it says on the tin.
6745
6746 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
6747
6748         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
6749         Fix queue negotiation. See #486758.
6750
6751 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
6752
6753         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
6754         (gst_xvimagesink_xwindow_new),
6755         (gst_xvimagesink_update_colorbalance),
6756         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
6757
6758         Fix handling of some of the X atoms. If the last parameter is True,
6759         XInternAtom won't create the atom if it doesn't exist, and therefore
6760         might return None. This causes X errors on Xv implementations that
6761         don't provide the colour balance attributes.
6762
6763 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6764
6765         * gst-libs/gst/tag/gstvorbistag.c:
6766         * tests/check/libs/tag.c:
6767           Extract vorbis comment LICENSE tags correctly.
6768
6769 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6770
6771         Patch by: Jason Kivlighn  <jkivlighn gmail com>
6772
6773         * gst-libs/gst/tag/gstid3tag.c:
6774         * tests/check/libs/tag.c:
6775           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
6776
6777 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
6778
6779         * gst-libs/gst/tag/gsttagdemux.c:
6780           Don't error out when a buggy downstream element doesn't
6781           handle the newsegment event we send properly (especially
6782           not without posting a meaningful error message on the
6783           bus). See bug #471370 and launchpad bug #136264.
6784
6785 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
6786
6787         * gst-libs/gst/audio/gstbaseaudiosink.c:
6788         (gst_base_audio_sink_drain):
6789         Use new basesink method to make our EOS drain interruptable.
6790
6791 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
6792
6793         * gst-libs/gst/rtp/gstrtppayloads.c:
6794         Fix silly search-replace oversight.
6795
6796 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
6797
6798         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6799
6800         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6801         (gst_basertppayload_set_outcaps):
6802         Fix caps memleak. Fixes #484989.
6803
6804
6805 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6806
6807         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6808         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
6809         Fix debug output.
6810
6811 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6812
6813         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6814         (gst_base_audio_src_create):
6815         Also handle the case where there is no clock set on the audio source,
6816         like in the unit tests.
6817
6818 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
6819
6820         * gst-libs/gst/rtp/gstrtppayloads.c:
6821         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
6822         to avoid compiler warnings
6823
6824 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6825
6826         * gst/playback/gstdecodebin.c: (type_found),
6827         (gst_decode_bin_change_state):
6828         * gst/playback/gstdecodebin2.c: (type_found),
6829         (gst_decode_bin_change_state):
6830         Don't disconnect the have_type signal because we never reconnect it
6831         later on. Instead keep a variable to see if we already detected a type.
6832
6833 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6834
6835         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
6836         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
6837         (type_found):
6838         Unlink the signal handler when we found the type, we're not going to do
6839         anything sensible with more type_found signals anyway.
6840
6841 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6842
6843         * gst-libs/gst/tag/gsttagdemux.c:
6844           Don't leak caps.
6845
6846 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6847
6848         * gst-libs/gst/tag/Makefile.am:
6849         * gst-libs/gst/tag/gsttagdemux.c:
6850         * gst-libs/gst/tag/gsttagdemux.h:
6851           API: add GstTagDemux base class for simple tag demuxers.
6852
6853         * docs/libs/gst-plugins-base-libs-docs.sgml:
6854         * docs/libs/gst-plugins-base-libs-sections.txt:
6855           Add GstTagDemux to docs.
6856
6857 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
6858
6859         * gst-libs/gst/rtp/gstrtpbuffer.c:
6860         (gst_rtp_buffer_get_payload_subbuffer):
6861         Fix bug introduced with last commit which inverted the logic and
6862         caused all buffers to be dropped. Fixes #483620.
6863         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
6864
6865 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
6866
6867         * gst-libs/gst/rtp/gstrtpbuffer.c:
6868           Replace g_return_if_val (as it could be disabled), with regular return
6869           and warning.
6870
6871 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
6872
6873         * tests/check/pipelines/simple-launch-lines.c:
6874           Print message name and not just number.
6875
6876 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
6877
6878         * gst-libs/gst/audio/gstbaseaudiosink.c:
6879         (gst_base_audio_sink_async_play):
6880         When slaved to the clock, don't try to align a sample with the previous
6881         one when going to PLAYING again.
6882
6883 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
6884
6885         * tests/examples/snapshot/snapshot.c:
6886           Fix the build.
6887
6888 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6889
6890         * gst-libs/gst/sdp/gstsdpmessage.h:
6891         Add RFC 3556 bandwidth modifiers.
6892
6893 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6894
6895         * docs/libs/gst-plugins-base-libs-docs.sgml:
6896         * docs/libs/gst-plugins-base-libs-sections.txt:
6897         * gst-libs/gst/rtp/gstrtppayloads.c:
6898         Update documentation.
6899
6900 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6901
6902         * gst-libs/gst/rtp/Makefile.am:
6903         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
6904         (gst_rtp_payload_info_for_name):
6905         * gst-libs/gst/rtp/gstrtppayloads.h:
6906         Added new file and header to deal with payload info.
6907
6908         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6909         (gst_rtp_buffer_default_clock_rate):
6910         * gst-libs/gst/rtp/gstrtpbuffer.h:
6911         Payload specific stuff is move to new headers.
6912         Implement _default_clock rate using the new payload function.
6913
6914         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
6915         (gst_sdp_parse_line):
6916         * gst-libs/gst/sdp/gstsdpmessage.h:
6917         Add some more comments.
6918
6919 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6920
6921         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
6922         (sdp_check_header), (sdp_type_find), (plugin_init):
6923         Add typefind function for application/sdp.
6924         Remove some old dirac typefind code that was ifdeffed out.
6925
6926 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
6927
6928         * win32/common/libgstaudio.def:
6929         Add new exported functions.
6930         * win32/vs6/grammar.dsp:
6931         Add autogeneration and copy of some autegenerated files from win32/common
6932         for rtsp library.
6933         * win32/vs6/libgstaudioconvert.dsp:
6934         Add gstaudioquantize.c to the build.
6935         * win32/vs6/libgstinterfaces.dsp:
6936         Add videoorientation.c to the build.
6937         * win32/vs6/libgstriff.dsp:
6938         Add libgsttag to the link libraries list.
6939         * win32/vs6/libgstvolume.dsp:
6940         Add liboil to the link.
6941         * win32/vs6/gst_plugins_base.dsw:
6942         * win32/vs6/libgstrtsp.dsp:
6943         * win32/common/libgstrtsp.def:
6944         Add files to build libgstrtsp library.
6945         
6946 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
6947
6948         * tests/examples/snapshot/snapshot.c: (main):
6949         Print error when pipeline failed to construct.
6950
6951 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6952
6953         * configure.ac:
6954         * gst-libs/gst/tag/gstid3tag.c:
6955         * gst-libs/gst/tag/gstvorbistag.c:
6956           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
6957           and ID3v2 tags.
6958
6959 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6960
6961         * gst-libs/gst/floatcast/floatcast.h:
6962           Don't include config.h in an installed public header, this
6963           might break compilation of applications that don't have such
6964           a header and doesn't necessarily do what it's supposed to do
6965           anyway (ie. check for the lrint/lrintf defines) (#442065).
6966           Add docs for the various macros and document how this header
6967           has to be used (link against libm, etc.); add a few FIXMEs;
6968           include math.h for non-c99 code path.  Based on patch by
6969           Jan Schmidt.
6970           
6971 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
6972
6973         * configure.ac:
6974         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
6975         of duplicating these macros in configure.ac.
6976
6977 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6978
6979         * po/hu.po:
6980         * po/sv.po:
6981         * po/uk.po:
6982           Updated translations to 0.10.14
6983
6984 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6985
6986         translated by: Jakub Bogusz <qboosh@pld-linux.org>
6987
6988         * po/pl.po:
6989           Added Polish translation.
6990
6991 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6992
6993         translated by: Ilkka Tuohela <hile@iki.fi>
6994
6995         * po/fi.po:
6996           Added Finnish translation.
6997
6998 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6999
7000         translated by: Jorge González González <aloriel@gmail.com>
7001
7002         * po/es.po:
7003           Added Spanish translation.
7004
7005 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7006
7007         translated by: Mogens Jaeger <mogens@jaeger.tf>
7008
7009         * po/da.po:
7010           Added Danish translation.
7011
7012 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7013
7014         translated by: Funda Wang <fundawang@linux.net.cn>
7015
7016         * po/zh_CN.po:
7017           Added Chinese (simplified) translation.
7018
7019 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7020
7021         translated by: Alexander Shopov <ash@contact.bg>
7022
7023         * po/bg.po:
7024           Added Bulgarian translation.
7025
7026 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
7027
7028         * gst/playback/gstqueue2.c: (gst_queue_push_one):
7029         Fix compilation wrt printf arguments.
7030
7031 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
7032
7033         * configure.ac:
7034         * tests/examples/Makefile.am:
7035         * tests/examples/snapshot/.cvsignore:
7036         * tests/examples/snapshot/Makefile.am:
7037         * tests/examples/snapshot/snapshot.c: (main):
7038         Add simple snapshot example program using appsink.
7039
7040 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
7041
7042         * tests/check/generic/states.c:
7043           Improved state change unit test.
7044
7045 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
7046
7047         * docs/plugins/.cvsignore:
7048         * tests/check/.cvsignore:
7049           Ignore registries in any format.
7050
7051 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
7052
7053         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7054         (gst_base_rtp_depayload_chain),
7055         (gst_base_rtp_depayload_set_gst_timestamp):
7056         Only copy timestamp on outgoing packets if the depayloader did not set
7057         one.
7058         Also copy duration on outgoing packets.
7059
7060 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
7061
7062         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
7063         (gst_basertppayload_set_outcaps):
7064         Fix compilation because of missing %d in printf.
7065         When fixating caps, fixate what we can and throw away all remaining
7066         unfixed caps, subclasses should do something smart if they need to.
7067
7068 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
7069
7070         * ext/gnomevfs/gstgnomevfssrc.c:
7071           Improve debug logs a bit and be more verbose if things go wrong.
7072
7073 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
7074
7075         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7076         (gst_text_overlay_set_property):
7077         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7078         * gst-libs/gst/audio/gstbaseaudiosink.c:
7079         (gst_base_audio_sink_render):
7080         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
7081         (gst_rtcp_unix_to_ntp):
7082         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
7083         * gst/playback/gstqueue2.c:
7084         * tests/examples/seek/seek.c: (set_scale):
7085         Fix a bunch of compile warnings shown with Forte.
7086
7087         * gst/audiorate/gstaudiorate.c:
7088         Always pull in config.h before including any system headers.
7089
7090 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
7091
7092         * gst/playback/gstqueue2.c: (update_buffering),
7093         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
7094         (gst_queue_handle_sink_event), (gst_queue_chain),
7095         (gst_queue_push_one), (gst_queue_sink_activate_push),
7096         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
7097         Also fix #476514 for queue2.
7098
7099 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
7100
7101         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7102         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
7103         (gst_base_rtp_depayload_chain),
7104         (gst_base_rtp_depayload_handle_sink_event),
7105         (gst_base_rtp_depayload_push_full),
7106         (gst_base_rtp_depayload_set_gst_timestamp),
7107         (gst_base_rtp_depayload_change_state):
7108         Remove code to deal with RTP to GST time conversion, we now just copy
7109         the GST timestamp we receive to the outgoing buffers.
7110         Handle segment and flushes correctly.
7111
7112         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7113         When we have no valid input timestamp, use the previous rtp timestamp on
7114         the outgoing RTP packet instead of the RTP base time.
7115
7116 2007-09-15  David Schleef  <ds@schleef.org>
7117
7118         * ext/alsa/gstalsa.c:
7119         * ext/alsa/gstalsadeviceprobe.c:
7120         * ext/alsa/gstalsamixer.c:
7121         * ext/alsa/gstalsasink.c:
7122         * ext/alsa/gstalsasrc.c:
7123           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
7124
7125 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
7126
7127         * gst-libs/gst/rtp/gstbasertppayload.c:
7128         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
7129         Add some debug info when negotiating caps.
7130
7131 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7132
7133         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
7134         A buffer with an empty payload is also a valid buffer.
7135
7136 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7137
7138         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
7139         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
7140         (gst_basertppayload_change_state):
7141         Make sure we start our RTP timestamp from the random base RTP
7142         timestamp even if the buffer timestamp starts from some random value.
7143
7144 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7145
7146         * configure.ac:
7147         * tests/examples/Makefile.am:
7148         * tests/examples/dynamic/.cvsignore:
7149         * tests/examples/dynamic/Makefile.am:
7150         * tests/examples/dynamic/addstream.c: (create_stream),
7151         (pause_play_stream), (message_received), (eos_message_received),
7152         (perform_step), (main):
7153         Add simple exmple app to demonstrate starting and pausing live and
7154         non-live bins in a PLAYING pipeline.
7155
7156 2007-09-14  Julien MOUTTE  <julien@moutte.net>
7157
7158         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
7159         typefind for QCP files (RFC #3625)
7160
7161 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
7162
7163         * gst-libs/gst/audio/gstbaseaudiosink.c:
7164         (gst_base_audio_sink_init):
7165         Disable pull mode scheduling, we're not ready for it yet and it subtly
7166         breaks a lot of things.
7167
7168 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
7169
7170         * tests/check/elements/libvisual.c:
7171           Test all libvisual plugins, not just the first one; this reproduces
7172           bug #450336 quite easily.  Looks like a problem with the 'jess'
7173           visualisation.
7174
7175 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
7176
7177         * tests/check/Makefile.am:
7178         * tests/check/elements/.cvsignore:
7179         * tests/check/elements/libvisual.c:
7180           Add basic libvisual test case in an attempt to reproduce bug #450336.
7181           Doesn't reproduce that bug, but some other crasher instead (invalid
7182           free), at least with make elements/libvisual.forever and the bumscope
7183           plugin on x86-64/gutsy. Leaving test disabled for now.
7184
7185 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
7186
7187         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7188
7189         * gst-libs/gst/rtsp/gstrtspconnection.c:
7190         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
7191         (read_body), (gst_rtsp_connection_receive):
7192         Make sure we can not cancel in the middle of receiving a message.
7193         Fixes #475731.
7194
7195 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
7196
7197         Patch by: Josep Torra Valles <josep@fluendo.com>
7198
7199         * gst/playback/gstplaybasebin.c:
7200           Increase upper limit for audio queue a bit; fixes preroll problem
7201           with playbin and decodebin2 when playing a quicktime trailer with
7202           multichannel audio via http (#464666).
7203
7204 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
7205
7206         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7207         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
7208         (gst_base_audio_src_provide_clock),
7209         (gst_base_audio_src_set_property),
7210         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
7211         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7212         Allow othe clocks than the internal clock to be used for the pipeline.
7213         Add property to disable clock provide.
7214         API: GstBaseAudioSrc::provide-clock
7215
7216 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
7217
7218         * gst/playback/gstdecodebin2.c:
7219           Don't leak request pads. Fixes #475395.
7220
7221 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
7222
7223         Patch by: René Stadler <mail at renestadler dot de>
7224
7225         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
7226         (gst_ximage_buffer_class_init):
7227         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7228         (gst_xvimage_buffer_class_init):
7229         Correctly chain up finalize with the parent class to prevent
7230         memory leaks. Fixes #474880.
7231
7232 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
7233
7234         * gst/volume/gstvolume.c: (volume_choose_func):
7235         * tests/check/elements/volume.c: (GST_START_TEST):
7236         Revert the latest change: floating point samples are allowed to
7237         have any value, not only values in the range [-1,1]. Thanks to Andy
7238         Wingo for noticing.
7239         Also fix processing of int32 samples with volumes > 4 by making the
7240         unity value smaller which prevents overflows.
7241
7242 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7243
7244         * gst-libs/gst/rtp/gstrtpbuffer.c:
7245         * tests/check/libs/rtp.c:
7246           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
7247
7248 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7249
7250         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
7251
7252         * gst-libs/gst/rtp/gstrtpbuffer.c:
7253           Fix up GstRTPHeader helper struct so that compilers will not under
7254           any circumstances add padding in between our fields, as currently
7255           happens with MSVC on win32, because that would lead to us sending
7256           out RTP payloads with broken RTP headers (#471194).
7257           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
7258           
7259         * tests/check/Makefile.am:
7260         * tests/check/libs/.cvsignore:
7261         * tests/check/libs/rtp.c:
7262           Add some simple unit tests for GstRTPBuffer. Some are disabled
7263           because the code tested still needs fixing (set_csrc() does not work).
7264
7265 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7266
7267         * win32/MANIFEST:
7268         * win32/common/gstrtsp-enumtypes.c:
7269         * win32/common/gstrtsp-enumtypes.h:
7270         * win32/common/interfaces-enumtypes.c:
7271         * win32/common/interfaces-enumtypes.h:
7272         * win32/common/multichannel-enumtypes.c:
7273           Add rtsp enumtypes (#474384) and update others.
7274
7275 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
7276
7277         * configure.ac:
7278           Fix configure check for HAVE_LIBXML_HTML.
7279
7280 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
7281
7282         * tests/check/libs/.cvsignore:
7283           Ignore more, in case the build bots work again one day.
7284
7285 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
7286
7287         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
7288
7289         * configure.ac:
7290         * gst-libs/gst/Makefile.am:
7291         * gst-libs/gst/fft/Makefile.am:
7292         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
7293         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
7294         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
7295         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
7296         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
7297         * gst-libs/gst/fft/gstfft.h:
7298         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
7299         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
7300         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
7301         * gst-libs/gst/fft/gstfftf32.h:
7302         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
7303         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
7304         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
7305         * gst-libs/gst/fft/gstfftf64.h:
7306         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
7307         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
7308         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
7309         * gst-libs/gst/fft/gstffts16.h:
7310         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
7311         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
7312         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
7313         * gst-libs/gst/fft/gstffts32.h:
7314         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
7315         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7316         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
7317         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
7318         * gst-libs/gst/fft/kiss_fft_f32.h:
7319         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
7320         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7321         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
7322         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
7323         * gst-libs/gst/fft/kiss_fft_f64.h:
7324         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
7325         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7326         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
7327         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
7328         * gst-libs/gst/fft/kiss_fft_s16.h:
7329         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
7330         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7331         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
7332         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
7333         * gst-libs/gst/fft/kiss_fft_s32.h:
7334         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
7335         (kiss_fftr_f32), (kiss_fftri_f32):
7336         * gst-libs/gst/fft/kiss_fftr_f32.h:
7337         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
7338         (kiss_fftr_f64), (kiss_fftri_f64):
7339         * gst-libs/gst/fft/kiss_fftr_f64.h:
7340         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
7341         (kiss_fftr_s16), (kiss_fftri_s16):
7342         * gst-libs/gst/fft/kiss_fftr_s16.h:
7343         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
7344         (kiss_fftr_s32), (kiss_fftri_s32):
7345         * gst-libs/gst/fft/kiss_fftr_s32.h:
7346         * gst-libs/gst/fft/kiss_version:
7347         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7348         * pkgconfig/gstreamer-plugins-base.pc.in:
7349         Add libgstfft, a FFT library based on Kiss FFT which is
7350         BSD licensed. Supported sample formats are int16, int32,
7351         float and double. For those formats a real FFT and IFFT
7352         can be done, different windowing functions can be applied
7353         and functions for extracting the magnitude and phase exist.
7354         Fixes #468619.
7355
7356         * docs/libs/Makefile.am:
7357         * docs/libs/gst-plugins-base-libs-docs.sgml:
7358         * docs/libs/gst-plugins-base-libs-sections.txt:
7359         Integrate libgstfft into the docs.
7360
7361         * tests/check/Makefile.am:
7362         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
7363         Add unit tests for libgstfft, currently only testing the FFT.
7364         Unit tests for IFFT will follow soon.
7365
7366 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
7367
7368         Patch by: Peter Kjellerstedt  <pkj at axis com>
7369
7370         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
7371         (gst_sdp_message_init), (gst_sdp_message_uninit),
7372         (is_multicast_address), (gst_sdp_message_as_text),
7373         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
7374         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
7375         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7376         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7377         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
7378         (gst_sdp_media_init), (gst_sdp_media_uninit),
7379         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
7380         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
7381         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
7382         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
7383         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
7384         * gst-libs/gst/sdp/gstsdpmessage.h:
7385         Separate INIT_ARRAY() and related macros into two versions, one for
7386         structures and one for pointers (e.g., INIT_ARRAY() and
7387         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
7388         lists of emails and phone numbers.
7389         Add missing const as appropriate.
7390         Change all gint to guint since they all actually represent unsigned
7391         values.
7392         Do not use time as a variable name as it shadows the global time().
7393         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
7394         Actually implement gst_sdp_message_add_time().
7395         Make gst_sdp_message_add_time() take repeat times as an argument.
7396         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
7397         Corrected the definition of gst_sdp_media_get_bandwidth() (was
7398         misspelled as badwidth).
7399         gst-indented and a little clean up. Fixes #471067.
7400
7401 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
7402
7403         * gst/volume/gstvolume.c: (volume_choose_func),
7404         (volume_process_double), (volume_process_double_clamp),
7405         (volume_process_float_clamp):
7406         Correctly clamp float/double samples in the [-1.0,1.0] range to
7407         prevent weird effects.
7408         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
7409         Add unit tests for all samples types that had none before.
7410
7411 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7412
7413         * gst-libs/gst/rtp/gstrtpbuffer.c:
7414           Need to include stdlib.h for abs() here too.
7415
7416 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7417
7418         * gst/playback/gststreaminfo.c:
7419           Fix build.
7420
7421 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
7422
7423         * gst/playback/gststreaminfo.c:
7424           Clean up some half-disabled code and comment.
7425
7426 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
7427
7428         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
7429
7430         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7431         (gst_base_rtp_payload_audio_handle_event):
7432         Return FALSE from the event handler to let the parent class handle the
7433         event. Fixes #446766.
7434
7435         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7436         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
7437         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
7438
7439         * gst-libs/gst/rtp/gstbasertppayload.c:
7440         Bump the MTU to 1400.
7441
7442 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
7443
7444         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
7445         Add an audio/x-nsf typefind function for the nsfdec element.
7446
7447 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
7448         * gst/playback/gstplaybasebin.c:
7449         Included "myth://" on stream_uris list for enable buffering to mythtv files
7450
7451 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7452
7453         * docs/libs/gst-plugins-base-libs-sections.txt:
7454         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
7455         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
7456         (gst_rtcp_unix_to_ntp):
7457         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7458         Fix parsing of RB blocks.
7459         Fix docs.
7460         Added helper functions to convert to/from UNIX and NTP time.
7461         API: gst_rtcp_ntp_to_unix()
7462         API: gst_rtcp_unix_to_ntp()
7463
7464         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
7465         (gst_rtp_buffer_get_header_len),
7466         (gst_rtp_buffer_get_extension_data),
7467         (gst_rtp_buffer_get_payload_subbuffer),
7468         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
7469         (gst_rtp_buffer_ext_timestamp):
7470         * gst-libs/gst/rtp/gstrtpbuffer.h:
7471         Fix some more docs.
7472         Implement handling of packets with extensions.
7473         Fix padding check in _validate().
7474         Added function to get extension data.
7475         API: gst_rtp_buffer_get_header_len()
7476         API: gst_rtp_buffer_get_extension_data()
7477
7478 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7479
7480         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7481         (gst_base_rtp_depayload_class_init),
7482         (gst_base_rtp_depayload_set_gst_timestamp):
7483         Add some more docs for the queue-delay property and fix a typo in a
7484         comment.
7485
7486         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7487         Fix typo.
7488
7489 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7490
7491         * gst-libs/gst/audio/gstbaseaudiosink.c:
7492         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
7493         (gst_base_audio_sink_change_state):
7494         When skew slaving, try to hover around the middle of a segment so that
7495         we at most drift by half a segment.
7496         If we are aligning in the oposite direction of the clock skew, we don't
7497         have to resync.
7498
7499 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7500
7501         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7502         (gst_base_rtp_depayload_setcaps),
7503         (gst_base_rtp_depayload_set_gst_timestamp):
7504         Be less silly with the segment start, just apply the clock-base to the
7505         timestamp.
7506
7507 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7508
7509         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7510         (gst_base_rtp_depayload_class_init),
7511         (gst_base_rtp_depayload_finalize),
7512         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
7513         (gst_base_rtp_depayload_handle_sink_event),
7514         (gst_base_rtp_depayload_set_gst_timestamp),
7515         (gst_base_rtp_depayload_change_state):
7516         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7517         Deprecate the queue handling thread thing and remove the code.
7518         Use new method to calculate the extended timestamp.
7519
7520 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7521
7522         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7523         (gst_rtcp_packet_sdes_copy_entry):
7524         Use g_strndup which does exactly what we want.
7525
7526         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
7527         (gst_rtp_buffer_ext_timestamp):
7528         * gst-libs/gst/rtp/gstrtpbuffer.h:
7529         Add helper function to compare seqnums.
7530         Add helper function to calculate extended timestamps.
7531         API: gst_rtp_buffer_compare_seqnum()
7532         API: gst_rtp_buffer_ext_timestamp()
7533
7534 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
7535
7536         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7537         (gst_rtcp_packet_sdes_get_entry),
7538         (gst_rtcp_packet_sdes_copy_entry):
7539         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7540         Fix and document SDES item data function.
7541         Add new function that makes a proper copy of SDES item data.
7542         API: gst_rtcp_packet_sdes_copy_entry()
7543
7544 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7545
7546         * configure.ac:
7547         * gst/Makefile.am:
7548           The tcp and subparse plugins are under gst, but not totaly free of
7549           dependencies. Handle selection inconfigure.ac, so that they show up
7550           on the final list of what is build and what is not. Maybe they should
7551           better be moved to ext.
7552
7553 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7554
7555         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
7556
7557         * configure.ac:
7558         * gst/Makefile.am:
7559           Check if libxml provides HTML parser which subparse needs.
7560           Fixes #451970.
7561
7562 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7563
7564         * ext/alsa/gstalsa.c:
7565           Fix typo and compilation on big endian systems.
7566
7567 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7568
7569         * gst/subparse/gstssaparse.c:
7570           Convert SSA newline codes into actual newline characters (#470766).
7571
7572 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7573
7574         * docs/libs/gst-plugins-base-libs-sections.txt:
7575         * gst-libs/gst/pbutils/install-plugins.c:
7576         * gst-libs/gst/pbutils/install-plugins.h:
7577         * tests/check/libs/pbutils.c:
7578           API: also add gst_install_plugins_supported() while we're at it
7579           (see #470456).
7580
7581 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7582
7583         * docs/libs/gst-plugins-base-libs-sections.txt:
7584         * gst-libs/gst/pbutils/missing-plugins.c:
7585         * gst-libs/gst/pbutils/missing-plugins.h:
7586         * tests/check/libs/pbutils.c:
7587           API: add gst_missing_*_installer_detail_new() convenience API so
7588           that applications that know exactly what they're missing can request
7589           installer detail strings for those items directly instead of having
7590           to first create a dummy missing-plugin message and then get the
7591           installer detail string from that.  Fixes #470456.
7592
7593 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
7594
7595         * gst/playback/gstdecodebin.c: (close_pad_link):
7596         We need to set up delayed-linking whenever the caps are non-fixed,
7597         not just when there are multiple types - use gst_pad_is_fixed()
7598         to test.
7599
7600 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
7601
7602         * gst-libs/gst/pbutils/missing-plugins.c:
7603           (gst_missing_plugin_message_get_installer_detail):
7604           Add missing separator in PID fallback case.
7605
7606 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
7607
7608         * ext/alsa/Makefile.am:
7609         There is no GST_PLUGINS_BASE_LIBS defined.
7610         
7611         * ext/alsa/gstalsa.c:
7612         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
7613         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
7614         Add support for ALSA 24-bit formats.
7615         snd_pcm_delay can return an error code, especially
7616         during XRUNS. In that case, the best we can do is assume
7617         delay = 0.
7618
7619         * gst/audioconvert/Makefile.am:
7620         Add flags from -base before any more-remote dependencies.
7621
7622 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
7623
7624         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
7625
7626         * gst/volume/gstvolume.c: (volume_choose_func),
7627         (volume_update_real_volume), (gst_volume_set_volume),
7628         (gst_volume_init), (volume_process_int32),
7629         (volume_process_int32_clamp), (volume_process_int24),
7630         (volume_process_int24_clamp), (volume_process_int16),
7631         (volume_process_int16_clamp), (volume_process_int8),
7632         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
7633         * gst/volume/gstvolume.h:
7634         Add support for int32, int24 and int8 to the volume element.
7635         Fixes #445529.
7636
7637 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
7638
7639         * tests/examples/Makefile.am:
7640           Fix even more.
7641
7642 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7643
7644         * configure.ac:
7645         * docs/libs/Makefile.am:
7646         * docs/libs/gst-plugins-base-libs-docs.sgml:
7647         * docs/libs/gst-plugins-base-libs-sections.txt:
7648         * ext/gnomevfs/gstgnomevfssrc.c:
7649         * ext/gnomevfs/gstgnomevfssrc.h:
7650         * gst-libs/gst/Makefile.am:
7651         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7652         * pkgconfig/gstreamer-plugins-base.pc.in:
7653         * sys/v4l/v4lsrc_calls.c:
7654         * tests/examples/Makefile.am:
7655         * win32/common/config.h:
7656           Revert unwanted commit. many thanks to moap. I want a fix for 
7657           https://thomas.apestaart.org/moap/trac/ticket/239
7658
7659 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7660
7661         * gst/volume/gstvolume.c:
7662           Move passthrough below gst_object_sync_values(). Fixes #442654.
7663
7664 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
7665
7666         * gst-libs/gst/audio/audio.c:
7667         Clarify the docs a little.
7668
7669 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
7670
7671         * gst/volume/gstvolume.c:
7672           Enable liboil for float and add more details about problems with
7673           int16.
7674
7675 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7676
7677         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
7678         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
7679
7680 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7681
7682         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7683         When calculating the first timestamp of the buffers, don't go below 0
7684         and clip the samples because the offset was on the eos page.
7685         Fixes #466717.
7686
7687 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7688
7689         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
7690         (gst_ogg_demux_collect_chain_info):
7691         Also submit the eos page when trying to find the first timestamp.
7692         See #466717.
7693
7694 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
7695
7696         * gst-libs/gst/audio/audio.h:
7697         Use gst_util_uint64_scale() instead of doing the math
7698         with double for GST_FRAMES_TO_CLOCK_TIME() and
7699         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
7700         prevents rounding errors. Fixes #467667.
7701
7702 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
7703
7704         * gst-libs/gst/rtsp/gstrtspconnection.c:
7705         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
7706         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
7707         * gst-libs/gst/rtsp/gstrtspconnection.h:
7708         Small cleanups.
7709         On shutdown, don't read the control socket yet.
7710         Set timeout value correctly in all cases.
7711         Add function to check if the server accepts reads or writes.
7712         API: gst_rtsp_connection_poll()
7713
7714         * gst-libs/gst/rtsp/gstrtspdefs.h:
7715         Fix compilation with -pedantic.
7716         Add enum for _poll.
7717
7718 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7719
7720         Patch by: Olivier Crete  <tester at tester ca>
7721
7722         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
7723         (gst_basertppayload_getcaps):
7724         * gst-libs/gst/rtp/gstbasertppayload.h:
7725         Add getcaps vfunc to basertppayload. See #465146.
7726
7727 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7728
7729         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
7730         Only post buffering messages when we are a stream.
7731
7732 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
7733
7734         * gst-libs/gst/pbutils/install-plugins.c:
7735         * gst-libs/gst/pbutils/missing-plugins.c:
7736           Small docs fix and addition.
7737
7738 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7739
7740         * tests/icles/.cvsignore:
7741         * tests/icles/Makefile.am:
7742         * tests/icles/test-textoverlay.c:
7743           Add a dumb little test for textoverlay alignments.
7744
7745 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7746
7747         Patch by: Dan Williams  <dcbw redhat com>
7748
7749         * ext/pango/gsttextoverlay.c:
7750         * ext/pango/gsttextoverlay.h:
7751           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
7752           "silent" property so there's a Since tag in the API reference.
7753
7754 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
7755
7756         * gst-libs/gst/rtp/gstbasertppayload.c:
7757         (gst_basertppayload_set_outcaps):
7758         * gst-libs/gst/rtp/gstbasertppayload.h:
7759         Improve caps negotiation so that downstream elements can confiure
7760         certain RTP properties by fixing them on the caps. See #465146.
7761         Add docs.
7762
7763 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
7764
7765         * docs/libs/gst-plugins-base-libs-sections.txt:
7766         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7767         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7768           Mark as deprecated some macros which were presumably meant to be
7769           private API and accidentally exposed in the public header file.
7770           Also actually _init() lock (only works at the moment because the
7771           struct is zeroed out when created and the initial values in the
7772           mutex struct are zeroes too). (#459585)
7773
7774 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
7775
7776         * docs/libs/Makefile.am:
7777           Remove cruft and do some cleanups.
7778
7779         * docs/libs/gst-plugins-base-libs-docs.sgml:
7780           Prepare for comming gtkdoc features (rebase against online docs).
7781
7782 2007-08-10  Michael Smith <msmith@fluendo.com>
7783
7784         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7785           Debug output fixes.
7786         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
7787         (GST_START_TEST):
7788           Change the number of buffers used; 500 is too many and leads to
7789           timeouts.
7790
7791 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
7792
7793         * gst/playback/gstqueue2.c:
7794         * gst/videorate/gstvideorate.c:
7795           Printf format fixes (#465028).
7796
7797 2007-08-09  Michael Smith <msmith@fluendo.com>
7798
7799         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7800           If we have a large (> 1 second) discontinuity, push a series of
7801           smaller buffers rather than a single very large buffer. Avoids
7802           unreasonably large single buffer allocations when encountering a
7803           large gap.
7804         * tests/check/elements/audiorate.c: (GST_START_TEST),
7805         (audiorate_suite):
7806           Add a test for this.
7807
7808 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
7809
7810         * gst/playback/gstplaybasebin.c: (group_commit),
7811         (queue_remove_probe), (queue_threshold_reached):
7812
7813         Patch by: Josep Torra Valles <josep@fluendo.com>
7814         Fixes: #465015
7815         Make sure we remove the check_queues buffer probe from the 
7816         correct queue to avoid racily going back to "buffering 99%" when
7817         buffering is actually complete.
7818
7819         Also, fix the spelling of Josep's surname in the ChangeLog.
7820
7821 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
7822
7823         * ext/ogg/gstoggmux.c:
7824           Do not leak oggmux instance.
7825         
7826         * ext/vorbis/vorbisenc.c:
7827           Also log values.
7828
7829 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7830
7831         * po/hu.po:
7832         * po/it.po:
7833         * po/nl.po:
7834         * po/uk.po:
7835         * po/vi.po:
7836           Updated translations.
7837
7838 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
7839
7840         patch by: Yang Hong <hongyang@redflag-linux.com>
7841
7842         * ext/pango/gsttextoverlay.c:
7843         * ext/pango/gsttextoverlay.h:
7844           Add 'silent' property to GstTimeOverlay. Fixes #462979
7845
7846 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
7847
7848         Patch by: Josep Torra Valles <josep@fluendo.com>
7849
7850         * docs/plugins/gst-plugins-base-plugins.args:
7851         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
7852         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
7853         (gst_uri_decode_bin_get_property), (gen_source_element):
7854         Add connection-speed property. Fixes #464690.
7855
7856 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7857
7858         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
7859
7860         * configure.ac:
7861         * gst-libs/gst/rtsp/Makefile.am:
7862         * gst-libs/gst/rtsp/gstrtspconnection.c:
7863         (gst_rtsp_connection_connect):
7864         Fix compilation on windows. Fixes #464320.
7865
7866 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7867
7868         Patch by: Josep Torra Valles <josep@fluendo.com>
7869
7870         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7871         (gst_play_base_bin_init), (queue_threshold_reached),
7872         (gen_source_element), (setup_substreams),
7873         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7874         (gst_play_base_bin_get_streaminfo_value_array):
7875         * gst/playback/gstplaybasebin.h:
7876         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7877         (gst_play_bin_set_property), (gst_play_bin_get_property),
7878         (gst_play_bin_handle_redirect_message):
7879         Move connection-speed property from playbin to playbasebin so that we
7880         can also configure it in source elements that have the connection-speed
7881         property. Fixes #464028.
7882         Add some debug info here and there.
7883
7884 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
7885
7886         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7887         Properly respond to conversion queries. Fixes #464079.
7888
7889 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7890
7891         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
7892         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
7893         (gst_audio_test_src_init_sine_table),
7894         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
7895         * gst/audiotestsrc/gstaudiotestsrc.h:
7896         Add float/double and int32 support to audiotestsrc. Fixes #460422.
7897         Also set the default volume to the default value specified in the
7898         GParamSpec.
7899
7900 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7901
7902         Patch by: Jens Granseuer <jensgr at gmx dot net>
7903
7904         * gst/audioconvert/gstaudioquantize.c:
7905         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
7906
7907 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
7908
7909         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
7910         Add rdt manager for rdt transport.
7911         Fix parsing of RDT transport.
7912
7913 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
7914
7915         * configure.ac:
7916         Back to CVS
7917
7918 === release 0.10.14 ===
7919
7920 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
7921
7922         * configure.ac:
7923           releasing 0.10.14, "Light Years Ahead"
7924
7925 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7926
7927         * tests/check/libs/audio.c: (GST_START_TEST):
7928         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
7929
7930 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7931
7932         * gst-libs/gst/audio/audio.c:
7933         When clipping a buffer with no timestamp, assume it is
7934         within the segment without warnings.
7935
7936         Fixes: #460978
7937
7938 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
7939
7940         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
7941         Fire the signal on the object, not the interface.
7942
7943 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7944
7945         * gst-libs/gst/rtsp/.cvsignore:
7946         Ber. Don't include the full path, idiot.
7947
7948 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7949
7950         * gst-libs/gst/rtsp/.cvsignore:
7951         Ignore generated files.
7952
7953 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7954
7955         * gst-libs/gst/interfaces/Makefile.am:
7956         * gst-libs/gst/interfaces/interfaces-marshal.list:
7957         * gst-libs/gst/interfaces/rtspextension.c:
7958         * gst-libs/gst/interfaces/rtspextension.h:
7959         * gst-libs/gst/rtsp/Makefile.am:
7960         * gst-libs/gst/rtsp/gstrtsp.h:
7961         * gst-libs/gst/rtsp/gstrtspextension.c:
7962         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
7963         (gst_rtsp_extension_detect_server),
7964         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
7965         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
7966         (gst_rtsp_extension_configure_stream),
7967         (gst_rtsp_extension_get_transports),
7968         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7969         * gst-libs/gst/rtsp/gstrtspextension.h:
7970         * gst-libs/gst/rtsp/rtsp-marshal.list:
7971         Move the rtspextension.h interface into gstrtspextension.h
7972         as part of libgstrtsp instead of libgstinterfaces, because it's
7973         only for use within plugins, not applications. 
7974         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
7975         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
7976         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
7977         is abstract.
7978
7979 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7980
7981         * gst-libs/gst/interfaces/Makefile.am:
7982         * gst-libs/gst/interfaces/interfaces-marshal.list:
7983         * gst-libs/gst/interfaces/rtspextension.c:
7984         (gst_rtsp_extension_iface_init),
7985         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7986         * gst-libs/gst/interfaces/rtspextension.h:
7987         Fix marshaller for the send signal.
7988         Add URL to stream selection interface method.
7989
7990 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7991
7992         * gst-libs/gst/riff/Makefile.am:
7993         Pull in our dependencies from -base before those from outside.
7994
7995 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7996
7997         * docs/libs/gst-plugins-base-libs-sections.txt:
7998         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
7999         * gst-libs/gst/rtsp/gstrtspbase64.h:
8000         API: gst_rtsp_base64_decode_ip()
8001         Added function to decode Base64 in-place.
8002
8003 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8004
8005         * tests/check/libs/.cvsignore:
8006         Ignore the mixer test binary.
8007
8008 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8009
8010         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
8011         Gratuitous comment change to trigger a rebuild on the buildbots.
8012
8013 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8014
8015         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
8016         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
8017         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
8018         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
8019         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
8020         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
8021         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
8022         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
8023         (gst_sdp_media_get_attribute_val):
8024         * gst-libs/gst/sdp/gstsdpmessage.h:
8025         Constify args where we can.
8026
8027 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8028
8029         * gst-libs/gst/interfaces/Makefile.am:
8030         * gst-libs/gst/interfaces/rtspextension.c:
8031         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
8032         (gst_rtsp_extension_detect_server),
8033         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
8034         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
8035         (gst_rtsp_extension_configure_stream),
8036         (gst_rtsp_extension_get_transports),
8037         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
8038         * gst-libs/gst/interfaces/rtspextension.h:
8039         Move interface for RTSP extensions from -good to here.
8040         Added helper methods to invoke interface methods.
8041
8042 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8043
8044         * docs/libs/gst-plugins-base-libs-sections.txt:
8045         * gst-libs/gst/rtsp/gstrtspdefs.h:
8046         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
8047         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
8048         (gst_rtsp_message_init_response),
8049         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
8050         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
8051         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
8052         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
8053         (gst_rtsp_message_get_body), (dump_key_value):
8054         * gst-libs/gst/rtsp/gstrtspmessage.h:
8055         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8056         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8057         (gst_rtsp_range_parse):
8058         * gst-libs/gst/rtsp/gstrtsprange.h:
8059         * gst-libs/gst/rtsp/gstrtsptransport.c:
8060         * gst-libs/gst/rtsp/gstrtspurl.c:
8061         Fix some more RTSP docs.
8062         Add some missing methods for dealing with messages.
8063
8064 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8065
8066         * docs/libs/gst-plugins-base-libs-docs.sgml:
8067         * docs/libs/gst-plugins-base-libs-sections.txt:
8068         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
8069         * gst-libs/gst/rtsp/gstrtspbase64.h:
8070         * gst-libs/gst/rtsp/gstrtspconnection.c:
8071         (gst_rtsp_connection_connect), (add_auth_header),
8072         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
8073         (read_body), (gst_rtsp_connection_receive),
8074         (gst_rtsp_connection_next_timeout),
8075         (gst_rtsp_connection_reset_timeout),
8076         (gst_rtsp_connection_set_auth):
8077         * gst-libs/gst/rtsp/gstrtspconnection.h:
8078         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
8079         * gst-libs/gst/rtsp/gstrtspdefs.h:
8080         * gst-libs/gst/rtsp/gstrtspmessage.h:
8081         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8082         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8083         (gst_rtsp_range_parse):
8084         * gst-libs/gst/rtsp/gstrtspurl.h:
8085         Added beginnings of RTSP documentation.
8086
8087 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8088
8089         * docs/libs/Makefile.am:
8090         * docs/libs/gst-plugins-base-libs-docs.sgml:
8091         * docs/libs/gst-plugins-base-libs-sections.txt:
8092         * gst-libs/gst/sdp/gstsdp.h:
8093         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
8094         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
8095         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
8096         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
8097         (gst_sdp_message_get_attribute_val),
8098         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
8099         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
8100         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
8101         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
8102         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
8103         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
8104         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
8105         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
8106         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
8107         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
8108         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
8109         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
8110         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
8111         (gst_sdp_media_get_attribute_val_n),
8112         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
8113         (print_media), (gst_sdp_message_dump):
8114         * gst-libs/gst/sdp/gstsdpmessage.h:
8115         Document the SDP library.
8116         Add some of the missing SDPMedia methods.
8117
8118 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8119
8120         * configure.ac:
8121         * gst-libs/gst/Makefile.am:
8122         * gst-libs/gst/rtsp/Makefile.am:
8123         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
8124         * gst-libs/gst/rtsp/gstrtspbase64.h:
8125         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
8126         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
8127         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
8128         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
8129         (parse_response_status), (parse_request_line), (parse_line),
8130         (gst_rtsp_connection_read), (read_body),
8131         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
8132         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
8133         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
8134         (gst_rtsp_connection_set_auth):
8135         * gst-libs/gst/rtsp/gstrtspconnection.h:
8136         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
8137         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
8138         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
8139         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
8140         (gst_rtsp_find_method):
8141         * gst-libs/gst/rtsp/gstrtspdefs.h:
8142         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
8143         (gst_rtsp_message_new), (gst_rtsp_message_init),
8144         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
8145         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
8146         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
8147         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
8148         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
8149         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
8150         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
8151         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
8152         (gst_rtsp_message_dump):
8153         * gst-libs/gst/rtsp/gstrtspmessage.h:
8154         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8155         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8156         (gst_rtsp_range_parse), (gst_rtsp_range_free):
8157         * gst-libs/gst/rtsp/gstrtsprange.h:
8158         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
8159         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
8160         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
8161         (range_as_text), (rtsp_transport_mode_as_text),
8162         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
8163         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
8164         (gst_rtsp_transport_free):
8165         * gst-libs/gst/rtsp/gstrtsptransport.h:
8166         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
8167         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
8168         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
8169         * gst-libs/gst/rtsp/gstrtspurl.h:
8170         * gst-libs/gst/sdp/Makefile.am:
8171         * gst-libs/gst/sdp/gstsdp.h:
8172         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
8173         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
8174         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
8175         (gst_sdp_attribute_init), (gst_sdp_message_new),
8176         (gst_sdp_message_init), (gst_sdp_message_uninit),
8177         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
8178         (gst_sdp_media_uninit), (gst_sdp_media_free),
8179         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
8180         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
8181         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
8182         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
8183         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
8184         (gst_sdp_message_get_attribute_val),
8185         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
8186         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
8187         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
8188         (gst_sdp_media_get_attribute_val_n),
8189         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
8190         (read_string), (read_string_del), (gst_sdp_parse_line),
8191         (gst_sdp_message_parse_buffer), (print_media),
8192         (gst_sdp_message_dump):
8193         * gst-libs/gst/sdp/gstsdpmessage.h:
8194         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8195         Move SDP and RTSP from helper objects in -good to a reusable library.
8196         Use a proper gst_ namespace.
8197
8198 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
8199
8200         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
8201         (vorbis_dec_flush_decode):
8202         Use the new buffer clipping function from gstaudio here.
8203
8204 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
8205
8206         * docs/libs/gst-plugins-base-libs-sections.txt:
8207         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
8208         * gst-libs/gst/audio/audio.h:
8209         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
8210         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
8211         Also add deprecation guards for gst_audio_structure_set_int() to the
8212         header.
8213
8214 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8215
8216         * docs/libs/gst-plugins-base-libs-sections.txt:
8217           Cleanup the docs.
8218
8219 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8220
8221         Patch by: Dan Williams <dcbw at redhat dot com>
8222
8223         * gst/playback/gstplaybasebin.c:
8224         (gst_play_base_bin_get_streaminfo_value_array):
8225         Don't return NULL when querying the stream info value array but instead
8226         return an empty array. Fixes #459204.
8227
8228 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
8229
8230         * gst/playback/gsturidecodebin.c:
8231           Init debug category before using it.
8232
8233 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
8234
8235         * gst-libs/gst/interfaces/mixer.h:
8236         Add padding vars in place of the signal pointers
8237         when building with DISABLE_DEPRECATED so that the
8238         interface structure doesn't change size.
8239
8240 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
8241
8242         * docs/libs/gst-plugins-base-libs-sections.txt:
8243         * ext/alsa/gstalsamixer.c:
8244         * ext/alsa/gstalsamixer.h:
8245         * ext/alsa/gstalsamixerelement.c:
8246         * ext/alsa/gstalsamixertrack.c:
8247         * gst-libs/gst/interfaces/mixer.c:
8248         * gst-libs/gst/interfaces/mixer.h:
8249         * gst-libs/gst/interfaces/mixeroptions.c:
8250         * gst-libs/gst/interfaces/mixeroptions.h:
8251         * gst-libs/gst/interfaces/mixertrack.c:
8252         * gst-libs/gst/interfaces/mixertrack.h:
8253         * tests/check/Makefile.am:
8254         * tests/check/libs/mixer.c:
8255
8256         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8257         Fixes: #152864 
8258
8259         Add support for notifying mixer changes on the message bus, and
8260         implement it in alsamixer.
8261
8262         API: gst_mixer_get_mixer_flags
8263         API: gst_mixer_message_parse_mute_toggled
8264         API: gst_mixer_message_parse_record_toggled
8265         API: gst_mixer_message_parse_volume_changed
8266         API: gst_mixer_message_parse_option_changed
8267         API: GstMixerMessageType
8268         API: GstMixerFlags
8269
8270 2007-07-20  Michael Smith <msmith@fluendo.com>
8271
8272         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
8273         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
8274           xcontext->im_format is only for testing XShm support (as the header
8275           file comments document). Use xvimage->im_format for everything else.
8276           Avoids spurious warnings on buffer allocation before setcaps.
8277
8278 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8279
8280         * tests/examples/volume/Makefile.am:
8281         * tests/icles/Makefile.am:
8282           We should use $(LIBM).
8283
8284 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8285
8286         * tests/icles/Makefile.am:
8287           This needs -lm.
8288
8289 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8290
8291         * gst-libs/gst/rtp/gstbasertppayload.c:
8292         (gst_basertppayload_class_init), (gst_basertppayload_init),
8293         (gst_basertppayload_set_property),
8294         (gst_basertppayload_get_property):
8295         Don't break ABI, restore previous ranges. Keep the default random
8296         selection of timestamp and seqnum offset but as soon as the app sets a
8297         specific value, use that one.
8298
8299 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8300
8301         Patch by: Bastien Nocera <hadess at hadess dot net>
8302
8303         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8304         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8305         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8306         * sys/xvimage/xvimagesink.h:
8307         Add option to turn off double-buffering for debugging purposes.
8308         Fixes #437169.
8309
8310 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8311
8312         Patch by: Jorn Baayen <jorn at openedhand dot com>
8313
8314         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
8315         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
8316         (gst_ximagesink_init), (gst_ximagesink_class_init):
8317         * sys/ximage/ximagesink.h:
8318         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
8319         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8320         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8321         * sys/xvimage/xvimagesink.h:
8322         add 'handle-expose' property. Useful for video widgets which may want to
8323         be in control of Expose behaviour. Fixes #380625
8324
8325 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8326
8327         * gst-libs/gst/rtp/gstbasertppayload.c:
8328         (gst_basertppayload_class_init), (gst_basertppayload_init),
8329         (gst_basertppayload_event), (gst_basertppayload_push),
8330         (gst_basertppayload_set_property),
8331         (gst_basertppayload_get_property),
8332         (gst_basertppayload_change_state):
8333         * gst-libs/gst/rtp/gstbasertppayload.h:
8334         Fix ranges of rtp payloader properties so that the full range can be
8335         used in addition to -1 (random).
8336         Fix wrong seqnum reporting in caps.
8337         Fixes #420326.
8338
8339 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
8340
8341         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
8342         (gst_video_rate_query):
8343         Use boilerplate.
8344         Add latency query, might not be perfect yet but already works a lot
8345         better. Fixes #442557.
8346
8347 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8348
8349         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8350         (gst_xvimagesink_setcaps):
8351         * sys/xvimage/xvimagesink.h:
8352         After a caps change, redraw our borders to avoid garbage left there
8353         when the image format changes to a smaller size, like 16:9 -> 4:3
8354         Also, hold the flow_lock a bit longer in the set_caps while we're
8355         fiddling with the xcontext.
8356
8357 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8358
8359         * Makefile.am:
8360         * configure.ac:
8361         * tests/Makefile.am:
8362         Remove bogus check for libcheck, since we check for
8363         gstreamer-check and it pulls in the required info from there, and we
8364         weren't actually _using_ the information for libcheck ourselves
8365         anyway.
8366
8367 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8368
8369         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8370         (gst_ffmpeg_caps_to_pixfmt):
8371         Fix the r_mask test for RGBA32 on little-endian.
8372         Fix a stupid typo that would have obviously broken 
8373         compilation on big-endian, if anyone was testing.
8374
8375 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8376
8377         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
8378         (paint_hline_str4):
8379         * gst/videotestsrc/videotestsrc.h:
8380         Add alpha to the color struct.
8381         Use a default alpha value of 255 instead of 128.
8382
8383 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8384
8385         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
8386         (setup_source):
8387         Clear the dynamic pads counter when starting a new uri. This makes
8388         reusing playbin work again.
8389         Fixes #454264.
8390
8391 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8392
8393         * configure.ac:
8394           Use pkg-config to locate check.
8395
8396 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
8397
8398         * configure.ac:
8399         * tests/check/elements/volume.c: (GST_START_TEST):
8400           Fix 'make check' build against core CVS.
8401
8402 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
8403
8404         * gst-libs/gst/interfaces/propertyprobe.c:
8405         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8406         * gst-libs/gst/tag/gstvorbistag.c:
8407           Make gtk-doc happy.
8408
8409 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
8410
8411         * gst-libs/gst/audio/gstbaseaudiosink.c:
8412         (gst_base_audio_sink_callback):
8413           Quick hack to make audiosinks stop at EOS when operating in
8414           pull-mode; needs to be fixed properly some day.
8415
8416 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
8417
8418         * docs/libs/gst-plugins-base-libs-sections.txt:
8419           Fix location of includes in the docs.
8420
8421 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
8422
8423         * gst/ffmpegcolorspace/avcodec.h:
8424         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8425         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
8426         (gst_ffmpegcsp_avpicture_fill):
8427         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
8428         (img_get_alpha_info):
8429         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
8430         of the existing BGRA32 and RGBA32 formats with the alpha at the other
8431         end of the word. Partially fixes #451908
8432
8433 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
8434
8435         * docs/libs/Makefile.am:
8436         * docs/plugins/Makefile.am:
8437           Simplify --extra-dir as gtkdoc scans recursively.
8438
8439 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
8440
8441         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
8442         (gst_adder_request_new_pad):
8443         Make getcaps more robust by not using the proxycaps function. This makes
8444         sure that we don't end up recursively calling getcaps upstream.
8445         See #316248.
8446
8447 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
8448
8449         * gst/audioconvert/audioconvert.c:
8450         Include math.h to fix compilation.
8451
8452 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
8453
8454         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8455         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8456         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
8457         format, as produced by some dc1394 cameras like the iSight.
8458         See http://www.fourcc.org/yuv.php#IYU1
8459
8460 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
8461
8462         * gst/audioconvert/Makefile.am:
8463         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
8464         (check_default), (audio_convert_prepare_context),
8465         (audio_convert_clean_context), (audio_convert_convert):
8466         * gst/audioconvert/audioconvert.h:
8467         * gst/audioconvert/gstaudioconvert.c:
8468         (gst_audio_convert_dithering_get_type),
8469         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
8470         (gst_audio_convert_init), (gst_audio_convert_set_caps),
8471         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
8472         * gst/audioconvert/gstaudioconvert.h:
8473         * gst/audioconvert/gstaudioquantize.c:
8474         (gst_audio_quantize_setup_noise_shaping),
8475         (gst_audio_quantize_free_noise_shaping),
8476         (gst_audio_quantize_setup_dither),
8477         (gst_audio_quantize_free_dither),
8478         (gst_audio_quantize_setup_quantize_func),
8479         (gst_audio_quantize_setup), (gst_audio_quantize_free):
8480         * gst/audioconvert/gstaudioquantize.h:
8481         Implement dithering and noise shaping in audioconvert. By default now
8482         TPDF dithering (and no noise shaping) will be used when converting
8483         from a higher bit depth to 20 bit depth or smaller, otherwise
8484         everything will be as it is now.
8485         For the last audioconvert in a pipeline it would make sense to
8486         use some kind of noise shaping, enabling it by default for all
8487         conversions would give undesired results though. Fixes #360246.
8488         * tests/check/elements/audioconvert.c: (setup_audioconvert),
8489         (GST_START_TEST):
8490         Adjust unit test for the new audioconvert.
8491
8492 2007-06-28  Wim Taymans  <wim@fluendo.com>
8493
8494         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
8495         Use other metrics as well when estimating the buffer level.
8496
8497 2007-06-28  Wim Taymans  <wim@fluendo.com>
8498
8499         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
8500         Small debug improvement.
8501
8502         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
8503         (plugin_init):
8504         Tweak the rate estimation period.
8505         When calculating the buffer filledness in rate estimation mode, don't
8506         mix it with other metrics.
8507
8508 2007-06-28  Wim Taymans  <wim@fluendo.com>
8509
8510         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
8511         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
8512         When creating the groups, allow for a 5 second, unlimited buffers
8513         preroll phase after which we expose the group.
8514         When the group is exposed, use a small number of buffers up to a 2
8515         second limit. Also disconnect the overrun signal from multiqueue when we
8516         exposed the group because it is not needed anymore.
8517
8518 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8519
8520         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8521           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
8522           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
8523           (#451707); also, output some debugging info when dealing with
8524           freeform strings.
8525
8526         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
8527           Add unit test for the above.
8528
8529 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8530
8531         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
8532           Add description for Windows Media RTP caps.
8533
8534         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
8535           Remove RTP fields that don't define the format from caps.
8536
8537 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8538
8539         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8540           Skip empty buffers, but not empty header buffers. That way the original
8541           vorbisdec unit test still passes (#451145); also, take into account
8542           that those empty packets might carry a granulepos.
8543
8544         * tests/check/Makefile.am:
8545         * tests/check/elements/vorbisdec.c:
8546         (_create_codebook_header_buffer), (_create_audio_buffer),
8547         (GST_START_TEST), (vorbisdec_suite):
8548           Add unit test that sends an empty packet.
8549
8550 2007-06-27  Wim Taymans  <wim@fluendo.com>
8551
8552         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8553         Don't error out on 0-sized packets, just emit a warning because this is
8554         not a fatal error. Fixes #451145.
8555
8556 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
8557
8558         * docs/plugins/gst-plugins-base-plugins.args:
8559         * docs/plugins/gst-plugins-base-plugins.signals:
8560         * docs/plugins/inspect/plugin-adder.xml:
8561         * docs/plugins/inspect/plugin-alsa.xml:
8562         * docs/plugins/inspect/plugin-audioconvert.xml:
8563         * docs/plugins/inspect/plugin-audiorate.xml:
8564         * docs/plugins/inspect/plugin-audioresample.xml:
8565         * docs/plugins/inspect/plugin-audiotestsrc.xml:
8566         * docs/plugins/inspect/plugin-cdparanoia.xml:
8567         * docs/plugins/inspect/plugin-decodebin.xml:
8568         * docs/plugins/inspect/plugin-decodebin2.xml:
8569         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
8570         * docs/plugins/inspect/plugin-gdp.xml:
8571         * docs/plugins/inspect/plugin-gnomevfs.xml:
8572         * docs/plugins/inspect/plugin-libvisual.xml:
8573         * docs/plugins/inspect/plugin-ogg.xml:
8574         * docs/plugins/inspect/plugin-pango.xml:
8575         * docs/plugins/inspect/plugin-playbin.xml:
8576         * docs/plugins/inspect/plugin-subparse.xml:
8577         * docs/plugins/inspect/plugin-tcp.xml:
8578         * docs/plugins/inspect/plugin-theora.xml:
8579         * docs/plugins/inspect/plugin-typefindfunctions.xml:
8580         * docs/plugins/inspect/plugin-video4linux.xml:
8581         * docs/plugins/inspect/plugin-videorate.xml:
8582         * docs/plugins/inspect/plugin-videoscale.xml:
8583         * docs/plugins/inspect/plugin-videotestsrc.xml:
8584         * docs/plugins/inspect/plugin-volume.xml:
8585         * docs/plugins/inspect/plugin-vorbis.xml:
8586         * docs/plugins/inspect/plugin-ximagesink.xml:
8587         * docs/plugins/inspect/plugin-xvimagesink.xml:
8588           Update docs with caps info.
8589
8590 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
8591
8592         * po/POTFILES.in:
8593           Add more files with translatable strings (#450875).
8594
8595 2007-06-23  Edward Hervey  <edward@fluendo.com>
8596
8597         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
8598         The chain should be freed if we error out here, else it will leak.
8599         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
8600         (cleanup_decodebin):
8601         Don't forget to *properly* remove the signals, else it will leak.
8602
8603 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
8604
8605         * MAINTAINERS:
8606         Updating all the maintainers files
8607
8608 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
8609
8610         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
8611         (main):
8612           Destroy and recreate parse-launch based pipeline after stop to be able
8613           to play again. Reorder some code and add more comments.
8614
8615 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
8616
8617         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
8618         When handling a delayed-caps notification case, mark
8619         the group as dynamic so that the nbdynamic count is
8620         incremented and decremented correctly. Fixes: #449156
8621         Patch by: Wim Taymans <wim@fluendo.com>
8622
8623 2007-06-19  Andy Wingo  <wingo@pobox.com>
8624
8625         * gst-libs/gst/audio/gstbaseaudiosink.c
8626         (gst_base_audio_sink_init): Enable pull-mode operation.
8627
8628 2007-06-19  Michael Smith <msmith@fluendo.com>
8629
8630         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8631           Change minimum rate back to 1000 to allow low-sample-rate wav files
8632           to play back.
8633
8634 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8635
8636         * po/vi.po:
8637           Update translations.
8638
8639 2007-06-15  David Schleef  <ds@schleef.org>
8640
8641         * gst/playback/gstqueue2.c:
8642           Fix compile error from ignored return value.
8643
8644 2007-06-15  Michael Smith <msmith@fluendo.com>
8645
8646         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
8647           Update tmpbuf for all neccesary rows, not just one, as is required
8648           when downscaling.
8649           Fixes #402076.
8650
8651 2007-06-15  Michael Smith <msmith@fluendo.com>
8652
8653         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
8654         (eos_buffer_probe):
8655           Add a test that ensures we set DELTA_UNIT on all non-header,
8656           non-video buffers, if we have a video stream.
8657         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8658         (gst_ogg_mux_process_best_pad):
8659           Move setting delta_pad to earlier, where we inspect all pads, so
8660           that leading audio pages don't get DELTA_UNIT unset if they come
8661           before the first DELTA_UNIT from video pages. Fixes the newly-added
8662           test. Fixes #385527.
8663
8664 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
8665
8666         * tests/check/pipelines/streamheader.c: (streamheader_suite):
8667           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
8668           fails on the p5-ppc64 build bot and the failure looks like it is due
8669           to the same issue as #348114, ie. a compiler bug.
8670
8671 2007-06-13  Edward Hervey  <edward@fluendo.com>
8672
8673         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8674         Fix build on MacOSX.
8675
8676 2007-06-13  Wim Taymans  <wim@fluendo.com>
8677
8678         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8679         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
8680         Fix compilation on mingw. Fixes #446972.
8681
8682 2007-06-12  Wim Taymans  <wim@fluendo.com>
8683
8684         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8685
8686         * gst/playback/gstqueue2.c: (update_buffering),
8687         (gst_queue_locked_enqueue):
8688         Fix a division by zero when the max percent is <= 0. Fixes #446572.
8689         also update the buffering status when receiving events. Fixes #446551.
8690
8691 2007-06-11  Wim Taymans  <wim@fluendo.com>
8692
8693         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8694
8695         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
8696         (gst_queue_handle_src_query):
8697         Wait for preroll before attempting to forward a duration query upstream.
8698         Fixes #445505.
8699
8700 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
8701
8702         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
8703         (gst_base_rtp_depayload_set_gst_timestamp):
8704         Use G_GINT64_CONSTANT macro for int64 constant.
8705         * win32/common/libgstinterfaces.def:
8706         * win32/common/libgsttag.def:
8707         Add new exported functions.
8708
8709 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
8710
8711         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
8712           The BOS page of the first Dirac video stream needs to come before
8713           the BOS page of any Vorbis streams or other audio streams, just like
8714           it is with Theora.
8715
8716 2007-06-07  Wim Taymans  <wim@fluendo.com>
8717
8718         * gst/playback/gstqueue2.c: (gst_queue_get_range):
8719         Fix compilation.
8720
8721 2007-06-06  Wim Taymans  <wim@fluendo.com>
8722
8723         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8724
8725         * gst/playback/gstqueue2.c: (gst_queue_init),
8726         (gst_queue_handle_sink_event), (gst_queue_chain),
8727         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
8728         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
8729         (gst_queue_src_activate_pull):
8730         Add pull based scheduling and fix some deadlocks. Fixes #444523.
8731         Does not yet completely work because duration queries upstream won't
8732         block yet.
8733
8734 2007-06-06  Wim Taymans  <wim@fluendo.com>
8735
8736         * configure.ac:
8737         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8738         Some more fseeko checks.
8739
8740 2007-06-06  Wim Taymans  <wim@fluendo.com>
8741
8742         * configure.ac:
8743         check for large file support.
8744
8745 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
8746
8747         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
8748
8749         * gst/subparse/gstsubparse.c: (parse_subrip),
8750         (subviewer_unescape_newlines), (parse_subviewer),
8751         (gst_sub_parse_data_format_autodetect),
8752         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
8753         * gst/subparse/gstsubparse.h:
8754         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
8755         * tests/check/elements/subparse.c: (GST_START_TEST),
8756         (subparse_suite):
8757         Add a unit test for both SubViewer formats.
8758
8759 2007-06-01  Michael Smith <msmith@fluendo.com>
8760
8761         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8762           Don't overflow intermediate values when seeking to large time values
8763           in audiotestsrc.
8764
8765 2007-06-05  Wim Taymans  <wim@fluendo.com>
8766
8767         * gst/playback/gstqueue2.c: (gst_queue_have_data),
8768         (gst_queue_create_read), (gst_queue_read_item_from_file),
8769         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
8770         Include stdio to define fseeko.
8771
8772 2007-06-05  Wim Taymans  <wim@fluendo.com>
8773
8774         Patch by: Edward Hervey  <edward@fluendo.com>
8775
8776         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
8777         (gst_v4lsrc_query):
8778         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
8779
8780 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
8781
8782         * gst-libs/gst/riff/Makefile.am:
8783         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
8784           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
8785           our own implementation.
8786
8787 2007-06-05  Wim Taymans  <wim@fluendo.com>
8788
8789         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8790         (gst_base_rtp_depayload_setcaps),
8791         (gst_base_rtp_depayload_set_gst_timestamp),
8792         (gst_base_rtp_depayload_change_state):
8793         Handle timestamp wraparound.
8794
8795 2007-06-05  Wim Taymans  <wim@fluendo.com>
8796
8797         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
8798         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
8799         (gst_uri_decode_bin_change_state):
8800         Make sure we name srcpads uniquely even when using different internal
8801         decodebins.
8802         Signal no-more-pads when no more dynamic elements exist.
8803         Remove pads on cleanup.
8804
8805 2007-06-05  Wim Taymans  <wim@fluendo.com>
8806
8807         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8808
8809         * gst/playback/gstqueue2.c: (gst_queue_class_init),
8810         (gst_queue_init), (gst_queue_finalize),
8811         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
8812         (gst_queue_create_read), (gst_queue_read_item_from_file),
8813         (gst_queue_open_temp_location_file),
8814         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
8815         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8816         (gst_queue_is_empty), (gst_queue_is_filled),
8817         (gst_queue_change_state), (gst_queue_set_temp_location),
8818         (gst_queue_set_property):
8819         Add support for filebased buffering. Fixes #441264.
8820
8821 2007-06-05  Wim Taymans  <wim@fluendo.com>
8822
8823         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
8824         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
8825         (caps_notify_group_cb), (gst_decode_group_new),
8826         (gst_decode_group_free):
8827         Add support for delayed caps fixation when autoplugging.
8828         Optimize cases where a multiqueue is not needed/wanted, like right after
8829         anything that is not a demuxer.
8830
8831 2007-06-05  Wim Taymans  <wim@fluendo.com>
8832
8833         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
8834         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
8835         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
8836         consideratly speedup ogg chain detection by not trying to find a base
8837         timestamp for skeleton streams. 
8838
8839 2007-06-05  Wim Taymans  <wim@fluendo.com>
8840
8841         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
8842         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
8843         (gst_multi_fd_sink_remove_flush),
8844         (gst_multi_fd_sink_remove_client_link),
8845         (gst_multi_fd_sink_handle_client_write),
8846         (gst_multi_fd_sink_handle_clients):
8847         * gst/tcp/gstmultifdsink.h:
8848         Add support for remove_flush.
8849
8850 2007-06-05  Wim Taymans  <wim@fluendo.com>
8851
8852         * docs/design/draft-keyframe-force.txt:
8853         * ext/theora/theoraenc.c: (theora_enc_sink_event),
8854         (theora_enc_chain):
8855         Add draft design for forcing keyframes in encoders and implement in
8856         theoraenc.
8857
8858 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
8859
8860         * configure.ac:
8861           Back to CVS
8862
8863 === release 0.10.13 ===
8864
8865 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
8866
8867         * configure.ac:
8868           releasing 0.10.13, "What's Going on?"
8869
8870 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8871
8872         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8873         In riff, the depth is stored in the size field but it just means that
8874         the least significant bits are cleared. We can therefore just play
8875         the sample as if it had a depth == width. Fixes: #440997
8876
8877         Patch by: Wim Taymans <wim@fluendo.com> 
8878         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
8879
8880 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8881
8882         * gst-libs/gst/floatcast/floatcast.h:
8883         Define inline when needed on win32 builds. Fixes: #441295
8884         Patch by: Sebastien Moutte  <sebastien@moutte.net>
8885
8886 2007-05-29  Wim Taymans  <wim@fluendo.com>
8887
8888         * gst/playback/gstplaybasebin.c: (queue_overrun),
8889         (no_more_pads_full):
8890         Stop buffering when the group is commited because the queues filled up.
8891         Fixes #442024.
8892
8893 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
8894
8895         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
8896         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
8897         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
8898         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
8899         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
8900         * ext/alsa/gstalsamixer.h:
8901         * ext/alsa/gstalsamixerelement.c:
8902         (gst_alsa_mixer_element_interface_supported),
8903         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
8904         (gst_alsa_mixer_element_set_property),
8905         (gst_alsa_mixer_element_get_property),
8906         (gst_alsa_mixer_element_change_state):
8907         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
8908         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
8909         (gst_mixer_option_changed):
8910         * gst-libs/gst/interfaces/mixer.h:
8911         Revert commits towards #152864 made so far. We'll pick it up again
8912         after the 0.10.13 release.
8913
8914 2007-05-24  Wim Taymans  <wim@fluendo.com>
8915
8916         * gst-libs/gst/audio/gstbaseaudiosink.c:
8917         (gst_base_audio_sink_render):
8918         After an interrupt (PAUSED/flush) assume that the next sample should not
8919         be aligned to the previous sample. Fixes #417992.
8920
8921 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
8922
8923         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8924           Don't add channels and rate fields to the template caps for
8925           audio/x-dts, as wavparse might not always be able to set them,
8926           which would then lead to 'caps are not a real subset of the
8927           template caps' warnings.
8928
8929 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8930
8931         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
8932         Handle unknown or invalid pads without crashing, as might occur if
8933         a media file like an mp3 is specified as a subtitle file.
8934         Fixes: #410039
8935
8936 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8937
8938         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
8939         (setup_sinks):
8940         Block the subtitle bin output queue before ghosting it and linking,
8941         then unblock after. This avoids spurious not-linked errors caused 
8942         by the queue starting up (because it gets linked when it is ghosted). 
8943         Fixes: #350299
8944
8945 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
8946
8947         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
8948         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
8949         file. Avoids flukes where the input gets typefound to some valid but
8950         useless type.
8951
8952 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8953
8954         * tests/check/Makefile.am:
8955         * tests/check/elements/.cvsignore:
8956         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
8957         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
8958           Add unit test for gnomevfssink seeking and position reporting for
8959           file:// URIs.
8960
8961 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8962
8963         Patch by: Mark Nauwelaerts <manauw at skynet be>
8964
8965         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
8966         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
8967         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
8968         * ext/gnomevfs/gstgnomevfssink.h:
8969           Fix position reporting, especially after a seek (from upstream),
8970           see #412648.
8971
8972 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8973
8974         * ext/cdparanoia/gstcdparanoiasrc.c:
8975           Repair umlaut.
8976
8977 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
8978
8979         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8980         Specify the full valid range for MP3 samplerates. Fixes a regression
8981         caused by extra header checks since the last release.
8982
8983 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
8984
8985         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
8986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
8987         Fix a locking-order bug I introduced with my changes the other day.
8988         Patch by Mike Smith.
8989
8990 2007-05-21  Michael Smith <msmith@fluendo.com>
8991
8992         * ext/theora/theoradec.c: (theora_handle_data_packet):
8993           Don't look inside 0-length packets (which indicate duplicated
8994           frames)
8995
8996 2007-05-21  Wim Taymans  <wim@fluendo.com>
8997
8998         * ext/cdparanoia/gstcdparanoiasrc.c:
8999         (gst_cd_paranoia_src_read_sector):
9000         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9001         (gst_base_audio_src_create):
9002         Small cleanups.
9003
9004         * ext/theora/theoradec.c: (theora_dec_sink_event):
9005         Fix typo.
9006
9007         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9008         (gst_base_rtp_depayload_set_gst_timestamp):
9009         Add some FIXME
9010
9011         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
9012         And some debug info when a FIXME path is hit.
9013
9014 2007-05-21  Wim Taymans  <wim@fluendo.com>
9015
9016         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9017         (gst_base_rtp_audio_payload_class_init),
9018         (gst_base_rtp_audio_payload_init),
9019         (gst_base_rtp_audio_payload_finalize),
9020         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
9021         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
9022         (gst_base_rtp_payload_audio_handle_event):
9023         Some cleanups, remove minptime property as it is now in the parent
9024         class.
9025         Override parent class event function.
9026
9027         * gst-libs/gst/rtp/gstbasertppayload.c:
9028         (gst_basertppayload_class_init), (gst_basertppayload_init),
9029         (gst_basertppayload_event), (gst_basertppayload_set_property),
9030         (gst_basertppayload_get_property):
9031         * gst-libs/gst/rtp/gstbasertppayload.h:
9032         Add min-ptime property.
9033         Add handle-event vmethod. Fixes #415001.
9034
9035 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
9036
9037         * gst-libs/gst/audio/gstbaseaudiosink.c
9038           (gst_base_audio_sink_change_state):
9039           Fix typo in comment.
9040
9041         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
9042           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
9043           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
9044           close_link):
9045         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
9046           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
9047           Remove trailing whitespaces in comments.
9048
9049         * gst/volume/Makefile.am:
9050           Fix tabs.
9051
9052 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
9053
9054         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
9055
9056         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
9057           set_option, get_option, _gst_reserved):
9058           Revert reordering functions (keep ABI).
9059
9060 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
9061
9062         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
9063         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
9064         (gst_ximagesink_show_frame):
9065         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9066         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
9067         (gst_xvimagesink_show_frame):
9068         When we create our own window, indicate that we handle the 
9069         WM_DELETE client message from the window manager, so that it won't 
9070         kill our window (and our app) along with it. Handle ClientMessage,
9071         post an error on the bus, and close the window. Further buffers
9072         arriving will result in a FlowError because the window has been
9073         destroyed.
9074
9075         Fixes: #393975
9076
9077         Clean up the X event handling loop and make them the same for
9078         both xvimagesink and ximagesink while I'm at it.
9079
9080 2007-05-17  Wim Taymans  <wim@fluendo.com>
9081
9082         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
9083         Make decodebin2 autoplug depayloaders too.
9084
9085         * gst/playback/gsturidecodebin.c: (source_new_pad):
9086         Set the newly created decoder in a usable state when autoplugging a
9087         dynamic source such as RTSP.
9088
9089 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
9090
9091         * gst/playback/gststreaminfo.c: (cb_probe):
9092           Ignore video-codec tag for audio streams and ignore audio-codec tags
9093           for video streams. Should make codec name collection a bit more
9094           robust against sloppy demuxers that send tag events containing both
9095           tags down each pad.
9096
9097 2007-05-17  Wim Taymans  <wim@fluendo.com>
9098
9099         * gst/playback/gstqueue2.c: (update_rates):
9100         Tweak the buffering thresholds a little.
9101         Update the buffer size with the previously calculate rate instead of
9102         only when we calculate a new rate so that we get smoother buffering
9103         updates.
9104
9105         * gst/playback/Makefile.am:
9106         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
9107         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
9108         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
9109         (gst_uri_decode_bin_get_property), (unknown_type),
9110         (add_element_stream), (no_more_pads_full), (no_more_pads),
9111         (source_no_more_pads), (new_decoded_pad), (array_has_value),
9112         (gen_source_element), (has_all_raw_caps), (analyse_source),
9113         (remove_decoders), (make_decoder), (remove_source),
9114         (source_new_pad), (setup_source), (decoder_query_init),
9115         (decoder_query_duration_fold), (decoder_query_duration_done),
9116         (decoder_query_position_fold), (decoder_query_position_done),
9117         (decoder_query_latency_fold), (decoder_query_latency_done),
9118         (decoder_query_seeking_fold), (decoder_query_seeking_done),
9119         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
9120         (gst_uri_decode_bin_change_state), (plugin_init):
9121         New element that intergrates a source, optional buffering element and
9122         decodebin.
9123
9124 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
9125
9126         * configure.ac:
9127           Bump libtheora requirement to 1.0alpha5 for the pixformat check
9128           (also has a .pc file, so we don't need the fallback check any
9129           longer). Fixes #438840.
9130
9131 2007-05-17  Wim Taymans  <wim@fluendo.com>
9132
9133         * gst/playback/gstqueue2.c: (gst_queue_get_type),
9134         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
9135         (apply_segment), (apply_buffer), (update_buffering),
9136         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
9137         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
9138         (gst_queue_handle_sink_event), (gst_queue_is_filled),
9139         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
9140         (plugin_init):
9141         fix build.
9142
9143 2007-05-17  Wim Taymans  <wim@fluendo.com>
9144
9145         * gst/playback/Makefile.am:
9146         * gst/playback/gstqueue2.c: (gst_queue_get_type),
9147         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
9148         (gst_queue_getcaps), (gst_queue_bufferalloc),
9149         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
9150         (apply_buffer), (update_buffering), (reset_rate_timer),
9151         (update_rates), (gst_queue_locked_flush),
9152         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
9153         (gst_queue_handle_sink_event), (gst_queue_is_empty),
9154         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
9155         (gst_queue_loop), (gst_queue_handle_src_event),
9156         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
9157         (gst_queue_src_activate_push), (gst_queue_change_state),
9158         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
9159         On our way to playbin2 this is the new network queue that does buffering
9160         all by itself using high and low watermarks. It can also measure up and
9161         downstream bandwidth to optimally size the queue.
9162
9163 2007-05-17  Michael Smith <msmith@fluendo.com>
9164
9165         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
9166         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
9167           Use the segment->last_stop value to calculate the next timestamp to
9168           generate after a seek; not the segment->start value.
9169
9170 2007-05-15  David Schleef  <ds@schleef.org>
9171
9172         * docs/Makefile.am: Install docs even when --disable-gtk-doc
9173           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
9174
9175 2007-05-15  Wim Taymans  <wim@fluendo.com>
9176
9177         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9178         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
9179         Some more chained streaming ogg timestamp fixes.
9180
9181 2007-05-15  Wim Taymans  <wim@fluendo.com>
9182
9183         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9184         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
9185         (gst_ogg_demux_handle_page):
9186         Add some FIXMEs.
9187         Fix chain start/stop segment handling based on patch by
9188         <ahalda at cs dot mcgill dot ca> see #320984.
9189
9190 2007-05-15  Michael Smith <msmith@fluendo.com>
9191
9192         * configure.ac:
9193           We don't require a C++ compiler. So don't require one.
9194
9195 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9196
9197         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
9198           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
9199           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
9200           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
9201           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
9202           gst_alsa_mixer_update_track):
9203           Apply some of the cleanup Tim suggested in #152864 afterwards.
9204
9205 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9206
9207         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
9208
9209         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
9210           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
9211           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
9212           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
9213           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
9214           gst_alsa_mixer_handle_source_callback,
9215           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
9216           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
9217           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
9218           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
9219           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
9220           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
9221         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
9222         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
9223           gst_alsa_mixer_element_interface_supported,
9224           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
9225           gst_alsa_mixer_element_set_property,
9226           gst_alsa_mixer_element_get_property,
9227           gst_alsa_mixer_element_change_state):
9228         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
9229         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
9230           gst_mixer_option_changed):
9231         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
9232           volume_changed, option_changed, _gst_reserved):
9233           Implement notification for alsamixer. Fixes #152864
9234
9235 2007-05-14  David Schleef  <ds@schleef.org>
9236
9237         * gst/videotestsrc/videotestsrc.c:
9238         * gst/videotestsrc/videotestsrc.h:
9239           Add support for video/x-raw-bayer.
9240
9241 2007-05-12  David Schleef  <ds@schleef.org>
9242
9243         * sys/xvimage/xvimagesink.c:
9244           Add some sanity checking for the XVImage size returned by X.
9245           Related to #377400.
9246
9247 2007-05-12  Wim Taymans  <wim@fluendo.com>
9248
9249         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9250         (gst_base_rtp_depayload_setcaps),
9251         (gst_base_rtp_depayload_set_gst_timestamp):
9252         Parse and use additional caps fields as described in updated
9253         application/x-rtp caps spec.
9254
9255 2007-05-12  Wim Taymans  <wim@fluendo.com>
9256
9257         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9258         (gst_ogg_demux_collect_chain_info):
9259         If there is a stream in a chain without any data packets, ignore the
9260         stream in the total length calculations. Might be related to #436820.
9261
9262 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
9263
9264         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
9265         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
9266         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
9267         (mpeg_video_type_find), (mpeg_video_stream_type_find),
9268         (plugin_init):
9269
9270         Consolidate and re-work our mpeg system stream detection to probe
9271         more packets and produce a higher confidence result. Fixes a
9272         regression caused by lowering the typefind probability last year
9273         - related to bug #397810. Remove the redundant MPEG-1 specific 
9274         typefind function, as the new one detects both MPEG-1 & MPEG-2
9275         happily.
9276
9277         Also cleanup the MPEG elementary and MPEG-TS detection functions a
9278         little. 
9279
9280         Tested against my media test directory, with some improvements and
9281         no regressions.
9282
9283 2007-05-10  Wim Taymans  <wim@fluendo.com>
9284
9285         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
9286         (queue_out_of_data):
9287         Connect to the new queue "pushing" signal instead of the broken
9288         "running" one.
9289
9290 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
9291
9292         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9293         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
9294         Move variable declaration before the first instruction.
9295         * gst/videotestsrc/videotestsrc.c:
9296         Define M_PI if it's not defined yet.
9297         * win32/common/libgstrtp.def:
9298         Add new exported functions.
9299
9300 2007-05-09  Michael Smith <msmith@fluendo.com>
9301
9302         * ext/theora/theoradec.c: (theora_handle_type_packet):
9303           gst_pad_push_event() does not return a GstFlowReturn!
9304
9305 2007-05-09  Wim Taymans  <wim@fluendo.com>
9306
9307         * tests/examples/seek/scrubby.c: (stop_cb), (main):
9308         * tests/examples/seek/seek.c: (do_seek):
9309         Some small cosmetic changes.
9310
9311 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
9312
9313         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
9314           gst_adder_change_state):
9315         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
9316           segment_pending, segment_position, segment_rate):
9317           Handle playback-rate on adder.
9318
9319 2007-05-07  Michael Smith <msmith@fluendo.com>
9320
9321         * ext/theora/gsttheoradec.h:
9322         * ext/theora/theoradec.c: (gst_theora_dec_reset),
9323         (theora_dec_sink_event), (theora_handle_comment_packet),
9324         (theora_handle_type_packet), (theora_dec_change_state):
9325           Don't push events (newsegment, tags) before initialising the
9326           decoder.
9327           This is neccesary for seeking to work correctly in gnonlin.
9328
9329 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9330
9331         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9332         * gst/adder/gstadder.c:
9333         * gst/audiotestsrc/gstaudiotestsrc.c
9334           (gst_audio_test_src_create_white_noise):
9335         * gst/videotestsrc/gstvideotestsrc.c:
9336         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
9337           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
9338           volume_sink_template, volume_src_template, gst_volume_init,
9339           volume_process_double, volume_process_int16,
9340           volume_process_int16_clamp):
9341           Doc fixes and formatting.
9342
9343 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9344
9345         * tests/check/Makefile.am:
9346         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
9347           Minimal check for volume's GstController usability; also another
9348           test for #422295.
9349
9350 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9351
9352         * gst-libs/gst/cdda/gstcddabasesrc.c:
9353         (gst_cdda_base_src_add_track):
9354           Fix it so that it (a) makes sense and (b) doesn't break
9355           everything cdda-related including the unit test.
9356
9357 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9358
9359         * gst-libs/gst/cdda/gstcddabasesrc.c:
9360         (gst_cdda_base_src_add_track):
9361           Fix build when disabling asserts.
9362
9363 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
9364
9365         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
9366           When XShm is not available, we might get row strides that are not
9367           rounded up to multiples of four; this is bad, because virtually
9368           every RGB-processing element in GStreamer assumes rowstrides are
9369           rounded up to multiples of four, so let's allocate at least enough
9370           memory to avoid crashes in this case. The image will still be
9371           displayed distorted though if this happens, so that still needs
9372           fixing (maybe by allocating a bigger image with an 'even' width
9373           and then clipping it appropriately when rendering - something for
9374           Xlib aficionados in any case).
9375
9376 2007-05-03  Michael Smith <msmith@fluendo.com>
9377
9378         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
9379           If a buffer doesn't have a timestamp, assume it's contiguous with
9380           the previous buffer, and synthesise timestamps appropriately.
9381
9382 2007-05-03  Edward Hervey  <edward@fluendo.com>
9383
9384         * tests/check/elements/videorate.c: (GST_START_TEST):
9385         Set buffer timestamp to a valid value in order to test the buffer
9386         really does stay in videorate.
9387
9388 2007-05-03  Edward Hervey  <edward@fluendo.com>
9389
9390         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9391         There is no sensible way to handle incoming buffers which don't have a
9392         valid timestamp. We therefore discard them and wait for the next one.
9393
9394 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
9395
9396         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
9397         * gst/playback/gstdecodebin2.c: (plugin_init):
9398           Better error message for text files.
9399
9400 2007-04-29  Wim Taymans  <wim@fluendo.com>
9401
9402         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
9403         Fix offset bug in generation RR packets.
9404
9405 2007-04-27  Julien MOUTTE  <julien@moutte.net>
9406
9407         * ext/theora/theoradec.c: (_theora_granule_time),
9408         (theora_dec_push_forward), (theora_handle_data_packet),
9409         (theora_dec_decode_buffer): Calculate buffer duration correctly
9410         to generate a perfect stream (#433888).
9411         * gst/audioresample/gstaudioresample.c:
9412         (audioresample_check_discont): Glib provides ABS.
9413
9414 2007-04-27  Wim Taymans  <wim@fluendo.com>
9415
9416         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
9417         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
9418         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
9419         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9420         (gst_rtcp_packet_bye_set_reason):
9421         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9422         Fix RB block parsing and writing.
9423         Add support for constructing BYE packets.
9424
9425 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9426
9427         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
9428         (gst_base_audio_src_create):
9429         * po/POTFILES.in:
9430           When posting a warning message because samples were dropped, post
9431           something more intelligible than he default error message for clock
9432           errors which is just confusing in this context (#432984).
9433
9434 2007-04-25  Wim Taymans  <wim@fluendo.com>
9435
9436         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
9437         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
9438         (read_packet_header), (gst_rtcp_packet_move_to_next),
9439         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
9440         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
9441         (gst_rtcp_packet_sdes_get_item_count),
9442         (gst_rtcp_packet_sdes_first_item),
9443         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
9444         (gst_rtcp_packet_sdes_first_entry),
9445         (gst_rtcp_packet_sdes_next_entry),
9446         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
9447         (gst_rtcp_packet_sdes_add_entry):
9448         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9449         Implement code to write SR, RR and SDES packets.
9450
9451 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9452
9453         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
9454
9455         * sys/ximage/ximagesink.c:
9456           Fix build if XShm is not available (#432362).
9457
9458 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
9459
9460         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
9461         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
9462         pointers to random memory which are passed to g_free() when
9463         audio_convert_prepare_context() is called the first time.
9464
9465 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9466
9467         Patch by: Dan Williams <dcbw redhat com>
9468
9469         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9470           Don't leak incoming buffer if gst_pad_push() returns a
9471           non-OK flow. Fixes #432755.
9472          
9473         * tests/check/elements/videorate.c: (GST_START_TEST),
9474         (videorate_suite):
9475           Unit test for the above by Yours Truly.
9476
9477 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
9478
9479         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
9480         (gst_adder_sink_event), (gst_adder_collected):
9481           Fix non-flushing segmented seeks, Fixes #340060 for me
9482
9483 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9484
9485         Patch by: Olivier Crete  <tester at tester ca>
9486
9487         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9488         (gst_base_rtp_audio_payload_class_init),
9489         (gst_base_rtp_audio_payload_init),
9490         (gst_base_rtp_audio_payload_dispose):
9491           Chain up to parent class in dispose function; get rid of
9492           unnecessary 'diposed' flag in private structure (#415001).
9493
9494 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9495
9496         * docs/libs/gst-plugins-base-libs.types:
9497         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9498         (gst_base_rtp_audio_payload_class_init):
9499         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9500         * gst-libs/gst/rtp/gstbasertppayload.c:
9501           Some minor docs fixes and additions; also add missing 'Since' bits.
9502
9503 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9504
9505         Patch by: Zeeshan Ali  <zeenix gmail com>
9506
9507         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9508         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
9509         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
9510         (gst_base_rtp_audio_payload_push):
9511         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9512           The recently-added gst_base_rtp_audio_payload_push() should take an
9513           object of type GstBaseRTPAudioPayload as first argument (#431672).
9514
9515 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9516
9517         * gst/audioresample/gstaudioresample.c:
9518           Make more functions static, just because we can.
9519
9520 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9521
9522         * tests/check/elements/audioresample.c:
9523           Add unit test for audioresample shutdown crasher (#420106).
9524
9525 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
9526
9527         * gst/subparse/gstsubparse.c:
9528         * gst/subparse/samiparse.c:
9529           Use GST_DISABLE_XML here
9530
9531         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9532         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
9533         (gst_xvimagesink_buffer_alloc),
9534         (gst_xvimagesink_navigation_send_event):
9535         * sys/xvimage/xvimagesink.h:
9536           Include stdlib.h when using atoi.
9537           
9538         * tests/check/elements/playbin.c: (playbin_suite):
9539           Use GST_DISABLE_REGISTRY here
9540
9541 2007-04-19  Michael Smith  <msmith@fluendo.com>
9542
9543         * ext/theora/gsttheoraenc.h:
9544         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
9545         (theora_enc_sink_event), (theora_enc_change_state):
9546           Track initialisation state; don't try to use encoder state if we're
9547           not initialised (it'll segfault).
9548
9549 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
9550
9551         * tests/check/pipelines/.cvsignore:
9552         Fix build.
9553
9554 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9555
9556         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9557         Allow random depths between 1 and 32 instead of only multiplies of 8.
9558
9559 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9560
9561         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9562         Set the maximum number of channels for PCM and float in the correct
9563         place to have it also used when creating the template caps.
9564
9565 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9566
9567         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9568         Correctly support 4, 6 and 8 channels with normal PCM and float
9569         wav files.
9570
9571         Fix the depth and signedness calculation in extensible wav files and
9572         also handle 1, 2, 4, 6, 8 channels here when a file without channel
9573         mask is found.
9574
9575         Add support for float, alaw and mulaw in extensible wav files.
9576
9577         This allows correct playback of all but 5 files from
9578         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
9579         
9580         (gst_riff_create_audio_template_caps):
9581         Add voxware and float formats to the template caps.     
9582
9583 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9584
9585         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
9586
9587         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
9588         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
9589
9590         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9591         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
9592         Use the correct format strings for integer formats.
9593
9594 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
9595
9596         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
9597           Don't use pad_alloc_buffer_and_set_caps to create a small header
9598           packet, or, worse, to create a big temporary video buffer using the
9599           src pad.
9600
9601 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9602
9603         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
9604         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9605           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
9606           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
9607
9608 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9609
9610         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9611           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
9612           streamheader_suite):
9613           Add another test set up for failure
9614
9615 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9616
9617         * tests/check/Makefile.am:
9618         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
9619           GST_START_TEST, streamheader_suite, main):
9620           Add a test for the streamheader bug Wim fixed.
9621
9622 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
9623
9624         * ext/theora/theoradec.c: (theora_dec_sink_event):
9625         Fix misleading comment.
9626
9627 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
9628
9629         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9630           More sanity checks for the header fields.
9631
9632 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9633
9634         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9635           Try encodings from all environment variables, not just those in the
9636           first environment variable that is set.
9637
9638 2007-04-12  Wim Taymans  <wim@fluendo.com>
9639
9640         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9641         (gst_video_rate_chain):
9642         Add some debug.
9643
9644         * tests/check/elements/videorate.c: (GST_START_TEST),
9645         (videorate_suite):
9646         Added check for videorate changing caps handling. Closes #421834.
9647
9648 2007-04-12  Michael Smith  <msmith@fluendo.com>
9649
9650         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9651           Use scale functions to avoid overflow when calculating duration of 
9652           vorbis buffers.
9653
9654 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9655
9656         * docs/libs/gst-plugins-base-libs-sections.txt:
9657         * gst-libs/gst/tag/tag.h:
9658         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9659           API: add gst_tag_freeform_string_to_utf8() (#405072).
9660
9661         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
9662           Use gst_tag_freeform_string_to_utf8() here.
9663
9664 2007-04-12  Wim Taymans  <wim@fluendo.com>
9665
9666         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
9667         (gst_gdp_pay_sink_event):
9668         Make sure we set the IN_CAPS flag correctly.
9669
9670         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
9671         Get the IN_CAPS flag before we call functions that mess with the flags.
9672
9673 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9674
9675         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
9676           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
9677           Only stamp buffers with offset/offset_end right before they get
9678           pushed.  This ensures offset continuity, which was not the case
9679           before as shown by
9680           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
9681
9682 2007-04-06  Wim Taymans  <wim@fluendo.com>
9683
9684         * gst/playback/gstplaybin.c: (add_sink),
9685         (gst_play_bin_change_state):
9686         Activate sync in playbin, we are ready to handle it for live streams.
9687
9688 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
9689
9690         * tests/check/elements/playbin.c:
9691         (test_sink_usage_video_only_stream), (playbin_suite):
9692           Add small test for stream-info-value-array code paths.
9693
9694 2007-04-05  Wim Taymans  <wim@fluendo.com>
9695
9696         * gst-libs/gst/audio/gstbaseaudiosink.c:
9697         (gst_base_audio_sink_skew_slaving):
9698         Don't try to create invalid calibration parameters by making the
9699         internal time go backwards, instead make external time go forward.
9700
9701 2007-04-05  Wim Taymans  <wim@fluendo.com>
9702
9703         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9704
9705         * gst/playback/gstplaybasebin.c: (add_stream):
9706         Fix leak in add_stream(), when g_value_set_object() increases the
9707         refcount of streaminfo object. Fixes #426250.
9708
9709 2007-04-03  David Schleef  <ds@schleef.org>
9710
9711         * gst/videotestsrc/gstvideotestsrc.c:
9712         * gst/videotestsrc/gstvideotestsrc.h:
9713         * gst/videotestsrc/videotestsrc.c:
9714         * gst/videotestsrc/videotestsrc.h:
9715           Add a test pattern called "circular", which has concentric
9716           rings with varying radial frequency.  The main purpose of this
9717           pattern is to test fidelity loss in a filter or scaler element.
9718           Notably, this pattern is scale invariant, and is optimally viewed
9719           with a width (and height) of 400.
9720
9721 2007-04-03  Wim Taymans  <wim@fluendo.com>
9722
9723         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9724
9725         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
9726         (deactivate_free_recursive):
9727         Decodebin2 doesn't unref pads it obtains in some occasions:
9728         - multiqueue src pads, when either connecting further or exposing
9729         - sink pads of new autoplugged elements
9730         - peer pads when recursively freeing elements
9731         Fixes #425455.
9732
9733 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
9734
9735         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9736         Add audio/x-raw-float support, now that audioconvert support
9737         non-native endianness floats.
9738
9739 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
9740
9741         * docs/libs/gst-plugins-base-libs-docs.sgml:
9742           gstreamer-plugins-base.pc doesn't exist, it's
9743           gstreamer-plugins-base-0.10.pc.
9744
9745 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9746
9747         Patch by: René Stadler <mail at renestadler dot de>
9748         with some minor changes
9749
9750         * gst-libs/gst/floatcast/floatcast.h:
9751         Use more efficient float endianness conversion functions that don't
9752         involve 2 function calls per value.
9753         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
9754         (check_default), (audio_convert_prepare_context):
9755         * gst/audioconvert/gstaudioconvert.c:
9756         (gst_audio_convert_parse_caps), (make_lossless_changes):
9757         Support non-native endianness floats as input and output.
9758         Fixes #339838.
9759         * tests/check/elements/audioconvert.c: (verify_convert),
9760         (GST_START_TEST):
9761         Add unit tests for the non-native endianness float conversions.
9762
9763 2007-03-29  Wim Taymans  <wim@fluendo.com>
9764
9765         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9766         (gst_base_rtp_depayload_base_init),
9767         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
9768         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
9769         (gst_base_rtp_depayload_set_gst_timestamp),
9770         (gst_base_rtp_depayload_change_state),
9771         (gst_base_rtp_depayload_set_property),
9772         (gst_base_rtp_depayload_get_property):
9773         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9774         Add Private structure.
9775         Bring element code to 2007.
9776         Parse clock-base caps param and use it when generating the
9777         newsegment.
9778         Reset variables before going to PAUSED.
9779         Fix some docs.
9780
9781 2007-03-29  Wim Taymans  <wim@fluendo.com>
9782
9783         * docs/libs/gst-plugins-base-libs-docs.sgml:
9784         * docs/libs/gst-plugins-base-libs-sections.txt:
9785         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9786         (gst_base_rtp_audio_payload_get_adapter):
9787         Add RTCP docs.
9788         Fix some more docs.
9789
9790         * gst-libs/gst/rtp/Makefile.am:
9791         * gst-libs/gst/rtp/gstrtcpbuffer.c:
9792         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
9793         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
9794         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
9795         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
9796         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
9797         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
9798         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
9799         (gst_rtcp_packet_sr_get_sender_info),
9800         (gst_rtcp_packet_sr_set_sender_info),
9801         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
9802         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
9803         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
9804         (gst_rtcp_packet_sdes_get_chunk_count),
9805         (gst_rtcp_packet_sdes_first_chunk),
9806         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
9807         (gst_rtcp_packet_sdes_first_item),
9808         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
9809         (gst_rtcp_packet_bye_get_ssrc_count),
9810         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
9811         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9812         (gst_rtcp_packet_bye_get_reason_len),
9813         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
9814         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9815         Add new helper object for parsing and creating RTCP messages.
9816
9817 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9818
9819         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9820         PCM samples with width=8 must be always unsigned, no matter what
9821         depth they have.
9822
9823 2007-03-29  Andy Wingo  <wingo@pobox.com>
9824
9825         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
9826         perfect offsets also, not just timestamps.
9827
9828         * tests/check/elements/videorate.c (test_more): Test that given
9829         any incoming offsets, that videorate produces perfect offsets.
9830
9831 2007-03-29  Wim Taymans  <wim@fluendo.com>
9832
9833         * gst-libs/gst/riff/riff-ids.h:
9834         Add some more RIFF formats.
9835
9836 2007-03-29  Wim Taymans  <wim@fluendo.com>
9837
9838         * gst-libs/gst/rtp/gstrtpbuffer.c:
9839         (gst_rtp_buffer_default_clock_rate):
9840         * gst-libs/gst/rtp/gstrtpbuffer.h:
9841         Fix fixed payload names and docs.
9842         Added method to get the default clock rates of fixed payload types.
9843         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
9844
9845 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9846
9847         * tests/check/pipelines/.cvsignore:
9848         Add new vorbisdec test to cvsignore.
9849
9850 2007-03-28  Wim Taymans  <wim@fluendo.com>
9851
9852         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
9853         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
9854         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
9855         (gst_base_audio_sink_set_property),
9856         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
9857         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
9858         (gst_base_audio_sink_skew_slaving),
9859         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
9860         (gst_base_audio_sink_async_play):
9861         * gst-libs/gst/audio/gstbaseaudiosink.h:
9862         Store private stuff in GstBaseAudioSinkPrivate.
9863         Add configurable clock slaving modes property.
9864         API:: GstBaseAudioSink::slave-method property
9865         Some more latency reporting tweaks.
9866         Added skew based clock slaving correction and make it the default until
9867         the resampling method is more robust.
9868
9869 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
9870
9871         * gst/audioconvert/audioconvert.c:
9872         Add docs to the integer pack functions and implement proper
9873         rounding. Before we had rounding towards negative infinity, i.e.
9874         always the smaller number was taken. Now we use natural rounding,
9875         i.e. rounding to the nearest integer and to the one with the largest
9876         absolute value for X.5. The old rounding introduced some minor
9877         distortions. Fixes #420079
9878         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9879         Fix one unit test that assumed the old rounding and added unit tests
9880         for checking signed/unsigned int16 <-> signed/unsigned int16 with
9881         depth 8, one for signed int16 <-> unsigned int16 and one for the new
9882         rounding from signed int32 to signed/unsigned int16.
9883
9884 2007-03-27  Michael Smith  <msmith@fluendo.com>
9885
9886         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
9887         (gst_audio_convert_transform_caps):
9888           Fix typo in debug line introduced recently, as pointed out on irc.
9889
9890 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
9891
9892         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9893         * tests/check/libs/tag.c: (GST_START_TEST):
9894           Make sure we parse floating-point numbers in vorbis comments
9895           correctly with either '.' or ',' as separator, no matter what
9896           the current locale is. Add unit test for this too.
9897
9898 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
9899
9900         Patch by: René Stadler  <mail at renestadler de>
9901
9902         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
9903           When writing out floating-point numbers to vorbis comment tags, always
9904           use the same character as separator no matter what the current locale is
9905           (fixes #423051).
9906
9907         * tests/check/libs/tag.c: (GST_START_TEST):
9908           Add unit tests for replaygain tags in vorbis comments (closes #423055).
9909
9910 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9911
9912         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
9913           vorbis_handle_data_packet):
9914           Correctly set DURATION to generate a timestamp-continuous stream.
9915           One bug left at the end; see
9916           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
9917         * tests/check/Makefile.am:
9918         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
9919           Add a test to check this.  Without the above patch this test fails.
9920
9921 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
9922
9923         * gst-libs/gst/rtp/Makefile.am:
9924         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
9925
9926 2007-03-23  Michael Smith  <msmith@fluendo.com>
9927
9928         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9929         (gst_video_rate_reset), (gst_video_rate_chain):
9930           If videorate changes caps, we can no longer use the old buffer
9931           (which may have a different size, incompatible with our caps).
9932           So don't do that; just duplicate the new frame more times.
9933
9934 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
9935
9936         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
9937         Remove playbin's override of the set_clock vmethod. It's irrelevant
9938         after Wim's commit on the 19th.
9939
9940 2007-03-22  Wim Taymans  <wim@fluendo.com>
9941
9942         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
9943         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9944         * ext/gnomevfs/gstgnomevfssrc.h:
9945         Don't cache file sizes. Fixes #341078.
9946
9947 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9948
9949         * gst/playback/gstplaybin.c: (add_sink):
9950           Use GST_PTR_FORMAT to log caps. 
9951
9952 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9953
9954         Patch by: Young-Ho Cha <ganadist at chollian net>
9955
9956         * gst/subparse/samiparse.c: (handle_start_font):
9957           Special-case some more colour names that pango doesn't handle by
9958           default. Fixes #420578.
9959
9960 2007-03-20  Michael Smith  <msmith@fluendo.com>
9961
9962         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
9963           If we get a zero-sized input buffer, don't pass it to libvorbis, as
9964           that marks EOS internally. After that, libvorbis will buffer all
9965           input data, and encode none of it, eventually leading to memory
9966           exhaustion.
9967
9968 2007-03-19  Wim Taymans  <wim@fluendo.com>
9969
9970         * gst/playback/gstdecodebin.c: (remove_fakesink):
9971         Don't post STATE_DIRTY anymore.
9972
9973         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
9974         (gst_play_bin_change_state):
9975         Remove stream_time reset in seek handling, core does that now.
9976         Disable clocking for live pipelines by forcing a NULL clock to the
9977         complete pipeline, core is too smart now for our previous hack.
9978         We can always autoplug in PAUSED now.
9979
9980 2007-03-17  David Schleef  <ds@schleef.org>
9981
9982         * REQUIREMENTS:  Update this file, change the formatting to make
9983         it more consistent, plus more machine readable.
9984
9985 2007-03-16  Michael Smith  <msmith@fluendo.com>
9986
9987         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9988         (strip_width_64), (append_with_other_format):
9989           Previous fix was too simplistic, and broke the tests. Use a better
9990           approach; only strip 64 from widths for integer audio.
9991
9992 2007-03-16  Michael Smith  <msmith@fluendo.com>
9993
9994         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9995         (gst_audio_convert_transform_caps):
9996           We don't support 64 bit integer audio, so don't try to claim we can.
9997           Stops us producing caps don't match our template caps.
9998           Update comments.
9999
10000 2007-03-15  Michael Smith  <msmith@fluendo.com>
10001
10002         * gst/audioresample/gstaudioresample.c:
10003         (audioresample_check_discont), (audioresample_transform):
10004           Don't trigger discontinuities for very small imperfections; a filter
10005           flush will sound bad, and many plugins have rounding errors leading
10006           to these.
10007
10008 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10009
10010         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
10011
10012         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
10013         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
10014         API: add "min-ptime" property to RTP base audio payloader.
10015         API: add gst_base_rtp_audio_payload_push().
10016         API: add gst_base_rtp_audio_payload_get_adapter().
10017         Fixes #415001
10018         Indentation/whitespace/documentation fixes.
10019
10020 2007-03-14  Julien MOUTTE  <julien@moutte.net>
10021
10022         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
10023         (audioresample_transform_size), (audioresample_do_output),
10024         (audioresample_transform), (audioresample_pushthrough): Handle
10025         discontinuous streams.
10026         * gst/audioresample/gstaudioresample.h:
10027         * tests/check/elements/audioresample.c:
10028         (test_discont_stream_instance), (GST_START_TEST),
10029         (audioresample_suite): Add a test for discontinuous streams.
10030         * win32/common/config.h: Updated.
10031
10032 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10033
10034         * po/af.po:
10035         * po/az.po:
10036         * po/cs.po:
10037         * po/en_GB.po:
10038         * po/it.po:
10039         * po/nb.po:
10040         * po/nl.po:
10041         * po/or.po:
10042         * po/sq.po:
10043         * po/sr.po:
10044         * po/sv.po:
10045         * po/uk.po:
10046         * po/vi.po:
10047           Update translations from translation project.
10048
10049 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10050
10051         * gst/audioresample/debug.h:
10052         * gst/audioresample/resample.c: (resample_init):
10053           Since I really am not interested in a debug line for each sample
10054           being processed, move the library's debugging to its own category,
10055           libaudioresample
10056
10057 2007-03-13  Michael Smith  <msmith@fluendo.com>
10058
10059         * ext/theora/theoradec.c: (theora_handle_type_packet):
10060           Since the plugin doesn't support anything other than 4:2:0 right
10061           now, post an error and fail if we get something else. Won't matter
10062           until libtheora supports the other pixel formats, but hopefully
10063           that'll be soon...
10064
10065 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
10066
10067         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
10068         Use gst_guint64_to_gdouble for conversion.
10069         * win32/MANIFEST:
10070         Add new files to the win32 MANIFEST.
10071         * win32/common/libgstaudio.def:
10072         * win32/common/libgstpbutils.def:
10073         Add new exported functions.
10074         * win32/vs6/gst_plugins_base.dsw:
10075         * win32/vs6/libgstdecodebin.dsp:
10076         * win32/vs6/libgstplaybin.dsp:
10077         Change the link to libgstpbutils.lib.
10078         * win32/vs6/libgstdecodebin2.dsp:
10079         Add a new project for decodebin2.
10080         * win32/vs6/libgstpbutils.dsp:
10081         Add a new project for pbutils.
10082
10083 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10084
10085         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
10086           Also accept partial dates with only year and month,
10087           like 1999-12-00 (fixes #410396 even more).
10088
10089         * tests/check/libs/tag.c: (GST_START_TEST):
10090           Add unit test for the above.
10091
10092 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10093
10094         * tests/check/elements/subparse.c: (GST_START_TEST),
10095         (subparse_suite):
10096           Add unit test for MPL2 subtitle format (#413799).
10097
10098 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10099
10100         Patch by: Kamil Pawlowski  <kamilpe gmail com>
10101
10102         * gst/subparse/Makefile.am:
10103         * gst/subparse/gstsubparse.c:
10104         (gst_sub_parse_data_format_autodetect),
10105         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
10106         (gst_subparse_type_find):
10107         * gst/subparse/gstsubparse.h:
10108         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
10109         * gst/subparse/mpl2parse.h:
10110           Add support for MPL2 subtitle format (#413799).
10111
10112 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10113
10114         * configure.ac:
10115           We require core CVS for the new buffer metadata copy functions.
10116
10117 2007-03-09  Wim Taymans  <wim@fluendo.com>
10118
10119         * gst-libs/gst/tag/gstid3tag.c:
10120         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
10121         Fixes #414496.
10122
10123         Patch by: Alex Lancaster <alexl at users sourceforge net>
10124
10125 2007-03-09  Wim Taymans  <wim@fluendo.com>
10126
10127         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
10128         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
10129         Improve adapter usage and comments.
10130
10131 2007-03-09  Wim Taymans  <wim@fluendo.com>
10132
10133         * ext/pango/gsttextrender.c: (gst_text_render_chain):
10134         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
10135         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
10136         Use new metadata copy function.
10137
10138         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10139         (gst_ffmpegcsp_transform):
10140         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
10141         Basetransform copied the metadata for us.
10142
10143 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10144
10145         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
10146         (gst_text_overlay_video_event):
10147           Some more logging. Only accept newsegment events in TIME format and
10148           send a WARNING message if they are not in TIME format.
10149
10150         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
10151         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
10152         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
10153         * gst/subparse/gstsubparse.h:
10154           No need to allocate GstSegment structure dynamically, just put it
10155           into the instance structure; ignore newsegment events in BYTE
10156           format and in particular don't let it overwrite our saved TIME
10157           segment from the last seek.
10158
10159 2007-03-09  Michael Smith  <msmith@fluendo.com>
10160
10161         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
10162           Replace AC3 typefinder with one that isn't terrible, and actually
10163           works usefully.
10164
10165 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
10166
10167         * gst/audioconvert/gstaudioconvert.c:
10168         (gst_audio_convert_transform):
10169           fix error category and translatable string
10170           
10171
10172 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10173
10174         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10175         * pkgconfig/gstreamer-plugins-base.pc.in:
10176           Fix up utils => pbutils here too.
10177
10178 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10179
10180         * gst/subparse/gstsubparse.c: (handle_buffer):
10181           Break out of loop in chain function as soon as possible if we get
10182           a non-OK flow return.
10183
10184 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10185
10186         * tests/check/elements/alsa.c: (GST_START_TEST):
10187         Unref the mixer if the state change fails too (if the
10188         alsa devices are inaccessible, for example)
10189
10190 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10191
10192         * tests/check/Makefile.am:
10193         Don't test libvisual elements in the states check, because libvisual
10194         seems to leak internally.
10195
10196         Re-enable the alsa and states tests now that there's new suppressions
10197         in gst.supp.
10198
10199         * tests/check/elements/alsa.c: (GST_START_TEST):
10200         Don't leak the alsamixer we instantiated.
10201
10202 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10203
10204         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
10205         (gst_ximagesink_change_state), (gst_ximagesink_reset),
10206         (gst_ximagesink_finalize):
10207         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
10208         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
10209         Move some cleanup stuff from the state change handler into a _reset()
10210         function that can be called from _finalize(). This ensures that things
10211         get freed even if (for some reason) the NULL->READY state transition
10212         fails in the parent class.
10213         Even if a parent state change fails, process our downward state change
10214         logic instead of bailing out early.
10215         Free the correct xcontext pointer in ximagesink's xcontext_clear.
10216
10217 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10218
10219         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
10220         Extra log line.
10221
10222         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
10223         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
10224         Use pango_font_description_set_family_static instead of 
10225         pango_font_description_set_family to save a string copy (it was
10226         leaking due to the strdup anyway)
10227
10228         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
10229         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
10230         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
10231         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
10232         Chain up in finalize.
10233
10234 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
10235
10236         * gst-libs/gst/interfaces/mixertrack.c:
10237         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
10238         (gst_mixer_track_set_property):
10239           API: add "untranslated-label" property which should be set by
10240           implementations at construct time (#414645).
10241
10242         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
10243         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
10244           Set "untranslated-label" when constructing mixer track objects.
10245
10246         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
10247           Unit test to check the above.
10248
10249 2007-03-07  Wim Taymans  <wim@fluendo.com>
10250
10251         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
10252         Fix confusing debug message.
10253
10254 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
10255
10256         * gst-plugins-base.doap:
10257         update doap file with new version
10258
10259 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
10260
10261         * configure.ac:
10262         Back to CVS
10263
10264 === release 0.10.12 ===
10265
10266 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
10267
10268         * configure.ac:
10269           releasing 0.10.12, "Zombie Horde"
10270
10271 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
10272
10273         * configure.ac:
10274         Bump version to 0.10.11.4 pre-release
10275
10276 2007-03-06  Wim Taymans  <wim@fluendo.com>
10277
10278         * gst-libs/gst/audio/gstbaseaudiosink.c:
10279         (gst_base_audio_sink_async_play):
10280         Fix regression that made GStreamer skip the first samples of audio.
10281         Fixes #414684.
10282
10283 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
10284
10285         * configure.ac:
10286         Bump version to 0.10.11.3 pre-release
10287
10288 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
10289
10290         * po/POTFILES.in:
10291           Update paths for the rename from utils to pbutils to fix the build.
10292
10293 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
10294
10295         * gst-libs/gst/pbutils/Makefile.am:
10296           Change directory to install headers in from gst/utils to gst/pbutils
10297           as well.
10298
10299 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10300
10301         * configure.ac:
10302         * docs/libs/gst-plugins-base-libs-docs.sgml:
10303         * docs/libs/gst-plugins-base-libs-sections.txt:
10304         * gst-libs/gst/Makefile.am:
10305         * gst-libs/gst/interfaces/mixer.c:
10306         * gst-libs/gst/pbutils/Makefile.am:
10307         * gst-libs/gst/pbutils/descriptions.c:
10308         (gst_pb_utils_get_source_description),
10309         (gst_pb_utils_get_sink_description),
10310         (gst_pb_utils_get_decoder_description),
10311         (gst_pb_utils_get_encoder_description),
10312         (gst_pb_utils_get_element_description),
10313         (gst_pb_utils_add_codec_description_to_tag_list),
10314         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
10315         * gst-libs/gst/pbutils/descriptions.h:
10316         * gst-libs/gst/pbutils/install-plugins.c:
10317         * gst-libs/gst/pbutils/install-plugins.h:
10318         * gst-libs/gst/pbutils/missing-plugins.c:
10319         (gst_missing_uri_source_message_new),
10320         (gst_missing_uri_sink_message_new),
10321         (gst_missing_element_message_new),
10322         (gst_missing_decoder_message_new),
10323         (gst_missing_encoder_message_new),
10324         (gst_missing_plugin_message_get_description):
10325         * gst-libs/gst/pbutils/missing-plugins.h:
10326         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
10327         * gst-libs/gst/pbutils/pbutils.h:
10328         * gst-libs/gst/utils/Makefile.am:
10329         * gst-libs/gst/utils/base-utils.c:
10330         * gst-libs/gst/utils/base-utils.h:
10331         * gst-libs/gst/utils/descriptions.c:
10332         * gst-libs/gst/utils/descriptions.h:
10333         * gst-libs/gst/utils/install-plugins.c:
10334         * gst-libs/gst/utils/install-plugins.h:
10335         * gst-libs/gst/utils/missing-plugins.c:
10336         * gst-libs/gst/utils/missing-plugins.h:
10337         * gst-plugins-base.spec.in:
10338         * gst/playback/Makefile.am:
10339         * gst/playback/gstdecodebin.c:
10340         * gst/playback/gstdecodebin2.c:
10341         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10342         (gen_source_element):
10343         * gst/playback/gstplaybin.c: (plugin_init):
10344         * tests/check/Makefile.am:
10345         * tests/check/libs/pbutils.c: (GST_START_TEST),
10346         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
10347         * tests/check/libs/utils.c:
10348           rename utils to pbutils
10349
10350 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
10351
10352         * docs/plugins/Makefile.am:
10353         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10354         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10355         * docs/plugins/inspect/plugin-decodebin2.xml:
10356         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
10357         Add documentation for decodebin2 that indicates that the API
10358         is still unstable.
10359
10360 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
10361
10362         * configure.ac:
10363         Update to 0.10.11.2 (0.10.12 pre-release)
10364
10365 2007-03-01  Wim Taymans  <wim@fluendo.com>
10366
10367         * gst-libs/gst/audio/gstbaseaudiosink.c:
10368         (gst_base_audio_sink_async_play):
10369         base time is irrelevant here.
10370
10371 2007-03-01  Wim Taymans  <wim@fluendo.com>
10372
10373         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
10374         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
10375         Improve debugging.
10376
10377         * gst-libs/gst/audio/gstbaseaudiosink.c:
10378         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
10379         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
10380         Improve latency and clock slaving calculations.
10381         Improve slave clock calibration.
10382
10383         * gst-libs/gst/audio/gstringbuffer.c:
10384         (gst_ring_buffer_commit_full):
10385         When we are asked to render N sample to 0 bytes, return N.
10386
10387 2007-03-01  Wim Taymans  <wim@fluendo.com>
10388
10389         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
10390         (gst_alsasink_write), (gst_alsasink_reset):
10391         * ext/alsa/gstalsasink.h:
10392         Remove unused dispose function.
10393         Rename lock to not interfere with alsasrc lock.
10394
10395         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
10396         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
10397         (gst_alsasrc_read), (gst_alsasrc_reset):
10398         * ext/alsa/gstalsasrc.h:
10399         Implement finalize function.
10400         Use lock to protect alsa access.
10401         Implement _reset.
10402         Fine tune sw params.
10403
10404 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10405
10406         * configure.ac:
10407           Convert to new AG_GST style.
10408
10409 2007-02-28  Wim Taymans  <wim@fluendo.com>
10410
10411         Patch by: Ed Catmur <ed at catmur dot co dot uk>
10412
10413         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
10414         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
10415         Fix race condition when rapidly switching visualisations in playbin.
10416         Fixes #401029.
10417
10418 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
10419
10420         * tests/check/Makefile.am:
10421         Include local stuff before system installed things in LDFLAGS and
10422         CFLAGS.
10423
10424 2007-02-28  Wim Taymans  <wim@fluendo.com>
10425
10426         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
10427         Improve debugging.
10428
10429 2007-02-28  Wim Taymans  <wim@fluendo.com>
10430
10431         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
10432         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
10433         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
10434         Fix duration and timestamping, taking latency into account.
10435         Implement latency query.
10436
10437 2007-02-28  Wim Taymans  <wim@fluendo.com>
10438
10439         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
10440         (gst_audio_clock_new):
10441         Fix clock name.
10442
10443         * gst-libs/gst/audio/gstbaseaudiosink.c:
10444         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
10445         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
10446         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
10447         (gst_base_audio_src_create):
10448         Improve latency query code.
10449         Use proper clock names.
10450
10451 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10452
10453         * tests/check/generic/states.c: (GST_START_TEST):
10454           Copy the states.c test from core again
10455         * tests/check/Makefile.am:
10456           ignore cdio and cdparanoiasrc
10457
10458 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10459
10460         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10461         (double_hq), (audio_convert_get_func_index), (check_default),
10462         (audio_convert_prepare_context), (audio_convert_convert):
10463           Also make valgrind happy and avoid copying data in some cases.
10464
10465 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10466
10467         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10468         (double_hq), (audio_convert_get_func_index),
10469         (audio_convert_prepare_context), (audio_convert_convert):
10470         * gst/audioconvert/gstaudioconvert.c:
10471         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
10472         (gst_audio_convert_transform_caps):
10473         * tests/check/elements/audioconvert.c: (GST_START_TEST),
10474         (audioconvert_suite):
10475           Don't run inplace if that overwrites source data as we go. Add more
10476           tests. Fixes #339837 even more.
10477
10478 2007-02-27  Julien MOUTTE  <julien@moutte.net>
10479
10480         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
10481         (msg_segment_done): Fix various seeking bugs (Slider was not
10482         updating when doing a non flushing seek, Reverse playback 
10483         on segment seek was wrong).
10484
10485 2007-02-26  Wim Taymans  <wim@fluendo.com>
10486
10487         * tests/examples/seek/seek.c: (stop_seek):
10488         When we stop scrubbing, don't leave the pipeline PLAYING when we
10489         requested a PAUSED state.
10490
10491 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
10492
10493         Patch by: René Stadler <mail at renestadler de>
10494
10495         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
10496           Parse date strings in vorbis comments that have an invalid (zero)
10497           month or day (#410396).
10498
10499         * tests/check/libs/tag.c: (GST_START_TEST):
10500           Test case for the above.
10501
10502 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
10503
10504         Patch by: Loïc Minier <lool+gnome at via ecp fr>
10505
10506         * configure.ac:
10507         * ext/alsa/Makefile.am:
10508         * gst/audiotestsrc/Makefile.am:
10509           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
10510
10511 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10512
10513         * gst/playback/gstplaybin.c:
10514           Improve docs: point out that the application needs to assist playbin
10515           with buffering.
10516
10517 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10518
10519         * gst-libs/gst/utils/install-plugins.c:
10520         * gst-libs/gst/utils/missing-plugins.c:
10521         * tests/check/libs/utils.c: (missing_msg_check_getters):
10522           Change GStreamer marker prefix in detail string from 'gstreamer.net'
10523           to just 'gstreamer'. Document the caps string component of the
10524           decoder/encoder detail a bit better, since not everyone will be
10525           familiar with the GStreamer media type/caps system (but they better
10526           enjoy nested itemized lists).
10527
10528 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
10529
10530         * gst-libs/gst/netbuffer/gstnetbuffer.c:
10531         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
10532           Fix copying of GstNetBuffer (would crash before, or at least lead to
10533           invalid memory access, #410772), for now by copying the GstBuffer copy
10534           code from the core over here so we can copy the GstBuffer fields on a
10535           provided buffer instance (of type GstNetBuffer in this case). Would be
10536           better to fix this with some support by the core though (and in the long
10537           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
10538
10539         * tests/check/Makefile.am:
10540           Enable unit test for GstNetBuffer.
10541
10542 2007-02-22  Andy Wingo  <wingo@pobox.com>
10543
10544         * gst-libs/gst/audio/gstbaseaudiosink.c
10545         (gst_base_audio_sink_init): Disable pull-mode activation until we
10546         figure out how to make audio sinks go to PLAYING.
10547
10548 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
10549
10550         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10551         (double_hq), (audio_convert_get_func_index),
10552         (audio_convert_prepare_context), (audio_convert_convert):
10553         * gst/audioconvert/audioconvert.h:
10554         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
10555         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
10556         * gst/audioconvert/gstchannelmix.h:
10557         * tests/check/elements/audioconvert.c: (GST_START_TEST):
10558           Add float as an intermediate format, as well as float mixing. Enable
10559           test that was failing before. Fixes #339837
10560
10561 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10562
10563         * tests/examples/seek/seek.c: (do_seek):
10564         Undo the previous commit: -1 as a stop time implies that the stop
10565         time is the end of file, clearing any previously configured segment.
10566
10567 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10568
10569         * tests/examples/seek/seek.c: (do_seek):
10570         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
10571
10572 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10573
10574         * gst/volume/gstvolume.c: (volume_process_int16),
10575         (volume_process_int16_clamp), (volume_set_caps):
10576           Unbreak volume, value remains gint.
10577
10578 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10579
10580         * gst/volume/gstvolume.c: (volume_choose_func),
10581         (volume_update_real_volume), (gst_volume_set_volume),
10582         (gst_volume_init), (volume_process_double), (volume_process_float),
10583         (volume_process_int16), (volume_process_int16_clamp),
10584         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
10585         * gst/volume/gstvolume.h:
10586           Extend float audio support (double) and some int->uint cleanups.
10587
10588 2007-02-20  Edward Hervey  <edward@fluendo.com>
10589
10590         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
10591         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
10592         (sort_end_pads), (gst_decode_group_expose),
10593         (gst_decode_group_hide):
10594         Don't free groups from the streaming threads. Just put them aside and
10595         free them in dispose.
10596
10597 2007-02-20  Edward Hervey  <edward@fluendo.com>
10598
10599         * gst/playback/gstdecodebin2.c: (connect_element),
10600         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
10601         (sort_end_pads), (gst_decode_group_expose):
10602         Handle dynamic pads within groups.
10603         Sort pads before exposing them in order to make playbin happy.
10604         There still is a race with the multiqueue filling up. This should be
10605         solved separately.
10606         Fixes #398721
10607
10608 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10609
10610         * gst-libs/gst/utils/base-utils.c:
10611         * gst-libs/gst/utils/descriptions.c:
10612         * gst-libs/gst/utils/install-plugins.c:
10613         * gst-libs/gst/utils/missing-plugins.c:
10614           Some more docs (and descriptions for two subtitle formats).
10615
10616 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10617
10618         * gst-libs/gst/audio/audio.c:
10619           Fix documentation.
10620
10621 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10622
10623         Patch by: Yves Lefebvre  <ivanohe abacom com>
10624
10625         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
10626           Don't leak caps. Fixes #408278.
10627
10628 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
10629
10630         * ext/cdparanoia/gstcdparanoiasrc.h:
10631         * ext/ogg/gstoggdemux.h:
10632         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
10633         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
10634         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
10635         * gst-libs/gst/audio/audio.h:
10636         * gst-libs/gst/audio/gstaudiofilter.h:
10637         * gst-libs/gst/interfaces/videoorientation.h:
10638         * gst/adder/gstadder.h:
10639           More docs coverage and some ChangeLog surgery (add missing names)
10640
10641 2007-02-15  Wim Taymans  <wim@fluendo.com>
10642
10643         * sys/ximage/ximagesink.c:
10644         (gst_ximagesink_calculate_pixel_aspect_ratio):
10645         * sys/xvimage/xvimagesink.c:
10646         (gst_xvimagesink_calculate_pixel_aspect_ratio):
10647         Small constifications.
10648
10649 2007-02-15  Wim Taymans  <wim@fluendo.com>
10650
10651         * gst-libs/gst/audio/gstbaseaudiosink.c:
10652         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
10653         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
10654         (gst_base_audio_sink_async_play),
10655         (gst_base_audio_sink_change_state):
10656         Answer latency query.
10657         Use configured latency when syncing.
10658         Fix clock slaving.
10659
10660         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10661         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
10662         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
10663         Fix possible memleak.
10664         Implement latency query.
10665         Small cleanups.
10666
10667 2007-02-15  Wim Taymans  <wim@fluendo.com>
10668
10669         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
10670         Ignore errors in reset, these are not fatal. They also grab the element
10671         lock which is already taking when this function is called. Fixes
10672         #405451.
10673
10674 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10675
10676         * configure.ac:
10677           Remove 'tests/examples/xerror/Makefile' from output files again.
10678
10679 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10680
10681         * configure.ac:
10682         * docs/plugins/Makefile.am:
10683           Also crossref against gst-plugins-base-libs.
10684
10685 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
10686
10687         * configure.ac:
10688         * docs/libs/Makefile.am:
10689         * docs/plugins/Makefile.am:
10690           Add crossreferences to glib/gobject/gstream docs.
10691
10692         * gst-libs/gst/audio/audio.h:
10693           Source formatting.
10694
10695         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
10696           Add own debug category.
10697
10698 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
10699
10700         Patch by: René Stadler <mail at renestadler de>
10701
10702         * gst-libs/gst/tag/gstvorbistag.c:
10703           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
10704           (#403597).
10705
10706 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10707
10708         * gst/playback/gstplaybasebin.c: (setup_source):
10709           When we have external subtitles and wait for the subtitle decodebin
10710           to get up and running, we set up a (sync) bus handler for the
10711           subtitle decodebin, so we can stop waiting when it posts an error
10712           message. However, we should do that before we set the subtitle
10713           decodebin's state to playing, otherwise things are racy and we might
10714           miss error messages posted before we had a chance to set up the bus.
10715           This should finally fix totem hanging on .txt pseudo-subtitle files.
10716           
10717 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
10718
10719         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
10720           Use gst_gdouble_to_guint64 for conversions.
10721         * win32/common/config.h.in:
10722           Add a define for GST_INSTALL_PLUGINS_HELPER
10723         * win32/common/libgstaudio.def:
10724         * win32/common/libgstcdda.def:
10725         * win32/common/libgstnetbuffer.def:
10726         * win32/common/libgstrtp.def:
10727         * win32/common/libgutils.def:
10728           Add new exported functions.
10729         * win32/vs6/gst_plugins_base.dsw:
10730         * win32/vs6/libgstdecodebin.dsp:
10731         * win32/vs6/libgstnetbuffer.dsp:
10732         * win32/vs6/libgstplaybin.dsp:
10733         * win32/vs6/libgstrtp.dsp:
10734         * win32/vs6/libgstvorbis.dsp:
10735         * win32/vs6/libgstcdda.dsp:
10736         * win32/vs6/libgstgdp.dsp:
10737         * win32/vs6/libgstutils.dsp:
10738           Update and add new project files.
10739
10740 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10741
10742         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
10743         (subrip_remove_unhandled_tags), (parse_subrip):
10744           For SubRip (.srt) subtitles, ignore all markup tags we don't
10745           handle (like font tags, for example).
10746
10747         * tests/check/elements/subparse.c:
10748           Add test for this.
10749
10750 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10751
10752         * gst/playback/gstdecodebin.c: (add_fakesink),
10753         (gst_decode_bin_change_state):
10754         * gst/playback/gstdecodebin2.c: (add_fakesink),
10755         (gst_decode_bin_change_state):
10756           Don't error out if there is no fakesink in the NULL to READY state
10757           change, since when decodebin is re-used, we're only adding the
10758           fakesink element in READY to PAUSED.
10759
10760         * tests/check/elements/decodebin.c:
10761         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
10762         (decodebin_suite):
10763           Minimal unit test to make sure we can use the same decodebin
10764           instance twice (at least with audiotestsrc input).
10765
10766 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10767
10768         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
10769           Try to get devic-name from device string first, and from handle only
10770           as fallback (seems to yield better results and is more robust
10771           against buggy probing code on the application side).
10772
10773 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
10774
10775         Based on patch by: Julien Puydt <julien.puydt at laposte net>
10776
10777         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
10778         (gst_alsa_find_device_name):
10779         * ext/alsa/gstalsa.h:
10780         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
10781         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
10782           Improve device-name detection a bit, especially in the case where
10783           the device is not actually open (#405020, #405024). Move common code
10784           into gstalsa.c instead of duplicating it.
10785
10786 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
10787
10788         * gst/audioconvert/gstaudioconvert.c:
10789           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
10790
10791 2007-02-06  Julien MOUTTE  <julien@moutte.net>
10792
10793         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
10794         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
10795         (gst_xvimagesink_interface_supported),
10796         (gst_xvimagesink_probe_get_properties),
10797         (gst_xvimagesink_probe_probe_property),
10798         (gst_xvimagesink_probe_needs_probe),
10799         (gst_xvimagesink_probe_get_values),
10800         (gst_xvimagesink_property_probe_interface_init),
10801         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10802         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
10803         (gst_xvimagesink_get_type):
10804         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
10805         for XVAdaptors so that one can choose the adaptor to use with 
10806         gstreamer-properties.
10807
10808 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
10809
10810         * gst/audioconvert/gstaudioconvert.c:
10811           Also mention that a conversion from double to float is suboptimal still.
10812
10813 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
10814
10815         * gst-libs/gst/audio/gstaudiofilter.c:
10816         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
10817           Clear our formats structure and free the caps contained in it when
10818           shutting down.
10819
10820 2007-02-05  Andy Wingo  <wingo@pobox.com>
10821
10822         * gst-libs/gst/audio/gstbaseaudiosink.c
10823         (gst_base_audio_sink_callback): Update basesink->offset so that we
10824         pull monotonically increasing offsets instead of, um, seeking back
10825         to 0 each time. Fixes alsasrc ! alsasink!
10826
10827 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
10828
10829         * gst/videoscale/gstvideoscale.c:
10830           A width and height of 1 makes us crash, so increase minimum size to
10831           2x2 pixels until someone feels like fixing this (#404512).
10832
10833 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10834
10835         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
10836           Add small test to make sure request pads are cleaned up properly
10837           even if oggmux never changes state out of NULL.
10838
10839 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10840
10841         * tests/check/libs/utils.c: (GST_START_TEST):
10842           Fix unit test. Turns out things work much better when you
10843           NULL-terminate string arrays. Should make p5 build bot happy again.
10844
10845 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10846
10847         * gst-libs/gst/audio/Makefile.am:
10848         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10849         (gst_audio_filter_template_base_init),
10850         (gst_audio_filter_template_class_init),
10851         (gst_audio_filter_template_init),
10852         (gst_audio_filter_template_set_property),
10853         (gst_audio_filter_template_get_property),
10854         (gst_audio_filter_template_setup),
10855         (gst_audio_filter_template_filter),
10856         (gst_audio_filter_template_filter_inplace), (plugin_init):
10857           Oops, forgot to commit fixed-up example.
10858
10859 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10860
10861         * docs/libs/gst-plugins-base-libs-sections.txt:
10862         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
10863         (gst_audio_filter_class_init), (gst_audio_filter_init),
10864         (gst_audio_filter_set_caps),
10865         (gst_audio_filter_class_add_pad_templates):
10866         * gst-libs/gst/audio/gstaudiofilter.h:
10867           Port GstAudioFilter to 0.10. This change technically breaks
10868           API and ABI (and thus also every library developer's heart),
10869           but seems justifiable on the grounds that the base class was
10870           completely unusable before (ie. would crash immediately when
10871           actually used). Fixes #403963 (and eventually also #403572).
10872           Also document all of this a bit.
10873
10874 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10875
10876         * gst-libs/gst/utils/install-plugins.c:
10877         (gst_install_plugins_spawn_child):
10878         * tests/check/libs/utils.c:
10879         (test_base_utils_install_plugins_do_callout):
10880           Lowering log level to see why things fail on the p5 build bot;
10881           fix some typos in unit test messages.
10882
10883 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10884
10885         * tests/check/libs/utils.c:
10886         (test_base_utils_install_plugins_do_callout):
10887           Don't hard-code temp directory for test helper; use GLib functions
10888           to write out file and do error checking etc.
10889
10890 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10891
10892         * gst-libs/gst/utils/Makefile.am:
10893         * gst-libs/gst/utils/base-utils.h:
10894         * gst-libs/gst/utils/install-plugins.c:
10895         (gst_install_plugins_context_set_xid),
10896         (gst_install_plugins_context_new),
10897         (gst_install_plugins_context_free),
10898         (gst_install_plugins_get_helper),
10899         (gst_install_plugins_spawn_child),
10900         (gst_install_plugins_return_from_status),
10901         (gst_install_plugins_installer_exited),
10902         (gst_install_plugins_async), (gst_install_plugins_sync),
10903         (gst_install_plugins_return_get_name),
10904         (gst_install_plugins_installation_in_progress):
10905         * gst-libs/gst/utils/install-plugins.h:
10906           API: add API for applications to initiate installation of missing
10907           plugins, ie. gst_install_plugins_async() primarily.
10908           Based on libgimme-codec by Ryan Lortie.
10909
10910         * configure.ac:
10911           Add --with-install-plugins-helper configure option so distros can specify
10912           the path of the helper script or program to call when plugin installation
10913           is requested (distros: please do any argument munging in this helper
10914           script instead of patching GStreamer to pass arguments differently
10915           to another program directly).
10916
10917         * docs/libs/gst-plugins-base-libs-docs.sgml:
10918         * docs/libs/gst-plugins-base-libs-sections.txt:
10919           Build and document new API.
10920
10921         * tests/check/libs/utils.c: (result_cb),
10922         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
10923         (libgstbaseutils_suite):
10924           Some simple checks for the new API.
10925
10926 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10927
10928         * tests/check/elements/audioconvert.c: (test_float_conversion):
10929           Add small test for 32bit float <=> 64bit float conversion (works
10930           only one way so far, 32=>64 produces structured noise).
10931
10932 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10933
10934         * gst/audioconvert/gstaudioconvert.c:
10935         (set_structure_widths_32_and_64), (make_lossless_changes):
10936           We don't support floats with a width of 40, 48 or 56 bits.
10937
10938 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
10939
10940         * gst/audioconvert/audioconvert.c: (float), (double),
10941         (audio_convert_get_func_index):
10942         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
10943         (make_lossless_changes):
10944           Support for 64-bit float audio in audioconvert (#339837)
10945
10946 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
10947
10948         Patch by: Holger Wansing  <linux wansing-online de>
10949
10950         * po/LINGUAS:
10951         * po/de.po:
10952           Add German translation (#352069).
10953
10954 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
10955
10956         reviewed by: Wim Taymans <wim@fluendo.com>
10957
10958         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
10959         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
10960         Use newly added GstCollectPads API to free the allocated resources in
10961         the GstOggPad structures (#402393).
10962
10963 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
10964
10965         * gst/playback/gstplaybin.c: (gen_vis_element):
10966           Add audioresample+audioconvert in front of the visualisation
10967           element, so that elements like libvisual 0.4 that don't support all
10968           samplerates can work.
10969
10970           Fixes: #402505
10971
10972 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
10973
10974         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
10975         (gst_play_base_bin_get_streaminfo_value_array):
10976           Take some locks and make a copy of the streaminfo value array we
10977           maintain while holding the lock, so that the application can
10978           retrieve the stream-info as a value array in a thread-safe way.
10979
10980 2007-01-30  Wim Taymans  <wim@fluendo.com>
10981
10982         * gst/audioconvert/gstaudioconvert.c:
10983         Don't fail on 0 sized buffers. Fixes #396835.
10984
10985 2007-01-29  David Schleef  <ds@schleef.org>
10986
10987         * gst/typefind/gsttypefindfunctions.c:
10988           Detect BBCD as video/x-dirac, so we can play raw dirac
10989           streams.
10990
10991 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
10992
10993         * ext/theora/theoraenc.c: (theora_enc_chain):
10994           Check return value of theora_encode_header(), or we might try to
10995           allocate a random number of bytes. theora_encode_header() can fail
10996           if libtheora has been compiled with encoding support disabled.
10997           Fixes #398110.
10998
10999 2007-01-29  Wim Taymans  <wim@fluendo.com>
11000
11001         * tests/check/gst/.cvsignore:
11002         Do as buildbot says.
11003
11004 2007-01-29  Wim Taymans  <wim@fluendo.com>
11005
11006         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
11007         Fix strides in libvisual. Gst uses X strides.
11008         Inspired by: <ed at catmur dot co dot uk> and 
11009         <tim at centricular dot net>
11010         Fixes #401118.
11011
11012 2007-01-27  Wim Taymans  <wim@fluendo.com>
11013
11014         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
11015         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
11016         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
11017         (gst_ogg_demux_perform_seek),
11018         (gst_ogg_demux_bisect_forward_serialno),
11019         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11020         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
11021         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
11022         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
11023         * ext/ogg/gstoggdemux.h:
11024         Properly propagate streaming errors when we are scanning the file for
11025         chains so that we don't crash when shut down. Might fix some crashers
11026         when quickly switching oggs in RB such as #332503 and #378436.
11027
11028 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
11029
11030         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
11031           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
11032           error code as well.
11033
11034 2007-01-25  Wim Taymans  <wim@fluendo.com>
11035
11036         * gst/playback/gstplaybasebin.c: (remove_source):
11037         Don't try to disconnect a signal from a finalized object.
11038
11039 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11040
11041         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
11042           Cast lock macro parameters to make sure we're actually accessing the
11043           lock member at the right class level. Free list itself in _dispose()
11044           as well and NULL it in case dispose gets called multiple times.
11045
11046 2007-01-25  Edward Hervey  <edward@fluendo.com>
11047
11048         * gst/playback/gstdecodebin2.c:
11049         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
11050         Free GstDecodeGroups no longer used.
11051         (gst_decode_group_expose):
11052         Don't unlock too many times !
11053         (deactivate_free_recursive):
11054         Free iterator once we're done with it.
11055         Fix for recursively deactivating elements (stop at ghostpads).
11056
11057 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11058
11059         * gst/playback/gstplaybin.c: (handoff):
11060           Fix up caps on the frame buffer before we save it and potentially
11061           make it accessible to other threads via g_object_get; also use
11062           gst_buffer_replace() instead of gst_mini_object_replace().
11063
11064 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11065
11066         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
11067           Make getting the current frame thread-safe.
11068
11069 2007-01-25  Edward Hervey  <edward@fluendo.com>
11070
11071         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
11072         (gst_decode_group_new), (gst_decode_group_free):
11073         Set queues to bigger sizes to cope with HD contents.
11074         Fix some mutex freeing and add comment about MT safe methods.
11075
11076 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
11077
11078         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
11079         (gst_text_overlay_text_event):
11080           Don't unnecessarily ref (and then leak) upstream events if the text
11081           pad is not linked. Fixes #399948.
11082
11083         * tests/check/gst-plugins-base.supp:
11084           Add suppression for pango on edgy/x86 for textoverlay test.
11085
11086 2007-01-24  Wim Taymans  <wim@fluendo.com>
11087
11088         * gst-libs/gst/rtp/gstrtpbuffer.h:
11089         Add some more fixed payloads.
11090
11091 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
11092
11093         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
11094           Error out properly if we get an error from libogg while reading the
11095           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
11096
11097 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
11098
11099         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
11100           Don't leak mutex.
11101
11102         * tests/check/elements/playbin.c:
11103         (test_sink_usage_video_only_stream),
11104         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
11105         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
11106         (test_missing_suburisource_handler),
11107         (test_missing_primary_decoder), (playbin_suite):
11108           Run all tests once with decodebin and once with decodebin2.
11109           One test does not pass yet with decodebin2.
11110
11111 2007-01-23  Edward Hervey  <edward@fluendo.com>
11112
11113         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
11114         Fix the cases where oggmux doesn't properly figure out that all
11115         sinkpads have gone EOS, and therefore doesn't push out the remaining
11116         buffers and the final EOS event.
11117         Fixes #363379
11118
11119 2007-01-23  Julien MOUTTE  <julien@moutte.net>
11120
11121         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11122         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11123         Don't lock on navigation event push, just on keysym to string.
11124         Fixes #397673 again.
11125
11126 2007-01-22  Edward Hervey  <edward@fluendo.com>
11127
11128         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
11129         (get_current_group), (group_demuxer_event_probe),
11130         (gst_decode_group_expose), (deactivate_free_recursive),
11131         (gst_decode_group_free):
11132         Cleanups.
11133         Don't forget to emit 'no-more-pads' once a group is exposed.
11134         Cleanup elements from a DecodeGroup once we remove it.
11135         Protect call to gst_decode_group_expose() with the decodebin lock.
11136
11137 2007-01-22  Julien MOUTTE  <julien@moutte.net>
11138
11139         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11140         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11141         Looking at Xorg code i can't figure out if that XKeysymToString
11142         function is thread sensible or not. Lock it just in case as
11143         recommended by Radek Doulik <rodo at ximian dot com>.
11144
11145 2007-01-22  Julien MOUTTE  <julien@moutte.net>
11146
11147         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11148         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11149         Lock that X Call as well. Fixes #397673.
11150
11151 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11152
11153         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
11154           Don't go into an endless loop if the file starts with 00 00 01 2X,
11155           like quicktime redirect files might. Fixes #396042.
11156
11157         * tests/check/Makefile.am:
11158         * tests/check/gst/.cvsignore:
11159         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
11160         (typefindfunctions_suite):
11161           Add unit test for the above.
11162
11163 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11164
11165         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11166           On second thought, use "depth" field rather than "bpp" field.
11167
11168 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11169
11170         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11171           Camtasia caps apparently need a bpp field (#398875).
11172
11173 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11174
11175         * gst/playback/gstplaybasebin.c: (setup_subtitle),
11176         (gen_source_element), (gst_play_base_bin_change_state):
11177           Attempt at a better error message in case we don't have the required
11178           URI handler installed; post missing-plugin message also when we're
11179           missing an URI handler for the subtitle URI; clean up properly also
11180           when an error occurs and we never made it to PAUSED state.
11181
11182         * tests/check/elements/playbin.c: (GST_START_TEST),
11183         (playbin_suite):
11184           Check that we're also getting a missing-plugin messsage for a
11185           missing subtitle URI handler (and clean up properly).
11186
11187 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11188
11189         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
11190           Plug a few reference leaks.
11191
11192 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11193
11194         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11195           Lower probability a bit if the marker isn't right at the start,
11196           to decrease the chance of false positives.
11197
11198 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11199
11200         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11201           Small mpeg2 system stream typefinding improvement: make typefinder
11202           probe a bit into the stream instead of just looking for a marker
11203           at the beginning. Fixes #397810.
11204
11205 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
11206
11207         * gst/audioconvert/gstchannelmix.c:
11208           Remove compatibility cruft for prehistoric GLib versions.
11209
11210 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
11211
11212         * gst/playback/Makefile.am:
11213         * gst/playback/gstdecodebin.c: (close_pad_link):
11214         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
11215         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11216         (gst_play_base_bin_handle_message_func), (unknown_type):
11217           Let decodebin be the element to post missing-plugin messages for
11218           missing decoders (rather than playbin); make playbin implement
11219           GstBin::handle_message so we can suppress missing-plugin messages
11220           for types we're not handling on purpose (don't want to bring up an
11221           installer in those cases).
11222
11223 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
11224
11225         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11226         * gst-libs/gst/tag/gstvorbistag.c:
11227         (gst_tag_list_to_vorbiscomment_buffer):
11228         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
11229           Fix potentially unaligned access (#397207).
11230
11231 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
11232
11233         * tests/examples/seek/seek.c: (set_scale), (update_scale),
11234         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
11235         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
11236         (main):
11237           Allow to toggle looping while it plays. Fix callback prototype. Clean
11238           up code a bit more. Add copyright header.
11239
11240 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
11241
11242         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
11243           Red and blue mask was swapped (spotted by Dan Williams).
11244
11245 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
11246
11247         * gst-libs/gst/tag/gstid3tag.c:
11248         * gst-libs/gst/tag/gstvorbistag.c:
11249           Use new beats-per-minute tag from core.
11250
11251 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
11252
11253         * po/POTFILES.in:
11254           Add new files with translatable strings, so they actually make it
11255           into the template file one day.
11256
11257 2007-01-12  Andy Wingo  <wingo@pobox.com>
11258
11259         * gst-libs/gst/audio/gstbaseaudiosink.c
11260         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
11261         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
11262         stuff, as the base class handles this now. Actually tell the ring
11263         buffer to start.
11264         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
11265         How did this work before? Maybe I'm not as awesome a programmer as
11266         I think.
11267
11268         * gst-libs/gst/audio/gstbaseaudiosrc.c
11269         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
11270         of a pad function.
11271
11272 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11273
11274         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
11275           Remove more fields so that the application can better blacklist
11276           formats that have been tried before.
11277
11278 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11279
11280         * gst-libs/gst/audio/mixerutils.h:
11281           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
11282           used when compiling with c++ compilers as well.
11283
11284 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11285
11286         * gst/typefind/gsttypefindfunctions.c:
11287           Fix comment.
11288
11289 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
11290
11291         * gst/playback/gstplaybin.c: (post_missing_element_message),
11292         (gen_video_element), (gen_text_element), (gen_audio_element),
11293         (gen_vis_element):
11294           Post missing-plugin messages also when we error out because
11295           converters, textoverlay or auto*sinks are missing (#161922).
11296
11297 2007-01-10  Wim Taymans  <wim@fluendo.com>
11298
11299         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
11300         (is_demuxer_element), (new_caps):
11301         * gst/playback/gstplaybasebin.c: (source_new_pad):
11302         Fix the case where we try to ref a NULL element when we delay a link
11303         because of unfixed caps.
11304         Set the state of autoplugged decodebins to PAUSED.
11305         RTSP now works in playbin, we can remove it from the blacklist.
11306
11307 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11308
11309         * gst/playback/Makefile.am:
11310         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
11311         (unknown_type), (setup_subtitle), (gen_source_element):
11312         * gst/playback/gstplaybin.c: (plugin_init):
11313           Post missing-plugin messages on the bus for missing sources and
11314           missing decoders/demuxers/depayloaders; fix error code used when
11315           we're missing an URI handler source; for media types that we are not
11316           handling on purpose at the moment, don't print "don't know how to
11317           handle xyz" messages to the terminal or post missing-plugin
11318           messages on the bus.
11319
11320         * tests/check/elements/playbin.c: (create_playbin),
11321         (GST_START_TEST), (gst_codec_src_uri_get_type),
11322         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
11323         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
11324         (gst_codec_src_init_type), (gst_codec_src_base_init),
11325         (gst_codec_src_create), (gst_codec_src_class_init),
11326         (gst_codec_src_init), (plugin_init), (playbin_suite):
11327           Add some tests for the missing-plugin stuff.
11328
11329 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11330
11331         * configure.ac:
11332         * gst-libs/gst/Makefile.am:
11333         * gst-libs/gst/utils/Makefile.am:
11334         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
11335         * gst-libs/gst/utils/base-utils.h:
11336         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
11337         (find_format_info), (caps_are_rtp_caps),
11338         (gst_base_utils_get_source_description),
11339         (gst_base_utils_get_sink_description),
11340         (gst_base_utils_get_decoder_description),
11341         (gst_base_utils_get_encoder_description),
11342         (gst_base_utils_get_element_description),
11343         (gst_base_utils_add_codec_description_to_tag_list),
11344         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
11345         * gst-libs/gst/utils/descriptions.h:
11346         * gst-libs/gst/utils/missing-plugins.c:
11347         (missing_structure_get_type), (copy_and_clean_caps),
11348         (gst_missing_uri_source_message_new),
11349         (gst_missing_uri_sink_message_new),
11350         (gst_missing_element_message_new),
11351         (gst_missing_decoder_message_new),
11352         (gst_missing_encoder_message_new),
11353         (missing_structure_get_string_detail),
11354         (missing_structure_get_caps_detail),
11355         (gst_missing_plugin_message_get_installer_detail),
11356         (gst_missing_plugin_message_get_description),
11357         (gst_is_missing_plugin_message):
11358         * gst-libs/gst/utils/missing-plugins.h:
11359           API: add new libgstbaseutils library with functions
11360           - to create and parse missing-plugins messages
11361           - that provide (translated) descriptions for caps/decoders/sources/etc.
11362           Closes #392393.
11363
11364         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
11365         * pkgconfig/gstreamer-plugins-base.pc.in:
11366           Add new lib.
11367
11368         * docs/libs/gst-plugins-base-libs-docs.sgml:
11369         * docs/libs/gst-plugins-base-libs-sections.txt:
11370           Generate docs for new lib and API.
11371
11372         * tests/check/Makefile.am:
11373         * tests/check/libs/.cvsignore:
11374         * tests/check/libs/utils.c: (missing_msg_check_getters),
11375         (GST_START_TEST), (libgstbaseutils_suite):
11376           Add some basic unit tests.
11377
11378 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11379
11380         * ext/ogg/Makefile.am:
11381           Dist gstoggdemux.h to fix 'make distcheck'.
11382
11383         * sys/v4l/Makefile.am:
11384           Fix 'make distcheck' even more.
11385
11386 2007-01-09  Wim Taymans  <wim@fluendo.com>
11387
11388         * docs/plugins/Makefile.am:
11389         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11390         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11391         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11392         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
11393         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
11394         (gst_ogg_demux_perform_seek):
11395         * ext/ogg/gstoggdemux.h:
11396         Added docs.
11397         Add some more comments.
11398         Small cleanups.
11399
11400 2007-01-09  Wim Taymans  <wim@fluendo.com>
11401
11402         * ext/theora/theoradec.c:
11403         * ext/vorbis/vorbisdec.c:
11404         * gst-libs/gst/audio/gstringbuffer.c:
11405         (gst_ring_buffer_commit_full):
11406         * gst-libs/gst/audio/gstringbuffer.h:
11407         * gst-libs/gst/rtp/gstrtpbuffer.c:
11408         * gst-libs/gst/tag/gstvorbistag.c:
11409         Small documentation updates/fixes
11410
11411 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11412
11413         * configure.ac:
11414           Require core CVS HEAD for Andy's basesrc/sink API additions.
11415
11416 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11417
11418         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
11419
11420         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
11421         (plugin_init):
11422           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
11423           on flac.sf.net (there appear to be other versions of the first
11424           ogg page in the wild) (#391365).
11425
11426 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11427
11428         * configure.ac:
11429           Check if localtime_r() is available.
11430
11431         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
11432           If localtime_r() is not available, fall back to localtime(). Should
11433           fix build on MingW (#393310).
11434
11435 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11436
11437         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
11438         * gst/subparse/gstsubparse.h:
11439           Remove spurious 1000 subtrahend when calculating the timestamp from
11440           the frame number and the frame rate . Also, use the frames/second
11441           value specified in the first line of the file, if one is specified
11442           there. Should fix #357503.
11443
11444         * tests/check/elements/subparse.c: (do_test),
11445         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
11446         (subparse_suite):
11447           Add some basic unit tests for the microdvd subtitle format.
11448
11449 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11450
11451         Patch by: Young-Ho Cha <ganadist at chollian dot net>
11452
11453         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11454         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
11455         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
11456         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
11457         (gst_xvimagesink_set_xwindow_id),
11458         (gst_xvimagesink_set_event_handling),
11459         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
11460         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
11461         Fixes: #390076.
11462         Add an adaptor property to select a specific XV adaptor.
11463         * sys/xvimage/xvimagesink.h:
11464
11465 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11466
11467         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11468         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
11469         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
11470         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
11471         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
11472         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
11473         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11474         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
11475         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11476         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
11477         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
11478         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
11479         Use flow_lock much more to protect every access to xwindow.
11480         Try to catch erros while creating images in case some drivers are
11481         just generating an XError when the requested image is too big.
11482         Should fix : #354698, #384008, #384060.
11483         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
11484         Implement some stress testing of setting window xid.
11485
11486 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
11487
11488         * win32/common/libgsaudio.def:
11489           Add new exported function.
11490         * win32/common/libgstogg.dsp:
11491           Add gstoggaviparse.c to the build.
11492         * win32/common/libgstvideoscale.dsp:
11493           Add vs_4tap.c to the build.
11494         * win32/common/libgstvorbis.dsp:
11495           Add vorbistag.c to the build.
11496         
11497 2007-01-06  Andy Wingo  <wingo@pobox.com>
11498
11499         * gst-libs/gst/audio/gstbaseaudiosink.c
11500         (gst_base_audio_sink_class_init)
11501         (gst_base_audio_sink_init): 
11502         (gst_base_audio_sink_activate_pull): Add an activate_pull function
11503         to baseaudiosink, and tell basesink that we can work in pull mode.
11504         This way the ring buffer thread drives the pipeline directly, if
11505         pull mode is possible. There is some lingering nastiness regarding
11506         capsnego, however.
11507         (gst_base_audio_sink_callback): Implement the callback to pull
11508         data. This interface is a bit light, though -- it should get a
11509         GstFlowReturn return value at least.
11510
11511 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11512
11513         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
11514         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11515         * gst/playback/gstdecodebin2.c:
11516         (gst_decode_group_check_if_blocked):
11517           Printf format and missing argument fixes.
11518
11519 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
11520
11521         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
11522         (gst_ogm_parse_change_state):
11523         Activate pads before adding them to the element.
11524
11525 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11526
11527         * tests/examples/seek/scrubby.c: (main):
11528         * tests/examples/seek/seek.c: (main):
11529           Call g_thread_init() first thing in main() (see #391278).
11530
11531 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11532
11533         * tests/check/Makefile.am:
11534         * tests/check/libs/.cvsignore:
11535         * tests/check/libs/netbuffer.c: (GST_START_TEST),
11536         (netbuffer_suite):
11537           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
11538           for the time being, since it's broken, see #393099.
11539
11540 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11541
11542         * tests/check/Makefile.am:
11543           Update to use GST_PLUGINS_BASE_CFLAGS as well.
11544
11545 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11546
11547         * configure.ac:
11548           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
11549           so that GST_BASE_CFLAGS can go inbetween them, making sure
11550           we use uninstalled gst-libs headers
11551         * docs/libs/Makefile.am:
11552         * ext/alsa/Makefile.am:
11553         * ext/cdparanoia/Makefile.am:
11554         * ext/gnomevfs/Makefile.am:
11555         * ext/libvisual/Makefile.am:
11556         * ext/ogg/Makefile.am:
11557         * ext/theora/Makefile.am:
11558         * ext/vorbis/Makefile.am:
11559         * gst-libs/gst/audio/Makefile.am:
11560         * gst-libs/gst/cdda/Makefile.am:
11561         * gst-libs/gst/interfaces/Makefile.am:
11562         * gst-libs/gst/riff/Makefile.am:
11563         * gst-libs/gst/rtp/Makefile.am:
11564         * gst-libs/gst/tag/Makefile.am:
11565         * gst/adder/Makefile.am:
11566         * gst/audioconvert/Makefile.am:
11567         * gst/audiorate/Makefile.am:
11568         * gst/audioresample/Makefile.am:
11569         * gst/playback/Makefile.am:
11570         * gst/tcp/Makefile.am:
11571         * gst/videoscale/Makefile.am:
11572         * gst/volume/Makefile.am:
11573         * sys/ximage/Makefile.am:
11574         * sys/xvimage/Makefile.am:
11575         * tests/icles/Makefile.am:
11576           adapt
11577
11578 2007-01-04  Julien MOUTTE  <julien@moutte.net>
11579
11580         * gst-libs/gst/interfaces/xoverlay.c:
11581         (gst_x_overlay_handle_events):
11582         * gst-libs/gst/interfaces/xoverlay.h:
11583         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
11584         (gst_ximagesink_set_xwindow_id),
11585         (gst_ximagesink_set_event_handling),
11586         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
11587         (gst_ximagesink_get_property), (gst_ximagesink_init),
11588         (gst_ximagesink_class_init):
11589         * sys/ximage/ximagesink.h:
11590         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
11591         (gst_xvimagesink_set_xwindow_id),
11592         (gst_xvimagesink_set_event_handling),
11593         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
11594         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
11595         (gst_xvimagesink_class_init):
11596         * sys/xvimage/xvimagesink.h:
11597         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
11598         Add a method to the XOverlay interface to allow disabling of 
11599         event handling in x[v]imagesink elements. This will let X events
11600         propagate to parent windows which can be usefull in some cases.
11601         Be carefull that the application is then responsible of pushing
11602         navigation events and expose events to the video sink.
11603         Fixes: #387138.
11604
11605 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
11606
11607         * gst-libs/gst/tag/gstvorbistag.c:
11608         * tests/check/libs/tag.c: (GST_START_TEST):
11609           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
11610           (fixes #392070).
11611
11612 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
11613
11614         * configure.ac:
11615         * docs/Makefile.am:
11616         * docs/design/Makefile.am:
11617           Dist design docs.
11618
11619 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11620
11621         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
11622         typo. Fixes: #390063.
11623
11624 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11625
11626         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11627         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
11628         caps leak.
11629         * win32/common/config.h: Updated.
11630
11631 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
11632
11633         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
11634         (setup_gdpdepay_streamheader):
11635         * tests/check/elements/gdppay.c: (cleanup_gdppay),
11636         (setup_gdppay_streamheader):
11637           Fix the dp tests, but activating the pads for the streamheader tests
11638           too and cleaning up conditionaly
11639
11640 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
11641
11642         * gst/ffmpegcolorspace/avcodec.h:
11643         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11644         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
11645         (gst_ffmpegcsp_avpicture_fill):
11646         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
11647         (img_get_alpha_info):
11648         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
11649         other end of the word. Fixes: #387073.
11650
11651         Add some inconsequential branch hints in a couple of places.
11652
11653 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
11654
11655         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11656         (gst_ffmpeg_caps_to_smpfmt):
11657           The "signed" field in raw audio caps is of boolean type, trying to
11658           extract the value with _get_int() will fail (fix to keep in sync with
11659           the copy in gst-ffmpeg)
11660
11661 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
11662
11663         * tests/check/elements/audioresample.c: (cleanup_audioresample):
11664         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
11665         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
11666         (cleanup_gdpdepay):
11667         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
11668         * tests/check/elements/subparse.c: (teardown_subparse):
11669         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
11670         * tests/check/elements/videorate.c: (cleanup_videorate):
11671         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
11672         * tests/check/elements/volume.c: (cleanup_volume):
11673         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
11674         (cleanup_vorbisdec):
11675         * tests/check/elements/vorbistag.c: (setup_vorbistag),
11676         (cleanup_vorbistag):
11677           consistent pad (de)activation
11678
11679 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11680
11681         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11682           Forgot to register the extensions.
11683
11684 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11685
11686         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
11687         (plugin_init):
11688           Add typefinder for VIVO files (my christmas present to the 90s).
11689
11690 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11691
11692         * gst/playback/gstdecodebin.c: (type_found):
11693           Special-case the text/plain media type: we only want to recognise it
11694           as a 'raw' decoded media type if it comes from a demuxer or subtitle
11695           parser, but not if the entire stream is of text/plain type. If the
11696           entire stream is text/plain, we should just error out.
11697
11698           This fixes playback of audio files with lyrics in totem. Totem can't
11699           distinguish between text files and subtitle files and passes any
11700           .txt file with the same basename as the main file to playbin as
11701           suburi, and playbin will then throw a 'subtitle found, but no video
11702           stream' error, which isn't entirely helpful. See #380342.
11703
11704           Also, with this change we'll show a slightly more correct error
11705           message in case totem passes a playlist file to us (although a
11706           custom error message wording instead of the default text would
11707           probably not be a bad idea either).
11708
11709           Same problem also needs to be fixed for playbin+decodebin2.
11710
11711         * tests/check/Makefile.am:
11712         * tests/check/elements/decodebin.c: (src_handoff_cb),
11713         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
11714         (decodebin_suite):
11715           Add simple unit test for decodebin for the above.
11716
11717 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11718
11719         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
11720         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
11721           Refuse to change state to READY when we failed to create any of the
11722           required elements in our instance init function.
11723
11724 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
11725
11726         * docs/libs/gst-plugins-base-libs-sections.txt:
11727           Small docs fixes/updates.
11728
11729         * gst-libs/gst/video/gstvideosink.h:
11730           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
11731           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
11732           removed from the base sink API between 0.9.6 and 0.9.7).
11733           API: add GST_VIDEO_SINK_CAST and use it for the height/width
11734           accessor macros, so we don't do a runtime GObject type check every
11735           time we use them.
11736
11737 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
11738
11739         * Makefile.am:
11740         * gst-plugins-base.doap:
11741         * gst-plugins-base.spec.in:
11742           add doap file
11743
11744 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
11745
11746         Patch by: Jens Granseuer <jensgr at gmx net>
11747
11748         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11749         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11750         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
11751         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
11752         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11753           Declare variables at the beginning of a block. Fixes #383195.
11754
11755 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
11756
11757         * configure.ac:
11758         Bump version nano - back to CVS.
11759
11760
11761 === release 0.10.11 ===
11762
11763 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
11764
11765         * configure.ac:
11766           releasing 0.10.11, "Dumb things"
11767
11768 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
11769
11770         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
11771         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
11772         Handle the case where an element has multiple pads with 
11773         unfixed caps as well as still possibly producing more dynamic 
11774         pads by storing each case as a distinct entry in the dynamic list.
11775         Fixes #38223 again.
11776
11777 2006-12-04  Wim Taymans  <wim@fluendo.com>
11778
11779         * gst/playback/gstdecodebin.c: (close_pad_link):
11780         Fix #382223, add more dynamic caps handling.
11781
11782 2006-12-04  Wim Taymans  <wim@fluendo.com>
11783
11784         * gst-libs/gst/audio/gstringbuffer.h:
11785         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
11786         (gst_netaddress_set_ip4_interface),
11787         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
11788         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
11789         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
11790         (gst_netaddress_get_ttl):
11791         * gst-libs/gst/netbuffer/gstnetbuffer.h:
11792         * gst/playback/gstdecodebin.c: (close_pad_link):
11793         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
11794         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
11795         * win32/common/config.h:
11796
11797 2006-12-01  Michael Smith  <msmith@fluendo.com>
11798
11799         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
11800           Delete bad debug code.
11801           Fixes #381219
11802
11803 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
11804
11805         * gst/videoscale/vs_4tap.c:
11806         * win32/MANIFEST:
11807         * win32/common/config.h:
11808         * win32/vs8/libgstvideoscale.vcproj:
11809         Fix compilation on win32 under VS8
11810         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
11811         Partially fixes #381175
11812
11813 2006-11-30  Michael Smith  <msmith@fluendo.com>
11814
11815         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11816         (GST_START_TEST):
11817           It would be very bad if, after a discont buffer, we thought every
11818           single following buffer was also discont. So, add to the test to
11819           ensure that this isn't the case.
11820           
11821         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
11822           ... it was the case. So fix it.
11823
11824 2006-11-28  Wim Taymans  <wim@fluendo.com>
11825
11826         * gst/playback/gstplaybasebin.c: (check_queue_event):
11827         Improve debug.
11828
11829         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
11830         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
11831         padtemplate caps. Refixes #357577.
11832
11833 2006-11-28  Wim Taymans  <wim@fluendo.com>
11834
11835         * gst/playback/gstplaybasebin.c: (check_queue_event),
11836         (queue_threshold_reached), (queue_out_of_data),
11837         (gen_preroll_element):
11838         Add event probe to see when EOS is in a queue and we can disable the
11839         underrun signals. Fixes #357577.
11840
11841 2006-11-28  Edward Hervey  <edward@fluendo.com>
11842
11843         * gst/playback/Makefile.am:
11844         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
11845         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
11846         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
11847         (gst_decode_bin_init), (gst_decode_bin_dispose),
11848         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
11849         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
11850         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
11851         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
11852         (connect_element), (expose_pad), (type_found),
11853         (pad_added_group_cb), (pad_removed_group_cb),
11854         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
11855         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
11856         (are_raw_caps), (multi_queue_overrun_cb),
11857         (multi_queue_underrun_cb), (gst_decode_group_new),
11858         (get_current_group), (group_demuxer_event_probe),
11859         (gst_decode_group_control_demuxer_pad),
11860         (gst_decode_group_control_source_pad),
11861         (gst_decode_group_check_if_blocked),
11862         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
11863         (gst_decode_group_hide), (gst_decode_group_free),
11864         (gst_decode_group_set_complete), (source_pad_blocked_cb),
11865         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
11866         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
11867         (plugin_init):
11868         New decodebin2 element.
11869         Closes #370092
11870         * gst/playback/gstplay-marshal.list:
11871         Added marshallers for new signals in decodebin2
11872         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
11873         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
11874         is set.
11875
11876 2006-11-28  Wim Taymans  <wim@fluendo.com>
11877
11878         * gst/playback/gstplaybasebin.c: (setup_source),
11879         (gst_play_base_bin_change_state):
11880         Disable rtsp:// uris for the release, it's not good enough yet.
11881         Remove unused var.
11882
11883 2006-11-26  Wim Taymans  <wim@fluendo.com>
11884
11885         * ext/theora/theoradec.c: (gst_theora_dec_reset),
11886         (theora_dec_push_forward), (theora_dec_push_reverse),
11887         (theora_handle_data_packet), (theora_dec_decode_buffer),
11888         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11889         (theora_dec_chain_forward), (theora_dec_chain):
11890         Implement reverse playback.
11891
11892         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
11893         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
11894         (vorbis_dec_chain_forward):
11895         Clear buffers used for reverse playback in _reset.
11896         No need to set the eos flag, we clip samples using the segment.
11897
11898 2006-11-24  Wim Taymans  <wim@fluendo.com>
11899
11900         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11901         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
11902         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
11903         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
11904         Some cleanups.
11905         Handle continued pages in reverse mode.
11906
11907 2006-11-24  Wim Taymans  <wim@fluendo.com>
11908
11909         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
11910         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11911         (vorbis_dec_flush_decode):
11912         Small cleanups.
11913         Don't try to add invalid timestamps.
11914         Clipping will unref the buffer.
11915
11916 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11917
11918         * gst/adder/gstadder.h:
11919         * gst/audiotestsrc/gstaudiotestsrc.h:
11920           remove obsolete _factory_init protos
11921
11922 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11923
11924         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
11925           Fix spacing in debug message.
11926
11927 2006-11-23  Wim Taymans  <wim@fluendo.com>
11928
11929         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11930         (gst_ogg_demux_chain):
11931         Don't just ignore return values from _pad_push().
11932         Small debug improvements.
11933
11934 2006-11-23  Michael Smith  <msmith@fluendo.com>
11935
11936         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
11937           If our incoming buffer is marked as DISCONT, then increment the page
11938           number (so that the discontinuity is marked in the final ogg
11939           bitstream) and flush the previous page.
11940
11941 2006-11-22  Michael Smith  <msmith@fluendo.com>
11942
11943         * ext/theora/gsttheoraenc.h:
11944         * ext/theora/theoraenc.c: (gst_theora_enc_init),
11945         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
11946         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
11947         (theora_enc_chain), (theora_enc_change_state):
11948           Mark discontinuities of > 3/4 of a frame, reinit encoder.
11949
11950         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11951         (GST_START_TEST), (theoraenc_suite):
11952           Enable discontinuity test, fix it.
11953
11954 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11955
11956         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
11957         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
11958         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
11959         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
11960         (gst_text_overlay_change_state):
11961         * ext/pango/gsttextoverlay.h:
11962           Some textoverlay fixes: for one, in the video chain function,
11963           actually wait for a text buffer to come in if there is none at the
11964           moment and there should be one; also, deal more gracefully with
11965           incoming buffers that do not have a timestamp or duration; discard
11966           text buffer when not needed any longer. Fixes #341681.
11967
11968         * tests/check/Makefile.am:
11969         * tests/check/elements/.cvsignore:
11970         * tests/check/elements/textoverlay.c:
11971         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
11972         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
11973         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
11974         (test_video_waits_for_text_send_text_newsegment_thread),
11975         (test_video_waits_for_text_shutdown_element),
11976         (test_render_continuity_push_video_buffers_thread),
11977         (textoverlay_suite):
11978           Add some unit tests for textoverlay.
11979
11980 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11981
11982         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11983           Avoid integer underflow when the found probability for mp3 is
11984           smaller than the 'penalty' we subtract if there's not a clean
11985           mp3 header sync at offset 0.
11986
11987 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
11988
11989         * docs/libs/gst-plugins-base-libs-sections.txt:
11990           Add some new symbols to the docs
11991
11992 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
11993
11994         * tests/check/Makefile.am:
11995         * tests/check/elements/ffmpegcolorspace.c:
11996         (ffmpegcolorspace_suite):
11997           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
11998           (for now not for valgrinding though, since it takes too long).
11999
12000 2006-11-20  Wim Taymans  <wim@fluendo.com>
12001
12002         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12003         (gst_ffmpeg_pixfmt_to_caps):
12004         Fix RGBA32 caps. Fixes #357038.
12005
12006 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
12007
12008         * gst-libs/gst/interfaces/mixertrack.h:
12009           Add FIXME so we can add some padding here in 0.11
12010
12011 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12012
12013         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
12014           Fix GstBaseRTPAudioPayload structure so the whole GObject
12015           inheritance business actually works (parent class instance structure
12016           must always come first in the derived class instance structure).
12017
12018 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
12019
12020         * gst/videotestsrc/Makefile.am:
12021         * tests/check/Makefile.am:
12022           Make sure our checks and the videotestsrc plugin link against the
12023           local uninstalled gst libs and not any installed gst libs that
12024           might happen to exist as well.
12025
12026         * tests/check/elements/adder.c: (message_received),
12027         (test_event_message_received), (test_play_twice_message_received):
12028         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
12029           Fix compiler warnings when compiling against core with disabled
12030           debugging system.
12031
12032 2006-11-16  Michael Smith  <msmith@fluendo.com>
12033
12034         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12035         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
12036           Fix audiorate, so that it accurately sets offsets and timestamps.
12037           Doesn't change the fundamental algorithmic decisions; so should be
12038           safe.
12039
12040         * tests/check/Makefile.am:
12041           Enable audiorate test now that it passes.
12042
12043 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
12044
12045         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
12046           clear xv when going to NULL, remove // commented non-existant proto
12047
12048         * tests/examples/seek/seek.c: (main):
12049           add missing tooltip description for scrub and play_scrub
12050
12051 2006-11-14  David Schleef  <ds@schleef.org>
12052
12053         * configure.ac:
12054           Bump liboil requirement to 0.3.8.
12055         * gst-libs/gst/riff/riff-media.c:
12056           Add Dirac fourcc.
12057         * gst/videoscale/vs_image.h:
12058         * gst/videoscale/vs_scanline.h:
12059           Use liboil's stdint.h.
12060         * gst/videotestsrc/videotestsrc.c:
12061           Remove liboil related ifdef's, since they aren't needed now, and
12062           won't work with future versions.
12063
12064 2006-11-14  David Schleef  <ds@schleef.org>
12065
12066         * gst/videoscale/Makefile.am:
12067         * gst/videoscale/gstvideoscale.c:
12068         * gst/videoscale/gstvideoscale.h:
12069         * gst/videoscale/vs_4tap.c:
12070         * gst/videoscale/vs_4tap.h:
12071         * gst/videoscale/vs_image.c:
12072         * gst/videoscale/vs_image.h:
12073         * gst/videoscale/vs_scanline.c:
12074         * gst/videoscale/vs_scanline.h:
12075           Add a 4-tap image scaler.  Theoretically looks much prettier.
12076           The tap calculation could use some improvement.
12077
12078 2006-11-14  Wim Taymans  <wim@fluendo.com>
12079
12080         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
12081
12082         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
12083         (gst_riff_parse_strf_iavs):
12084         * gst/subparse/gstsubparse.c: (convert_encoding):
12085         * gst/tcp/gstmultifdsink.c:
12086         (gst_multi_fd_sink_handle_client_write):
12087         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
12088         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
12089         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
12090         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
12091         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
12092         (gst_ximagesink_ximage_new):
12093         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
12094         Various gsize and gssize printf fixes. Fixes #372507.
12095
12096 2006-11-13  Wim Taymans  <wim@fluendo.com>
12097
12098         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12099         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
12100         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
12101         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
12102         (vorbis_dec_chain_forward), (vorbis_dec_chain):
12103         * ext/vorbis/vorbisdec.h:
12104         First stab at vorbis reverse playback.
12105
12106 2006-11-13  Wim Taymans  <wim@fluendo.com>
12107
12108         * gst-libs/gst/audio/gstbaseaudiosink.c:
12109         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12110         * gst-libs/gst/audio/gstbaseaudiosink.h:
12111         Make the clock sync code more accurate wrt resampling and playback
12112         at different rates.
12113         
12114         * gst-libs/gst/audio/gstringbuffer.c:
12115         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
12116         * gst-libs/gst/audio/gstringbuffer.h:
12117         Use better algorithm to interpolate sample rates. 
12118
12119 2006-11-13  Michael Smith  <msmith@fluendo.com>
12120
12121         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
12122           Improve a debug line slightly.
12123
12124         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
12125           Call gst_riff_init() in plugin_init, to avoid getting errors from
12126           the debug system (unrelated changes to another plugin made this turn
12127           up; not sure why).
12128
12129 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
12130
12131         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
12132
12133         * win32/common/libgsttag.def:
12134           Add missing symbol (#366492).
12135
12136 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
12137
12138         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
12139           Don't unref a NULL pad.
12140
12141 2006-11-09  Wim Taymans  <wim@fluendo.com>
12142
12143         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
12144         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
12145         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
12146         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
12147         (gst_ogg_demux_loop):
12148         Implement first stab at reverse playback.
12149
12150 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
12151
12152         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
12153         (gst_riff_create_video_template_caps):
12154           add h263/h264 variants to the caps, Fixes #363118
12155
12156 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
12157
12158         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
12159         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
12160           Use g_strerror instead of strerror so we get UTF-8.
12161
12162 2006-11-03  David Schleef  <ds@schleef.org>
12163
12164         * ext/ogg/gstoggdemux.c:
12165         * ext/ogg/gstoggmux.c:
12166           Add/remove KW-DIRAC header here, since it is ogg-specific.
12167
12168 2006-11-03  Michael Smith  <msmith@fluendo.com>
12169
12170         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
12171           Recognise more mpeg4 elementary video streams.
12172
12173 2006-11-02  Edward Hervey  <edward@fluendo.com>
12174
12175         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
12176         Lower the probability of mp3 typefinding functions if we don't find a
12177         valid mp3 header at the start of the file.
12178         Closes #369482
12179
12180 2006-11-02  Wim Taymans  <wim@fluendo.com>
12181
12182         * ext/theora/gsttheoradec.h:
12183         * ext/theora/theoradec.c: (gst_theora_dec_init),
12184         (theora_dec_sink_event), (theora_dec_chain_forward),
12185         (theora_dec_flush_decode), (theora_dec_chain_reverse),
12186         (theora_dec_chain):
12187         Document and partially implement an algorithm for doing reverse playback
12188         of theora video.
12189
12190 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
12191
12192         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
12193
12194         * win32/common/config.h:
12195         * win32/common/interfaces-enumtypes.c:
12196         * win32/common/libgsttag.def:
12197         * win32/vs8/gst-plugins-base.sln:
12198         * win32/vs8/libgstaudioresample.vcproj:
12199         * win32/vs8/libgstinterfaces.vcproj:
12200         * win32/vs8/libgstogg.vcproj:
12201         * win32/vs8/libgstriff.vcproj:
12202         * win32/vs8/libgsttag.vcproj:
12203         * win32/vs8/libgsttheora.vcproj:
12204         * win32/vs8/libgstvideoscale.vcproj:
12205         * win32/vs8/libgstvorbis.vcproj:
12206           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
12207           to libgsttag.def; add missing dependencies for some vs8 projects;
12208           re-arrange placement of .def files in vs8 projects (#366334).
12209
12210 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
12211
12212         * ext/ogg/gstogg.c:
12213           Remove unused variable.
12214
12215         * ext/ogg/gstoggdemux.c:
12216           Fix Wim's surname in plugin description.
12217
12218 2006-10-31  Wim Taymans  <wim@fluendo.com>
12219
12220         * gst-plugins-base.spec.in:
12221         spec new .h file. Fixes #368310.
12222
12223 2006-10-31  Michael Smith  <msmith@fluendo.com>
12224
12225         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
12226         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
12227         (gst_multi_fd_sink_get_stats),
12228         (gst_multi_fd_sink_remove_client_link),
12229         (gst_multi_fd_sink_queue_buffer),
12230         (gst_multi_fd_sink_handle_clients):
12231         * gst/tcp/gstmultifdsink.h:
12232           Make using the remove or clear signals threadsafe.
12233           Make calling get-stats with an invalid fd not segfault.
12234           Fixes 368273.
12235
12236 2006-10-31  Wim Taymans  <wim@fluendo.com>
12237
12238         * gst-libs/gst/rtp/Makefile.am:
12239         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12240         (gst_base_rtp_audio_payload_init):
12241         Fix and activate base audio payloader.
12242
12243 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
12244
12245         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
12246         (plugin_init):
12247           Add typefinder for QuickTime Image Files (see #366156).
12248
12249 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
12250
12251         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
12252           Another typo fix (#366212).
12253
12254 2006-10-27  Wim Taymans  <wim@fluendo.com>
12255
12256         * gst/volume/gstvolume.c: (volume_transform_ip):
12257         Use stream time to synchronize volume property instead of rather random
12258         timestamps. This is needed when gnonlin does its time shifting.
12259
12260 2006-10-27  Wim Taymans  <wim@fluendo.com>
12261
12262         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
12263
12264         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
12265         Remove the pad from the element in release_pad. Fixes #364812.
12266
12267 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
12268
12269         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
12270         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
12271           Explicitly create our custom buffer classes at a thread-safe
12272           location as well, since g_type_class_ref() doesn't seem to be
12273           entirely thread-safe either (#365501; also see #349410).
12274
12275 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
12276
12277         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
12278         (gst_riff_parse_info):
12279           If strings in INFO chunk are not UTF-8, do something similar to
12280           what we do for ID3v1 tags: check a number of environment variables
12281           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
12282           character sets to try, otherwise try the current locale and/or fall
12283           back on ISO-8859-1. Fixes #360552.
12284
12285 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12286
12287         * gst/videotestsrc/gstvideotestsrc.c:
12288         (gst_video_test_src_pattern_get_type),
12289         (gst_video_test_src_set_pattern):
12290         * gst/videotestsrc/gstvideotestsrc.h:
12291         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
12292         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
12293         (gst_video_test_src_checkers8):
12294         * gst/videotestsrc/videotestsrc.h:
12295           Add a bunch of exciting new checkers patterns.
12296
12297 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12298
12299         * gst/subparse/Makefile.am:
12300         * gst/subparse/gstsubparse.c:
12301         (gst_sub_parse_data_format_autodetect),
12302         (gst_sub_parse_format_autodetect), (handle_buffer),
12303         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
12304         * gst/subparse/gstsubparse.h:
12305         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
12306         (parse_tmplayer):
12307         * gst/subparse/tmplayerparse.h:
12308           Add support for TMPlayer-type subtitles (#362845).
12309
12310         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
12311         (GST_START_TEST), (subparse_suite):
12312           Add some basic unit tests for the above.
12313
12314 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12315
12316         * tests/check/elements/audiorate.c: (test_injector_base_init),
12317         (test_injector_class_init), (test_injector_chain),
12318         (test_injector_init), (probe_cb), (do_perfect_stream_test),
12319         (GST_START_TEST), (audiorate_suite):
12320           More tests for audiorate: inject buffers to check behaviour when
12321           buffers overlap.
12322
12323 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
12324
12325         * tests/check/Makefile.am:
12326         * tests/check/elements/.cvsignore:
12327         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
12328         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
12329           Add some basic unit tests for audiorate. Disabled at the moment
12330           since it doesn't pass yet (see bug #363119).
12331
12332 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
12333
12334         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
12335         (parse_subrip), (handle_buffer):
12336           Add missing closing tags for markup and fix broken markup,
12337           otherwise pango won't render anything (fixes #357531). Also,
12338           make sure the text we send out is always NUL-terminated
12339           (better safe than sorry etc.).
12340
12341         * tests/check/elements/subparse.c: (test_srt_do_test),
12342         (test_srt):
12343           Some more tests for .srt incl. tests for the above stuff.
12344
12345 2006-10-20  Julien MOUTTE  <julien@moutte.net>
12346
12347         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
12348         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
12349         Patch by: Stefan Kost  <ensonic@users.sf.net>
12350         Try to redraw borders only when needed. Apparently this consumes
12351         resources on small devices... :-O (#363607)
12352
12353 2006-10-20  Michael Smith  <msmith@fluendo.com>
12354
12355         * gst/tcp/gstmultifdsink.c:
12356         (gst_multi_fd_sink_client_queue_buffer):
12357           If caps change, then update the client's idea of the caps so that we
12358           don't end up re-sending streamheaders for every single buffer after
12359           the caps change.
12360
12361 2006-10-20  Michael Smith  <msmith@fluendo.com>
12362
12363         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
12364         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
12365           Set caps on pushed buffers; fix up refcounting of caps objects.
12366
12367 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12368
12369         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
12370         (plugin_init):
12371           Typefind mmsh header data packet to application/x-mmsh (#362625).
12372
12373 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12374
12375         * tests/check/Makefile.am:
12376         * tests/check/elements/.cvsignore:
12377         * tests/check/elements/subparse.c: (buffer_from_static_string),
12378         (setup_subparse), (teardown_subparse), (test_srt_do_test),
12379         (GST_START_TEST), (subparse_suite):
12380           Add very simple unit test for subparse.
12381
12382 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12383
12384         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
12385         (parse_subrip):
12386           Strip trailing newlines from subtitle text output.
12387
12388 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12389
12390         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
12391         (gst_sub_parse_change_state):
12392           Fix memleak; clear subparse->textbuf n state change function.
12393
12394 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12395
12396         * gst/subparse/gstsubparse.c:
12397         (gst_sub_parse_data_format_autodetect):
12398           Don't require subrip (.srt) files to start with a chunk number of 1.
12399
12400 2006-10-18  Wim Taymans  <wim@fluendo.com>
12401
12402         * gst-libs/gst/audio/gstbaseaudiosink.c:
12403         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12404         * gst-libs/gst/audio/gstbaseaudiosink.h:
12405         Extract rate from the NEWSEGMENT event.
12406         Use commit_full to also take rate adjustment into account when writing
12407         samples to the ringbuffer.
12408         
12409         * gst-libs/gst/audio/gstringbuffer.c:
12410         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
12411         (gst_ring_buffer_read):
12412         * gst-libs/gst/audio/gstringbuffer.h:
12413         Added _commit_full() to also take rate into account.
12414         Use simple interpolation algorithm to resample audio.
12415         API: gst_ring_buffer_commit_full()
12416
12417         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
12418         * tests/examples/seek/seek.c: (segment_done):
12419         Don't try to seek with 0.0 rate, just pause instead.
12420         Remove bogus debug line.
12421
12422 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12423
12424         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
12425         (setup_source):
12426           Catch async errors when starting up the subtitle bin, so we can
12427           stop waiting and continue with the main film instead of hanging
12428           forever. Fixes #339366.
12429
12430         * tests/check/elements/playbin.c: (playbin_suite):
12431           Enable unit test for the above.
12432
12433 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12434
12435         * tests/check/Makefile.am:
12436         * tests/check/elements/.cvsignore:
12437         * tests/check/elements/playbin.c: (GST_START_TEST),
12438         (gst_red_video_src_uri_get_type),
12439         (gst_red_video_src_uri_get_protocols),
12440         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
12441         (gst_red_video_src_uri_handler_init),
12442         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
12443         (gst_red_video_src_create), (gst_red_video_src_class_init),
12444         (gst_red_video_src_init), (plugin_init), (playbin_suite):
12445           Some small and basic unit tests for playbin; not very useful yet,
12446           but at least a start.
12447
12448 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12449
12450         * gst/playback/gstplaybin.c: (setup_sinks):
12451           The old pad activation spiel.
12452
12453 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12454
12455         * gst/playback/gstplaybasebin.c: (setup_source):
12456           Don't hang forever if the subbin already fails to start up in 
12457           the state change to PAUSED (#339366).
12458
12459 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
12460
12461         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
12462         (gst_tuner_set_channel), (gst_tuner_get_channel),
12463         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
12464         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
12465         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
12466         (gst_tuner_find_channel_by_name):
12467           Fix some function guards, add some more function guards.
12468
12469 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
12470
12471         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
12472         (remove_element_chain):
12473         Don't return a pad from get_our_ghost_pad unless it is actually the
12474         one we want.
12475         Change a cast in remove_element_chain slightly.
12476
12477 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12478
12479         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12480         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
12481         Segment seeking needs to use the rate and set stop to -1.
12482
12483 2006-10-13  Wim Taymans  <wim@fluendo.com>
12484
12485         * gst-libs/gst/audio/gstbaseaudiosink.c:
12486         (gst_base_audio_sink_setcaps):
12487         Don't crash when ringbuffer is not yet created.
12488         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
12489         Fixes #361634.
12490
12491         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12492         * gst/playback/gststreamselector.c:
12493         (gst_stream_selector_request_new_pad):
12494         Activate pads befre adding them to running elements.
12495
12496 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12497
12498         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12499         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
12500         updater when we start grabing the slider. Don't wait for the
12501         pipeline to be PAUSED.
12502
12503 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
12504
12505         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
12506         (gst_mixer_set_volume), (gst_mixer_get_volume),
12507         (gst_mixer_set_mute), (gst_mixer_set_option),
12508         (gst_mixer_get_option), (gst_mixer_mute_toggled),
12509         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
12510         (gst_mixer_option_changed):
12511           Guard mixer interface functions against bogus arguments.
12512
12513 2006-10-12  Julien MOUTTE  <julien@moutte.net>
12514
12515         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
12516         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
12517         (msg_state_changed), (main): Use state-changed messages to trigger
12518         start/stop of scale update timer. Indeed the scale slider was
12519         jumping here and there because the update timer was activated 
12520         before seek completed. This fixes instant applying of rate changes
12521         by pressing the spinbutton like a crazy man !
12522
12523 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
12524
12525         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
12526
12527         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
12528         (gst_basertppayload_finalize):
12529           Fix two small memory leaks (#361456).
12530
12531 2006-10-10  Julien MOUTTE  <julien@moutte.net>
12532
12533         * tests/examples/seek/seek.c: (do_seek),
12534         (rate_spinbutton_changed_cb): When changing spinbutton we try
12535         to change the rate on the fly.
12536
12537 2006-10-10  Wim Taymans  <wim@fluendo.com>
12538
12539         * gst-libs/gst/riff/riff-ids.h:
12540         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12541         (gst_riff_create_audio_template_caps):
12542         Add WMS caps.
12543
12544 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12545
12546         Patch by: Josep Torra Valles <josep@fluendo.com>
12547
12548         * ext/gnomevfs/gstgnomevfssink.c:
12549         * ext/gnomevfs/gstgnomevfssrc.c:
12550         Fix URI interface implementation return type.
12551         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
12552         Fix what looks like a copy/paste issue when assigning values.
12553         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12554         (gst_audio_filter_template_get_type):
12555         Cast to prevent Forte warnings.
12556         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
12557         Fix URI interface implementation return type.
12558         gst_pad_query_position requires a signed integer pointer as
12559         3rd parameter, GstClockTime is unsigned.
12560         * gst/audioconvert/audioconvert.c:
12561         Fix integer overflow when treated as signed.
12562         * gst/audioresample/resample.c: (resample_add_input_data):
12563         Cast to prevent warnings on Forte.
12564         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
12565         Fix integer overflow when treated as signed.
12566         * gst/ffmpegcolorspace/imgconvert_template.h:
12567         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
12568         * gst/playback/gstdecodebin.c: (queue_filled_cb),
12569         (cleanup_decodebin):
12570         Who initialises a guint to -1!
12571         Cast function pointers to prevent warnings on Forte.
12572         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
12573         (queue_threshold_reached):
12574         Cast function pointers correctly to prevent warnings on Forte.
12575         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
12576         Cast function pointers correctly to prevent warnings on Forte.
12577         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
12578         Obvious change to unsigned, 0xEF > max signed char.
12579         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
12580         GstClockTime is unsigned, initialise correctly.
12581         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
12582         Cast so pointer arithemetic doesn't cause warnings on Forte.
12583         * gst/videorate/gstvideorate.c:
12584         Use correct return value.
12585         * tests/examples/seek/scrubby.c:
12586         GstClockTime is unsigned, initialise correctly.
12587
12588 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
12589
12590         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
12591
12592         * gst/typefind/gsttypefindfunctions.c:
12593           Recognise XML files and XML-like files shorter than 256 bytes as
12594           well (fixes #359237).
12595
12596 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
12597
12598         Patch by: Renato Filho <renato.filho@indt.org.br>
12599         
12600         * gst/typefind/gsttypefindfunctions.c:
12601         Added typefind functions to video/x-nuv media.
12602         
12603 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
12604
12605         * gst-libs/gst/interfaces/xoverlay.c:
12606         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
12607           Some more guards against invalid input.
12608
12609 2006-10-07  Julien MOUTTE  <julien@moutte.net>
12610
12611         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
12612         Useless goto.
12613         * tests/examples/seek/seek.c: (do_seek),
12614         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
12615         seek example to experiment with rates != 1.0 (reverse playback !)
12616
12617 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
12618
12619         * gst-libs/gst/interfaces/xoverlay.c:
12620           Unref message in doc-example (spotted by Robert McQueen)
12621
12622 2006-10-06  Wim Taymans  <wim@fluendo.com>
12623
12624         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12625         (mpeg1_parse_header), (mpeg1_sys_type_find):
12626         printf fix.
12627
12628 2006-10-06  Wim Taymans  <wim@fluendo.com>
12629
12630         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
12631         (close_pad_link):
12632         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12633         Activate dynamic pads before adding them to the element.
12634
12635 2006-10-06  Michael Smith  <msmith@fluendo.com>
12636
12637         * gst-libs/gst/floatcast/floatcast.h:
12638           Fix obviously-bogus macros; use the correct types.
12639
12640 2006-10-06  Wim Taymans  <wim@fluendo.com>
12641
12642         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12643         (gst_base_rtp_depayload_change_state):
12644         Also call parent state change function to activate pads.
12645
12646         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12647         (mpeg1_parse_header), (mpeg1_sys_type_find):
12648         Add some more debug info in mpeg typefinding.
12649
12650 2006-10-06  Michael Smith  <msmith@fluendo.com>
12651
12652         * ext/theora/theoradec.c: (theora_dec_chain):
12653           Zero byte theora packets are valid and well-defined; don't warn on
12654           them.
12655
12656 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12657
12658         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
12659         (gst_multi_fd_sink_get_stats), (find_limits),
12660         (gst_multi_fd_sink_queue_buffer):
12661           API: add dropped_buffers to the get-stats GValueArray
12662
12663 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
12664
12665         * ext/alsa/gstalsadeviceprobe.c:
12666         (gst_alsa_device_property_probe_get_values):
12667         * ext/alsa/gstalsasink.c: (set_hwparams):
12668         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
12669         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
12670         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
12671         (gst_ogg_mux_process_best_pad):
12672         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
12673         (gst_ogg_parse_chain):
12674         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
12675         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12676         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
12677         (gst_vorbis_enc_buffer_check_discontinuous):
12678         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
12679         * gst-libs/gst/audio/gstbaseaudiosink.c:
12680         (gst_base_audio_sink_render):
12681         * gst-libs/gst/cdda/gstcddabasesrc.c:
12682         (gst_cdda_base_src_handle_track_seek):
12683         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12684         (gst_base_rtp_depayload_push_full):
12685         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12686         * gst/audioresample/resample.c: (resample_input_pushthrough):
12687         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
12688         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12689         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12690         (wavpack_type_find):
12691         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
12692         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12693         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
12694         * tests/check/elements/volume.c: (GST_START_TEST):
12695           Printf format fixes.
12696
12697 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12698
12699         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
12700           Fix a simple mistake (see the docs)
12701           Fixes #359580
12702
12703 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12704
12705         * docs/plugins/Makefile.am:
12706         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12707         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12708         * docs/plugins/gst-plugins-base-plugins.args:
12709         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12710         * docs/plugins/inspect/plugin-adder.xml:
12711         * docs/plugins/inspect/plugin-alsa.xml:
12712         * docs/plugins/inspect/plugin-audioconvert.xml:
12713         * docs/plugins/inspect/plugin-audiorate.xml:
12714         * docs/plugins/inspect/plugin-audioresample.xml:
12715         * docs/plugins/inspect/plugin-audiotestsrc.xml:
12716         * docs/plugins/inspect/plugin-cdparanoia.xml:
12717         * docs/plugins/inspect/plugin-decodebin.xml:
12718         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12719         * docs/plugins/inspect/plugin-gdp.xml:
12720         * docs/plugins/inspect/plugin-gnomevfs.xml:
12721         * docs/plugins/inspect/plugin-libvisual.xml:
12722         * docs/plugins/inspect/plugin-ogg.xml:
12723         * docs/plugins/inspect/plugin-pango.xml:
12724         * docs/plugins/inspect/plugin-playbin.xml:
12725         * docs/plugins/inspect/plugin-subparse.xml:
12726         * docs/plugins/inspect/plugin-tcp.xml:
12727         * docs/plugins/inspect/plugin-theora.xml:
12728         * docs/plugins/inspect/plugin-typefindfunctions.xml:
12729         * docs/plugins/inspect/plugin-video4linux.xml:
12730         * docs/plugins/inspect/plugin-videorate.xml:
12731         * docs/plugins/inspect/plugin-videoscale.xml:
12732         * docs/plugins/inspect/plugin-videotestsrc.xml:
12733         * docs/plugins/inspect/plugin-volume.xml:
12734         * docs/plugins/inspect/plugin-vorbis.xml:
12735         * docs/plugins/inspect/plugin-ximagesink.xml:
12736         * docs/plugins/inspect/plugin-xvimagesink.xml:
12737           Add vorbistag element to docs; update version numbers to 0.10.10.1.
12738
12739 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12740
12741         Patch by: James "Doc" Livingston <doclivingston at gmail com>
12742
12743         * ext/vorbis/Makefile.am:
12744         * ext/vorbis/vorbis.c: (plugin_init):
12745         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
12746         (vorbis_parse_parse_packet), (vorbis_parse_chain):
12747         * ext/vorbis/vorbisparse.h:
12748         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
12749         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
12750         (gst_vorbis_tag_parse_packet):
12751         * ext/vorbis/vorbistag.h:
12752           Add new vorbistag element which derives from vorbisparse
12753           and is essentially the same as well, only that it implements
12754           the GstTagSetter interface and can modify the stream's
12755           vorbiscomment on the fly (#335635).
12756
12757         * tests/check/Makefile.am:
12758         * tests/check/elements/.cvsignore:
12759         * tests/check/elements/vorbistag.c: (setup_vorbistag),
12760         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
12761         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
12762         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
12763           Add unit test for new vorbistag element.
12764
12765 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12766
12767         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
12768         (vorbis_parse_push_headers), (vorbis_parse_chain):
12769           Set BOS flag in packet structure to fix 'jump depends
12770           on unitialized value' errors in valgrind; various minor
12771           clean-ups.
12772
12773 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
12774
12775         * gst/playback/gstdecodebin.c: (close_pad_link):
12776         Fix typo in a debug statement.
12777
12778         * gst/playback/gstplaybasebin.c: (probe_triggered),
12779         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
12780         (gen_source_element), (source_new_pad), (analyse_source),
12781         (setup_source):
12782         When handling no_more_pads in new_decoded_pad, make sure to treat
12783         subtitle pads correctly. Fixes playback with subtitle files.
12784
12785         Move a recurring message to LOG level.
12786
12787         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
12788         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
12789         which ends up as -1 when cast to an int. Make the logic handle the
12790         max value as an unsigned mask and only change the colorkey when it's
12791         a value we recognise.
12792
12793 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12794
12795         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12796         Removed empty * between paragraphs
12797
12798 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12799
12800         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12801         * gst-libs/gst/rtp/README:
12802         Moved some documentation into .c file
12803
12804 2006-09-29  Wim Taymans  <wim@fluendo.com>
12805
12806         * gst/playback/gstdecodebin.c: (no_more_pads):
12807         Fix compilation.
12808
12809 2006-09-29  Wim Taymans  <wim@fluendo.com>
12810
12811         * gst/playback/gstdecodebin.c: (new_caps):
12812         Remove g_print
12813
12814         * gst/playback/gstplaybin.c:
12815         Add some docs.
12816
12817 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12818
12819         * tests/check/Makefile.am:
12820           Re-enable cddabasesrc test to see if it works again
12821           now.
12822
12823 2006-09-29  Wim Taymans  <wim@fluendo.com>
12824
12825         * gst/playback/gstplaybasebin.c: (setup_subtitle),
12826         (gen_source_element):
12827         Handle invalid URIs a bit more gracefully.
12828
12829 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12830
12831         * tests/check/pipelines/oggmux.c:
12832           Remove obsolete comment.
12833
12834 2006-09-29  Michael Smith  <msmith@fluendo.com>
12835
12836         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
12837         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
12838         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
12839         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
12840         (gst_ogg_mux_collected):
12841           Commit patch from James "Doc" Livingston, adds proper EOS handling
12842           in oggmux. GStreamer can, for the first time ever, create a valid
12843           Ogg file! Yay!
12844
12845         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
12846         (oggmux_suite):
12847           Reenable tests now that they pass.
12848
12849 2006-09-29  Wim Taymans  <wim@fluendo.com>
12850
12851         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12852         Stop reading commands when EOF (we read 0) as well.
12853
12854 2006-09-28  Wim Taymans  <wim@fluendo.com>
12855
12856         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
12857         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
12858         (find_dynamic), (unlinked), (close_link):
12859         Implement delayed caps linking needed for element with a lot of
12860         different caps on the src pads that get fixed at runtime.
12861         Improve management of dynamic elements.
12862
12863         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12864         (group_destroy), (group_commit), (check_queue), (queue_overrun),
12865         (gen_preroll_element), (remove_groups), (unknown_type),
12866         (add_element_stream), (no_more_pads_full), (no_more_pads),
12867         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
12868         (new_decoded_pad), (setup_subtitle), (array_has_value),
12869         (gen_source_element), (source_new_pad), (has_all_raw_caps),
12870         (analyse_source), (remove_decoders), (make_decoder),
12871         (remove_source), (setup_source), (finish_source), (prepare_output),
12872         (gst_play_base_bin_change_state):
12873         * gst/playback/gstplaybasebin.h:
12874         Use more _CAST instead of full type checking casts.
12875         Small cleanups, plug some leaks.
12876         Handle dynamic sources.
12877         Add some helper functions to create lists of strings used for
12878         blacklisting and other stuff.
12879         Refactor some code dealing with analysing the source.
12880         Re-enable sources without pads (like cd:// or other selfcontained
12881         elements).
12882
12883 2006-09-28  Wim Taymans  <wim@fluendo.com>
12884
12885         * gst-libs/gst/audio/gstbaseaudiosink.c:
12886         (gst_base_audio_sink_render):
12887         When we have a timestamp, we can still perform clipping.
12888         When we have no clock, we must play the sample ASAP.
12889
12890 2006-09-28  Wim Taymans  <wim@fluendo.com>
12891
12892         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12893         Set caps on outgoing buffers.
12894
12895         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
12896         (gst_video_rate_event), (gst_video_rate_chain):
12897         * gst/videorate/gstvideorate.h:
12898         Fix videorate some more. Fixes #357977
12899
12900 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12901
12902         * tests/check/elements/adder.c: (adder_suite):
12903           Don't set timeout to 6 seconds when we're running
12904           in valgrind ... (and how is 6 seconds longer than
12905           the default anyway?)
12906
12907 2006-09-28  Wim Taymans  <wim@fluendo.com>
12908
12909         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12910         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
12911         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
12912         Keep sink and src segment to keep track of time and support more
12913         input formats.
12914         Fix bogus next_offset and run_time calculation, don't understand how
12915         this could have worked before. Fixes #357976.
12916         Remove some unneeded vars.
12917
12918 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12919
12920         * gst/playback/gstplaybin.c: (remove_sinks):
12921           Only remove visualisation from visbin if there is a visbin (or:
12922           don't throw warnings when closing totem without playing a file).
12923
12924 2006-09-27  Wim Taymans  <wim@fluendo.com>
12925
12926         * gst-libs/gst/audio/gstbaseaudiosink.c:
12927         (gst_base_audio_sink_render):
12928         Add some more info in a WARNING.
12929
12930         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12931         (gst_base_audio_src_create):
12932         Handle PAUSE in create function, use new -core addition to
12933         wait for playing. Fixes pausing and resuming capture from an
12934         audiosrc.
12935
12936         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12937         (gst_ring_buffer_read):
12938         Constify some more.
12939         Caller supports interrupted reads now.
12940
12941 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12942
12943         * tests/check/Makefile.am:
12944           Another attempt to make the gen64 buildbot happy.
12945
12946 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
12947
12948         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
12949
12950         * ext/libvisual/visual.c: (gst_visual_clear_actors),
12951         (gst_visual_chain), (gst_visual_change_state):
12952           Libvisual plugin was not passing audio data to libvisual 0.4.0 
12953           correctly. Fixes #357800
12954
12955 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12956
12957         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
12958           Add timeout to _get_state() so we see which pipeline it is
12959           that causes trouble on the gen64 build bot.
12960
12961 2006-09-27  Wim Taymans  <wim@fluendo.com>
12962
12963         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12964         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
12965         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
12966         (gst_base_rtp_depayload_set_gst_timestamp):
12967         the source pad always uses fixed caps.
12968
12969 2006-09-27  Wim Taymans  <wim@fluendo.com>
12970
12971         * docs/libs/gst-plugins-base-libs-docs.sgml:
12972         * docs/libs/gst-plugins-base-libs-sections.txt:
12973         * gst-libs/gst/audio/gstaudioclock.c:
12974         * gst-libs/gst/audio/gstaudioclock.h:
12975         * gst-libs/gst/audio/gstaudiosink.c:
12976         * gst-libs/gst/audio/gstaudiosink.h:
12977         * gst-libs/gst/audio/gstaudiosrc.c:
12978         * gst-libs/gst/audio/gstbaseaudiosink.c:
12979         (gst_base_audio_sink_render):
12980         * gst-libs/gst/audio/gstbaseaudiosink.h:
12981         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
12982         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12983         * gst-libs/gst/audio/gstringbuffer.h:
12984         Added docs for the audio libs.
12985
12986 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12987
12988         * tests/check/Makefile.am:
12989           Temporarily disable test that fails on the bots for unknown reasons.
12990
12991 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12992
12993         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12994         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
12995         Moved AudioCodecType into priv
12996         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
12997
12998 2006-09-25  Wim Taymans  <wim@fluendo.com>
12999
13000         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
13001         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
13002         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
13003         (new_pad):
13004         Cleanups and small leak fixes.
13005         Added Depayloaders to valid list of autopluggable elements.
13006
13007 2006-09-25  Wim Taymans  <wim@fluendo.com>
13008
13009         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13010         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
13011         (gen_video_element), (gen_text_element), (gen_audio_element),
13012         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
13013         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
13014         Detect NO_PREROLL state change returns and disable clock distribution to
13015         the sinks so that sync is disabled.
13016         Avoid some type checking and do simple casts instead.
13017         Small cleanups, fix some FIXMEs.
13018         Be more robust when linking user specified elements, catch an report
13019         errors. Fixes #357404.
13020         Fix some leaks in the error paths.
13021
13022 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
13023
13024         * ChangeLog:
13025           ChangeLog surgery for missing bug-number
13026
13027 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13028
13029         Patch by: Peter Kjellerstedt  <pkj at axis com>
13030
13031         * gst/playback/test.c:
13032           Fix compilation with uClibc and -Werror (#357591).
13033
13034 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13035
13036         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
13037           Parse dates that are followed by a time as well (#357532).
13038
13039         * tests/check/libs/tag.c: (test_vorbis_tags):
13040           Add unit test for this.
13041
13042 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13043
13044         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
13045         (gst_audio_convert_transform_caps):
13046         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
13047         * gst/videotestsrc/videotestsrc.h:
13048           A few array const-ifications.
13049
13050 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13051
13052         * tests/check/Makefile.am:
13053           See if this makes the build bots happy.
13054
13055         * tests/check/libs/cddabasesrc.c:
13056           UTF8-ise my name.
13057
13058 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13059
13060         Patch by: Young-Ho Cha <ganadist at chollian dot net>
13061
13062         * gst/subparse/samiparse.c: (handle_start_font),
13063         (fix_invalid_entities):
13064           More case-insensitivity for certain tags; recognise entities with
13065           decimal codes as special entities as well (#357330).
13066
13067 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13068
13069         * gst-libs/gst/Makefile.am:
13070           Need to build tag directory before cdda.
13071
13072 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13073
13074         * docs/libs/gst-plugins-base-libs-sections.txt:
13075         * gst-libs/gst/cdda/Makefile.am:
13076         * gst-libs/gst/cdda/gstcddabasesrc.c:
13077         (gst_cdda_base_src_base_init):
13078         * gst-libs/gst/cdda/gstcddabasesrc.h:
13079         * gst-libs/gst/tag/tag.h:
13080         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
13081         (gst_tag_register_musicbrainz_tags):
13082           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
13083           depend on libgsttag. This is required so we can extract/read tags like
13084           DISCID without depending on libgstcddabasesrc (which used to register
13085           them).
13086
13087         * gst-libs/gst/tag/gstvorbistag.c:
13088           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
13089           tags (also see #347848).
13090
13091         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
13092           Log vorbis comments we are actually writing. Const-ify array.
13093
13094 2006-09-23  Wim Taymans  <wim@fluendo.com>
13095
13096         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13097         Improve buffering a bit by avoiding a deadlock because we cannot assume
13098         the underrun is always called.
13099
13100 2006-09-23  Wim Taymans  <wim@fluendo.com>
13101
13102         Patch by: Young-Ho Cha <ganadist at chollian dot net>
13103
13104         * gst-libs/gst/riff/riff-ids.h:
13105         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13106         (gst_riff_create_audio_template_caps):
13107         Added MPEG-4 AAC and id and caps. Fixes #357289
13108         Added WMA9 Lossless id.
13109
13110 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13111
13112         * ext/gnomevfs/gstgnomevfssrc.c:
13113           Fix misleading docs addition.
13114
13115         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13116           Get rid of compiler warning the right way.
13117
13118 2006-09-22  Wim Taymans  <wim@fluendo.com>
13119
13120         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13121         (gst_base_rtp_depayload_finalize),
13122         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
13123         (gst_base_rtp_depayload_push_full),
13124         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
13125         (gst_base_rtp_depayload_process),
13126         (gst_base_rtp_depayload_set_gst_timestamp),
13127         (gst_base_rtp_depayload_queue_release):
13128         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13129         Small cleanups.
13130         Fix some leaks.
13131         Refactored the process method and added methods to push from the process
13132         vmethod.
13133         Use _scale functions.
13134         API: gst_base_rtp_depayload_push_ts
13135         API: gst_base_rtp_depayload_push
13136
13137         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
13138         timestamps are uint.
13139
13140 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
13141
13142         * gst-libs/gst/interfaces/xoverlay.c:
13143           Remove unused statement from doc example.
13144
13145 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
13146
13147         * gst-libs/gst/interfaces/videoorientation.c:
13148         (gst_video_orientation_iface_init),
13149         (gst_video_orientation_get_hflip),
13150         (gst_video_orientation_get_vflip),
13151         (gst_video_orientation_get_hcenter),
13152         (gst_video_orientation_get_vcenter),
13153         (gst_video_orientation_set_hflip),
13154         (gst_video_orientation_set_vflip),
13155         (gst_video_orientation_set_hcenter),
13156         (gst_video_orientation_set_vcenter):
13157           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
13158           in ChangeLog)
13159
13160 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
13161
13162         * tests/check/Makefile.am:
13163         * tests/check/elements/.cvsignore:
13164         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
13165         (create_rgb_conversions), (rgb_conversion_free),
13166         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
13167         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
13168           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
13169           but disable for now since it doesn't pass (something wrong with
13170           RGBA somewhere).
13171
13172 2006-09-21  Wim Taymans  <wim@fluendo.com>
13173
13174         * gst/playback/gstplaybasebin.c: (group_commit),
13175         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
13176         (queue_out_of_data), (gen_preroll_element),
13177         (preroll_remove_overrun), (probe_triggered):
13178         Refactor handling of overrun detection.
13179         Separate handling of group completion and deadlock detection when doing
13180         network buffering. This should fix some deadlocks that were not detected
13181         because the group was completed.
13182         Add more comments, improve debugging.
13183
13184 2006-09-21  Wim Taymans  <wim@fluendo.com>
13185
13186         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
13187         * tests/check/libs/audio.c:
13188         Some more compilation fixes.
13189
13190 2006-09-21  Wim Taymans  <wim@fluendo.com>
13191
13192         * gst-libs/gst/audio/gstringbuffer.c:
13193         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
13194         (gst_ring_buffer_read):
13195         Early morning compilation fix.
13196
13197 2006-09-20  Wim Taymans  <wim@fluendo.com>
13198
13199         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
13200         * tests/check/elements/multifdsink.c: (GST_START_TEST):
13201         * tests/check/elements/videorate.c: (GST_START_TEST):
13202         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13203         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
13204         Fix some warnings.
13205
13206 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
13207
13208         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13209         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
13210         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
13211           Handcrafted merge to help CVS understanding what I changed and what
13212           not.
13213
13214 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
13215
13216         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
13217         (gst_xvimagesink_get_times):
13218           change colorkey behaviour back according to #354773 comment 6/7
13219
13220 2006-09-19  Michael Smith  <msmith@fluendo.com>
13221
13222         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13223         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
13224         (gst_multi_fd_sink_recover_client),
13225         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
13226         (gst_multi_fd_sink_get_property):
13227         * gst/tcp/gstmultifdsink.h:
13228           Implement stubbed out properties unit-type, units-soft-max,
13229           units-max, to allow specifying maximum sizes in units other than
13230           buffers.
13231           Fixes #355935
13232
13233 2006-09-19  Wim Taymans  <wim@fluendo.com>
13234
13235         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13236         (gst_riff_create_audio_template_caps):
13237         Reorder the audio formats a bit for clarity.
13238         Detect and create caps for MSGSM and MSN (WAV49).
13239         Fixes #356596.
13240
13241         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13242         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
13243         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
13244         Small cleanups, move error handling out of normal flow for clarity.
13245
13246 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13247
13248         * docs/libs/gst-plugins-base-libs-docs.sgml:
13249         * docs/libs/gst-plugins-base-libs.types:
13250         * gst-libs/gst/interfaces/Makefile.am:
13251         * gst-libs/gst/interfaces/videoorientation.c:
13252         (gst_video_orientation_get_type),
13253         (gst_video_orientation_iface_init),
13254         (gst_video_orientation_get_hflip),
13255         (gst_video_orientation_get_vflip),
13256         (gst_video_orientation_get_hcenter),
13257         (gst_video_orientation_get_vcenter),
13258         (gst_video_orientation_set_hflip),
13259         (gst_video_orientation_set_vflip),
13260         (gst_video_orientation_set_hcenter),
13261         (gst_video_orientation_set_vcenter):
13262         * gst-libs/gst/interfaces/videoorientation.h:
13263           API: Add new interface to control video orientation (fixes #354908)
13264
13265 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13266
13267         * gst/videotestsrc/gstvideotestsrc.c:
13268           Use G_UNLIKELY in _create and log one more detail.
13269           
13270         (gst_video_test_src_get_times), (gst_video_test_src_create):
13271         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13272           Use gst_util_uint64_scale_int in _get_times().
13273
13274 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13275
13276         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
13277           Give better warning message (add object and detail).
13278
13279 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13280
13281         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
13282         (gst_xvimagesink_get_times):
13283           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
13284           #354773), use gst_util_uint64_scale_int in _get_times()
13285
13286 2006-09-18  Michael Smith  <msmith@fluendo.com>
13287
13288         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
13289           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
13290           always true, leading to dropping all timestamps.
13291
13292 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13293
13294         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
13295         (gst_visual_chain), (gst_visual_change_state):
13296           update to work also with libvisual 0.4 API, fix double unref (#355914)
13297           
13298         * tools/gst-launch-ext.1.in:
13299         * tools/gst-visualise.1.in:
13300           remove references to old man-pages
13301
13302         * tests/examples/seek/seek.c: (main):
13303           add real meadi-buttons, add tool-tips for the seek-options, arrange
13304           seek options in a table
13305
13306 2006-09-18  Michael Smith  <msmith@fluendo.com>
13307
13308         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
13309         (gst_ogg_mux_push_buffer):
13310           Don't generate out-of-order timestamps from oggmux, instead clamp
13311           output timestamps to be >= the previously output ts.
13312           Fixes #355595
13313
13314 2006-09-18  Michael Smith  <msmith@fluendo.com>
13315
13316         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13317         (gst_multi_fd_sink_class_init):
13318           Updates, fixes, and typo corrections for multifdsink. No functional
13319           changes.
13320
13321 2006-09-17  Michael Smith  <msmith@fluendo.com>
13322
13323         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
13324           Don't crash on truncated files - check that we got an 8 byte buffer
13325           before trying to memcmp it.
13326
13327 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13328
13329         * gst/playback/gstplaybasebin.c: (get_active_source):
13330           Make stream-switching appear instant to the application
13331           (ie. make sure that a g_object_get on 'current-foo' returns
13332           the stream previously set with g_object_set(). Totem needs
13333           this to update stream-related meta-info (like audio-codec)
13334           correctly when switching streams.
13335
13336 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13337
13338         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
13339         (gst_alsa_mixer_ensure_track_list):
13340           Try harder to guess which mixer track is the master mixer
13341           track (instead of just taking the first one that has a pvolume).
13342           Fixes #342228.
13343
13344 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13345
13346         reviewed by: <delete if not using a buddy>
13347
13348         * gst-libs/gst/audio/audio.h:
13349         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
13350
13351 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13352
13353         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
13354         (gst_audio_convert_transform_caps):
13355           Get structure-name just once.
13356
13357 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13358
13359         * tests/check/elements/audioresample.c: (GST_START_TEST):
13360         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13361         * tests/check/elements/volume.c: (GST_START_TEST):
13362         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
13363         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
13364         (test_pipeline), (GST_START_TEST):
13365         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
13366         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
13367           Fix big batch of compiler warnings.
13368
13369 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13370
13371         * ext/gnomevfs/gstgnomevfssrc.c:
13372           Add docs about icydemux usage in connection with gnomevfssrc
13373
13374         * ext/libvisual/visual.c:
13375         * ext/ogg/gstoggaviparse.c:
13376         * ext/ogg/gstoggdemux.c:
13377         * ext/ogg/gstoggmux.c:
13378         * ext/ogg/gstoggparse.c:
13379         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13380         * gst-libs/gst/audio/gstaudiosink.c:
13381         * gst-libs/gst/audio/gstaudiosrc.c:
13382         * gst/audiorate/gstaudiorate.c:
13383           More G_OBJECT macro fixing.
13384
13385         * gst/audiotestsrc/gstaudiotestsrc.h:
13386           Fix wrong info in header due to copy & paste
13387
13388 2006-09-15  Wim Taymans  <wim@fluendo.com>
13389
13390         * gst-libs/gst/audio/gstbaseaudiosink.c:
13391         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
13392         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13393         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
13394         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
13395         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
13396         Do the delay calculation in the source/sink base classes as this is
13397         specific for the capture/playback mode.
13398         Try to fixate a bit better, like round depth up to a multiple of 8
13399         bigger than width.
13400         Handle underruns correctly by marking DISCONT on buffers and adjusting
13401         timestamps to handle the gap.
13402         Set offset/offset_end correctly on buffers.
13403
13404         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
13405         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
13406         (gst_ring_buffer_read):
13407         Remove resync and underrun recovery from the ringbuffer.
13408         Fix ringbuffer read code on under/overrun.
13409
13410 2006-09-15  Wim Taymans  <wim@fluendo.com>
13411
13412         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13413         (gst_play_base_bin_init), (fill_buffer), (check_queue),
13414         (queue_threshold_reached), (gst_play_base_bin_set_property),
13415         (gst_play_base_bin_get_property):
13416         * gst/playback/gstplaybasebin.h:
13417         Don't use a 0 low watermark when buffering, it is catching starvation
13418         way too late. Instead, use a 3 second queue with 30 and 95
13419         percent low/high watermarks. 
13420         Added queue-min-threshold property to configure low watermark.
13421         Use new _buffering message API.
13422         Make queue_threshold variable big enough to store a uint64 time value.
13423         API: playbin::queue-min-threshold property.
13424
13425 2006-09-15  Wim Taymans  <wim@fluendo.com>
13426
13427         * configure.ac:
13428         We require 0.10.10.1 now because of _wait_preroll().
13429
13430         * gst-libs/gst/audio/gstbaseaudiosink.c:
13431         (gst_base_audio_sink_render):
13432         Use gst_base_sink_wait_preroll().
13433
13434 2006-09-15  Wim Taymans  <wim@fluendo.com>
13435
13436         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
13437         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
13438         Use DEBUG_OBJECT more.
13439
13440 === release 0.10.10 ===
13441
13442 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13443
13444         patch by: Michael Smith <msmith at fluendo dot com>
13445
13446         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
13447         (gst_multi_fd_sink_client_queue_buffer),
13448         (gst_multi_fd_sink_new_client):
13449         * tests/check/elements/multifdsink.c: (GST_START_TEST),
13450         (multifdsink_suite):
13451           Fix implementation of sync-method 'next-keyframe'
13452           Closes #354594
13453
13454 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13455
13456         patch by: Wim Taymans <wim at fluendo dot com>
13457
13458         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
13459         This patch removes the RANDOM flag that was incorrectly introduced with
13460         revision 1.91.  Fixes #354590
13461
13462 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
13463
13464         * tests/check/Makefile.am:
13465           Random variation in Makefile line to see if it makes the
13466           gen64-base-full bot any happier.
13467
13468 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13469
13470         * tests/check/pipelines/oggmux.c: (oggmux_suite):
13471           Disable test that fails at the moment (killed after timeout).
13472
13473 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13474
13475         Patch by: James Livingston  <doclivingston at gmail.com>
13476
13477         * tests/check/Makefile.am:
13478         * tests/check/pipelines/.cvsignore:
13479         * tests/check/pipelines/oggmux.c: (get_page_codec),
13480         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
13481         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
13482         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
13483         (test_theora_vorbis), (oggmux_suite):
13484           Add simple unit test for oggmux from #337026 with checking for the
13485           EOS flags disabled for the time being.
13486
13487 2006-09-04  Wim Taymans  <wim@fluendo.com>
13488
13489         patch by: Alessandro Dessina <alessandro nnva org>
13490
13491         * ext/ogg/gstoggmux.c:
13492         Add cmml caps to oggmux. Fixes #353912
13493
13494 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13495
13496         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13497           Returning a return value often helps. In this case, we
13498           don't need the return value anyway, so just get rid of it.
13499           Should make build bots much happier.
13500
13501 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13502
13503         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
13504         (paint_get_structure), (gst_video_test_src_get_size),
13505         (gst_video_test_src_smpte), (gst_video_test_src_snow),
13506         (gst_video_test_src_unicolor), (paint_setup_AYUV),
13507         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
13508         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
13509         * gst/videotestsrc/videotestsrc.h:
13510           Add support for AYUV and the various RGBA formats. Initialise
13511           fields of paintinfo structs allocated on the stack.
13512
13513         * tests/check/elements/videotestsrc.c: (right_shift_colour),
13514         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
13515         (check_rgb_buf), (videotestsrc_suite):
13516           Add unit tests for videotestsrc's RGB output.
13517
13518 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13519
13520         * gst/videotestsrc/gstvideotestsrc.c:
13521         (gst_video_test_src_pattern_get_type),
13522         (gst_video_test_src_set_pattern):
13523         * gst/videotestsrc/gstvideotestsrc.h:
13524         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
13525         (gst_video_test_src_black), (gst_video_test_src_white),
13526         (gst_video_test_src_red), (gst_video_test_src_green),
13527         (gst_video_test_src_blue):
13528         * gst/videotestsrc/videotestsrc.h:
13529           Add more uni-colour patterns ("white", "red", "green", and "blue").
13530
13531 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13532
13533         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
13534           Fix stride for YVYU, should be word-aligned (#353658).
13535
13536 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
13537
13538         * gst/adder/gstadder.c: (gst_adder_src_event):
13539           Fix build.
13540
13541 2006-08-31  Edward Hervey  <edward@fluendo.com>
13542
13543         * gst/adder/gstadder.c: (forward_event_func),
13544         (gst_adder_src_event), (gst_adder_collected),
13545         (gst_adder_change_state):
13546         * gst/adder/gstadder.h:
13547         Remember the start position asked in the incoming seeks, so we can
13548         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
13549         of assuming it will always be 0).
13550
13551 2006-08-31  Edward Hervey  <edward@fluendo.com>
13552
13553         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
13554         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
13555         (gst_ogg_demux_loop):
13556         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
13557
13558 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
13559
13560         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13561         (gst_ffmpegcsp_get_unit_size):
13562           Return FALSE instead of returning a random false unit
13563           size when the format isn't known/supported (even if
13564           this shouldn't happen under normal circumstances).
13565
13566 2006-08-29  Wim Taymans  <wim@fluendo.com>
13567
13568         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
13569
13570         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
13571         (gst_gnome_vfs_src_start):
13572         Try harder to get the size from a uri by using _info_uri() when
13573         _info_from_handle() does not give us enough info. 
13574         Also follow symlinks when getting the size.
13575         Partially Fixes #332864.
13576
13577 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13578
13579         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
13580
13581         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
13582         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
13583         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
13584         (gst_alsa_mixer_set_record):
13585         * ext/alsa/gstalsamixertrack.c:
13586         (gst_alsa_mixer_track_update_alsa_capabilities),
13587         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
13588         (gst_alsa_mixer_track_update):
13589         * ext/alsa/gstalsamixertrack.h:
13590           Improve and fix mixer track handling, in particular better handling
13591           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
13592           separate track objects for tracks that have both capture and playback
13593           volume (and label them differently as well so they're not mistakenly
13594           assumed to be duplicates); classify mixer tracks that only affect
13595           the audible volume of something (rather than the capture volume)
13596           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
13597           for capture tracks to correspond to alsa-pswitch alsa-cswitch
13598           (following the meaning documented in the mixer interface header
13599           file); add support for alsa's exclusive cswitch groups; update/sync
13600           state/flags better if mixer settings are changed by another
13601           application. Fixes #336075.
13602
13603 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13604
13605         * gst/playback/gstplaybin.c:
13606           Improve docs: add section about BUFFERING messages sent by playbin.
13607
13608 2006-08-29  Michael Smith  <msmith@fluendo.com>
13609
13610         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
13611         (gst_vorbis_enc_buffer_check_discontinuous),
13612         (gst_vorbis_enc_chain):
13613           Ignore explicit DISCONT marked on buffers (which is often spurious,
13614           particularly when using multiple segments), in favour of solely
13615           using the timestamps/durations.
13616
13617 2006-08-29  Edward Hervey  <edward@fluendo.com>
13618
13619         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
13620         Don't rely on incoming buffers offset anymore, since it is completely
13621         broken when using multiple segments.
13622         Instead convert the incoming buffers timestamp to running time, and
13623         then convert that value to the offsets.
13624         Also inform GstSegment of the last outputted stop position, which is
13625         needed if we received several segments with an unknown stop value.
13626
13627 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
13628
13629         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
13630           fix buffer unreffing on a header push failure
13631
13632 2006-08-28  Wim Taymans  <wim@fluendo.com>
13633
13634         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
13635         (gst_audio_rate_chain):
13636         Make the metadata of the buffer writable before changing its
13637         flags.
13638
13639 2006-08-28  Wim Taymans  <wim@fluendo.com>
13640
13641         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
13642         (gst_audio_rate_setcaps), (gst_audio_rate_init),
13643         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
13644         (gst_audio_rate_chain), (gst_audio_rate_change_state):
13645         Fix audiorate some more.
13646         Reset and resync counters on flush and READY.
13647         Handle the DISCONT flag correctly.
13648         Use GstSegment to track position.
13649         Fail when not negotiated.
13650         Fixes #353234.
13651
13652 2006-08-25  Michael Smith  <msmith@fluendo.com>
13653
13654         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13655           Fix spelling.
13656           Remove accidently included debug line.
13657
13658 2006-08-25  Wim Taymans  <wim@fluendo.com>
13659
13660         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13661         Small cleanups.
13662         If a buffer is received with no caps, make the buffer metadata
13663         writable and set the caps, making sure that we don't screw up the
13664         refcounts.
13665
13666 2006-08-25  Michael Smith  <msmith@fluendo.com>
13667
13668         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
13669         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
13670           Fix memory leaks and misleading debug messages, add a couple of
13671           comments.
13672
13673         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
13674         (gst_multi_fd_sink_render):
13675           Do not use gst_buffer_make_writable() in a basesink render method,
13676           as it may incorrectly unref the buffer. Instead, use convoluted
13677           dance to avoid copying the buffer except when we need to.
13678
13679 2006-08-25  Michael Smith  <msmith@fluendo.com>
13680
13681         * ext/vorbis/vorbisenc.c:
13682         (gst_vorbis_enc_buffer_check_discontinuous):
13683           Allow very small discontinuities in the timestamps. These we can't
13684           do anything useful with anyway (because vorbis's timestamps have
13685           only sample granularity), and are commonly produced by elements with
13686           minor bugs. Allow up to 1/2 a sample out.
13687           Fixes #351742.
13688
13689 2006-08-24  Wim Taymans  <wim@fluendo.com>
13690
13691         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
13692         (play_scrub_toggle_cb), (main):
13693         Add a checkbox to enable play scrubbing. Makes it possible to disable
13694         normal scrubbing.
13695
13696 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
13697
13698         * tests/check/elements/.cvsignore:
13699           make buildbot happy
13700
13701 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13702
13703         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
13704         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
13705         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
13706         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
13707         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
13708         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
13709         (gst_ogm_text_parse_strip_trailing_zeroes),
13710         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
13711         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
13712           Refactor ogm parse, do better input checking, misc. clean-ups.
13713           Cache incoming events and push them once the source pad has
13714           been created. Don't pass unterminated strings to sscanf().
13715           Strip trailing zeroes from subtitle text output, since they
13716           are not valid UTF-8. Don't push vorbiscomment packets on
13717           the subtitle text pad. Output perfect streams if possible.
13718
13719 2006-08-23  Wim Taymans  <wim@fluendo.com>
13720
13721         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13722         Waits for tasks to settle down so that we clean up correctly for 
13723         valgrind.
13724
13725 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13726
13727         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
13728           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
13729           actually return return value in taglists_are_equal.
13730
13731 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13732
13733         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13734           Fix crash due to broken bitstream parsing on x86-64: can't make
13735           any assumptions about sizeof(struct) due to alignment/packing
13736           differences on different architectures. Fixes #351790.
13737
13738 2006-08-22  Wim Taymans  <wim@fluendo.com>
13739
13740         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13741         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
13742         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
13743         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
13744         (gst_riff_parse_info):
13745         Protect public functions against bad input.
13746         Do some cleanups.
13747         Fix documentation.
13748
13749 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13750
13751         * gst-libs/gst/riff/riff-ids.h:
13752         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
13753           Add voxware audio IDs (even if we can't play it) (#351795).
13754
13755 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13756
13757         * gst-libs/gst/riff/riff-media.c:
13758         (gst_riff_create_video_template_caps),
13759         (gst_riff_create_audio_template_caps),
13760         (gst_riff_create_iavs_template_caps):
13761           Const-ify some arrays and use G_N_ELEMENTS instead
13762           of wasting oodles of RAM on terminator bits.
13763
13764 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13765
13766         * gst-libs/gst/tag/gstvorbistag.c:
13767         (gst_tag_list_to_vorbiscomment_buffer):
13768         * tests/check/libs/tag.c: (GST_START_TEST):
13769           And the same for _to_vorbiscomment_buffer(): allow
13770           id_data_len == 0 for speex.
13771
13772 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13773
13774         * configure.ac:
13775         * docs/plugins/Makefile.am:
13776         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13777         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13778         * docs/plugins/inspect/plugin-gdp.xml:
13779         * gst/gdp/Makefile.am:
13780         * tests/check/Makefile.am:
13781           Move GDP plugin to -base from -bad.  Closes #347783.
13782
13783 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13784
13785         * gst-libs/gst/tag/gstvorbistag.c:
13786         (gst_tag_list_from_vorbiscomment_buffer):
13787           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
13788           Also add some checks to make sure we don't memcmp() beyond the end of
13789           vorbiscomment buffer if the ID to check for is larger than the buffer.
13790
13791         * tests/check/libs/tag.c: (GST_START_TEST):
13792           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
13793
13794 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13795
13796         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
13797         (gst_vorbis_enc_set_metadata):
13798           Use vorbis comment utility functions from libgsttag
13799           instead of re-inventing the wheel (partially fixes #347091).
13800
13801 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
13802
13803         * tests/check/elements/audioconvert.c: (GST_START_TEST):
13804         Fix leaks. Wait for state transitions that might happen ASYNC, as well
13805         as some that won't.
13806
13807 2006-08-21  Wim Taymans  <wim@fluendo.com>
13808
13809         * docs/libs/Makefile.am:
13810         * docs/libs/gst-plugins-base-libs-sections.txt:
13811         * docs/libs/gst-plugins-base-libs.types:
13812         Don't try to GObject scan the netbuffer as it's not a GObject.
13813         Fixes #351308.
13814
13815         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13816         * gst-libs/gst/netbuffer/gstnetbuffer.h:
13817         Document GstNetBuffer.
13818
13819 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
13820
13821         * tests/check/elements/audioconvert.c: (GST_START_TEST),
13822         (audioconvert_suite):
13823           Add testcase for caps-size-explosion
13824
13825 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
13826
13827         * gst/audioconvert/gstaudioconvert.c:
13828         (gst_audio_convert_get_unit_size), (set_structure_widths):
13829           Lower debug, use g_assert in _get_unit_size
13830
13831         * gst/audioresample/gstaudioresample.c:
13832         (audioresample_get_unit_size):
13833         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13834         (gst_ffmpegcsp_get_unit_size):
13835         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
13836           use g_assert in _get_unit_size
13837
13838 2006-08-18  Wim Taymans  <wim@fluendo.com>
13839
13840         * docs/libs/gst-plugins-base-libs-sections.txt:
13841         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
13842         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
13843         (gst_rtp_buffer_get_payload_buffer):
13844         * gst-libs/gst/rtp/gstrtpbuffer.h:
13845         Document GstRTPBuffer.
13846         Added function to efficiently strip payload headers.
13847         API: gst_rtp_buffer_get_payload_subbuffer()
13848
13849 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13850
13851         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
13852         (gst_tag_to_vorbis_comments):
13853           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
13854           tags and deserialise them properly as well (#347091).
13855           Add some more gtk-doc blurbs and also some g_return_if_fail().
13856
13857         * tests/check/libs/tag.c: (GST_START_TEST),
13858         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
13859           More tests.
13860
13861 2006-08-17  Wim Taymans  <wim@fluendo.com>
13862
13863         * ext/ogg/Makefile.am:
13864         * ext/ogg/gstogg.c: (plugin_init):
13865         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
13866         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
13867         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
13868         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
13869         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
13870         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
13871         Added ogg-in-avi parser element. Fixes #140139.
13872
13873         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
13874         Fixed a bug in oggdemux debug code.
13875
13876         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13877         (gst_riff_create_audio_template_caps):
13878         Recognise Ogg in the AVI extensible wave format.
13879
13880 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13881
13882         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
13883           Make buffer durations add up (duration should be next_ts-ts for
13884           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
13885           from CVS.
13886
13887         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
13888         (test_buffer_timestamps), (cddabasesrc_suite):
13889           Add unit test for the above.
13890
13891         * tests/check/Makefile.am:
13892           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
13893           to see what happens.
13894
13895 2006-08-16  Wim Taymans  <wim@fluendo.com>
13896
13897         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
13898         (gst_alsasink_open):
13899         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
13900         (gst_alsasrc_open):
13901         Avoid setting and using a NULL device name.
13902         Print more info when we fail to open a device.
13903
13904 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
13905
13906         * docs/libs/gst-plugins-base-libs-sections.txt:
13907         * gst-libs/gst/tag/tag.h:
13908         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
13909           API: add gst_tag_parse_extended_comment() (#351426).
13910
13911         * tests/check/Makefile.am:
13912         * tests/check/libs/.cvsignore:
13913         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
13914           Add unit test for gst_tag_parse_extended_comment().
13915
13916 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13917
13918         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
13919         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
13920           Fix leak (#351502).
13921
13922 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13923
13924         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13925         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13926         * docs/plugins/gst-plugins-base-plugins.args:
13927         * gst/playback/gstplaybin.c:
13928           Document playbin.
13929           
13930         * docs/plugins/inspect/plugin-adder.xml:
13931         * docs/plugins/inspect/plugin-alsa.xml:
13932         * docs/plugins/inspect/plugin-audioconvert.xml:
13933         * docs/plugins/inspect/plugin-audiorate.xml:
13934         * docs/plugins/inspect/plugin-audioresample.xml:
13935         * docs/plugins/inspect/plugin-audiotestsrc.xml:
13936         * docs/plugins/inspect/plugin-cdparanoia.xml:
13937         * docs/plugins/inspect/plugin-decodebin.xml:
13938         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
13939         * docs/plugins/inspect/plugin-gnomevfs.xml:
13940         * docs/plugins/inspect/plugin-ogg.xml:
13941         * docs/plugins/inspect/plugin-pango.xml:
13942         * docs/plugins/inspect/plugin-playbin.xml:
13943         * docs/plugins/inspect/plugin-subparse.xml:
13944         * docs/plugins/inspect/plugin-tcp.xml:
13945         * docs/plugins/inspect/plugin-theora.xml:
13946         * docs/plugins/inspect/plugin-typefindfunctions.xml:
13947         * docs/plugins/inspect/plugin-video4linux.xml:
13948         * docs/plugins/inspect/plugin-videorate.xml:
13949         * docs/plugins/inspect/plugin-videoscale.xml:
13950         * docs/plugins/inspect/plugin-videotestsrc.xml:
13951         * docs/plugins/inspect/plugin-volume.xml:
13952         * docs/plugins/inspect/plugin-vorbis.xml:
13953         * docs/plugins/inspect/plugin-ximagesink.xml:
13954         * docs/plugins/inspect/plugin-xvimagesink.xml:
13955           Update to CVS version.
13956
13957 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13958
13959         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13960         (gst_play_bin_set_property), (gst_play_bin_get_property),
13961         (value_list_append_structure_list),
13962         (gst_play_bin_handle_redirect_message),
13963         (gst_play_bin_handle_message):
13964           API: GstPlayBin::connection-speed
13965           Add "connection-speed" property; re-order redirect messages with
13966           multiple redirect locations depending on the minimum bitrate if
13967           that information is available and a connection speed is set
13968           (#350399).
13969
13970 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13971
13972         * gst/playback/gstplaybin.c:
13973           Update max volume to the same value that the volume element uses.
13974
13975 2006-08-14  Wim Taymans  <wim@fluendo.com>
13976
13977         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
13978         Less uglyness..
13979
13980 2006-08-14  Wim Taymans  <wim@fluendo.com>
13981
13982         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
13983         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
13984         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
13985         Add some more debug info.
13986         Don't crash when a seek failed.
13987         Actually return the result of the seek instead of TRUE.
13988         Ignore multiple BOS pages with the same serial so that we don't create
13989         the same stream multiple times.
13990         Post an error when we fail to do the initial seek.
13991
13992 2006-08-13  Wim Taymans  <wim@fluendo.com>
13993
13994         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
13995         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
13996         Small code cleanup.
13997
13998         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
13999         (gst_alsa_mixer_new):
14000         Remove hack that always set the device to hw:0*.
14001         Properly find the card name for whatever device was configured.
14002         Do some better debugging.
14003         Fixes #350784.
14004
14005         * ext/alsa/gstalsamixerelement.c:
14006         (gst_alsa_mixer_element_set_property),
14007         (gst_alsa_mixer_element_change_state):
14008         Cleanups.
14009         Handle setting of a NULL device name better.
14010
14011 2006-08-11  Wim Taymans  <wim@fluendo.com>
14012
14013         * gst/adder/gstadder.c:
14014         Don't clip float values. Fixes #350900.
14015
14016 2006-08-11  Andy Wingo  <wingo@pobox.com>
14017
14018         * gst/tcp/gsttcp.c: Really fix the build?
14019
14020         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
14021         fixes the build.
14022
14023 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
14024
14025         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
14026           Float caps shouldn't have a "signed" field.
14027
14028 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
14029
14030         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
14031           Implement SEEKING query in its most basic form, so that we can
14032           at least check if we're seekable or not (#350655).
14033
14034 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
14035
14036         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
14037           The checks here are not even close to anything that would
14038           justify MAXIMUM probability, lowering to POSSIBLE until someone
14039           fixes the checks (case at hand: quicktime redirection files
14040           might start with 00 00 01 XX and pass the checks here just
14041           fine, see #350399).
14042
14043 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
14044
14045         Patch by: Sjoerd Simons  <sjoerd at luon net>
14046
14047         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
14048           Better detection for multipart/x-mixed-replace: accept leading
14049           whitespaces before the boundary marker as well (as our very own
14050           multipartmux used to produce) (#349068).
14051
14052 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
14053
14054         Patch by: Young-Ho Cha  <ganadist at chollian net>
14055
14056         * gst-libs/gst/riff/riff-ids.h:
14057         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
14058         (gst_riff_create_audio_template_caps):
14059           Detect DTS audio streams (#350157).
14060
14061 2006-08-05  Andy Wingo  <wingo@pobox.com>
14062
14063         * ext/theora/gsttheoraparse.h:
14064         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
14065         (theora_parse_dispose, theora_parse_set_property)
14066         (theora_parse_get_property, theora_parse_munge_granulepos)
14067         (theora_parse_push_buffer, theora_parse_change_state):
14068         API: GstTheoraParse::synchronization-points
14069         Add a property 'synchronization-points' to fix badly synchronized oggs.
14070
14071 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14072
14073         * tests/check/Makefile.am:
14074         * tests/check/libs/.cvsignore:
14075         * tests/check/libs/audio.c: (structure_contains_channel_positions),
14076         (fixed_caps_have_channel_positions), (GST_START_TEST),
14077         (audio_suite), (main):
14078           Add a few tests for the channel position stuff in libgstaudio.
14079
14080 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14081
14082         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
14083         (gst_alsa_detect_channels):
14084         * ext/alsa/gstalsasink.c:
14085           Add support for cards that (only) do more than 8 channels,
14086           like the Delta 44 (#345188).
14087
14088         * gst-libs/gst/audio/multichannel.c:
14089         (gst_audio_check_channel_positions):
14090         * gst-libs/gst/audio/multichannel.h:
14091           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
14092           unspecified channel position and cannot be combined with any
14093           of the other audio channel positions; adjust position layout
14094           checks accordingly (#345188).
14095
14096 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14097
14098         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14099           Recognise ancient RealAudio files (see #349779).
14100
14101 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14102
14103         Patch by: Jens Granseuer  <jensgr at gmx net>
14104
14105         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14106           Add typefinder for Interplay's MVE format (#348973).
14107
14108 2006-08-02  Wim Taymans  <wim@fluendo.com>
14109
14110         Patch by: Marcel Moreaux <marcelm at luon dot net>
14111
14112         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14113         (gst_base_rtp_depayload_add_to_queue):
14114         * gst-libs/gst/rtp/gstbasertpdepayload.h:
14115         Handle RTP sequence number rollover.
14116         Disable jitterbuffer by default.
14117
14118 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
14119
14120         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
14121         (audioresample_set_caps):
14122         Don't leak references to the incoming caps. Clean them up when
14123         stopping.
14124
14125         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
14126         (gst_video_scale_finalize):
14127         Don't leak our temporary pixel buffer.
14128
14129         * tests/check/Makefile.am:
14130         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
14131         (GST_START_TEST), (simple_launch_lines_suite):
14132
14133         Fix leaks and re-enable the test for valgrind checking.
14134
14135 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
14136
14137         Patch by: Sjoerd Simons  <sjoerd at luon net>
14138
14139         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
14140         (plugin_init):
14141           Add typefind function for multipart/x-mixed-replace (#348916).
14142
14143 2006-07-28  Wim Taymans  <wim@fluendo.com>
14144
14145         * gst/adder/gstadder.c: (gst_adder_setcaps),
14146         (gst_adder_query_duration):
14147         Fix leak in duration query.
14148         Reflow some docs and notes.
14149
14150 2006-07-28  Michael Smith  <msmith@fluendo.com>
14151
14152         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
14153         (vorbisenc_suite):
14154           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
14155           aspect of it.
14156
14157 2006-07-28  Michael Smith  <msmith@fluendo.com>
14158
14159         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
14160         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
14161         (gst_vorbis_enc_push_buffer),
14162         (gst_vorbis_enc_buffer_check_discontinuous),
14163         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
14164         * ext/vorbis/vorbisenc.h:
14165           Handle discontinuities in the input vorbis stream correctly,
14166           so that the output is properly timestamped (and has good granulepos
14167           values). Needs some oggmux fixes too.
14168
14169 2006-07-27  Wim Taymans  <wim@fluendo.com>
14170
14171         patch by: Kai Vehmanen <kv2004 eca cx>
14172
14173         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14174         (gst_base_rtp_depayload_chain),
14175         (gst_base_rtp_depayload_handle_sink_event),
14176         (gst_base_rtp_depayload_change_state):
14177         Don't send multiple newsegments with different formats.
14178         Fixes #348677.
14179
14180 2006-07-26  Wim Taymans  <wim@fluendo.com>
14181
14182         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14183         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
14184         Make seeking in ogg more accurate again by doing the more correct
14185         granuletime to stream time conversion.
14186
14187 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14188
14189         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
14190         (gst_multi_fd_sink_new_client):
14191           debug a little more understandably
14192           do not use goto as a substitute for break, especially if
14193           break is also being used
14194
14195 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
14196
14197         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
14198         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14199           Remove GLib-2.6 compatibility cruft.
14200
14201 2006-07-24  Wim Taymans  <wim@fluendo.com>
14202
14203         * gst-libs/gst/audio/gstbaseaudiosink.c:
14204         (gst_base_audio_sink_render):
14205         Don't try to align a sample to an unknown value.
14206
14207 2006-07-24  Wim Taymans  <wim@fluendo.com>
14208
14209         * gst-libs/gst/audio/gstbaseaudiosink.c:
14210         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
14211         When the audio clock is slaved to another clock, never try to align
14212         samples but trust the rate interpolation algorithm.
14213
14214 2006-07-24  Wim Taymans  <wim@fluendo.com>
14215
14216         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14217         Don't try to calculate silence samples, base class does this much
14218         better now.
14219
14220         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14221         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
14222         (gst_ring_buffer_acquire):
14223         Calculate silence samples correctly.
14224
14225         * gst-libs/gst/audio/gstringbuffer.h:
14226         Add _CAST macro.
14227
14228 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
14229
14230         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
14231           Limit search for the first markup tag to the first few kB of
14232           the file. If we don't find one there, it's highly unlikely that
14233           this is an XML(-ish) file.
14234
14235 2006-07-21  Andy Wingo  <wingo@pobox.com>
14236
14237         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
14238         test to the one in vorbisenc. Also commented out.
14239
14240         * tests/check/pipelines/vorbisenc.c: 
14241         (test_discontinuity): New test, commented out until Mike lands
14242         some elite vorbisenc patches.
14243
14244         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
14245         Bufferstraw was actually factored out of these tests. Now we share
14246         code yay.
14247
14248         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
14249         for bufferstraw addition to gstcheck.
14250
14251 2006-07-21  Wim Taymans  <wim@fluendo.com>
14252
14253         * ext/theora/theoradec.c: (clip_buffer):
14254         Better clipping.
14255
14256 2006-07-21  Wim Taymans  <wim@fluendo.com>
14257
14258         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
14259         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14260         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
14261         Fix leak.
14262         Avoid type casting when we can.
14263
14264         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
14265         Fix mem leak.
14266
14267 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
14268
14269         * ext/alsa/gstalsamixerelement.c:
14270         (gst_alsa_mixer_element_change_state):
14271           Make state change fail if the specified device can't be opened
14272           for some reason.
14273
14274 2006-07-20  Wim Taymans  <wim@fluendo.com>
14275
14276         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
14277         (cb_newpad), (main):
14278         Example of a small audio/video player using decodebin.
14279
14280 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
14281
14282         * gst-libs/gst/riff/riff-ids.h:
14283           Add 'fact' chunk id
14284
14285 2006-07-19  Wim Taymans  <wim@fluendo.com>
14286
14287         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14288         (gst_base_rtp_depayload_chain),
14289         (gst_base_rtp_depayload_change_state):
14290         Don't assert when not negotiated but post a meaningfull 
14291         error message. Fixes #347918.
14292
14293         * gst-libs/gst/rtp/gstbasertppayload.c:
14294         Add comment about better default MTU size.
14295
14296         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
14297         Small cleanups, start docs.
14298
14299 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14300
14301         Patch by: Martin Szulecki
14302
14303         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
14304           If "device-name" is requested and the device is not
14305           open, try to temporarily open it to obtain this
14306           information (#342494).
14307
14308 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14309
14310         * gst-libs/gst/tag/gstid3tag.c:
14311           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
14312
14313         * gst-libs/gst/tag/gsttageditingprivate.h:
14314         * gst-libs/gst/tag/gstvorbistag.c:
14315           Some more random const-ifications.
14316
14317 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
14318
14319         * gst-libs/gst/riff/riff-ids.h:
14320         * gst-libs/gst/riff/riff-media.c:
14321         (gst_riff_create_video_template_caps):
14322           Add more FOURCCs (sort list to make stuff easier to find),
14323           add comment what those 16 bytes in struct _gst_riff_strh according to
14324           one avi-dumper are
14325
14326 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14327
14328         * gst-libs/gst/audio/multichannel.c:
14329         (gst_audio_check_channel_positions),
14330         (gst_audio_fixate_channel_positions):
14331           Const-ify two arrays.
14332
14333 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14334
14335         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
14336           Fix typo, so that alsasink also advertises 8 channels
14337           if that's supported (tags: can, worms, open, alsa, ph34r).
14338
14339 2006-07-17  Wim Taymans  <wim@fluendo.com>
14340
14341         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14342         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
14343         *sigh*, when is the compiler going to warn when the comments
14344         are out-of-sync with the code.. Refix case of busted theora
14345         headers with 0 granule pos.
14346
14347 2006-07-14  Wim Taymans  <wim@fluendo.com>
14348
14349         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14350         (gst_base_rtp_depayload_wait),
14351         (gst_base_rtp_depayload_change_state),
14352         (gst_base_rtp_depayload_set_property),
14353         (gst_base_rtp_depayload_get_property):
14354         Fix 99% cpu load by waiting for absolute times on the
14355         clock. Fixes #347300.
14356
14357 2006-07-14  Andy Wingo  <wingo@pobox.com>
14358
14359         * ext/theora/gsttheoraparse.h: 
14360         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
14361         (theora_parse_push_headers, theora_parse_clear_queue)
14362         (theora_parse_drain_queue_prematurely, )
14363         (theora_parse_sink_event, theora_parse_change_state): Queue events
14364         until we initialized our state, like in vorbisparse.
14365
14366         * ext/vorbis/vorbisparse.h: 
14367         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
14368         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
14369         (vorbis_parse_drain_queue_prematurely, )
14370         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
14371         until we have initialized our state. Fixes seeking after an
14372         initial pad block.
14373
14374 2006-07-14  Andy Wingo  <wingo@pobox.com>
14375
14376         Patch by: Iain Holmes <iaingnome@gmail.com>
14377         
14378         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
14379
14380 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
14381
14382         * configure.ac:
14383         Bump nano back to CVS
14384
14385 === release 0.10.9 ===
14386
14387 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
14388
14389         * configure.ac:
14390           releasing 0.10.9, "I walk the line"
14391
14392 2006-07-14  Michael Smith  <msmith@fluendo.com>
14393
14394         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
14395           Move a g_cond_signal to earlier to avoid sometimes deadlocking
14396           (commonly happens when running this test under valgrind) when trying
14397           to remove the buffer probe.
14398
14399 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14400
14401         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
14402         Fix missing g_unlock from the previous commit
14403
14404 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14405
14406         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14407         (gst_ximagesink_change_state):
14408         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14409         (gst_xvimagesink_change_state):
14410         Implement a locking order to ensure we always take the object lock
14411         before the x_lock and never vice-versa.
14412
14413 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14414
14415         * gst/playback/gstdecodebin.c: (find_compatibles):
14416         Fix a caps leak when linking (#347304)
14417
14418         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14419         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
14420         (gst_ximagesink_change_state):
14421         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14422         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
14423         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14424         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
14425         Don't leak shared memory resources. Use the object lock to protect
14426         against the xcontext disappearing while returning a buffer from the
14427         pipeline. (#347304)
14428
14429 2006-07-12  Edward Hervey  <edward@fluendo.com>
14430
14431         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
14432         (vorbis_handle_comment_packet):
14433         gst_tag_list_merge() returns a new object. Take that into account when
14434         using it. This avoids memleak.
14435         Revert previous commit which is not needed.
14436
14437 2006-07-12  Edward Hervey  <edward@fluendo.com>
14438
14439         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
14440         Reset the decoder in finalize so that all fields get cleared.
14441
14442 2006-07-12  Wim Taymans  <wim@fluendo.com>
14443
14444         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14445         (gst_base_audio_src_set_clock),
14446         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
14447         Don't try to post an error message when setting the clock fails
14448         as this can happen when adding an element to a bin which will then
14449         deadlock. Fixes #347296.
14450
14451 2006-07-12  Edward Hervey  <edward@fluendo.com>
14452
14453         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
14454         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
14455         (vorbis_handle_type_packet):
14456         Post tag messages on the bus even if we're not initialized.
14457         If we're not initialized, we still postpone the event pushing of tags.
14458
14459 2006-07-12  Wim Taymans  <wim@fluendo.com>
14460
14461         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14462         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14463         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14464         Revert last two changes that broke the freeze.
14465
14466 2006-07-12  Wim Taymans  <wim@fluendo.com>
14467
14468         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14469         basesink calculates silence sample correctly for us.
14470
14471 2006-07-12  Wim Taymans  <wim@fluendo.com>
14472
14473         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14474         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14475         Calculate correct silence samples so we don't fill our ringbuffer
14476         with noise.
14477
14478 2006-07-12  Edward Hervey  <edward@fluendo.com>
14479
14480         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14481         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
14482         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
14483         * ext/vorbis/vorbisdec.h:
14484         Delay sending events (newsegment, tags) until the decoder is properly
14485         initialized.
14486         Fixes #347295
14487
14488 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
14489
14490         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
14491         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
14492           Patch from #347221 adding a test for audioconvert
14493           channel remappings.
14494
14495 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
14496
14497         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
14498         (gst_ssa_parse_parse_line):
14499           Don't include the terminating NUL in the buffer size,
14500           it's only there for extra paranoia (would add random
14501           '*' characters at the end of each subtitle since the
14502           terminator itself is not valid UTF-8 technically).
14503           Also fix indenting after boilerplate macro.
14504
14505 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
14506
14507         * gst/playback/gstdecodebin.c: (close_pad_link):
14508           Also emit 'unknown-type' signal (which should really be
14509           called unhandled-type) if we found potential decoders/demuxers
14510           in the registry but none of them worked in the end (as in the
14511           case where the plugins don't exist any longer but are still
14512           listed in the registry). Fixes #329798.
14513
14514 2006-07-08  Andy Wingo  <wingo@pobox.com>
14515
14516         * theoraparse.c (theora_parse_push_buffer)
14517         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
14518         Add some more debugging. Fix granulepos reconstruction in the face
14519         of discontinuities.
14520
14521 2006-07-06  Wim Taymans  <wim@fluendo.com>
14522
14523         * gst-libs/gst/audio/gstbaseaudiosink.c:
14524         (gst_base_audio_sink_class_init),
14525         (gst_base_audio_sink_provide_clock):
14526         Use gobject_class instead of G_OBJECT_CLASS (klass)
14527
14528         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14529         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
14530         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
14531         (gst_base_audio_src_get_time),
14532         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
14533         (gst_base_audio_src_create_ringbuffer):
14534         Fix latency and buffer-time constants and properties ala basesink.
14535         Implement pull based scheduling. Fixes #346527.
14536         Set default blocksize in GstBaseSrc to 0, we default to pushing out
14537         one segment.
14538         Refuse slaving to another clock instead of silently not working.
14539         Only provide a clock when we are actually able to do so.
14540         Various small cleanups and compiler hints.
14541
14542 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14543
14544         Patch by: Lutz Mueller <lutz at topfrose de>
14545
14546         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
14547         (plugin_init):
14548           Add typefinding for text/html (#346581).
14549
14550 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14551
14552         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
14553         (xml_check_first_element), (xml_type_find), (smil_type_find):
14554           Fix SMIL typefinding, make xml_check_first_element() more
14555           useful.
14556
14557 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14558
14559         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14560         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
14561         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
14562         * gst/playback/gstplaybasebin.h:
14563           Protect list of elements with a subtitle-encoding property and
14564           the subtitle encoding member itself with a lock of their own
14565           instead of using the object lock. This prevents a dead-lock in
14566           the element-remove callback in some circumstances when shutting
14567           down playbin.
14568
14569 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
14570
14571         * win32/common/libgsttag.def:
14572         Export some new functions.
14573         * win32/vs6/libgstogg.dsp:
14574         Add a link to libgsttag-0.10.lib.
14575
14576 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
14577
14578         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14579           Some const-ification.
14580
14581 2006-07-04  Wim Taymans  <wim@fluendo.com>
14582
14583         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
14584         Improve checking if we are dealing with a stream. Added some
14585         more uris that need buffering.
14586
14587 2006-07-03  Edward Hervey  <edward@fluendo.com>
14588
14589         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
14590         Remove unused variable.
14591
14592 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14593
14594         * Makefile.am:
14595           include lcov.mak
14596         * configure.ac:
14597           add GCOV_LIBS to GST_LIBS
14598
14599 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
14600
14601         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
14602
14603         * ext/alsa/gstalsasrc.c:
14604           Add 32 bps to template caps and increase channels range
14605           from [1,2] to [1,MAX]. See #346326.
14606
14607 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
14608
14609         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14610           Recognise 'WMVA' video codec fourcc (#345879).
14611           
14612 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14613          
14614         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14615           Fixed nasty memory leak
14616
14617 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14618
14619         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
14620         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
14621           fix logging
14622
14623 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
14624
14625         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14626         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
14627         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
14628         Protect remove_fakesink using a mutex, so that we don't try and
14629         remove the fakesink simultaneously from multiple threads.
14630
14631         When going from READY to PAUSED, restore the fakesink, so that
14632         it is there when decodebin gets reused.
14633
14634 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
14635
14636         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
14637         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14638         * gst-libs/gst/rtp/gstbasertppayload.c:
14639         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14640         * gst/tcp/gstmultifdsink.c:
14641         * gst/tcp/gsttcpclientsink.c:
14642         * gst/tcp/gsttcpclientsrc.c:
14643         * gst/tcp/gsttcpserversink.c:
14644         * gst/tcp/gsttcpserversrc.c:
14645         * gst/videorate/gstvideorate.c:
14646         * gst/videotestsrc/gstvideotestsrc.c:
14647         * sys/v4l/gstv4ljpegsrc.c:
14648         * sys/v4l/gstv4lmjpegsink.c:
14649         * sys/v4l/gstv4lsrc.c:
14650         * tests/examples/seek/scrubby.c:
14651         * tests/examples/seek/seek.c:
14652           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
14653
14654 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14655
14656         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
14657           Second field in GEnumValue shouldn't be a description,
14658           but a stringified version of the enum value.
14659
14660 2006-06-22  Wim Taymans  <wim@fluendo.com>
14661
14662         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14663         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
14664         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14665         Avoid type checking in buffer casts.
14666         Avoid caps copy in buffer_alloc when we can.
14667         Use pad_peer_accept.
14668
14669 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14670
14671         * gst-libs/gst/tag/tag.h:
14672           Oops, make that 'Since: 0.10.9'.
14673
14674 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14675
14676         * docs/libs/gst-plugins-base-libs-sections.txt:
14677         * gst-libs/gst/tag/tag.h:
14678         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
14679         (gst_tag_image_type_get_type):
14680           API: add GstTagImageType enum to describe images contained
14681           in image tags (#345641).
14682
14683 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14684
14685         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14686           Fix warnings with gst-inspect: "buffers-min" property
14687           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
14688           typo in property description.
14689
14690 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14691
14692         Patch by: Cody Russell <bratsche at gnome org>
14693
14694         * gst/audioresample/gstaudioresample.c:
14695         (gst_audioresample_class_init):
14696         * gst/playback/gststreamselector.c:
14697         (gst_stream_selector_class_init):
14698         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
14699         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14700         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
14701         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
14702         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
14703         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
14704         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
14705         * gst/videotestsrc/gstvideotestsrc.c:
14706         (gst_video_test_src_class_init):
14707         * gst/volume/gstvolume.c: (gst_volume_class_init):
14708           Avoid unnecessary class cast check in class_init
14709           functions (#337747).
14710
14711 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
14712
14713         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
14714         (gst_text_overlay_video_chain):
14715           g_markup_escape_text() REALLY doesn't like non-UTF8 input
14716           and doesn't validate its input either (and neither did
14717           textoverlay it seems). Let's do that then and fix #345206.
14718
14719 2006-06-19  Wim Taymans  <wim@fluendo.com>
14720
14721         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
14722         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
14723         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
14724         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
14725         (find_syncframe), (find_limits), (assign_value),
14726         (count_burst_unit), (gst_multi_fd_sink_new_client),
14727         (gst_multi_fd_sink_handle_client_write),
14728         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
14729         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
14730         (gst_multi_fd_sink_change_state):
14731         * gst/tcp/gstmultifdsink.h:
14732         Added shiny new burst-on-connect methods.
14733         Add properties to control the minimal amount of data queued.
14734         Small cleanups.
14735         API: bytes-min property
14736         API: time-min property
14737         API: buffers-min property
14738         API: burst-unit property
14739         API: burst-value property
14740         API: add-full signal
14741
14742         * gst/tcp/gsttcp-marshal.list:
14743         Added new marshaller code for the new signal.
14744
14745         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14746         (multifdsink_suite):
14747         Added testcases for new burst methods.
14748
14749 2006-06-19  Edward Hervey  <edward@fluendo.com>
14750
14751         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
14752         Implement clipping for accurate seeking.
14753         Closes #345225
14754
14755 2006-06-19  Wim Taymans  <wim@fluendo.com>
14756
14757         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
14758
14759         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
14760         (gst_video_scale_transform):
14761         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
14762
14763 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
14764
14765         * configure.ac:
14766           Fix --disable-external (can't set conditionals conditionally,
14767           #343602).
14768
14769 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14770
14771         * tests/check/elements/audioresample.c: (test_reuse),
14772         (audioresample_suite):
14773           Add test case for bug #342789 fixed below.
14774
14775 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14776
14777         * gst/audioresample/gstaudioresample.c:
14778         (gst_audioresample_class_init), (gst_audioresample_init),
14779         (audioresample_start), (audioresample_stop),
14780         (gst_audioresample_set_property), (gst_audioresample_get_property):
14781           Implement GstBaseTransform::start and ::stop so that audioresample
14782           can clear its internal state properly and be reused instead of
14783           causing non-negotiated errors with playbin under some circumstances
14784           (#342789).
14785
14786         * tests/check/elements/audioresample.c: (setup_audioresample),
14787         (cleanup_audioresample):
14788           Need to set element state here so that ::start and ::stop are
14789           called.
14790
14791 2006-06-16  Wim Taymans  <wim@fluendo.com>
14792
14793         Patch by: Young-Ho Cha <ganadist at chollian dot net>
14794
14795         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
14796         Parse extra data better, apparently it's right behind
14797         the normal strf header size. Fixes #343500.
14798
14799 2006-06-16  Wim Taymans  <wim@fluendo.com>
14800
14801         * ext/alsa/gstalsasink.c: (set_hwparams):
14802         If we fail to set the buffer_time and period_time alsa
14803         parameters, post a warning and leave alsa select a 
14804         default instead of failing. Fixes #342085
14805
14806 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14807
14808         * docs/libs/gst-plugins-base-libs-sections.txt:
14809         * gst-libs/gst/cdda/gstcddabasesrc.h:
14810           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
14811           out in the header file and shouldn't be listed in the docs.
14812
14813         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14814           Must dereference pointer to fourcc in the debug statement.
14815
14816 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
14817
14818         * docs/libs/Makefile.am:
14819         * docs/libs/gst-plugins-base-libs-docs.sgml:
14820         * docs/libs/gst-plugins-base-libs-sections.txt:
14821         * docs/libs/gst-plugins-base-libs.types:
14822         add remaining symbols into correct setions
14823         
14824         * gst-libs/gst/audio/gstringbuffer.c:
14825         fix incomplete docs
14826         
14827         * gst-libs/gst/audio/gstringbuffer.h:
14828         comment out not yet implemented function
14829         
14830         
14831         * gst-libs/gst/floatcast/floatcast.h:
14832         * gst-libs/gst/netbuffer/gstnetbuffer.c:
14833         add short descriptions
14834         
14835         
14836         * gst-libs/gst/interfaces/propertyprobe.c:
14837         fix return value docs   
14838         
14839         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14840         simplify debug logging
14841         
14842         * gst-libs/gst/riff/riff-read.h:
14843         sync function prototype and docs
14844         
14845         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14846         remove left over symbol
14847
14848 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14849
14850         * autogen.sh:
14851         * configure.ac:
14852         * docs/Makefile.am:
14853           Use GST_PLUGIN_DOCS macro in configure.ac, add
14854           --enable-plugin-docs default to autogen.sh and use
14855           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
14856
14857 2006-06-15  Wim Taymans  <wim@fluendo.com>
14858
14859         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
14860         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
14861         (gst_ogg_demux_loop):
14862         Combine GstFlowReturn from the source pads to give a
14863         meaningfull result to the upstream peer or to stop the
14864         processing task in case of errors.
14865
14866 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14867
14868         * gst/playback/gststreaminfo.c: (cb_probe):
14869           Try GST_TAG_CODEC as fallback when extracting the
14870           codec name; more debug info.
14871
14872 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14873
14874         * ext/ogg/Makefile.am:
14875         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14876           Extract language tags from ogm subtitle streams, so that
14877           the subtitle menu choices are labelled correctly in
14878           Totem (fixes #344708).
14879
14880 2006-06-14  Wim Taymans  <wim@fluendo.com>
14881
14882         Patch by: Alessandro Decina <alessandro at nnva dot org>
14883
14884         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
14885         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
14886         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
14887         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
14888         Fix various leaks. Fixes #343699.
14889         Add x-smoke mime type.
14890
14891 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14892
14893         * gst-libs/gst/riff/riff-ids.h:
14894           Add IDs for 'bext' chunks (see #343837).
14895
14896 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
14897
14898         Patch by: Young-Ho Cha  <ganadist at chollian net>
14899
14900         * gst/subparse/samiparse.c: (sami_context_pop_state),
14901         (handle_start_font), (end_sami_element):
14902           Honour font face tags in SAMI subtitles (#344503).
14903
14904 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14905
14906         * po/POTFILES.in:
14907           add missing files containing translatable strings
14908
14909 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14910
14911         * docs/libs/tmpl/.cvsignore:
14912           we don't want those *.sgml files in CVS either
14913
14914 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14915
14916         * docs/libs/.cvsignore:
14917         * tests/check/elements/.cvsignore:
14918         * tests/check/libs/.cvsignore:
14919           ignore more
14920
14921 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14922
14923         * docs/libs/Makefile.am:
14924           also commiting the changed Makefile.am (added more libs to the
14925           doc-build)
14926
14927 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14928
14929         * docs/libs/gst-plugins-base-libs-docs.sgml:
14930         * docs/libs/gst-plugins-base-libs-sections.txt:
14931         * docs/libs/gst-plugins-base-libs.types:
14932           first batch of reordering things, add index & hierarchy
14933
14934 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14935
14936         * configure.ac:
14937           use GST_PKG_CHECK_MODULES, cleans up output
14938
14939 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14940
14941         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14942           Add support for burn:// URIs (#343385); const-ify things a bit,
14943           use G_N_ELEMENTS instead of hard-coded array size.
14944
14945 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14946
14947         Patch by: Young-Ho Cha  <ganadist at chollian net>
14948
14949         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
14950           Fix up broken entities before passing them to libxml *sigh*.
14951           (#343303).
14952           
14953 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14954
14955         * configure.ac:
14956           back to TRUNK
14957
14958 === release 0.10.8 ===
14959
14960 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
14961
14962         * configure.ac:
14963           releasing 0.10.8, "Moar gij ziet mij nie"
14964
14965 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14966
14967         * configure.ac:
14968         * po/af.po:
14969         * po/az.po:
14970         * po/cs.po:
14971         * po/en_GB.po:
14972         * po/hu.po:
14973         * po/it.po:
14974         * po/nb.po:
14975         * po/nl.po:
14976         * po/or.po:
14977         * po/sq.po:
14978         * po/sr.po:
14979         * po/sv.po:
14980         * po/uk.po:
14981         * po/vi.po:
14982         * win32/common/config.h:
14983           0.10.7.2 prerelease
14984
14985 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14986
14987         * docs/libs/tmpl/gstaudio.sgml:
14988         * docs/libs/tmpl/gstcolorbalance.sgml:
14989         * docs/libs/tmpl/gstmixer.sgml:
14990         * docs/libs/tmpl/gstringbuffer.sgml:
14991         * docs/libs/tmpl/gsttuner.sgml:
14992         * docs/libs/tmpl/gstxoverlay.sgml:
14993         * gst-libs/gst/audio/audio.c:
14994         * gst-libs/gst/audio/gstringbuffer.c:
14995         * gst-libs/gst/interfaces/colorbalance.c:
14996         * gst-libs/gst/interfaces/mixer.c:
14997         * gst-libs/gst/interfaces/tuner.c:
14998         * gst-libs/gst/interfaces/xoverlay.c:
14999           move last template doc snippets to source code and delete them
15000
15001 2006-06-06  Michael Smith  <msmith@fluendo.com>
15002
15003         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
15004         (theora_parse_drain_queue):
15005           Mark DELTA_UNIT on non-keyframes.
15006
15007 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
15008
15009         * gst-libs/gst/audio/gstbaseaudiosink.c:
15010         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
15011         * gst-libs/gst/audio/gstbaseaudiosink.h:
15012         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
15013         (gst_ring_buffer_samples_done):
15014         * gst-libs/gst/audio/gstringbuffer.h:
15015         Document better the fact that latency_time and buffer_time are values
15016         stored in microseconds, and not the usual GStreamer nanoseconds.
15017         Change the variables (compatibly) that store them from GstClockTime 
15018         to guint64 to make it more clear that they're not storing clock times.
15019         Also, remove the bogus property description that says the user can
15020         specify -1 to get the default value, since that's never been the case.
15021
15022         When computing the default segment size for the ring buffer, make it
15023         an integer number of samples.
15024
15025         When the sub-class indicates a delay greater than the number of
15026         samples we've written return 0 from the audio sink get_time method.
15027
15028 2006-06-02  Michael Smith  <msmith@fluendo.com>
15029
15030         * tests/check/elements/audioconvert.c: (set_channel_positions),
15031         (get_float_mc_caps), (get_int_mc_caps):
15032         * tests/check/elements/audioresample.c:
15033         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
15034         * tests/check/elements/videorate.c:
15035         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
15036         * tests/check/elements/volume.c:
15037         * tests/check/elements/vorbisdec.c:
15038         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
15039           Don't busy-wait in tests; this was causing test timeouts very
15040           frequently when running under valgrind.
15041
15042 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15043
15044         * gst/tcp/README:
15045         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
15046         (gst_multi_fd_sink_remove_client_link),
15047         (gst_multi_fd_sink_client_queue_caps),
15048         (gst_multi_fd_sink_client_queue_buffer),
15049         (gst_multi_fd_sink_handle_client_write),
15050         (gst_multi_fd_sink_render):
15051         * gst/tcp/gstmultifdsink.h:
15052           make multifdsink properly deal with streamheader:
15053           - streamheader is taken from caps
15054           - buffers marked with IN_CAPS are not sent
15055           - streamheaders are sent, on connection, from the caps of the
15056             buffer where the client gets positioned to
15057           - further streamheader changes are done every time the client
15058             will receive a buffer with different caps
15059         * tests/check/elements/multifdsink.c: (GST_START_TEST),
15060         (gst_multifdsink_create_streamheader):
15061           add tests for this
15062
15063 2006-06-02  Michael Smith  <msmith@fluendo.com>
15064
15065         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
15066           Reinstate limit on channel count. Vorbis does not define the meaning
15067           of > 6 channels, so they're just independent channels. Gstreamer
15068           currently has no mechanism to represent N independent channels.
15069
15070 2006-06-02  Michael Smith  <msmith@fluendo.com>
15071
15072         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
15073           Don't arbitrarily restrict channel counts and rate in vorbis.
15074           In terms of effects likely on real-world files, this fixes 96kHz
15075           playback of vorbis.
15076
15077 2006-06-02  Michael Smith  <msmith@fluendo.com>
15078
15079         * gst/audioconvert/audioconvert.c: (float):
15080           More correct float->int conversion.
15081
15082 2006-06-02  Michael Smith  <msmith@fluendo.com>
15083
15084         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
15085           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
15086           value. Fixes g-critical on trying to play back ogg containing
15087           unknown codec.
15088
15089 2006-06-02  Wim Taymans  <wim@fluendo.com>
15090
15091         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
15092         (setup_source):
15093         * gst/playback/gstplaybasebin.h:
15094         Make the subtitle detection work from any thread so we don't
15095         deadlock. Fixes #343397.
15096
15097 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15098
15099         * gst/volume/Makefile.am:
15100           Seriously, it's not *that* hard to get compilation right.  Even
15101           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
15102
15103 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15104
15105         * gst/volume/gstvolume.c: (volume_choose_func),
15106         (volume_update_real_volume), (gst_volume_class_init),
15107         (gst_volume_init), (volume_process_float), (volume_process_int16),
15108         (volume_process_int16_clamp), (volume_set_caps),
15109         (volume_transform_ip), (plugin_init):
15110         * gst/volume/gstvolume.h:
15111         rewrite the passthrough check, split _int16 and _int16_clamp, fix
15112         another property desc., remove unused param from process function
15113         
15114         * tests/check/elements/volume.c: (volume_suite):
15115         reactivate the passthrough test
15116
15117 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15118
15119         * ext/alsa/gstalsamixerelement.h:
15120         * ext/alsa/gstalsamixeroptions.h:
15121         * ext/alsa/gstalsamixertrack.h:
15122         * ext/gnomevfs/gstgnomevfssink.h:
15123         * ext/gnomevfs/gstgnomevfssrc.h:
15124         * ext/theora/gsttheoradec.h:
15125         * ext/theora/gsttheoraenc.h:
15126         * ext/theora/gsttheoraparse.h:
15127         * ext/vorbis/vorbisparse.h:
15128         * gst-libs/gst/audio/gstaudioclock.h:
15129         * gst-libs/gst/audio/gstaudiofilter.h:
15130         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
15131         * gst/audioconvert/gstaudioconvert.h:
15132         * gst/audioresample/gstaudioresample.h:
15133         * gst/audiotestsrc/gstaudiotestsrc.h:
15134         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
15135         * gst/playback/gststreamselector.h:
15136         * gst/tcp/gstmultifdsink.h:
15137         * gst/tcp/gsttcpclientsink.h:
15138         * gst/tcp/gsttcpclientsrc.h:
15139         * gst/tcp/gsttcpserversink.h:
15140         * gst/tcp/gsttcpserversrc.h:
15141         * gst/videorate/gstvideorate.h:
15142         * gst/videoscale/gstvideoscale.h:
15143         * gst/videotestsrc/gstvideotestsrc.h:
15144         * gst/volume/gstvolume.h:
15145         * sys/v4l/gstv4ljpegsrc.h:
15146         * sys/v4l/gstv4lmjpegsink.h:
15147         * sys/v4l/gstv4lmjpegsrc.h:
15148         * sys/v4l/gstv4lsrc.h:
15149         * sys/ximage/ximagesink.h:
15150         * sys/xvimage/xvimagesink.h:
15151         * tests/old/testsuite/alsa/sinesrc.h:
15152         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
15153
15154 2006-05-31  Wim Taymans  <wim@fluendo.com>
15155
15156         * ext/libvisual/visual.c: (gst_visual_reset),
15157         (gst_visual_sink_setcaps), (gst_visual_sink_event),
15158         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
15159         Handle DISCONT.
15160         Use running time before doing QoS.
15161         Handle mono too.
15162
15163 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
15164
15165         * docs/libs/Makefile.am:
15166           set a magic variable to indicate we know the docs are incomplete
15167
15168 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
15169
15170         * win32/common/libgstvideo.def:
15171           export gst_video_calculate_display_ratio
15172         * win32/vs6/libgstvideoscale.dsp:
15173           add link to libgstvideo-0.10.lib
15174
15175 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
15176
15177         * gst/playback/gstplaybasebin.c: (gen_source_element):
15178           Throw a more comprehensible error for rtsp:// URIs (rather
15179           than erroring out with a negotiation error later on) until
15180           we fix playbin to handle rtspsrc etc.
15181
15182 2006-05-30  Wim Taymans  <wim@fluendo.com>
15183
15184         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
15185         (gst_text_overlay_text_event):
15186         Added some FIXMEs.
15187
15188 2006-05-30  Wim Taymans  <wim@fluendo.com>
15189
15190         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
15191         (gst_adder_request_new_pad), (gst_adder_release_pad):
15192         * gst/adder/gstadder.h:
15193         Implement release_request_pad.
15194         Make padcounter atomic.
15195
15196         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
15197         Added check for release_pad in adder.
15198
15199 2006-05-30  Wim Taymans  <wim@fluendo.com>
15200
15201         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
15202         Fix build again.
15203
15204 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15205
15206         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15207         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
15208         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15209         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
15210         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
15211         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
15212         (gst_ogg_demux_bisect_forward_serialno),
15213         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
15214         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
15215           add more debugging
15216           clean up printf formats for granulepos and serialno
15217
15218 2006-05-30  Michael Smith  <msmith@fluendo.com>
15219
15220         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
15221         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
15222         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
15223         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
15224         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
15225         * ext/vorbis/vorbisenc.h:
15226           Multi-channel caps negotiation, so we can do proper multichannel
15227           vorbis encoding, negotiated through audioconvert.
15228
15229 2006-05-30  Wim Taymans  <wim@fluendo.com>
15230
15231         * tests/check/elements/adder.c: (test_event_message_received),
15232         (test_play_twice_message_received), (GST_START_TEST),
15233         (adder_suite):
15234         Added check to show that #339935 is fixed with ongoing
15235         adder and collectpads fixes.
15236
15237 2006-05-29  Wim Taymans  <wim@fluendo.com>
15238
15239         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
15240         Don't leak pad name.
15241
15242 2006-05-29  Wim Taymans  <wim@fluendo.com>
15243
15244         * gst/adder/gstadder.c: (gst_adder_query_duration),
15245         (forward_event_func), (forward_event), (gst_adder_src_event):
15246         Fix adder seeking.
15247         Make query/seeking code threadsafe.
15248
15249         * tests/check/Makefile.am:
15250         * tests/check/elements/adder.c: (test_event_message_received),
15251         (GST_START_TEST), (test_play_twice_message_received):
15252         Fix adder test case.
15253
15254 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
15255
15256         Patch by: Young-Ho Cha  <ganadist at chollian net>
15257
15258         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15259         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
15260         (set_encoding_element), (decodebin_element_added_cb),
15261         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
15262         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
15263         * gst/playback/gstplaybasebin.h:
15264           Add 'subtitle-encoding' property to playbin, so applications can
15265           force a subtitle encoding for non-UTF8 subtitles (#342268).
15266
15267         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
15268         (gst_sub_parse_set_property):
15269           Rename recently-added 'encoding' property to 'subtitle-encoding'
15270           (so it can be proxied by playbin/decodebin in a generic way
15271           with less danger of false positives).
15272
15273 2006-05-29  Michael Smith  <msmith@fluendo.com>
15274
15275         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
15276         (append_with_other_format), (set_structure_widths),
15277         (gst_audio_convert_transform_caps):
15278           Patch from #341562: give more specific audio caps in get_caps, so
15279           that basetransform  can make better decisions on what caps to
15280           negotiate.
15281
15282 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15283
15284         * tests/check/elements/volume.c:
15285         make it compile again
15286
15287 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15288
15289         * tests/check/elements/volume.c: (volume_suite):
15290         disable test until #343196 gets resolved
15291
15292 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15293
15294         * gst/adder/gstadder.c: (gst_adder_get_type):
15295         Make it easier to copy&paste
15296         
15297         * gst/volume/Makefile.am:
15298         * gst/volume/gstvolume.c: (volume_update_real_volume),
15299         (gst_volume_set_volume), (gst_volume_set_mute),
15300         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
15301         (volume_transform_ip), (volume_update_mute),
15302         (volume_update_volume):
15303         * gst/volume/gstvolume.h:
15304         Add own debug category, move duplicate code to helper function, fix
15305         property texts, add more comments and prepare ffor liboil-goodness
15306         
15307         * tests/check/Makefile.am:
15308         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
15309         add test for mute and passtrough case, be a bit more verbose to track
15310         failure
15311         
15312         * tests/check/generic/states.c: (GST_START_TEST):
15313         catch elements that fail to instantiate
15314
15315 2006-05-28  Edward Hervey  <edward@fluendo.com>
15316
15317         * tests/check/pipelines/simple-launch-lines.c:
15318         * tests/check/pipelines/theoraenc.c:
15319         * tests/check/pipelines/vorbisenc.c:
15320         Comment out tests using parse_launch() if core was built without
15321         parsing capabilities.
15322
15323 2006-05-27  Edward Hervey  <edward@fluendo.com>
15324
15325         * tests/check/Makefile.am:
15326         Extra bonus points for whoever explains to ensonic that you are meant
15327         to test unit tests thoroughly before commiting them, especially if
15328         you know it's going to break.
15329         De-activated element/adder tests.
15330
15331 2006-05-27  Edward Hervey  <edward@fluendo.com>
15332
15333         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15334         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
15335         Marking caps conversion issues as GST_WARNING is way too verbose,
15336         Moving them to GST_LOG.
15337
15338 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
15339
15340         * README:
15341           Replace current README (containing the release notes from
15342           some 0.9.x version) with a proper README taken from the core.
15343
15344 2006-05-26  Wim Taymans  <wim@fluendo.com>
15345
15346         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15347         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
15348         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
15349         (vorbis_dec_change_state):
15350         Small cleanups.
15351         Add some FIXMEs
15352         Clip output samples to segment boundaries.
15353
15354 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15355
15356         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15357         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
15358         Improve the errors produced on bad output, including some human
15359         readable description strings.
15360         Handle the (theoretical for ximagesink) case where the XServer 
15361         has a different idea about the size required for a particular 
15362         frame and gives us too small a memory allocation.
15363
15364 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15365
15366         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15367         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
15368         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
15369         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
15370         Improve the errors produced on bad output, including some human 
15371         readable description strings.
15372         Handle RGB Xv formats properly by transforming them into our 
15373         big-endian caps description.
15374         Use gst_caps_truncate to ensure that we never try and choose a
15375         non-fixed caps in buffer_alloc.
15376         Handle the case where the XServer has a different idea about the size
15377         required for a particular frame and gives us too small a memory
15378         allocation.
15379         Use -1 to indicate 'no image format', because 0 is a valid XServer
15380         image format number.
15381         Put RGB Xv formats at the end of the caps, so that we always prefer
15382         YUV format frames.
15383         Iterate the available Xv Encodings to determine the maximum width and
15384         height, and then return that in our caps.
15385         (Closes #315312, #337544)
15386
15387 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
15388
15389         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
15390         When there is only one unfinished pad and it receives an event that
15391         doesn't match our requirements, we need to set alldone=FALSE so that
15392         the fakesink is not removed yet.
15393
15394 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
15395
15396         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
15397           Use gst_type_find_helper_for_buffer() to find the type
15398           of stream from the first packet.
15399
15400         * configure.ac:
15401           Bump requirements to core CVS (needed for vorbis
15402           typefinding to work).
15403
15404 2006-05-24  Edward Hervey  <edward@fluendo.com>
15405
15406         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
15407         Added the 'prfl' atom type which MQV (no, it's not a typo) files
15408         contain.  Else they play perfectly fine with qtdemux.
15409
15410 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
15411
15412         * ext/theora/theoradec.c:
15413         * ext/theora/theoraenc.c:
15414         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
15415         * gst/audiorate/gstaudiorate.c:
15416           make more debug catagories static
15417         
15418         * tests/check/Makefile.am:
15419         * tests/check/elements/adder.c: (message_received),
15420         (test_event_message_received), (GST_START_TEST),
15421         (test_play_twice_message_received), (adder_suite):
15422           added test case for using element twice, extra bonus points for anyone
15423           who can make these test run reliably
15424
15425 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
15426
15427         * ext/theora/theoradec.c: (theora_dec_chain):
15428           Make work with time-stamped input buffers that do not
15429           have a granulepos in BUFFER_OFFSET_END (like theora
15430           buffers coming from matroskademux). Fixes #342448.
15431
15432 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
15433
15434         Patch by: Peter Kjellerstedt  <pkj at axis com>
15435
15436         * gst/tcp/Makefile.am:
15437           fdstresstest doesn't need Gtk+, fix compilation if 
15438           gtk is not available (#342566).
15439
15440 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15441          
15442         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15443           80 line columns
15444           Removed redundant floor()
15445
15446 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15447
15448         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15449           On second thought, just skip JUNK chunks automatically, so
15450           the caller doesn't have to handle this. Fixes #342345.
15451           Also, return GST_FLOW_UNEXPECTED if we get a short read,
15452           not GST_FLOW_ERROR.
15453
15454 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15455
15456         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15457           Don't bail out on JUNK chunks with a size of 0 (would try to
15458           pull_range 0 bytes before, which sources don't like too much).
15459           See #342345.
15460
15461 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15462
15463         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15464         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15465         Use the gstutil scaling function to preserve 64 bits while calculating
15466         output width and height from the display-aspect-ratio. (A continuation
15467         of #341542)
15468
15469 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15470
15471         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
15472         (gst_xvimagesink_buffer_alloc):
15473         * sys/xvimage/xvimagesink.h:
15474         When performing buffer allocations, remember the caps and image format
15475         we return so that if the same caps are asked for next time we can
15476         return them immediately without doing any caps intersections.
15477
15478 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15479          
15480         * gst-libs/gst/rtp/README:
15481           Some new documentation
15482         * gst-libs/gst/rtp/gstrtpbuffer.h:       
15483           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
15484         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15485         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
15486           New RTP audio base payloader class. Supports frame or sample based
15487           codecs.  Not enabled in Makefile.am until approved.
15488
15489 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15490
15491         * tests/check/elements/alsa.c: (test_device_property_probe):
15492           Fix test case: don't try to free NULL GValueArray when there
15493           are no devices.
15494
15495 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15496
15497         * tests/check/Makefile.am:
15498         * tests/check/elements/alsa.c: (test_device_property_probe),
15499         (alsa_suite), (main):
15500           Add simple test that runs a device property probe on alsasrc,
15501           alsasink and alsamixer. Disable valgrind check for now (too
15502           many leaks in libasound, and valgrind ignored my suppressions
15503           additions).
15504
15505 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15506
15507         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
15508         (gst_alsa_device_property_probe_probe_property),
15509         (gst_alsa_device_property_probe_needs_probe),
15510         (gst_alsa_device_property_probe_get_values),
15511         (gst_alsa_type_add_device_property_probe_interface):
15512         * ext/alsa/gstalsadeviceprobe.h:
15513         * ext/alsa/gstalsamixerelement.c:
15514         (gst_alsa_mixer_element_init_interfaces):
15515         * ext/alsa/gstalsamixerelement.h:
15516           Clean up and simplify alsa device probing. Make it actually work
15517           for multiple classes. Don't cache results any longer.
15518
15519         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
15520         (gst_alsasink_init):
15521         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
15522         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
15523         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
15524           Make alsasink and alsasrc implement the GstPropertyProbe interface
15525           for device probing (#342181).
15526           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
15527
15528 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15529
15530         * gst/subparse/samiparse.c: (handle_start_font):
15531           Don't ignore return value of strtol (++compiler_happiness).
15532
15533 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
15534
15535         Patch by: Young-Ho Cha  <ganadist chollian net>
15536
15537         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15538         (gst_sub_parse_class_init), (gst_sub_parse_init),
15539         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
15540         (convert_encoding):
15541         * gst/subparse/gstsubparse.h:
15542           Add 'encoding' property (#341681).
15543
15544         * gst/subparse/samiparse.c: (characters_sami):
15545           Output is pango markup, so we need to escape text
15546           between tags (#342143).
15547
15548 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15549
15550         * gst-libs/gst/audio/multichannel.c:
15551         (gst_audio_check_channel_positions):
15552           It's okay to have caps with channels=1 and a channel position
15553           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
15554           (deinterleavers might want to keep the position in the caps,
15555           so that they can be re-interleaved again properly later).
15556           Leave check for unexpected 2-channel layouts intact for now.
15557
15558 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15559
15560         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
15561         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
15562         basesrc can do its job correctly.
15563
15564 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15565
15566         * ext/alsa/Makefile.am:
15567         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
15568         (gst_alsa_detect_formats), (get_channel_free_structure),
15569         (caps_add_channel_configuration), (gst_alsa_detect_channels),
15570         (gst_alsa_probe_supported_formats):
15571         * ext/alsa/gstalsa.h:
15572         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15573           Refactor and improve caps probing code: probe signedness
15574           when we probe the supported formats/widths; set endianness
15575           to the one we actually probed for (ie. cpu endianness).
15576           
15577         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
15578         (gst_alsasrc_close):
15579         * ext/alsa/gstalsasrc.h:
15580           Implement caps probing for alsasrc.
15581
15582 2006-05-15  Wim Taymans  <wim@fluendo.com>
15583
15584         * ext/theora/theoradec.c: (gst_theora_dec_reset),
15585         (theora_dec_src_query), (theora_dec_src_event),
15586         (theora_dec_sink_event), (theora_handle_comment_packet),
15587         (theora_handle_data_packet), (theora_dec_change_state):
15588         Cleanups, add some G_LIKELY.
15589         Use segment helpers instead of our own wrong code.
15590         Clear queued buffers on seek and READY.
15591
15592         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
15593         (vorbis_dec_convert), (vorbis_dec_src_query),
15594         (vorbis_dec_src_event), (vorbis_dec_sink_event),
15595         (vorbis_handle_comment_packet), (vorbis_dec_push),
15596         (vorbis_handle_data_packet), (vorbis_dec_chain),
15597         (vorbis_dec_change_state):
15598         * ext/vorbis/vorbisdec.h:
15599         Remove old useless packetno variable.
15600         Do position query properly.
15601         Add some G_LIKELY.
15602         Do cleanup of queued buffers in new helper function
15603         and use it.
15604
15605 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15606
15607         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15608           Query supported sample rates. Fixes #341732.
15609
15610 2006-05-15  Julien MOUTTE  <julien@moutte.net>
15611
15612         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
15613         (gst_decode_bin_change_state): Make decodebin reusable
15614         when going from PAUSE_TO_READY and then back to PAUSED.
15615         Fixes #331678.
15616
15617 2006-05-15  Wim Taymans  <wim@fluendo.com>
15618
15619         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
15620         (vorbis_dec_convert), (vorbis_dec_src_query),
15621         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15622         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
15623         (vorbis_dec_clean_queued), (vorbis_dec_push),
15624         (vorbis_handle_data_packet), (vorbis_dec_change_state):
15625         Cleanups. Use refcounting and DEBUG_OBJECT.
15626         Reset segment on flush, use code methods instead of our
15627         own wrong version.
15628         Fix potential memleak.
15629
15630 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15631
15632         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
15633         (gst_alsasink_init):
15634         * ext/alsa/gstalsasink.h:
15635           Don't leak allocated snd_output_t structure if there's
15636           more than one alsasink instance at a time (#341873).
15637           Also fix GObject macros in header file.
15638           
15639 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15640
15641         * gst/subparse/gstsubparse.c:
15642         (gst_sub_parse_data_format_autodetect):
15643           Don't use libxml functions in the typefinding code.
15644
15645 2006-05-15  Wim Taymans  <wim@fluendo.com>
15646
15647         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
15648         Fix seeking performance in the case where a non-header 
15649         packet has a 0 granulepos (busted theora case). 
15650         Fixes #341719
15651         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
15652          the first place, you limelight stealer you)
15653
15654 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15655
15656         * gst/subparse/gstsubparse.c:
15657         (gst_sub_parse_data_format_autodetect):
15658           Improve SAMI typefinding: handle case where there are
15659           whitespaces or newlines in front of the first <SAMI>
15660           tag (#169936).
15661
15662 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15663
15664         * configure.ac:
15665           Build video4linux plugin even if there's no XVIDEO, just
15666           without implementing the GstXOverlay interface (#334002).
15667          
15668 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15669
15670         * configure.ac:
15671         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
15672         (plugin_init):
15673           Add tentative support for libvisual-0.4 (#336881).
15674
15675 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15676
15677         Patch by: Young-Ho Cha <ganadist at chollian net>
15678
15679         * gst/subparse/samiparse.c: (handle_start_font):
15680           Need to map "silver" colour explicitly (#169936).
15681
15682 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15683
15684         Patch by: Young-Ho Cha  <ganadist at chollian net>
15685
15686         * gst/subparse/Makefile.am:
15687         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15688         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
15689         (gst_sub_parse_format_autodetect), (feed_textbuf),
15690         (gst_subparse_type_find), (plugin_init):
15691         * gst/subparse/gstsubparse.h:
15692         * gst/subparse/samiparse.c:
15693         * gst/subparse/samiparse.h:
15694           Add support for SAMI subtitles (#169936).
15695
15696 2006-05-14  Michael Smith  <msmith@fluendo.com>
15697
15698         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
15699           Fix #341696: crash when mixing L+R+C to mono or stereo.
15700         * tests/check/Makefile.am:
15701         * tests/check/elements/audioconvert.c: (set_channel_positions),
15702         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
15703         (audioconvert_suite):
15704           Add test for the above, including some generic framework bits for
15705           testing multichannel things.
15706
15707 === release 0.10.7 ===
15708
15709 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
15710
15711         * configure.ac:
15712           releasing 0.10.7, "Leave the gun"
15713
15714 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
15715
15716         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15717         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15718         Fix the build.
15719
15720 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
15721
15722         * docs/libs/gst-plugins-base-libs-docs.sgml:
15723         * docs/libs/gst-plugins-base-libs-sections.txt:
15724         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
15725         * gst-libs/gst/video/video.h:
15726         * gst/videoscale/Makefile.am:
15727         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15728         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15729         * tests/check/Makefile.am:
15730         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
15731         (main):
15732           Fix integer overflow problem with pixel-aspect-ratio calculations
15733           in videoscale and xvimagesink (#341542)
15734
15735 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
15736
15737         * gst-libs/gst/tag/gstid3tag.c:
15738           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
15739
15740 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
15741
15742         * win32/MANIFEST:
15743           update win32 files listing
15744
15745 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15746
15747         patch by: Sjoerd Simons (sjoerd@luon.net)
15748
15749         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15750         (group_create), (group_destroy), (add_stream),
15751         (gst_play_base_bin_get_property),
15752         (gst_play_base_bin_get_streaminfo_value_array):
15753         * gst/playback/gstplaybasebin.h:
15754           API: GstPlayBaseBin::stream-info-value-array property
15755           use a more bindings-friendly way of exposing streaminfo
15756           using a GValueArray.  Tested in ipython.
15757           Closes #341114
15758
15759 2006-05-11  Wim Taymans  <wim@fluendo.com>
15760
15761         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
15762         (queue_underrun_cb), (queue_filled_cb):
15763         Also catch queue underruns but don't do anything yet.
15764         Refactor and comment queue enlarging code a bit.
15765
15766         * gst/playback/gstplaybasebin.c: (queue_overrun),
15767         (queue_threshold_reached), (queue_out_of_data),
15768         (gen_preroll_element):
15769         If a queue over/underruns check that we don't create nasty
15770         deadlocks when the min-threshold is not reached but the
15771         max-bytes is. In those cases disable max-bytes when we
15772         know that the queue is fed timed data.
15773         Add more comments.
15774
15775 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15776
15777         * gst/playback/gstplaybin.c: (gen_audio_element):
15778           Make playbin automatically plug an 'audioresample'
15779           element before the audio sink as well. This solves
15780           problems with sinks that only accept a very specific
15781           sample rate, like esdsink (e.g. #340379).
15782
15783 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15784
15785         * gst/playback/gstplaybasebin.c: (gen_source_element):
15786           Make http sources send special headers so that we receive
15787           icecast metadata if the http stream is an icecast stream
15788           (otherwise the server will just ignore them). This also
15789           means that from now on users will need the 'icydemux'
15790           element from gst-plugins-good installed if they want to
15791           listen to icecast radio streams. (#341432, #333657).
15792
15793 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15794
15795         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
15796         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
15797           remove stupid example from docs - it should come with a simple
15798           C program instead.
15799           Clean up/fix docs
15800         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15801         (fail_if_can_read), (GST_START_TEST),
15802         (gst_multifdsink_create_streamheader), (multifdsink_suite):
15803           add a test for changing streamheader which exposes a bug in
15804           multifdsink
15805
15806 2006-05-11  Michael Smith  <msmith@fluendo.com>
15807
15808         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
15809         (gst_gnome_vfs_src_received_headers_callback):
15810         * ext/gnomevfs/gstgnomevfssrc.h:
15811           Don't set icy-caps unless we have a sane interval value. Move
15812           interval to a local variable; we never use it outside this function.
15813
15814 2006-05-11  Wim Taymans  <wim@fluendo.com>
15815
15816         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
15817         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
15818         Register special buffer types along with the objects so
15819         that they are not registered at runtime from N different
15820         streaming threads since they are not threadsafe.
15821
15822 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15823
15824         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15825         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
15826           add two more tests, one doing streamheader
15827
15828 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15829
15830         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
15831           clean up the bufqueue when shutting down
15832         * tests/check/Makefile.am:
15833         * tests/check/elements/multifdsink.c: (setup_multifdsink),
15834         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
15835         (main):
15836           add a test for the leak that was just fixed
15837
15838 2006-05-10  Wim Taymans  <wim@fluendo.com>
15839
15840         * gst/adder/gstadder.c: (gst_adder_setcaps),
15841         (gst_adder_query_duration), (gst_adder_query), (forward_event),
15842         (gst_adder_src_event), (gst_adder_sink_event),
15843         (gst_adder_class_init), (gst_adder_finalize),
15844         (gst_adder_request_new_pad), (gst_adder_collected):
15845         * gst/adder/gstadder.h:
15846         Updated some docs. Added comments and FIXMEs all over the place.
15847         Improve debugging info.
15848         Fix leak on finalize by not calling the parent.
15849         Implement duration query.
15850         Make event forwarding threadsafe.
15851         Correctly send NEWSEGMENT at start and after flush.
15852         Handle EOS correctly.
15853         Post error when not negotiated.
15854
15855         * tests/check/elements/adder.c: (GST_START_TEST):
15856         Added FIXME in the test.
15857
15858 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15859
15860         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
15861         (gst_text_overlay_halign_get_type),
15862         (gst_text_overlay_wrap_mode_get_type):
15863         * ext/theora/theoradec.c: (theora_handle_type_packet),
15864         (theora_handle_data_packet):
15865         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15866         (theora_enc_sink_setcaps), (theora_enc_chain):
15867         * gst-libs/gst/cdda/gstcddabasesrc.c:
15868         (gst_cdda_base_src_mode_get_type):
15869         * gst/audiotestsrc/gstaudiotestsrc.c:
15870         (gst_audiostestsrc_wave_get_type):
15871         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
15872         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
15873         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15874         (gst_sync_method_get_type), (gst_unit_type_get_type),
15875         (gst_client_status_get_type):
15876         * gst/videoscale/gstvideoscale.c:
15877         (gst_video_scale_method_get_type):
15878         * gst/videotestsrc/gstvideotestsrc.c:
15879         (gst_video_test_src_pattern_get_type):
15880         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
15881         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
15882         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
15883         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
15884         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
15885         (paint_setup_RGB565), (paint_setup_xRGB1555):
15886           Const-ify GEnumValue and GFlagsValue arrays. Use
15887           GST_ROUND_UP_* macros instead of home-made ones.
15888
15889 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15890
15891         * configure.ac:
15892           Require core CVS for the new newsegment stuff.
15893
15894 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15895
15896         Patch by: Sjoerd Simons  <sjoerd at luon net>
15897
15898         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
15899           Register nick for enum value (#341160).
15900
15901 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
15902
15903         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
15904         (plugin_init):
15905          backout typefind patch #340375
15906          
15907         * tests/check/elements/adder.c: (message_received),
15908         (GST_START_TEST), (adder_suite):
15909           redo, signal-handling of test
15910
15911 2006-05-09  Wim Taymans  <wim@fluendo.com>
15912
15913         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
15914         (gst_adder_collected):
15915         * gst/adder/gstadder.h:
15916         Remove bogus segment merging and forwarding, we don't
15917         care about timestamps anyway and we just produce a
15918         continuous stream. 
15919         Also create a nice NEWSEGMENT event when we start.
15920         Use _scale_int some more.
15921
15922 2006-05-09  Edward Hervey  <edward@fluendo.com>
15923
15924         * tests/icles/stress-xoverlay.c:
15925         Fix if core was built without parsing support.
15926
15927 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15928
15929         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15930           Add SEDG (Samsung MPEG-4) fourcc.
15931
15932 2006-05-09  Edward Hervey  <edward@fluendo.com>
15933
15934         * tests/icles/stress-xoverlay.c:
15935         * tests/examples/volume/volume.c:
15936         Fix if core was built without parsing support.
15937
15938         * tests/examples/seek/seek.c:
15939         Disable the parse_launch example if core was built without parsing
15940         support.
15941
15942 2006-05-08  Edward Hervey  <edward@fluendo.com>
15943
15944         * autogen.sh: (CONFIGURE_DEF_OPT): 
15945         libtoolize on Darwin/MacOSX is called glibtoolize
15946
15947 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15948
15949         * tests/check/Makefile.am:
15950         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
15951           Disable the adder test, until the build-slaves posses the kindness to 
15952           either like it or to give valid reason for not doing so 
15953
15954 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15955
15956         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15957         (adder_suite):
15958           Shuffle NULL state change around and raise timeout more
15959
15960 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15961
15962         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
15963         (mp4_type_find), (plugin_init):
15964           Add typefind to distinguish between "audio/x-m4a" and new type
15965           "video/mp4". Fixes #340375
15966
15967         * tests/check/elements/adder.c: (adder_suite):
15968           Raise timeout to make buildbot happy
15969
15970 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15971
15972         * gst/adder/gstadder.c: (gst_adder_sink_event),
15973         (gst_adder_request_new_pad), (gst_adder_change_state):
15974         * gst/adder/gstadder.h:
15975         * tests/check/Makefile.am:
15976         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15977         (adder_suite), (main):
15978           Add sink-event handling to adder. It tries to merge incomming
15979           newsegment-events. Added test to check if segment_done is comming
15980           through. Fixes #340060
15981
15982 2006-05-05  Andy Wingo  <wingo@pobox.com>
15983
15984         * ext/theora/theoraparse.c (gst_theora_parse_init)
15985         (theora_parse_src_convert, theora_parse_src_query):
15986         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
15987         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
15988         query functions on the source pads of the theora and vorbis parse
15989         elements. Fixes position querying when doing a remux.
15990
15991 2006-05-05  Michael Smith  <msmith@fluendo.com>
15992
15993         * ext/theora/theoraparse.c: (parse_granulepos),
15994         (theora_parse_drain_queue_prematurely),
15995         (theora_parse_queue_buffer), (theora_parse_sink_event):
15996           Fix flushing.
15997           Fix invalid granulepos outputs when starting with a non-keyframe.
15998
15999 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
16000
16001         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
16002         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
16003         Rearrange MPEG system stream detection, fixing some memleaks in the
16004         process.
16005         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
16006         they clean up their data correctly.
16007         Remove unused ogganx caps and move the 'is_annodex' check to inside
16008         the 'is_ogg' if statement.
16009
16010 2006-05-05  Wim Taymans  <wim@fluendo.com>
16011
16012         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
16013         Properly remove ghostpads. Fixes #340392
16014
16015 2006-05-04  David Schleef  <ds@schleef.org>
16016
16017         * gst/typefind/gsttypefindfunctions.c:
16018
16019 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
16020
16021         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
16022         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
16023
16024         When typefinding an MP3 in push-based mode, don't penalise the
16025         probability down to 74% when we found 5 valid frames just because we
16026         can't peek the end of the file.
16027
16028         Make the probability for detecting MPEG Transport Streams based on the
16029         number of sequential headers we successfully detected.
16030
16031 2006-05-03  Wim Taymans  <wim@fluendo.com>
16032
16033         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
16034         (vorbis_dec_push), (vorbis_dec_chain):
16035         Still produce an error when we receive an empty packet.
16036
16037 2006-05-03  Wim Taymans  <wim@fluendo.com>
16038
16039         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
16040         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
16041         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
16042         Mark buffers with DISCONT after seek and after activating new
16043         chains.
16044
16045         * ext/theora/gsttheoradec.h:
16046         * ext/theora/theoradec.c: (gst_theora_dec_reset),
16047         (theora_get_query_types), (theora_dec_sink_event),
16048         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
16049         (theora_dec_change_state):
16050         Fix frame counter.
16051         Detect and mark DISCONT buffers.
16052
16053         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16054         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
16055         (vorbis_dec_change_state):
16056         * ext/vorbis/vorbisdec.h:
16057         Use GstSegment.
16058         Detect and mark DISCONT buffers.
16059         Don't crash on 0 sized buffers.
16060
16061 2006-05-03  Wim Taymans  <wim@fluendo.com>
16062
16063         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
16064         (volume_transform_ip):
16065         Increase "volume" property to 10.0. Fixes #340369.
16066         Set the process function to NULL when capsnego fails so that
16067         we properly error out.
16068
16069 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16070
16071         * gst/playback/gstplaybin.c: (add_sink):
16072         * gst/playback/test.c: (main):
16073         * gst/playback/test5.c: (dump_element_stats):
16074         * gst/playback/test6.c: (main):
16075           free caps using gst_caps_unref, don't leak caps-strings
16076
16077 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
16078
16079         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
16080         (plugin_init):
16081           Refine musepack typefinding a bit. Return MAXIMUM
16082           probability when we detect stream version 7 to make
16083           sure the mpeg audio typefinder doesn't trump us.
16084
16085 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16086
16087         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
16088           Protect against unexpected NULL strf_data buffer.
16089
16090 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16091
16092         * tests/check/elements/audioconvert.c: (verify_convert),
16093         (GST_START_TEST):
16094           interpret the out[] buffer in the order the bytes are actually
16095           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
16096           Other tests should use BYTE_ORDER since the array is filled in
16097           with actual values
16098
16099 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16100
16101         * tests/check/elements/audioconvert.c: (verify_convert),
16102         (GST_START_TEST):
16103           when a test fails, give an indication of which it is
16104
16105 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16106
16107         * gst-libs/gst/cdda/gstcddabasesrc.c:
16108           compile fix; strtol() needs <stdlib.h>
16109
16110 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16111
16112         * ext/alsa/gstalsamixerelement.c:
16113         * ext/alsa/gstalsasrc.c:
16114         * ext/cdparanoia/gstcdparanoiasrc.c:
16115         * ext/gnomevfs/gstgnomevfssink.c:
16116         * ext/gnomevfs/gstgnomevfssrc.c:
16117         * ext/ogg/gstoggdemux.c:
16118         * ext/ogg/gstoggmux.c:
16119         * ext/ogg/gstoggparse.c:
16120         * ext/ogg/gstogmparse.c:
16121         * ext/pango/gstclockoverlay.c:
16122         * ext/pango/gsttextoverlay.c:
16123         * ext/pango/gsttextrender.c:
16124         * ext/pango/gsttimeoverlay.c:
16125         * ext/theora/theoradec.c:
16126         * ext/theora/theoraenc.c:
16127         * ext/vorbis/vorbisdec.c:
16128         * ext/vorbis/vorbisenc.c:
16129         * gst-libs/gst/audio/gstaudiofilter.c:
16130         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16131         * gst/audioconvert/gstaudioconvert.c:
16132         * gst/audiorate/gstaudiorate.c:
16133         * gst/audioresample/gstaudioresample.c:
16134         * gst/audiotestsrc/gstaudiotestsrc.c:
16135         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16136         * gst/playback/gstdecodebin.c:
16137         * gst/playback/gstplaybin.c:
16138         * gst/playback/gststreamselector.c:
16139         * gst/subparse/gstsubparse.c:
16140         * gst/tcp/gstmultifdsink.c:
16141         * gst/tcp/gsttcpclientsink.c:
16142         * gst/tcp/gsttcpclientsrc.c:
16143         * gst/tcp/gsttcpserversink.c:
16144         * gst/tcp/gsttcpserversrc.c:
16145         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16146         * gst/videorate/gstvideorate.c:
16147         * gst/videoscale/gstvideoscale.c:
16148         * gst/videotestsrc/gstvideotestsrc.c:
16149         * gst/volume/gstvolume.c:
16150         * sys/v4l/gstv4ljpegsrc.c:
16151         * sys/v4l/gstv4lmjpegsink.c:
16152         * sys/v4l/gstv4lmjpegsrc.c:
16153         * sys/v4l/gstv4lsrc.c:
16154         * sys/ximage/ximagesink.c:
16155         * sys/xvimage/xvimagesink.c:
16156         * tests/check/libs/cddabasesrc.c:
16157           make GstElementDetails const
16158
16159 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16160
16161         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
16162         (gst_adder_init):
16163           send events from src-pad to all sink-pads fixes #338657
16164
16165 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16166
16167         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
16168         (alsasink_parse_spec):
16169           query width capabilities from alsa, fixes #338919
16170
16171 2006-04-28  Wim Taymans  <wim@fluendo.com>
16172
16173         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
16174         (gst_multi_fd_sink_remove_client_link):
16175         * gst/tcp/gstmultifdsink.h:
16176         Fix race condition in multifdsink that can lead to spurious 
16177         duplicate clients. this patch adds a new signal that is fired when
16178         multifdsink has removed all references to the fd.
16179         Fixes #339574.
16180         Updated documentation.
16181         API: client-fd-removed signal added
16182
16183 2006-04-28  Michael Smith  <msmith@fluendo.com>
16184
16185         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
16186           When asking g_value_array_new to prealloc elements, we may as well
16187           ask for the right number of elements.
16188
16189 2006-04-28  Wim Taymans  <wim@fluendo.com>
16190
16191         * gst-libs/gst/audio/gstbaseaudiosink.c:
16192         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
16193         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
16194         patch to make timestamp checking more tollerant to rounding 
16195         errors given that real discontinuities are to be marked on
16196         buffers. Fixes some asf files and #338778.
16197         Also avoid some crashers when we receive an event in the 
16198         NULL state.
16199
16200 2006-04-28  Michael Smith  <msmith@fluendo.com>
16201
16202         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
16203         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
16204         (gst_gnome_vfs_src_get_property),
16205         (gst_gnome_vfs_src_send_additional_headers_callback),
16206         (gst_gnome_vfs_src_received_headers_callback),
16207         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
16208         (gst_gnome_vfs_src_stop):
16209         * ext/gnomevfs/gstgnomevfssrc.h:
16210           Remove ICY handling (mostly) from gnomevfssrc, in favour of
16211           proper shared support within icydemux.
16212
16213 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16214
16215         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
16216         (gst_video_rate_swap_prev), (gst_video_rate_chain):
16217           fix up docs
16218           fix a leak when no caps negotiated
16219           fix counting of input frames
16220         * tests/check/elements/.cvsignore:
16221         * tests/check/elements/videorate.c: (assert_videorate_stats),
16222         (GST_START_TEST), (videorate_suite):
16223           add tests for these
16224
16225 2006-04-28  Wim Taymans  <wim@fluendo.com>
16226
16227         * gst-libs/gst/audio/gstringbuffer.c:
16228         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
16229         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
16230         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
16231         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
16232         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
16233         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
16234         (gst_ring_buffer_commit), (gst_ring_buffer_read),
16235         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
16236         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
16237         Check arguments passed to public functions instead of
16238         crashing.
16239
16240 2006-04-28  Wim Taymans  <wim@fluendo.com>
16241
16242         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
16243         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
16244         GstBaseAudioSrc must be live or it does not work.
16245
16246         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
16247         Don't set live to TRUE as this is the default in the parentclass.
16248
16249 2006-04-28  Wim Taymans  <wim@fluendo.com>
16250
16251         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
16252         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
16253         Videoscale doesn't pass on pixel-aspect ratio. Handle all
16254         fixation cases better. Fixes #338991
16255
16256 2006-04-28  Wim Taymans  <wim@fluendo.com>
16257
16258         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
16259         Handle 0/1 framerate correctly Fixes #331901.
16260
16261 2006-04-28  Wim Taymans  <wim@fluendo.com>
16262
16263         * tests/check/elements/audioconvert.c: (get_float_caps),
16264         (GST_START_TEST), (audioconvert_suite):
16265         Added check for correct clipping when doing float samples
16266         in audioconvert.
16267
16268 2006-04-28  Wim Taymans  <wim@fluendo.com>
16269
16270         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
16271         (gst_video_rate_chain):
16272         Print more debugging info.
16273
16274 2006-04-28  Wim Taymans  <wim@fluendo.com>
16275
16276         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
16277         (resample_set_state_from_caps):
16278         Add support for other formats audioresample can handle such as
16279         32 bits in and float and 64 bits float. Fixes #301759
16280
16281 2006-04-28  Wim Taymans  <wim@fluendo.com>
16282
16283         * gst/audioconvert/audioconvert.c: (float):
16284         correctly clip float samples > 1.0. Fixes #338718
16285
16286 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16287
16288         Patch by: Young-Ho Cha  <ganadist at chollian net>
16289
16290         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
16291         (gst_text_overlay_render_text):
16292           Don't strip newlines from the text. Also, center lines
16293           within multi-line paragraphs (#339405).
16294
16295 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16296
16297         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
16298           Fix wavpack typefinding to work in more cases (don't peek
16299           for chunks of multiple hundred kBs at once, but process
16300           things step-by-step in smaller units). Fixes #339786.
16301
16302 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16303
16304         * configure.ac:
16305           back to HEAD
16306
16307 === release 0.10.6 ===
16308
16309 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
16310
16311         * configure.ac:
16312           releasing 0.10.6, "Chao"
16313
16314 2006-04-26  David Schleef  <ds@schleef.org>
16315
16316         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
16317           Fixes #338897.
16318
16319 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16320
16321         * configure.ac:
16322         * win32/common/config.h:
16323           new prerelease
16324
16325 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16326
16327         patch by: Wim Taymans
16328
16329         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
16330         (gst_ogg_demux_perform_seek):
16331           make sure correct newsegments are sent, so that the decoder
16332           and the demuxer agree on timestamps.  Fixes playback of a lot
16333           of Ogg files that do not start from 0.  Fixes #339833.
16334
16335 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16336
16337         Patch by: Edward Hervey  <edward@fluendo.com>
16338
16339         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
16340         * tests/check/Makefile.am:
16341         * tests/check/elements/videorate.c: (assert_videorate_stats),
16342         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
16343         (videorate_suite), (main):
16344           Fix an infinite loop if frames are passed in with wrongly ordered
16345           timestamps.  Fixes #339013.
16346
16347 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16348
16349         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16350
16351         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16352           fix typefinding on some ISO files.  Fixes #339212.
16353
16354 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16355
16356         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16357
16358         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16359           add another H264 fourcc.  Fixes #339047.
16360
16361 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16362
16363         Patch by: Jan Schmidt
16364
16365         * gst/playback/gststreamselector.c:
16366         (gst_stream_selector_bufferalloc):
16367           Restore old StreamSelector behaviour.
16368           Fixes #338419.
16369
16370 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
16371
16372         * configure.ac:
16373         * win32/common/config.h:
16374           prerelease
16375
16376 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16377
16378         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
16379
16380         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16381         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
16382           Fix some memory leaks: on finalize, free buffers left in the queue
16383           before destroying the queue; in _push(), unref rtp_buf even if
16384           the process vfunc returned a NULL buffer as output buffer (#337548);
16385           demote some recuring debug messages to LOG level.
16386
16387 2006-04-11  Wim Taymans  <wim@fluendo.com>
16388
16389         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16390         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16391         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
16392         (gst_ogg_demux_loop):
16393         More cleanups.
16394         Respect segment stop when emiting EOS or SEGMENT_DONE.
16395         Fixes (#337945).
16396
16397 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16398
16399         * gst/playback/gststreamselector.c:
16400         (gst_stream_selector_get_property):
16401           Don't leak pad name.
16402
16403 2006-04-10  Michael Smith  <msmith@fluendo.com>
16404
16405         * tests/check/Makefile.am:
16406         * tests/check/gst-plugins-base.supp:
16407           Suppress an old libtheora bug (fixed in more recent versions), so 
16408           that FC4 buildslaves can pass.
16409
16410 2006-04-10  Wim Taymans  <wim@fluendo.com>
16411
16412         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16413         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16414         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
16415         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
16416         (gst_ogg_demux_loop):
16417         Don't leak events.
16418         Remember what error we got when finding chains, if we
16419         were shutdown, that would not be an error.
16420
16421 2006-04-10  Wim Taymans  <wim@fluendo.com>
16422
16423         * gst-libs/gst/audio/gstbaseaudiosink.c:
16424         (gst_base_audio_sink_event):
16425         Starting the ringbuffer when we did not acquire it can cause
16426         a deadlock, is pointless and causes nasty things for
16427         subclasses. 
16428         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
16429
16430 2006-04-10  Wim Taymans  <wim@fluendo.com>
16431
16432         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16433         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16434         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16435         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
16436         (gst_ogg_demux_deactivate_current_chain),
16437         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16438         (gst_ogg_demux_bisect_forward_serialno),
16439         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
16440         Add some more debugging.
16441
16442 2006-04-10  Wim Taymans  <wim@fluendo.com>
16443
16444         * ext/theora/theoradec.c: (theora_dec_src_event),
16445         (theora_handle_data_packet):
16446         Some more debug info.
16447
16448         * tests/examples/seek/seek.c: (start_seek), (main):
16449         Print element messages too.
16450
16451 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
16452
16453         * gst/audioresample/debug.h:
16454           replace debug macros with variable number of parameters
16455           by a simple alias to gstreamer standard debug macros 
16456          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
16457           supported by MSVC 6.0 and 7.1)
16458         * gst/audioresample/resample.h:
16459           define M_PI and rint for WIN32
16460         * win32/common/libgstaudio.def:
16461         * win32/common/libgstriff.def:
16462         * win32/common/libgsttag.def:
16463         * win32/common/libgstvideo.def:
16464           add new exported functions
16465         * win32/vs6:
16466           update project files
16467
16468 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16469
16470         * ext/alsa/gstalsamixeroptions.c:
16471         (gst_alsa_mixer_options_class_init):
16472         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
16473         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
16474         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
16475         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
16476         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
16477         * gst-libs/gst/audio/gstaudiofilter.c:
16478         (gst_audio_filter_class_init):
16479         * gst-libs/gst/audio/gstaudiosink.c:
16480         (gst_audioringbuffer_class_init):
16481         * gst-libs/gst/audio/gstaudiosrc.c:
16482         (gst_audioringbuffer_class_init):
16483         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
16484         * gst-libs/gst/interfaces/colorbalancechannel.c:
16485         (gst_color_balance_channel_class_init):
16486         * gst-libs/gst/interfaces/mixeroptions.c:
16487         (gst_mixer_options_class_init):
16488         * gst-libs/gst/interfaces/mixertrack.c:
16489         (gst_mixer_track_class_init):
16490         * gst-libs/gst/interfaces/tunerchannel.c:
16491         (gst_tuner_channel_class_init):
16492         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
16493         * gst-libs/gst/netbuffer/gstnetbuffer.c:
16494         (gst_netbuffer_class_init):
16495         * gst-libs/gst/rtp/gstbasertppayload.c:
16496         (gst_basertppayload_class_init):
16497         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
16498         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
16499         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
16500         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
16501         * gst/playback/gststreamselector.c:
16502         (gst_stream_selector_class_init):
16503         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
16504         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
16505         * sys/v4l/gstv4lcolorbalance.c:
16506         (gst_v4l_color_balance_channel_class_init):
16507         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
16508         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
16509         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
16510         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
16511         (gst_v4l_tuner_norm_class_init):
16512         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
16513         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
16514         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
16515         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
16516
16517 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16518
16519         * ext/pango/gsttextrender.h:
16520         * gst-libs/gst/audio/gstaudiosink.h:
16521         * gst-libs/gst/audio/gstaudiosrc.h:
16522         * gst-libs/gst/audio/gstbaseaudiosink.h:
16523         * gst-libs/gst/audio/gstbaseaudiosrc.h:
16524         * gst-libs/gst/audio/gstringbuffer.h:
16525         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16526         * gst-libs/gst/rtp/gstbasertppayload.h:
16527         * gst-libs/gst/video/gstvideofilter.h:
16528         * gst-libs/gst/video/gstvideosink.h:
16529         * gst/playback/gstplaybasebin.h:
16530         * gst/tcp/gstmultifdsink.h:
16531         * sys/v4l/gstv4lelement.h:
16532         Fix broken GObject macros
16533
16534 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16535
16536         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
16537         More debug to trace why my USB headset is not working with gst
16538
16539 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16540
16541         * gst/playback/gstplaybasebin.c: (group_destroy):
16542         Clean up our group elements properly in the case where it never 
16543         got committed - it still got added unconditionally to the bin.
16544
16545 2006-04-07  Wim Taymans  <wim@fluendo.com>
16546
16547         * ext/theora/theoradec.c: (theora_dec_sink_event),
16548         (theora_handle_data_packet), (theora_dec_chain):
16549         Unref unhandled events.
16550         Protect against empty buffers.
16551         Perform QoS on running time.
16552
16553 2006-04-07  Michael Smith  <msmith@fluendo.com>
16554
16555         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
16556         (gst_vorbis_enc_chain):
16557           Remove leaks from vorbisenc.
16558           Mostly minor changes, the only significant one is that now the
16559           buffers we set as 'streamheader' on the caps are copies of the
16560           original buffers, to avoid circular refcounting problems.
16561
16562 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16563
16564         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
16565           Don't remove our mute-probe if someone else already did so.
16566           Don't set a 2nd one if there is already one pending on the pad.
16567
16568         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
16569         (do_playbin_seek):
16570           When a seek fails, ensure that playbin is still set back to playing.
16571           
16572         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
16573         (mpeg_ts_type_find), (plugin_init):
16574           Add a typefind function for mpeg-ts streams. (Closes: #336617)
16575
16576 2006-04-06  Andy Wingo  <wingo@pobox.com>
16577
16578         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
16579         (gst_video_rate_init): Caps-related parameters should not be reset
16580         by a flush -- move their inits to the instance init function.
16581         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
16582         is not OK, just return the result.
16583
16584         * gst/audiotestsrc/gstaudiotestsrc.c
16585         (gst_audio_test_src_class_init)
16586         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
16587         broken by Stefan's commit on 24 March.
16588
16589         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
16590         buffers being pushed out. Fixes oggmux ! multifdsink.
16591
16592 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
16593
16594         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
16595         (gst_vorbis_dec_init), (vorbis_dec_finalize):
16596         * ext/vorbis/vorbisdec.h:
16597         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
16598         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
16599         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
16600         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
16601         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
16602         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
16603         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
16604         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
16605         (gst_vorbis_enc_buffer_from_packet),
16606         (gst_vorbis_enc_buffer_from_header_packet),
16607         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
16608         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
16609         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
16610         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
16611         (gst_vorbis_enc_change_state):
16612         * ext/vorbis/vorbisenc.h:
16613           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
16614           vorbisenc adhere to the official nomenclature; use boilerplate
16615           macro.
16616
16617 2006-04-04  Andy Wingo  <wingo@pobox.com>
16618
16619         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16620         Whoops, fix bug introduced. Bad hacker!
16621         
16622         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16623         Properly handle the case where you get EOS before any buffers are
16624         received. Use gst_buffer_make_metadata_writable where appropriate.
16625
16626         * ext/theora/theoradec.c (theora_handle_data_packet): This value
16627         is often negative -- make it signed so as not to wrap around.
16628         Fixes segfaults introduced on 9 March.
16629
16630 2006-04-03  Wim Taymans  <wim@fluendo.com>
16631
16632         * ext/theora/gsttheoradec.h:
16633         * ext/theora/theoradec.c: (theora_dec_src_event):
16634         Don't try to store a gdouble in a gboolean.
16635         Small cleanups.
16636
16637 2006-04-03  Michael Smith  <msmith@fluendo.com>
16638
16639         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
16640           Oggmux sucks.
16641           Make it suck slightly less by writing out the final page.
16642           Still can't encode a vorbis-in-ogg file correctly, though.
16643
16644 2006-04-03  Andy Wingo  <wingo@pobox.com>
16645
16646         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
16647         a g_print.
16648
16649         * ext/theora/theora.c (plugin_init): Register theoraparse.
16650
16651         * ext/theora/gsttheoraparse.h: 
16652         * ext/theora/theoraparse.c: New files implementing a theora
16653         parser. Now we can properly remux ogg/theora+vorbis, yay.
16654
16655         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
16656
16657 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16658
16659         * gst/audiotestsrc/gstaudiotestsrc.c:
16660           Fixed the sample pipeline (see #323798)
16661
16662 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16663
16664         * configure.ac:
16665         * win32/common/config.h:
16666         * win32/common/config.h.in:
16667           use AS_VERSION and AS_NANO
16668           more cleanups
16669
16670 2006-03-31  Andy Wingo  <wingo@pobox.com>
16671
16672         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
16673         uninitialized variable return that would happen.
16674         
16675         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
16676         uninitialized variable return that would never happen.
16677
16678         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
16679         (vorbis_parse_sink_event): Add an event function to flush our
16680         state on a seek, and to drain buffers on a premature EOS.
16681         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
16682         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
16683         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
16684         (vorbis_parse_drain_queue): Queue up buffers until we can set
16685         their timestamps and granulepos values.
16686
16687         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
16688         and keep track of data needed for deriving granulepos and
16689         timestamps for buffers.
16690
16691 2006-03-29  Wim Taymans  <wim@fluendo.com>
16692
16693         Patch by: j^ <j at bootlab dot org>
16694
16695         * ext/alsa/gstalsamixerelement.c:
16696         (gst_alsa_mixer_element_class_init):
16697         * ext/alsa/gstalsasink.c:
16698         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
16699         * ext/ogg/gstoggdemux.c:
16700         * ext/ogg/gstoggmux.c:
16701         * ext/ogg/gstoggparse.c:
16702         * ext/pango/gstclockoverlay.c:
16703         * ext/pango/gsttextoverlay.c:
16704         * ext/pango/gsttextrender.c:
16705         * ext/pango/gsttimeoverlay.c:
16706         * ext/theora/theoradec.c:
16707         * ext/theora/theoraenc.c:
16708         * ext/vorbis/vorbisdec.c:
16709         * ext/vorbis/vorbisenc.c:
16710         * gst/audioconvert/gstaudioconvert.c:
16711         * gst/subparse/gstsubparse.c:
16712         * gst/tcp/gstmultifdsink.c:
16713         * gst/tcp/gsttcpclientsink.c:
16714         * gst/tcp/gsttcpclientsrc.c:
16715         * gst/tcp/gsttcpserversink.c:
16716         * gst/tcp/gsttcpserversrc.c:
16717           better/unified long descriptions
16718           Fixes #336477
16719
16720 2006-03-29  Wim Taymans  <wim@fluendo.com>
16721
16722         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
16723         (stop_seek):
16724         Don't let double and triple clicks mess up our state.
16725
16726 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16727
16728         * gst/playback/gstplaybin.c: (gen_video_element),
16729         (gen_text_element), (gen_audio_element), (gen_vis_element):
16730           Error out gracefully when we can't create any of the usual
16731           conversion elements for some reason. Also, don't try to
16732           create an audioscale (sic) element that's not used anyway.
16733
16734 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16735
16736         * gst/playback/gstplaybasebin.c: (setup_source):
16737           Don't post RESOURCE_NOT_FOUND error when we can't find a source
16738           element for a particular protocol, that's confusing for users.
16739           Instead, post a RESOURCE_FAILED error, so that our own error
16740           message is actually shown in totem etc. (#336303).
16741
16742 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16743
16744         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16745
16746         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
16747         (gst_gnome_vfs_src_get_icy_metadata):
16748           Fix some minor memory leaks (#336194).
16749
16750 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16751
16752         * ext/gnomevfs/gstgnomevfs.c:
16753         (gst_gnome_vfs_location_to_uri_string):
16754         * ext/gnomevfs/gstgnomevfs.h:
16755         * ext/gnomevfs/gstgnomevfssink.c:
16756         (gst_gnome_vfs_sink_set_property):
16757         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
16758           Make gnomevfssink accept filenames as well as URIs for the
16759           "location" property, just like gnomevfssrc does (and
16760           filesrc/filesink do) (#336190).
16761
16762 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16763
16764         * tests/check/generic/clock-selection.c: (GST_START_TEST):
16765           set to NULL before unreffing, fixes a valgrind leak.
16766           Why was this not triggering the error that an object needs to
16767           be NULL before unreffing ?
16768         * win32/common/config.h:
16769           update
16770
16771 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
16772
16773         * gst/subparse/gstsubparse.c: (convert_encoding),
16774         (gst_sub_parse_change_state):
16775         * gst/subparse/gstsubparse.h:
16776           Text subtitle files may or may not be UTF-8. If it's not, we
16777           don't really want to see '?' characters in place of non-ASCII
16778           characters like accented characters. So let's assume the input
16779           is UTF-8 until we come across text that is clearly not. If it's
16780           not UTF-8, we don't really know what it is, so try the following:
16781           (a) see whether the GST_SUBTITLE_ENCODING environment variable
16782           is set; if not, check (b) if the current locale encoding is
16783           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
16784           the current locale encoding is UTF-8 and the environment variable
16785           was not set to any particular encoding. Not perfect, but better
16786           than nothing (and better than before, I think) (fixes #172848).
16787
16788 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16789
16790         * configure.ac:
16791           update core requirement to 0.10.4.1 because of async_playback
16792           vmethod on GstBaseSink
16793
16794 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16795
16796         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
16797         * gst/adder/gstadder.c: (gst_adder_init):
16798         use DEBUG_FUNCPTR for collectpads
16799
16800 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16801
16802         * docs/plugins/Makefile.am:
16803         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16804         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16805         * ext/cdparanoia/gstcdparanoiasrc.c:
16806         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
16807         (gst_gnome_vfs_sink_class_init):
16808         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
16809         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
16810         * ext/ogg/gstoggmux.c:
16811         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
16812         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
16813         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
16814         * ext/pango/gsttextoverlay.c:
16815         * ext/pango/gsttextrender.c:
16816         * ext/theora/theoradec.c:
16817         * ext/theora/theoraenc.c:
16818         * ext/vorbis/vorbisdec.c:
16819         * ext/vorbis/vorbisenc.c:
16820         * gst-libs/gst/audio/gstaudiofilter.c:
16821         (gst_audio_filter_base_init):
16822         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16823         (gst_audio_filter_template_base_init):
16824         * gst/adder/gstadder.c: (gst_adder_get_type):
16825         * gst/adder/gstadder.h:
16826         * gst/audioconvert/gstaudioconvert.c:
16827         * gst/audiotestsrc/gstaudiotestsrc.c:
16828         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
16829         (gst_audio_test_src_create):
16830         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16831         * gst/playback/gstdecodebin.c:
16832         * gst/playback/gstplaybin.c:
16833         * gst/playback/gststreamselector.c:
16834         (gst_stream_selector_base_init):
16835         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
16836         * gst/volume/gstvolume.c:
16837         * sys/v4l/gstv4lmjpegsink.c:
16838         * sys/v4l/gstv4lmjpegsrc.c:
16839         * tests/check/libs/cddabasesrc.c:
16840         * tests/old/examples/gob/gst-identity2.gob:
16841           Add docs for adder, use GST_ELEMENT_DETAILS macro,
16842           define GstElementDetails at the top
16843
16844 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
16845
16846         * win32/common/libgstinterfaces.def:
16847         Add a lot of export functions for gst-python
16848         * win32/vs6/libgstinterfaces.dsp:
16849         Add a missing include folder in the project configuration
16850         
16851 2006-03-23  Wim Taymans  <wim@fluendo.com>
16852
16853         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16854         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16855         (gst_base_audio_src_change_state):
16856         Fix audio sources, forgot to make the ringbuffer
16857         startable...
16858
16859 2006-03-23  Wim Taymans  <wim@fluendo.com>
16860
16861         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16862         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16863         (gst_base_audio_src_change_state):
16864         unparent instead of unref the ringbuffer.
16865
16866 2006-03-23  Wim Taymans  <wim@fluendo.com>
16867
16868         * gst-libs/gst/audio/gstbaseaudiosink.c:
16869         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
16870         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
16871         Implement new async_play vmethod to start slaving and allow
16872         playback start in case of async PLAY state changes. 
16873
16874         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16875         Enable QoS with new method in base class.
16876
16877 2006-03-23  Wim Taymans  <wim@fluendo.com>
16878
16879         Patch by: Julien MOUTTE <julien at moutte dot net>
16880
16881         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
16882         (gst_video_test_src_do_seek), (gst_video_test_src_create):
16883         Partially handle 0 framerate, only EOS after the first frame
16884         is missing.
16885
16886 2006-03-23  Wim Taymans  <wim@fluendo.com>
16887
16888         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
16889
16890         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16891         (gst_riff_create_video_template_caps):
16892         * gst/ffmpegcolorspace/avcodec.h:
16893         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16894         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16895         (gst_ffmpegcsp_avpicture_fill):
16896         * gst/ffmpegcolorspace/imgconvert.c:
16897         Patch for support of YVU9 AVI files (#334822)
16898
16899 2006-03-22  Edward Hervey  <edward@fluendo.com>
16900
16901         * docs/design/design-decodebin.txt:
16902         Added design document for new decodebin
16903         (Target Caps): text/x-pango-markup is also a default target caps.
16904
16905 2006-03-22  Wim Taymans  <wim@fluendo.com>
16906
16907         * gst-libs/gst/audio/gstbaseaudiosink.c:
16908         (gst_base_audio_sink_dispose):
16909         Since we _parent the ringbuffer, we also need to
16910         _unparent instead of a plain _unref.
16911
16912 2006-03-22  Wim Taymans  <wim@fluendo.com>
16913
16914         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
16915         (stop_seek), (scrub_toggle_cb), (main):
16916         Add scrub checkbox.
16917
16918 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
16919
16920         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
16921         (gst_ogg_parse_chain):
16922           Fix very inefficient usage of linked lists (#335365).
16923
16924 2006-03-21  Edward Hervey  <edward@fluendo.com>
16925
16926         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
16927         * gst/playback/gstplaybin.c: (handoff):
16928         * gst/playback/gststreamselector.c:
16929         (gst_stream_selector_set_property):
16930         gcc 4.1 unreferenced pointer fixes.
16931         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
16932         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
16933         gst_buffer_ref() now takes a GstBuffer*.
16934
16935 2006-03-20  Julien MOUTTE  <julien@moutte.net>
16936
16937         * sys/xvimage/xvimagesink.c:
16938         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
16939         by Jan Schmidt.
16940
16941 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
16942
16943         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
16944         (id3v1_type_find), (apetag_type_find), (plugin_init):
16945           Can't do tag preferences via probability, as tags would then
16946           lose against types that are recognised with MAXIMUM probability
16947           (like .wav); so let all tag typefinders return MAXIMUM themselves
16948           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
16949           that we can prefer APE to ID3v1 (fixes #335028).
16950           
16951 2006-03-17  Wim Taymans  <wim@fluendo.com>
16952
16953         * gst-libs/gst/audio/gstbaseaudiosink.c:
16954         (gst_base_audio_sink_change_state):
16955         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
16956         (gst_ring_buffer_may_start):
16957         * gst-libs/gst/audio/gstringbuffer.h:
16958         Only start playback if we are playing.
16959         should fix #330748.
16960
16961 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
16962
16963         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
16964         * win32/common/config.h:
16965           Revert accidental commits to these files.
16966
16967 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16968
16969         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16970
16971         * tests/Makefile.am:
16972           Don't try to build tests in tests/icles if we
16973           don't have X (#323852)
16974
16975 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16976
16977         * gst-libs/gst/tag/gstid3tag.c:
16978           Add TXXX frame identifiers for replaygain stuff as used
16979           by some taggers (see #323721).
16980
16981 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
16982
16983         * gst/playback/gststreamselector.c:
16984         (gst_stream_selector_set_property),
16985         (gst_stream_selector_bufferalloc):
16986           Preserve the existing buggy streamselector behaviour by performing
16987           a fallback buffer allocation when downstream isn't linked yet.
16988           This should really be fixed in playbin by blocking pads until it's
16989           linked them.
16990           Also, use gst_pad_alloc_buffer instead of
16991           gst_pad_alloc_buffer_and_set.
16992
16993 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16994
16995         * gst-libs/gst/tag/gstid3tag.c:
16996           Don't crash on unknown ID3v2 TXXX frames.
16997           
16998 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
16999
17000         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
17001           Chain up to the parent finalize method.
17002           Add 32-bit sample size to the template caps.
17003
17004         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17005         (gst_riff_create_video_template_caps):
17006           Add the fourcc that the VMWare codec uses.
17007           
17008         * gst/playback/gststreamselector.c:
17009         (gst_stream_selector_set_property),
17010         (gst_stream_selector_bufferalloc),
17011         (gst_stream_selector_request_new_pad):
17012           For the active pad, forward buffer-alloc requests, otherwise
17013           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
17014           having to memcpy every frame when used by playbin.
17015
17016         * gst/tcp/gstmultifdsink.c:
17017         (gst_multi_fd_sink_handle_client_write):
17018           Get negotiated caps from the sink pad, rather than the sink
17019           pad's peer.
17020
17021 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17022
17023         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17024         
17025         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
17026           Don't forget to set src->callbacks_pushed to FALSE again when
17027           popping them, otherwise re-activation in a different mode won't
17028           work (#334620).
17029
17030 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17031
17032         Patch by: Sebastien Moutte  <sebastien moutte net>
17033
17034         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
17035         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
17036         (gst_ffmpeg_smpfmt_to_caps):
17037           Replace __VA_ARGS__ caps creation macros with varargs functions.
17038           Makes things compile on MSVC (#320765), looks nicer, and we can
17039           tell the compiler to check for the NULL terminator.
17040
17041 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17042
17043         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17044
17045         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17046           Make sure the buffer we copy into is really always big
17047           enough, this time for real (#333488).
17048           
17049 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17050
17051         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17052           Add support for 24bpp DIB (#305279).
17053
17054 2006-03-14  Wim Taymans  <wim@fluendo.com>
17055
17056         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
17057         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17058         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
17059         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
17060         (gst_video_scale_init), (gst_video_scale_src_event):
17061         Re-enable QoS after the release.
17062         Rework videoscale to use the base class src_event handler.
17063
17064 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17065
17066         * configure.ac:
17067           back to CVS.
17068
17069 === release 0.10.5 ===
17070
17071 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
17072
17073         * configure.ac:
17074           releasing 0.10.5, "Net"
17075
17076 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
17077
17078         * docs/plugins/Makefile.am:
17079           Part of previous cdparanoiasrc docs fixes, forgot to commit.
17080           
17081 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
17082
17083         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17084         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17085         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17086           Add cdparanoiasrc to docs.
17087
17088         * gst-libs/gst/cdda/gstcddabasesrc.c:
17089           More GstCddaBaseSrc docs.
17090
17091 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
17092
17093         * docs/libs/gst-plugins-base-libs-sections.txt:
17094         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
17095         * gst-libs/gst/tag/tag.h:
17096           API: libgsttag: new method gst_tag_from_id3_user_tag().
17097
17098 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
17099
17100         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17101           NULL-terminate array of mpeg4 video file extensions.
17102           Fixes crash on PPC (#334226).
17103
17104 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
17105
17106         * ext/gnomevfs/gstgnomevfssrc.c:
17107         (gst_gnome_vfs_src_check_get_range):
17108           gnome_vfs_uri_is_local() alone is not a good indicator
17109           whether we can operate in pull-mode with a specific URI,
17110           as it returns FALSE for file:// URIs that point to an
17111           NFS-mounted path. Be more conservative here: whitelist
17112           local files, blacklist http URIs and use the old
17113           mechanism for anything else (fixes #334216).
17114
17115 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17116
17117         * configure.ac:
17118           back to trunk
17119
17120 === release 0.10.4 ===
17121
17122 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
17123
17124         * configure.ac:
17125           releasing 0.10.4, "Power"
17126
17127 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
17128
17129         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17130         Disable max-lateness by setting it to -1 for now, so that 
17131         we can bed QoS stuff in thoroughly between now and the next
17132         release.
17133
17134 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
17135
17136         Patch by: Fabrizio Gennari
17137
17138         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17139           Make sure we don't read beyond the palette buffer in case of
17140           broken or manipulated files (#333488)
17141
17142 2006-03-10  Edward Hervey  <edward@fluendo.com>
17143
17144         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
17145         Fix for variable not initialized.
17146
17147 2006-03-09  Wim Taymans  <wim@fluendo.com>
17148
17149         * ext/libvisual/visual.c: (gst_visual_get_type),
17150         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
17151         (gst_visual_chain):
17152         Small cleanups.
17153
17154         * ext/theora/gsttheoradec.h:
17155         * ext/theora/theoradec.c: (gst_theora_dec_init),
17156         (gst_theora_dec_reset), (_theora_granule_time),
17157         (theora_dec_src_convert), (theora_dec_sink_convert),
17158         (theora_dec_src_query), (theora_dec_src_event),
17159         (theora_dec_sink_event), (theora_handle_comment_packet),
17160         (theora_handle_header_packet), (theora_dec_push),
17161         (theora_handle_data_packet), (theora_dec_chain),
17162         (theora_dec_change_state):
17163         Add simple QoS.
17164
17165 2006-03-09  Wim Taymans  <wim@fluendo.com>
17166
17167         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
17168         (audiocast_register_listener), (gst_gnome_vfs_src_start):
17169         Some cleanups.
17170
17171 2006-03-09  Wim Taymans  <wim@fluendo.com>
17172
17173         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
17174         Don't try to activate NULL chains.
17175
17176 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17177
17178         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
17179           Fix invalid memory access to region before peek'd data (#332964).
17180
17181 2006-03-09  Wim Taymans  <wim@fluendo.com>
17182
17183         Patch by: Christophe Fergeau
17184
17185         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
17186         * ext/pango/gsttextrender.c: (gst_text_render_init):
17187         * gst/adder/gstadder.c: (gst_adder_init):
17188         Don't leak padtemplates, closes #333510.
17189
17190 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17191
17192         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17193           Fix invalid memory access: make sure string passed to
17194           regexec() is NUL-termianted.
17195
17196 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17197
17198         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
17199         (mp3_type_find):
17200           Refactor mpeg/audio typefinding to make it more maintainable
17201           and easier to fine-tune. Make probing into middle of the file
17202           work properly (fixes #333900, also see #152688).
17203
17204 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17205
17206         * gst/typefind/gsttypefindfunctions.c:
17207         (utf8_type_find_have_valid_utf8_at_offset):
17208           Remove part from previous commit that was bogus:
17209           g_utf8_validate() does in fact not accept embedded
17210           zeroes, so we don't need to check for those (thanks
17211           to Mike for the hint).
17212
17213 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17214
17215         * gst/typefind/gsttypefindfunctions.c:
17216         (utf8_type_find_count_embedded_zeroes),
17217         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
17218           Make plain/text typefinder more conservative: firstly, check
17219           for embedded zeroes, which are perfectly valid UTF-8 characters,
17220           but also a fairly good sign that something is not a plain text
17221           file; secondly, probe into the middle of the file if possible.
17222           If we can't probe into the middle, limit the probability value
17223           to be returned to TYPE_FIND_POSSIBLE (see #333900).
17224
17225 2006-03-08  Michael Smith  <msmith@fluendo.com>
17226
17227         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17228           Make typefind function name for mpeg4 video unique.
17229
17230 2006-03-08  Wim Taymans  <wim@fluendo.com>
17231
17232         * ext/libvisual/visual.c: (gst_visual_init),
17233         (gst_visual_clear_actors), (gst_visual_dispose),
17234         (gst_visual_reset), (gst_visual_src_setcaps),
17235         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
17236         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
17237         (gst_visual_chain), (gst_visual_change_state):
17238         Cleanups, post nice errors.
17239         Handle sink and src events.
17240         Implement simple QoS.
17241
17242         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17243         Use new basesink methods to configure max-lateness.
17244         Small doc update.
17245
17246         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17247         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
17248         Debug statement cleanups.
17249
17250         * gst/volume/gstvolume.c: (gst_volume_class_init):
17251         Simple cleanup.
17252
17253 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17254
17255         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
17256         (gst_text_overlay_init), (gst_text_overlay_set_property),
17257         (gst_text_overlay_get_property):
17258           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
17259           as string type properties, but mark them deprecated. Add
17260           'halignment' and 'valignment' properties that use enums
17261           instead of strings.
17262
17263 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17264
17265         Patch by: Fabrizio Gennari
17266
17267         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17268           Allow palettes with less than 256 colours in AVI files
17269           (#333488)
17270
17271 2006-03-07  Julien MOUTTE  <julien@moutte.net>
17272
17273         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
17274         (gst_text_overlay_video_event): Fix wrong EOS handling on text
17275         pad. We were releasing the queued text buffer when we should keep
17276         it until video pad gets EOS or discard the text buffer because it's
17277         too old. That was eating the last subtitle buffer. Add some more
17278         debug.
17279
17280 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17281
17282         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
17283         (gst_text_overlay_video_chain):
17284           Fix invalid memory access (we can't access a buffer after it's been
17285           pushed downstream without taking a reference); fix memory leak (if
17286           there's no text to render, bail out before allocating stuff).
17287
17288 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17289
17290         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
17291         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
17292         * ext/pango/gsttextoverlay.h:
17293           If input is plain text, escape it before passing it to
17294           pango_layout_set_markup().
17295
17296 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17297
17298         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
17299           Don't ignore flow return from gst_pad_push().
17300
17301 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17302
17303         Patch by: Fabrizio Gennari
17304
17305         * ext/libvisual/visual.c: (gst_visual_getcaps),
17306         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
17307         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
17308         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17309         (gst_vorbisenc_convert_sink):
17310         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
17311         (gst_audio_duration_from_pad_buffer):
17312         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
17313         (gst_audio_filter_chain):
17314         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17315         (gst_base_rtp_depayload_setcaps):
17316         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
17317         (gst_video_get_size):
17318         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
17319           Don't leak references returned by gst_pad_get_parent()
17320           (#333663)
17321
17322 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
17323
17324         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17325           change location param details
17326         * gst/volume/gstvolume.c: (plugin_init):
17327           correct plugin description
17328
17329 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17330
17331         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
17332         (gst_gnome_vfs_src_check_get_range):
17333           Override GstBaseSrc::check_get_range() in order to avoid opening
17334           the resource just to check whether we can operate in pull-mode or
17335           not - we can predict that pretty well from the URI alone. Should
17336           fix problems with last.fm (#331690). (Requires latest core CVS).
17337
17338 2006-03-06  Wim Taymans  <wim@fluendo.com>
17339
17340         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
17341         (gst_video_sink_class_init):
17342         Throw away frames that are later than 20 ms.
17343
17344 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17345
17346         Patch by: Fabrizio Gennari
17347
17348         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17349           Set depth on WMA caps (#333545)
17350
17351 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17352
17353         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17354         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
17355           put Theora BOS pages before others.  This hardcodes
17356           the Ogg/Theora I profile, but hey.
17357
17358 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17359
17360         * ext/ogg/README:
17361           updated with some examples
17362         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
17363         (granulepos_add), (theora_buffer_from_packet):
17364         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
17365         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
17366         (gst_vorbisenc_chain):
17367           implement strategy from ext/ogg/README
17368         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17369         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17370         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
17371         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
17372           Fix muxer so that oggz-validate is happy with all streams;
17373           except for no eos mark, and the BOS page ordering
17374         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17375         (check_buffer_granulepos):
17376         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
17377           update tests to check for OFFSET being set as requested
17378           fixed type of granulepos, it's not a ClockTime
17379
17380 2006-03-05  Julien MOUTTE  <julien@moutte.net>
17381
17382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17383         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
17384         Check that the xvimage we are creating has a correct size
17385         before returning it. (#314897)
17386
17387 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17388
17389         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17390           Give id3 and ape tag typefinders a rank slightly higher
17391           than PRIMARY to ensure they're always run before any of
17392           the other typefinders (in particular wav and mp3) (#324186).
17393
17394 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17395
17396         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17397           Add support for '3IVD' fourcc (#333403).
17398
17399 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
17400
17401         * configure.ac:
17402           Bump requirements to GStreamer CVS for the new error enum.
17403
17404         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
17405           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
17406           space left on the device (fixes #333352).
17407
17408 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
17409
17410         * win32/vs6:
17411           add a project file for libgstvolume
17412           update the workspace
17413
17414 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17415
17416         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
17417         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17418         (GST_START_TEST):
17419           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
17420           Set IN_CAPS on header buffers
17421
17422 2006-03-02  Wim Taymans  <wim@fluendo.com>
17423
17424         * docs/plugins/Makefile.am:
17425         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17426         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17427         Add audioresample to docs.
17428
17429         * gst/audioconvert/gstaudioconvert.c:
17430         Add revision date.
17431
17432         * gst/audioresample/gstaudioresample.c:
17433         (gst_audioresample_base_init), (gst_audioresample_class_init),
17434         (gst_audioresample_init), (gst_audioresample_dispose),
17435         (audioresample_get_unit_size), (audioresample_transform_caps),
17436         (resample_set_state_from_caps), (audioresample_transform_size),
17437         (audioresample_set_caps), (audioresample_event),
17438         (audioresample_do_output), (audioresample_transform),
17439         (audioresample_pushthrough), (gst_audioresample_set_property),
17440         (gst_audioresample_get_property), (plugin_init):
17441         * gst/audioresample/gstaudioresample.h:
17442         Added docs.
17443         Small code cleanups.
17444
17445 2006-03-02  Wim Taymans  <wim@fluendo.com>
17446
17447         * docs/plugins/Makefile.am:
17448         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17449         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17450         Added videoscale to docs.
17451
17452         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
17453         (gst_video_rate_swap_prev), (gst_video_rate_event),
17454         (gst_video_rate_chain):
17455         Fix typo in docs.
17456
17457         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
17458         (gst_video_scale_init), (gst_video_scale_prepare_size),
17459         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
17460         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
17461         * gst/videoscale/gstvideoscale.h:
17462         Added docs, examples.
17463         Some code cleanups.
17464         Post errors instead of g_warning.
17465
17466 2006-03-02  Wim Taymans  <wim@fluendo.com>
17467
17468         * docs/libs/gst-plugins-base-libs-docs.sgml:
17469         * docs/libs/gst-plugins-base-libs-sections.txt:
17470         * docs/libs/gst-plugins-base-libs.types:
17471         * docs/plugins/Makefile.am:
17472         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17473         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17474         Added some more docs to libs and plugins.
17475
17476         * gst-libs/gst/audio/gstringbuffer.c:
17477         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
17478         * gst-libs/gst/audio/gstringbuffer.h:
17479         Document ringbuffer some more.
17480
17481         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
17482         (gst_video_rate_setcaps), (gst_video_rate_reset),
17483         (gst_video_rate_init), (gst_video_rate_flush_prev),
17484         (gst_video_rate_swap_prev), (gst_video_rate_event),
17485         (gst_video_rate_chain), (gst_video_rate_change_state):
17486         * gst/videorate/gstvideorate.h:
17487         Fix videorate to use segments.
17488         Make it work with 0/1 framerates (closes #331903)
17489         Handle EOS correctly.
17490         Added docs.
17491
17492 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17493
17494         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
17495         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
17496         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
17497           In state change function, first chain up to parent class,
17498           then handle downwards state change stuff. Remove some
17499           commented out cruft from 0.8 code.
17500
17501 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17502
17503         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
17504         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
17505         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
17506         (gst_ogm_parse_chain):
17507           Don't remove/re-add source pad if the new caps are the same as
17508           the old caps anyway (#333042). When removing source pad, don't
17509           unref it afterwards - we didn't ref it when adding. Sprinkle some
17510           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
17511           after using gst_pad_get_parent(). Return downstream flow return
17512           value in chain function.
17513
17514 2006-03-02  Wim Taymans  <wim@fluendo.com>
17515
17516         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17517         * docs/plugins/gst-plugins-base-plugins.args:
17518         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17519         * docs/plugins/gst-plugins-base-plugins.interfaces:
17520         * docs/plugins/gst-plugins-base-plugins.signals:
17521         Fix hierarchy, added some more elements to the docs.
17522
17523         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17524         (gst_ffmpegcsp_get_type):
17525         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17526         Fix docs for ffmpegcolorspace.
17527
17528 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
17529
17530         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
17531         (apetag_type_find), (ape_type_find), (plugin_init):
17532           Some typefinding fine-tuning:
17533           - rank ID3/APE tags in order of preference via probabilities, so that
17534             ID3v2 > APEv2 > APEv1 > ID3v1.
17535           - three or four bytes don't really justify MAXIMUM probability,
17536             change those to 'very likely' (musepack and monkeysaudio).
17537
17538 2006-03-01  Wim Taymans  <wim@fluendo.com>
17539
17540         * docs/plugins/Makefile.am:
17541         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17542         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17543         * ext/alsa/gstalsamixer.c:
17544         * ext/alsa/gstalsamixer.h:
17545         * ext/alsa/gstalsamixerelement.c:
17546         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
17547         * ext/alsa/gstalsamixerelement.h:
17548         * ext/alsa/gstalsasink.c:
17549         * ext/alsa/gstalsasink.h:
17550         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
17551         (gst_alsasrc_init):
17552         * ext/alsa/gstalsasrc.h:
17553         Added alsa docs.
17554         Small code cleanups.
17555
17556 2006-03-01  Wim Taymans  <wim@fluendo.com>
17557
17558         * ext/theora/Makefile.am:
17559         Dist new header too,
17560
17561 2006-03-01  Wim Taymans  <wim@fluendo.com>
17562
17563         * docs/plugins/Makefile.am:
17564         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17565         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17566         * ext/gnomevfs/gstgnomevfssink.h:
17567         * ext/gnomevfs/gstgnomevfssrc.h:
17568         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
17569         * ext/vorbis/vorbisdec.h:
17570         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
17571         * ext/vorbis/vorbisenc.h:
17572         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
17573         (vorbis_parse_chain), (vorbis_parse_change_state):
17574         * ext/vorbis/vorbisparse.h:
17575         * gst/audioconvert/gstaudioconvert.h:
17576         * gst/tcp/gsttcpserversink.h:
17577         * gst/videotestsrc/gstvideotestsrc.c:
17578         * gst/videotestsrc/gstvideotestsrc.h:
17579         * gst/volume/gstvolume.c:
17580         * gst/volume/gstvolume.h:
17581         Fix some more docs.
17582         Added docs for vorbisdec and vorbisparse.
17583         Fix vorbisparse.
17584
17585 2006-03-01  Wim Taymans  <wim@fluendo.com>
17586
17587         * docs/plugins/Makefile.am:
17588         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17589         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17590         * ext/pango/gstclockoverlay.h:
17591         * ext/pango/gsttextoverlay.h:
17592         * ext/pango/gsttextrender.h:
17593         * ext/pango/gsttimeoverlay.h:
17594         * ext/theora/gsttheoradec.h:
17595         * ext/theora/gsttheoraenc.h:
17596         * ext/theora/theoradec.c:
17597         * ext/theora/theoraenc.c:
17598         * gst/audioconvert/gstaudioconvert.h:
17599         * gst/audiotestsrc/gstaudiotestsrc.h:
17600         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17601         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
17602         * gst/tcp/gstmultifdsink.h:
17603         Updated/added documentation.
17604
17605         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
17606         (gst_text_overlay_halign_get_type),
17607         (gst_text_overlay_wrap_mode_get_type),
17608         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
17609         (gst_text_overlay_init), (gst_text_overlay_set_property),
17610         (gst_text_overlay_get_property):
17611         Fix up properties to be enums instead of string to make bindings,
17612         introspection and automatic GUI creation possible.
17613         Add getters for the properties.
17614
17615 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
17616
17617         * gst/audiotestsrc/gstaudiotestsrc.c:
17618           added defines of M_PI and M_PI_2
17619         * gst/ffmpegcolorspace/avcodec.h:
17620           removed #include "stdint.h" for win32 as _stdint.h is 
17621           autogenerated to win32/common
17622         * win32/common/libgstaudio.def:
17623         * win32/common/libgsttag.def:
17624           added some exports
17625         * win32/vs6:
17626           some project files bugs corrected
17627         * win32/vs7:
17628           project files are reset to the default vs7 configuration 
17629           (they link to msvcr71.dll using default optimizations)
17630           
17631 2006-02-28  Wim Taymans  <wim@fluendo.com>
17632
17633         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17634         Fix some docs.
17635
17636 2006-02-28  Edward Hervey  <edward@fluendo.com>
17637
17638         * ext/alsa/gstalsasrc.c:
17639         Set proper class on the ElementDetails:
17640         Source/Audio instead of Src/Audio/
17641
17642 2006-02-28  Edward Hervey  <edward@fluendo.com>
17643
17644         * gst/videoscale/vs_scanline.c:
17645         (vs_scanline_resample_nearest_RGBA):
17646         Revert optimization in videoscale. It should go in liboil and have
17647         an appropriate liboil function.
17648
17649 2006-02-28  Wim Taymans  <wim@fluendo.com>
17650
17651         * gst-libs/gst/audio/gstbaseaudiosink.c:
17652         (gst_base_audio_sink_provide_clock):
17653         Don't try to provide a clock in the NULL state.
17654
17655 2006-02-28  Wim Taymans  <wim@fluendo.com>
17656
17657         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
17658         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
17659         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17660         (gst_ogg_demux_deactivate_current_chain),
17661         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
17662         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
17663         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
17664         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
17665         Use GstSegment infrastructure to remove duplicated code
17666         and handle more seek cases correctly.
17667
17668 2006-02-28  Wim Taymans  <wim@fluendo.com>
17669
17670         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17671         (gst_ffmpegcsp_transform):
17672         Don't ignore return code from ffmpeg convert function.
17673
17674         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17675         Split out some long statements to ease debugging.
17676
17677 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
17678
17679         * ext/libvisual/visual.c: (gst_visual_init),
17680         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
17681         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
17682         being able to renegotiate the size. Instead, use the negotiation
17683         algorithm from the goom plugin to pick an initial output caps. 
17684
17685         Also, allow theoretical libvisual plugins that might support non-GL 
17686         output even if they also do GL.
17687
17688 2006-02-26  Julien MOUTTE  <julien@moutte.net>
17689
17690         * ext/libvisual/visual.c: (gst_visual_init),
17691         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
17692         (plugin_init): Load only non GL plugins. Fix some memleaks and 
17693         possible negotiation issues.
17694
17695 2006-02-25  Julien MOUTTE  <julien@moutte.net>
17696
17697         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
17698
17699 2006-02-24  Michael Smith  <msmith@fluendo.com>
17700
17701         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
17702         (cmml_type_find), (plugin_init):
17703           Fix CMML type find function to not require a specific minor version
17704           of the CMML header.
17705
17706           Add an MPEG4 video elementary stream typefind function.
17707
17708 2006-02-04  Michael Smith  <msmith@fluendo.com>
17709
17710         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
17711         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
17712         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17713         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
17714         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
17715         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
17716           Annodex support in ogg demuxer. Doesn't do very much without the
17717           other annodex patches (to come).
17718
17719 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17720
17721         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
17722
17723         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17724           Pick up palette for MS video v1 (#327028)
17725
17726 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17727
17728         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17729         (gst_ffmpegcsp_caps_remove_format_info),
17730         (gst_ffmpegcsp_get_unit_size):
17731           The 'palette_data' field from incoming RGB caps shouldn't be
17732           proxied on outgoing YUV caps; also, restrict unit size
17733           adjustment in case of paletted data only to the unit that
17734           actually has a palette. Fixes #330711.
17735
17736 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17737
17738         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17739         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
17740         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
17741         (gst_ffmpegcsp_get_unit_size):
17742           Plug some memory leaks.
17743
17744 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17745
17746         * sys/ximage/Makefile.am:
17747         * sys/xvimage/Makefile.am:
17748           Add some _CFLAGS and _LIBS that seem to be missing
17749           and/or required for Cygwin (see #317048).
17750
17751 2006-02-22  Wim Taymans  <wim@fluendo.com>
17752
17753         * ext/alsa/gstalsasrc.c:
17754         Fix description as pointed out by caugier.
17755
17756 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
17757
17758         Reviewed by : Edward Hervey  <edward@fluendo.com>
17759
17760         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17761         (qt_type_find):
17762         Better 3gp typefinding (#331526).
17763
17764 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17765
17766         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17767           Don't send EOS event here, the base class will send one for us.
17768
17769         * gst/playback/gstplaybasebin.c: (prepare_output):
17770           Subpictures without video stream aren't allowed either.
17771         
17772         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17773           Fix debug statement copy'n'paste-o.
17774
17775 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17776
17777         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
17778           Fix issues with mixer keeping state when muting/unmuting
17779           and when changing the volume whilst muted (see #331763
17780           and #331765).
17781
17782 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17783
17784         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
17785         (parse_subrip), (gst_sub_parse_format_autodetect):
17786           Set right caps given that we send escaped text. Also,
17787           honour <i></i>, <b></b> and <u></u> markers that can be found
17788           in .srt files (fixes #310202).
17789
17790 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17791
17792         * gst-libs/gst/audio/mixerutils.c:
17793         (element_factory_rank_compare_func):
17794           Make order in which elements are tried more determinable.
17795
17796 2006-02-20  Julien MOUTTE  <julien@moutte.net>
17797
17798         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
17799         (remove_element_chain), (cleanup_decodebin),
17800         (gst_decode_bin_change_state): Make decodebin reusable by
17801         fixing remove_element_chain first and then introduce a
17802         cleaner in state change to ->NULL. (Closes #331678)
17803
17804 2006-02-19  Wim Taymans  <wim@fluendo.com>
17805
17806         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
17807         use 0666 mask when creating files so umask gets applied
17808         correctly. Fixes #331295.
17809
17810 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17811
17812         * gst/subparse/Makefile.am:
17813         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
17814         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
17815         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
17816         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
17817         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
17818         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
17819         * gst/subparse/gstssaparse.h:
17820         * gst/subparse/gstsubparse.c: (plugin_init):
17821           Add very basic parser for SSA subtitle streams (as often
17822           found in matroska files).
17823
17824 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17825
17826         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
17827           That should be text/x-pango-markup, not text/x-pango-layout.
17828
17829 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17830
17831         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
17832         Polishing.
17833
17834 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17835
17836         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17837         (gst_text_overlay_finalize), (gst_text_overlay_init),
17838         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17839         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17840         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17841         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17842         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17843         Fix state change deadlock.
17844
17845 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17846
17847         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17848         (gst_text_overlay_finalize), (gst_text_overlay_init),
17849         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17850         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17851         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17852         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17853         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17854         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
17855         and subtitles files.
17856
17857 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17858
17859         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
17860         should be considered as raw.
17861
17862 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17863
17864         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
17865         (cb_probe):
17866         * gst/playback/gststreaminfo.h: Introduce language informations.
17867
17868 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
17869
17870         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17871         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
17872         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
17873         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
17874         Set shared memory segments to be deleted as soon as we have attached,
17875         that way they get cleaned up automatically if we crash.
17876
17877 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17878
17879         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
17880         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
17881         functions are called with lock held.
17882
17883 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17884
17885         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17886         (gst_text_overlay_finalize), (gst_text_overlay_init),
17887         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17888         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17889         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
17890         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
17891         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
17892         (gst_text_overlay_change_state): Refactoring of textoverlay
17893         without collectpads. This now supports sparse subtitles coming
17894         from a demuxer instead of a sub file. Seeking is still broken 
17895         though. Need to discuss with wtay some more on how to handle
17896         seeking correctly.
17897         * ext/pango/gsttextoverlay.h:
17898         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
17899         subtitles coming from the demuxer.
17900
17901 2006-02-17  Wim Taymans  <wim@fluendo.com>
17902
17903         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17904         (gst_vorbisenc_convert_sink):
17905         Use some more scaling functions.
17906
17907 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
17908
17909         * ext/cdparanoia/gstcdparanoiasrc.c:
17910         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
17911         (gst_cd_paranoia_paranoia_callback),
17912         (gst_cd_paranoia_src_signal_is_being_watched),
17913         (gst_cd_paranoia_src_read_sector):
17914         * ext/cdparanoia/gstcdparanoiasrc.h:
17915           Add back 'transport-error' and 'uncorrected-error' signals and
17916           make them actually be fired when bad stuff happens (#319340).
17917
17918 2006-02-17  Wim Taymans  <wim@fluendo.com>
17919
17920         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
17921         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
17922         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
17923         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
17924         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
17925         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
17926         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
17927         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
17928         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
17929         (gst_ring_buffer_clear):
17930         Small cleanups.
17931         Added some G_LIKELY.
17932
17933 2006-02-17  Wim Taymans  <wim@fluendo.com>
17934
17935         * gst-libs/gst/audio/TODO:
17936         Update TODO
17937
17938         * gst-libs/gst/audio/gstbaseaudiosink.c:
17939         (gst_base_audio_sink_get_offset):
17940         When trying to play samples ASAP and we don't have a
17941         previous sample, try to play at position 0 instead of
17942         an invalid position.
17943
17944 2006-02-17  Wim Taymans  <wim@fluendo.com>
17945
17946         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
17947         (gst_alsasink_reset):
17948         Also release lock when we get an error in _reset();
17949         fix an error message.
17950
17951 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17952
17953         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
17954         (gst_alsasink_init), (get_channel_free_structure),
17955         (caps_add_channel_configuration), (gst_alsasink_getcaps),
17956         (gst_alsasink_close):
17957         * ext/alsa/gstalsasink.h:
17958           Add support for more than 2 channels (#326720).
17959
17960 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17961
17962         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17963           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
17964           with 4 or 6 channels, assume a default channel layout to make things
17965           work (not sure there's anything else we can do in those cases).
17966
17967 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17968
17969         * gst-libs/gst/audio/multichannel.c:
17970           Minor docs fix.
17971
17972         * gst-libs/gst/riff/Makefile.am:
17973         * gst-libs/gst/riff/riff-ids.h:
17974         * gst-libs/gst/riff/riff-media.c:
17975         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
17976           Add support for WAVEFORMATEX, eg. PCM audio with more than two
17977           channels and a channel layout map.
17978           
17979 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
17980
17981         Reviewed by Edward Hervey  <edward@fluendo.com>
17982
17983         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
17984         C-level optimization of the RGBA nearest neighbour function.
17985         Eventually this might end up in liboil with vectorized versions.
17986
17987 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17988
17989         * gst-libs/gst/audio/multichannel.c:
17990         (gst_audio_get_channel_positions):
17991           When we have more than 2 channels, but no channel layout is
17992           specified in the caps, return some default channel layout
17993           to the caller and warn about about a possibly buggy element
17994           (could be buggy filtercaps as well of course) (#317038).
17995
17996 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17997
17998         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
17999           Add gst-libs/gst/cdda to list of lib search paths.
18000
18001 2006-02-15  Andy Wingo  <wingo@pobox.com>
18002
18003         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
18004         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
18005         to the Lord Jesus that I do not have to touch the ogg muxer ever
18006         again.
18007
18008 2006-02-15  Edward Hervey  <edward@fluendo.com>
18009
18010         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
18011         quicktime movie files can also contain 'uuid' atoms.
18012
18013 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18014
18015         * gst/audioconvert/plugin.c: (plugin_init):
18016           Register the GstAudioChannelPosition enum type with the type
18017           system in the plugin_init function, so that it is known before
18018           any element actually makes use of multi-channel stuff. This is
18019           required for example if one wants to be able to deserialise/use
18020           a caps string with channel positions before any pipeline has
18021           been setup and started, like with gst-launch.
18022
18023 2006-02-14  Wim Taymans  <wim@fluendo.com>
18024
18025         * gst-libs/gst/audio/gstringbuffer.c:
18026         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
18027         (gst_ring_buffer_samples_done), (wait_segment),
18028         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
18029         Add some compiler G_(UN_)LIKELY help.
18030         SIGNAL the ringbuffer waiters when going to PAUSED as well to
18031         make sure they can exit their functions. Should fix #330748
18032
18033 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18034
18035         * Makefile.am:
18036         * configure.ac:
18037         * win32/MANIFEST:
18038         * win32/common/_stdint.h:
18039           Windows does not have long long; copy the generated _stdint.h
18040         * win32/common/interfaces-enumtypes.c:
18041         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
18042         (gst_mixer_track_flags_get_type),
18043         (gst_tuner_channel_flags_get_type):
18044         * win32/common/multichannel-enumtypes.c:
18045         (gst_audio_channel_position_get_type):
18046           update
18047
18048 2006-02-13  Wim Taymans  <wim@fluendo.com>
18049
18050         * gst-libs/gst/audio/gstbaseaudiosink.c:
18051         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
18052         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18053         Always sync on first sample we receive when starting.
18054
18055 2006-02-13  Wim Taymans  <wim@fluendo.com>
18056
18057         * gst/playback/gstplaybin.c: (gen_vis_element):
18058         Update vis bin docs.
18059         Move queue after tee so we don't queue video buffers but
18060         audio samples instead. Fixes problems where the video queue
18061         is filled and the audio queue empty.
18062
18063 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
18064
18065         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
18066           No need to push an EOS event here, GstBaseSrc will do that for us
18067           when we return FLOW_UNEXPECTED.
18068           
18069 2006-02-12  Wim Taymans  <wim@fluendo.com>
18070
18071         * gst-libs/gst/audio/gstbaseaudiosink.c:
18072         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
18073         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
18074         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18075         Use scale functions when possible.
18076         Fix error messages.
18077         Free clockid when after waiting for EOS.
18078         Use G_(UN_)LIKLY when it makes sense.
18079         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
18080
18081 2006-02-12  Edward Hervey  <edward@fluendo.com>
18082
18083         * gst/playback/gstplaybasebin.c: (prepare_output): 
18084         Remove stray semi-colon (fixes #330888).
18085
18086 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
18087
18088         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
18089         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
18090         Fix up the XShm call testing so that we catch errors, and don't
18091         cause new ones by attempting to detach from a segment we failed
18092         to attach to. Fixes #312439.
18093
18094 2006-02-10  Edward Hervey  <edward@fluendo.com>
18095
18096         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18097         Added flv file typefind (video/x-flv).
18098
18099 2006-02-10  Edward Hervey  <edward@fluendo.com>
18100
18101         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18102         (gst_riff_create_video_template_caps):
18103         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
18104         Also added the caps to the default set of riff video caps.
18105
18106 2006-02-09  Andy Wingo  <wingo@pobox.com>
18107
18108         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
18109         time and the end time of the last packet in the page.
18110         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
18111         on the pages in our queue, set the duration as well. Reflow a
18112         debug statement.
18113         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
18114         Fixes bad muxing order.
18115
18116 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18117
18118         * gst-libs/gst/rtp/gstbasertppayload.c:
18119         (gst_basertppayload_setcaps), (gst_basertppayload_push):
18120           update seqnum before setting it on the packet; this makes sure
18121           that the timestamp and seqnum properties match after pushing
18122           a buffer
18123
18124 2006-02-09  Andy Wingo  <wingo@pobox.com>
18125
18126         * gst-libs/gst/audio/gstringbuffer.c
18127         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
18128         overflow after 13.5 hours of recording. Kapow!
18129
18130         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
18131         the buffer size -- we don't care about underrun/overrun reporting
18132         right now, just need to return a useful value.
18133
18134 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18135
18136         * configure.ac:
18137           Back to CVS
18138
18139 === release 0.10.3 ===
18140
18141 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18142
18143         * configure.ac:
18144           releasing 0.10.3, "Under Pressure"
18145
18146 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18147
18148         * configure.ac:
18149         Drat. Bump libtool version number for new API.
18150         Prelease 0.10.2.3 (of 0.10.3)
18151
18152 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18153
18154         * configure.ac:
18155         * win32/common/config.h:
18156         0.10.2.2 prerelease (of 0.10.3).
18157
18158 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18159
18160         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
18161           Revert Andy's newsegment change pending a more correct
18162           fix.
18163
18164 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18165
18166         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18167         (qt_type_find), (plugin_init):
18168           detect more files as 3gp
18169           group and reorder the iso file formats
18170
18171 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18172
18173         * ext/vorbis/vorbis.c: (plugin_init):
18174           Register musicbrainz tags, so apps don't have to.
18175
18176 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18177
18178         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
18179         (gst_tag_to_vorbis_tag):
18180           Make sure we called gst_tag_register_musicbrainz_tags()
18181           before possibly mapping a vorbiscomment string from/to a
18182           musicbrainz tag.
18183
18184 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18185
18186         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18187           In case we can't find the required number of consecutive
18188           mpeg audio frames to positively identify an MPEG audio
18189           stream, check if there's at least a valid mpeg audio
18190           frame right at offset 0 and if so suggest mpeg/audio
18191           caps with a very low probability (#153004).
18192
18193 2006-02-07  Andy Wingo  <wingo@pobox.com>
18194
18195         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
18196         a TIME segment if we get timestamped buffers. Requires recent
18197         fixes in core to work properly.
18198
18199 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18200
18201         * gst/playback/gstplaybasebin.c: (prepare_output):
18202           Don't print the URI as part of the error message, it
18203           makes error dialogs look rather ugly, especially if
18204           the URI is very long or has characters in it that
18205           need escaping.
18206
18207 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18208
18209         * gst/playback/gstplaybasebin.c: (prepare_output):
18210           Error out if we have only text or subtitles, but nothing
18211           else. Also error out if we have subtitles but no video
18212           stream.
18213
18214 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18215
18216         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
18217           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
18218           Post an error message on the bus when we encounter an
18219           error, which will hopefully be more meaningful than the
18220           'Internal Flow Error' message users get to see if we
18221           just return GST_FLOW_ERROR.
18222
18223 2006-02-07  Andy Wingo  <wingo@pobox.com>
18224
18225         * configure.ac (GST_MAJORMINOR): Update core version req to
18226         0.10.2.2, for the collectpads API addition (#330244).
18227
18228 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18229
18230         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18231           Return FALSE from plugin_init() when GnomeVFS can't
18232           be initialised for some reason (#328423).
18233
18234 2006-02-06  Julien MOUTTE  <julien@moutte.net>
18235
18236         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
18237         Stick to seeking theory until i find the bug.
18238         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
18239
18240 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
18241
18242         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18243         (theora_enc_finalize), (theora_enc_sink_setcaps),
18244         (theora_set_header_on_caps), (theora_enc_chain),
18245         (theora_enc_change_state):
18246         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
18247           Make theoraenc and the tests leak free. Like, really.
18248
18249 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
18250
18251         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18252         (theora_enc_finalize), (theora_enc_sink_setcaps):
18253           Add a finalize method to ensure we clean up state even if
18254           someone omitted the state change back to NULL.
18255
18256         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
18257         (gst_vorbisenc_chain):
18258           Free some more leaked bits.
18259
18260         * tests/check/pipelines/theoraenc.c: (start_pipeline),
18261         (stop_pipeline):
18262           Wait for state changes to happen if they're ASYNC.
18263
18264           This ought to teach those fancy pants buildbots a lesson.
18265
18266 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18267
18268         * gst-libs/gst/tag/gstid3tag.c:
18269           Add mapping for ID3 International Standard Recording Code
18270           tag "TSRC"
18271
18272 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18273
18274         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
18275           Don't leak tag names.
18276
18277 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18278
18279         * docs/libs/gst-plugins-base-libs-docs.sgml:
18280         * docs/libs/gst-plugins-base-libs-sections.txt:
18281         * gst-libs/gst/tag/gstid3tag.c:
18282         * gst-libs/gst/tag/gstvorbistag.c:
18283         * gst-libs/gst/tag/tags.c:
18284           Split libgsttag docs into multiple sections.
18285
18286 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18287
18288         * docs/libs/Makefile.am:
18289         * docs/libs/gst-plugins-base-libs-docs.sgml:
18290         * docs/libs/gst-plugins-base-libs-sections.txt:
18291         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
18292         * gst-libs/gst/tag/gstvorbistag.c:
18293         * gst-libs/gst/tag/tag.h:
18294         * gst-libs/gst/tag/tags.c:
18295           Add libgsttag to the docs.
18296
18297 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18298
18299         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
18300         (gst_text_overlay_init), (gst_text_overlay_src_event),
18301         (gst_text_overlay_collected): Fix clockoverlay.
18302
18303 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18304
18305         * docs/libs/compiling.sgml:
18306           Fix typo: it's pkg-config, not pkg-gconfig
18307
18308         * docs/libs/gst-plugins-base-libs-docs.sgml:
18309         * docs/libs/gst-plugins-base-libs-sections.txt:
18310         * docs/libs/tmpl/gstgconf.sgml:
18311           There is no libgstgconf in 0.10, remove it
18312           from the docs.
18313
18314 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18315
18316         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
18317         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
18318         (gst_text_overlay_src_event), (gst_text_overlay_collected):
18319         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
18320         (gst_sub_parse_class_init), (gst_sub_parse_init),
18321         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
18322         (parse_mpsub), (parser_state_init), (handle_buffer),
18323         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
18324         * gst/subparse/gstsubparse.h: Introduce seeking code.
18325
18326 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18327
18328         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18329           Add comment about LANGUAGE tag inconsistency (we want
18330           ISO-639-1, but extract three-letter identifiers?)
18331
18332         * po/POTFILES.in:
18333           Add two translatable files.
18334
18335 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18336
18337         * gst-libs/gst/tag/Makefile.am:
18338         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18339         * gst-libs/gst/tag/tag.h:
18340         * gst-libs/gst/tag/tags.c:
18341         (gst_tag_register_musicbrainz_tags_internal),
18342         (gst_tag_register_musicbrainz_tags):
18343           Forward-port some tags stuff from the 0.8 branch. This is
18344           mostly the addition of musicbrainz tags and their mapping
18345           to vorbistags, and a vorbistag mapping of the language tag.
18346
18347 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18348
18349         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
18350         refactoring.
18351
18352 2006-02-04  David Schleef  <ds@schleef.org>
18353
18354         * ext/ogg/gstoggmux.c:
18355         * gst/typefind/gsttypefindfunctions.c:
18356           Add Dirac typefinding and add dirac format to oggmux.
18357
18358 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
18359
18360         * gst/playback/gstdecodebin.c: (try_to_link_1):
18361           Don't put essential function call into
18362           g_return_*() macro, otherwise it'll all be
18363           replaced by NOOPs when compiling with
18364           G_DISABLE_CHECKS defined.
18365
18366 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18367
18368         * ext/ogg/gstoggdemux.c:
18369         * ext/ogg/gstoggparse.c:
18370         * gst/tcp/gsttcpserversink.c:
18371         * sys/v4l/v4lsrc_calls.c:
18372         * sys/v4l/v4lsrc_calls.h:
18373         Just make it compile with --disable-gst-debug.
18374
18375 2006-02-03  Wim Taymans  <wim@fluendo.com>
18376
18377         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18378         (gst_alsasink_class_init), (gst_alsasink_init),
18379         (gst_alsasink_write), (gst_alsasink_reset):
18380         * ext/alsa/gstalsasink.h:
18381         Add lock to protect alsa calls.
18382         Implement reset to flush samples ASAP, does not work
18383         with dmix though.
18384
18385 2006-02-02  Wim Taymans  <wim@fluendo.com>
18386
18387         * gst-libs/gst/audio/gstbaseaudiosink.c:
18388         (gst_base_audio_sink_provide_clock):
18389         Ugh.. getting late I guess...
18390
18391 2006-02-02  Wim Taymans  <wim@fluendo.com>
18392
18393         * gst-libs/gst/audio/gstbaseaudiosink.c:
18394         (gst_base_audio_sink_provide_clock),
18395         (gst_base_audio_sink_set_property),
18396         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
18397         Don't try to provide a clock when we are not negotiated since
18398         we might not be able to make it run.
18399
18400 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18401
18402         * gst/playback/gstdecodebin.c: (try_to_link_1):
18403           Unlinking two source pads is ... hard.
18404
18405 2006-02-02  Wim Taymans  <wim@fluendo.com>
18406
18407         * gst-libs/gst/audio/TODO:
18408         Updated.
18409
18410         * gst-libs/gst/audio/gstbaseaudiosink.c:
18411         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
18412         On EOS, wait till the last sample is played before posting EOS.
18413
18414 2006-02-01  Philippe Kalaf <burger at speedy dot org>
18415
18416         Patch by: Kai Vehmanen
18417         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18418           Adds ability to enable newsegment bypass by setting queue_delay to
18419           zero. Also avoid thread being started if queue_delay is zero.
18420
18421 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18422
18423         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
18424           Make test work again by connecting fakesinks to each decoded pad,
18425           which makes the pipeline wait until each fakesink has a buffer
18426           queued before going to PAUSED state. At that point we know the
18427           decodebin pads are negotiated.
18428
18429 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18430
18431         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
18432         (gst_cdda_base_src_handle_event):
18433         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
18434           Pass unhandled queries to the parent class's query function.
18435
18436 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18437
18438         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
18439         (gst_ogg_pad_src_query):
18440         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18441         * ext/theora/theoradec.c: (theora_dec_src_query),
18442         (theora_dec_sink_query):
18443         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18444         (vorbis_dec_sink_query):
18445         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
18446         (gst_vorbisenc_sink_query):
18447         * gst/adder/gstadder.c: (gst_adder_query):
18448           Pass unhandled queries upstream instead of just
18449           dropping them (#326447). Also, fix supported
18450           query types list for some elements.
18451
18452 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18453
18454         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
18455         (paris_type_find), (ilbc_type_find), (plugin_init):
18456           Fix typefinding for audio/x-au, audio/x-paris and
18457           audio/iLBC-sh. We cannot use the START_WITH macros
18458           here, because there can only be one typefind factory
18459           with the same name (caps), so the second one would
18460           replace the first one and the first one would never
18461           be called when doing typefinding (see #161712).
18462           
18463
18464 2006-01-31  Wim Taymans  <wim@fluendo.com>
18465
18466         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
18467         (vorbis_handle_header_packet), (vorbis_dec_push),
18468         (vorbis_handle_data_packet):
18469         Use scale_int when we can, add some more scaling.
18470         Check packettype before parsing it.
18471
18472 2006-01-31  Wim Taymans  <wim@fluendo.com>
18473
18474         * ext/theora/theoradec.c: (_theora_granule_time),
18475         (theora_dec_src_convert), (theora_dec_sink_convert):
18476         Call right _scale functions.
18477         Use parameter instead of some other random value.
18478
18479 2006-01-31  Wim Taymans  <wim@fluendo.com>
18480
18481         * ext/theora/theoradec.c: (_theora_granule_frame),
18482         (_theora_granule_time), (_inc_granulepos),
18483         (theora_dec_src_convert), (theora_dec_sink_convert),
18484         (theora_handle_type_packet), (theora_handle_data_packet),
18485         (theora_dec_chain):
18486         Use higher precision timestamps calculation.
18487         Convert some other conversions to _scale.
18488
18489 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
18490
18491         * gst/audiotestsrc/gstaudiotestsrc.c:
18492         (gst_audio_test_src_create_sine_table), (plugin_init):
18493         * gst/volume/gstvolume.c: (plugin_init):
18494           initialize gst_controller before using
18495
18496 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
18497
18498         * tests/check/pipelines/theoraenc.c:
18499         * tests/check/pipelines/vorbisenc.c:
18500         Define constant using G_GINT64_CONSTANT to avoid errors when
18501         passing it around - otherwise it gets truncated to 32 bits.
18502
18503         Fixes failing tests.
18504
18505 2006-01-31  Andy Wingo  <wingo@pobox.com>
18506
18507         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
18508         caps being set doesn't have a framerate value. Basically a stopgap
18509         measure.
18510
18511         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
18512         technically correct enough to put into core though.
18513         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
18514         DURATION. Fixes theoraenc ! oggmux.
18515
18516         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
18517         fraction, not double.
18518
18519 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
18520
18521         * win32/vs7:
18522         add vs7 project files created by Sergey Scobich
18523
18524 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
18525
18526         * win32/vs8:
18527         add vs8 project files created by Sergey Scobich
18528         
18529 2006-01-30  Andy Wingo  <wingo@pobox.com>
18530
18531         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
18532         timestamp + duration, not just timestamp -- ogg pages should be
18533         ordered by stop time. Necessary fix given the change in vorbis
18534         timestamps.
18535
18536         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
18537         (gst_theora_enc_init): Pull the granule shift out of the encoder.
18538         (granulepos_add): New function, handles the messiness of adjusting
18539         granulepos values.
18540         (theora_buffer_from_packet):
18541         (theora_enc_chain):
18542         (theora_enc_sink_event): Use granulepos_add, not +.
18543
18544         * tests/check/pipelines/theoraenc.c
18545         (check_buffer_granulepos_from_starttime): Just check the frame
18546         count, not the actual granulepos -- we can't dictate to the
18547         encoder when it should be placing keyframes.
18548
18549 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18550
18551         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
18552           SERVICE_NOT_AVAILABLE happens for example when you're trying to
18553           play an http:// stream from a server that's not serving
18554
18555 2006-01-30  Andy Wingo  <wingo@pobox.com>
18556
18557         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
18558         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
18559         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
18560         available.
18561
18562         * ext/theora/gsttheoraenc.h:
18563         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
18564         although theoraenc was timestamping correctly. Added handling of
18565         streams that start with nonzero timestamps.
18566
18567         * tests/check/Makefile.am:
18568         * tests/check/pipelines/theoraenc.c: New file, basically does same
18569         tests as vorbisenc.
18570
18571         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
18572
18573 2006-01-30  Wim Taymans  <wim@fluendo.com>
18574
18575         * gst-libs/gst/audio/gstaudiosink.c:
18576         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
18577         (gst_audioringbuffer_pause):
18578         Implement pause that does not wait for completion.
18579
18580         * gst-libs/gst/audio/gstbaseaudiosink.c:
18581         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18582         Don't drop buffers when going to PAUSED but perform preroll on
18583         remaining samples now that core base class supports this.
18584
18585         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
18586         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
18587         (gst_ring_buffer_commit):
18588         Pause should not signal waiters.
18589         Implement return value of _commit correctly.
18590
18591 2006-01-30  Andy Wingo  <wingo@pobox.com>
18592
18593         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
18594
18595         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
18596         updated to timestamp from the first sample, not the last.
18597         (gst_vorbisenc_buffer_from_header_packet): New function, takes
18598         special care of granulepos and timestamp for header packets.
18599         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
18600         when the first buffer has a nonzero timestamp.
18601
18602         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
18603         (GstVorbisEnc.subgranule_offset): New members. Take care of the
18604         case when the first audio buffer we get has a nonzero timestamp.
18605         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
18606         properly timestamp vorbis buffers with the time of the first
18607         sample, not the last.
18608         
18609         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
18610         vorbis_granule_time_copy -- now it takes the granule/subgranule
18611         offset into account.
18612
18613         * tests/check/pipelines/vorbisenc.c: New test for correctness of
18614         timestamps, durations, and granulepos on buffers produced by
18615         vorbisenc.
18616
18617 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
18618
18619         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18620         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
18621           Patch from Eric Jonas to support conversions to/from UYVY 
18622           (Fixes: #324626)
18623
18624 2006-01-30  Julien MOUTTE  <julien@moutte.net>
18625
18626         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
18627         (setup_subtitle), (setup_source), (set_active_source):
18628         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18629         (gen_text_element), (gen_audio_element), (gen_vis_element),
18630         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
18631
18632 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
18633
18634         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
18635         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
18636                 use gst_guint64_to_gdouble to be compliant with vs6
18637         * gst/playback/gstdecodebin.c: (try_to_link_1)
18638         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
18639                 use G_GINT64_CONSTANT for int64 constants
18640         * win32/common/libgstinterfaces.def:
18641                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
18642         * win32/vs6:
18643                 update and add new project files
18644                 
18645 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18646
18647         * Makefile.am:
18648         * win32/MANIFEST:
18649         * win32/common/interfaces-enumtypes.c:
18650         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
18651         (gst_mixer_track_flags_get_type),
18652         (gst_tuner_channel_flags_get_type):
18653         * win32/common/interfaces-enumtypes.h:
18654         * win32/common/multichannel-enumtypes.c:
18655         (gst_audio_channel_position_get_type):
18656         * win32/common/multichannel-enumtypes.h:
18657           add a win32-update rule like in core, and copy over enumtypes files
18658
18659 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18660
18661         * win32/MANIFEST:
18662         * win32/common/config.h:
18663         * win32/common/config.h.in:
18664           add config files just like in core
18665
18666 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
18667
18668         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
18669           Make gcc-4.1 happy (part of #327357).
18670
18671 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18672
18673         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
18674         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
18675         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
18676         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
18677         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
18678         (gst_alsasrc_unprepare), (gst_alsasrc_read):
18679           Update all error messages.  All of them should either use
18680           the default translated message, or actually provide a
18681           translatable string.
18682           Make the string for channel count problems meaningful.
18683
18684 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18685
18686         * sys/v4l/v4l_calls.c: (gst_v4l_open):
18687           check for and throw RESOURCE_BUSY
18688
18689 2006-01-27  David Schleef  <ds@schleef.org>
18690
18691         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
18692           checked in this change -- it requires liboil features not
18693           in 0.3.6.  Revert parts.
18694
18695 2006-01-27  David Schleef  <ds@schleef.org>
18696
18697         * REQUIREMENTS:
18698         * configure.ac: update liboil requirement to 0.3.6
18699         * gst/videoscale/Makefile.am:
18700         * gst/videoscale/vs_scanline.c: liboilify
18701
18702 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18703
18704         * ext/libvisual/visual.c: (get_buffer):
18705           When pad_alloc returns a GstFlowReturn other
18706           than GST_FLOW_OK, make sure it is passed upstream.
18707
18708 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18709
18710         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18711         (gst_alsasink_class_init):
18712           Free the device name string.
18713
18714         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18715         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
18716         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
18717           Don't remove a pad from the collectpads structure until it
18718           is released - it's a request pad, and may receive data again
18719           if the element gets moved back to PLAYING state.
18720
18721         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
18722           Ensure we turn on double buffering on the Xv port, and
18723           set the colour key to something dark and mysterious that
18724           isn't black.
18725
18726 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
18727
18728         * ext/alsa/gstalsaplugin.c: (plugin_init):
18729         * ext/cdparanoia/gstcdparanoiasrc.c:
18730         (gst_cd_paranoia_src_base_init), (plugin_init):
18731         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18732         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
18733           - a library should not call setlocale. see "Libraries" node in
18734             gettext manual
18735           - make sure all plugins that use translation do bindtextdomain
18736             to point to the localedir
18737         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
18738         (setup_sinks), (plugin_init):
18739           all this, and check for NULL when creating sinks
18740
18741 2006-01-27  Julien MOUTTE  <julien@moutte.net>
18742
18743         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
18744         (plugin_init): Make typefinding of subtitles work again.
18745
18746 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18747
18748         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
18749         (mp3_type_frame_length_from_header), (mp3_type_find),
18750         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
18751         (plugin_init):
18752           Backport a bunch of typefinding fixes from the 0.8 branch.
18753           Also, improve wavpack typefinding: if we can't peek the
18754           entire wavpack block, try to parse the bits we can get and
18755           see if we find what we're looking for in those.
18756
18757 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18758
18759         * sys/ximage/ximagesink.c:
18760         (gst_ximagesink_calculate_pixel_aspect_ratio):
18761         * sys/xvimage/xvimagesink.c:
18762         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
18763         more cases of pixel aspect ratio.
18764
18765 2006-01-26  Edward Hervey  <edward@fluendo.com>
18766
18767         * gst/playback/gstdecodebin.c: (pad_probe):
18768         Also consider the flush-start and tag events as unblockers
18769         for the pad probes.
18770
18771 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18772
18773         * gst/playback/gstplaybin.c: (gst_play_bin_init),
18774         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
18775         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
18776         On the fly visualisation switch, works disabling, enabling as
18777         well but it won't be able to enable vis in a playbin that was
18778         created with no visualisation.
18779
18780 2006-01-25  Wim Taymans  <wim@fluendo.com>
18781
18782         * gst-libs/gst/audio/gstbaseaudiosink.c:
18783         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18784         Undo previous commit that returned WRONG_STATE sooner, it breaks 
18785         resume after pause.
18786
18787 2006-01-25  Wim Taymans  <wim@fluendo.com>
18788
18789         * gst-libs/gst/audio/gstbaseaudiosink.c:
18790         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
18791         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
18792         Improve debugging.
18793         Post error when caps cannot be parsed.
18794         Resync on discontinuity in the stream.
18795         Clip samples to segment boundaries.
18796         return WRONG_STATE sooner when we are flushing.
18797
18798         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
18799         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
18800         Make audiosrc operate in TIME.
18801         Set TIMESTAMP and DURATION on buffers.
18802
18803 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18804
18805         * tests/examples/seek/seek.c: (main):
18806           Output tag messages as well.
18807
18808 2006-01-23  Edward Hervey  <edward@fluendo.com>
18809
18810         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18811         (free_pad_probes), (remove_fakesink), (pad_probe),
18812         (close_pad_link), (gst_decode_bin_change_state):
18813         Replace GstPadBlockCallback with pad probes that detect
18814         first buffer AND eos before removing fakesink.
18815         Fixes hang with demuxers doing EOS while pre-rolling.
18816         Solves #328279
18817
18818 2006-01-23  Andy Wingo  <wingo@pobox.com>
18819
18820         * ext/alsa/gstalsasink.c:
18821         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18822         (gst_base_rtp_depayload_setcaps),
18823         (gst_base_rtp_depayload_add_to_queue),
18824         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
18825         
18826         Patch by: Jens Granseuer <jensgr at gmx dot net>
18827
18828 2006-01-22  Julien MOUTTE  <julien@moutte.net>
18829
18830         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
18831         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
18832         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
18833         frames. We might get a frame destroyed after changing state to
18834         NULL, adding a safety check on xcontext.
18835
18836 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
18837
18838         * gst-libs/gst/interfaces/xoverlay.c:
18839           Fix prepare-xwindow-id code example in the docs - we need to
18840           ignore all messages that aren't element messages as well.
18841           
18842 2006-01-21  Julien MOUTTE  <julien@moutte.net>
18843
18844         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
18845           I think one day i'll completely undestand how caps negotiation
18846           is supposed to work. This refactoring handles buffer_alloc
18847           called with caps we can't handle. We definitely don't want a
18848           set_caps with those caps, so we define and allocate a buffer
18849           we would like to receive.
18850
18851 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
18852
18853         * gst/playback/gstplaybasebin.c: (setup_source):
18854           Free iterator when done.
18855
18856 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
18857
18858         * gst-libs/gst/audio/gstbaseaudiosink.c:
18859         (gst_base_audio_sink_render):
18860           Fix playback of non-synchronised streams by assuming a rate
18861           of 1.0 instead of a random one.
18862
18863           Makes this work again:
18864
18865           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
18866           endianness=(int)4321, signed=(boolean)true, width=(int)16,
18867           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
18868           audioresample ! alsasink
18869
18870 === release 0.10.2 ===
18871
18872 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
18873
18874         * configure.ac:
18875           releasing 0.10.2, "Then the devil is six"
18876
18877 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
18878
18879         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18880         * gst/playback/gststreamselector.c:
18881         (gst_stream_selector_set_property):
18882           Comment out broken code that connects to the state-changed signal.
18883           At this point, changing current stream selection is broken, but 
18884           stuff like gst-launch playbin current-audio=1 works and filters
18885           to the chosen stream.
18886
18887 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18888
18889         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18890           Fix #327216 (null dereference in vorbisdec)
18891
18892 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
18893
18894         * ext/theora/theoradec.c: (theora_handle_comment_packet):
18895           Post taglist actually on bus instead of just freeing it
18896           (fixes #327114 and totem bug #327080).
18897
18898         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
18899           Use gst_element_found_tags_for_pad(), so that the tags
18900           are sent downstream as an event as well.
18901
18902 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18903
18904         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
18905         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
18906         (gst_ximagesink_buffer_alloc):
18907         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
18908         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
18909         (gst_xvimagesink_buffer_alloc):
18910           move all regularly occurring messages to GST_LOG level
18911           add some more object logs
18912
18913 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18914
18915         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
18916           fix a silly segfault
18917
18918 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
18919
18920         * docs/libs/gst-plugins-base-libs-docs.sgml:
18921         * docs/libs/gst-plugins-base-libs-sections.txt:
18922         * gst-libs/gst/audio/mixerutils.c:
18923         * gst-libs/gst/audio/mixerutils.h:
18924           Add docs for mixerutils stuff.
18925
18926 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
18927
18928         * gst/playback/gstplaybasebin.c: (setup_source):
18929           Fix playback for sources that emit raw audio or
18930           raw video streams (e.g.: cd audio sources) (#325984).
18931
18932 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18933
18934         * gst-libs/gst/audio/mixerutils.c:
18935         (gst_audio_mixer_filter_do_filter):
18936           actually save the element we create
18937
18938 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
18939
18940         * gst-libs/gst/cdda/gstcddabasesrc.c:
18941         (gst_cdda_base_src_handle_track_seek):
18942           No need to post a tag message on the bus when seeking
18943           within the same track, only post it when the current
18944           track changes.
18945
18946 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18947
18948         * gst/playback/gstplaybasebin.c: (group_destroy),
18949         (probe_triggered), (new_decoded_pad), (mute_group_type),
18950         (set_active_source):
18951         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18952         * gst/playback/gststreamselector.c:
18953         (gst_stream_selector_base_init),
18954         (gst_stream_selector_set_property),
18955         (gst_stream_selector_request_new_pad):
18956           Reenable stream selection. These mechanisms need a complete overhaul
18957           in the face of 0.8->0.10 changes though.
18958
18959 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18960
18961         * ext/ogg/gstoggdemux.c:
18962           Change the pad template to src_%d to match the pads that 
18963           are created from it. decodebin needs this information in order
18964           to decide that oggdemux is capable of producing multiple pads
18965           (and hence needs queues inserted).
18966
18967         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
18968         (gst_ogg_mux_collected):
18969           Make debug output more useful by using GST_PTR_FORMAT.
18970
18971 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
18972
18973         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18974
18975         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
18976           Set depth and width for alaw/mulaw (fixes #326601).
18977
18978 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18979
18980         * tests/icles/Makefile.am:
18981           don't build the tests if we don't have the libs
18982
18983 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18984
18985         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
18986         (gst_cd_paranoia_paranoia_callback):
18987           Don't try to free NULL pointers.
18988
18989 2006-01-10  Edward Hervey  <edward@fluendo.com>
18990
18991         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
18992         (gst_audio_rate_change_state), (plugin_init):
18993         Add debugging category.
18994         Fix type issues.
18995         Add case for incoming buffers without valid offset/offset_end.
18996
18997 2006-01-10  Michael Smith  <msmith@fluendo.com>
18998
18999         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
19000           Don't leak GCond in audio sources.
19001
19002 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
19003
19004         * gst/playback/gstplaybin.c: (gen_audio_element):
19005           Don't leak an autoaudiosink/alsasink when we generate
19006           a new audio element. (old code, I guess)
19007
19008 2006-01-10  Michael Smith  <msmith@fluendo.com>
19009
19010         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
19011           Support float audio in audiorate.
19012           Use width rather than depth for selecting sample width.
19013
19014 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
19015
19016         * gst/videotestsrc/videotestsrc.h:
19017           Use GLib types here (that way we don't have to include the
19018           generated _stdint.h header, which makes life easier for win32
19019           folks that don't use autotools for the build) (#325990, patch
19020           by: Sergey Scobich).
19021
19022 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
19023
19024         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
19025         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
19026         (gst_ring_buffer_pause), (wait_segment):
19027         * gst-libs/gst/audio/gstringbuffer.h:
19028           Name (private) union, makes Forte compiler happy (this time
19029           for real) (#324900).
19030
19031 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
19032
19033         * gst-libs/gst/audio/Makefile.am:
19034           Link against libgstinterfaces, needed for mixer
19035           and property probe stuff.
19036
19037 2006-01-09  Edward Hervey  <edward@fluendo.com>
19038
19039         * gst-libs/gst/Makefile.am:
19040
19041 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
19042
19043         * gst-libs/gst/audio/Makefile.am:
19044         * gst-libs/gst/audio/mixerutils.c:
19045         (gst_audio_mixer_filter_do_filter),
19046         (gst_audio_mixer_filter_check_element),
19047         (gst_audio_mixer_filter_probe_feature),
19048         (element_factory_rank_compare_func),
19049         (gst_audio_default_registry_mixer_filter):
19050         * gst-libs/gst/audio/mixerutils.h:
19051           Add gst_audio_default_registry_mixer_filter() utility
19052           function.
19053
19054 2006-01-03  Michael Smith  <msmith@fluendo.com>
19055
19056         * gst/audioresample/resample.h:
19057           As before, but for o_buf
19058
19059 2006-01-03  Michael Smith  <msmith@fluendo.com>
19060
19061         * gst/audioresample/resample.h:
19062           Declare struct _ResampleState.buffer as unsigned char *, not void *,
19063           since we do arithmetic on it.
19064
19065 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
19066
19067         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
19068         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
19069         (gst_ring_buffer_pause), (wait_segment):
19070         * gst-libs/gst/audio/gstringbuffer.h:
19071           Sun's Forte compiler doesn't seem to like anonymous structs,
19072           so use same setup as in GstBaseSrc (fixes #324900).
19073
19074 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19075
19076         * configure.ac:
19077         * gst/volume/Makefile.am:
19078         * gst/volume/demo.c:
19079           move old example to tests/examples/volume/volune.c
19080         * tests/examples/Makefile.am:
19081         * tests/examples/seek/seek.c: (main):
19082           change window-close event from "delete-event" to "destroy"
19083         * tests/examples/volume/Makefile.am:
19084         * tests/examples/volume/volume.c: (value_changed_callback),
19085         (setup_gui), (message_received), (eos_message_received), (main):
19086           fix event handling and bus usage
19087
19088 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
19089
19090         * gst/audiotestsrc/gstaudiotestsrc.c:
19091         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
19092         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
19093         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
19094         (gst_audio_test_src_create_square),
19095         (gst_audio_test_src_create_saw),
19096         (gst_audio_test_src_create_triangle),
19097         (gst_audio_test_src_create_silence),
19098         (gst_audio_test_src_create_white_noise),
19099         (gst_audio_test_src_create_pink_noise),
19100         (gst_audio_test_src_init_sine_table),
19101         (gst_audio_test_src_create_sine_table),
19102         (gst_audio_test_src_change_wave),
19103         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
19104         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
19105         * gst/audiotestsrc/gstaudiotestsrc.h:
19106           update to basesrc changes, implement segmented seeking and eos
19107           handling, add a 'sine-tab' waveform for performance critical playback
19108
19109 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19110
19111         * po/POTFILES.in:
19112           ... and this time the other modified file that I missed last time.
19113
19114 2005-12-29  Michael Smith  <msmith@fluendo.com>
19115
19116         * gst/playback/gstdecodebin.c: (new_pad):
19117           Fix non-C89 variable declaration not at the start of a block. Should
19118           help some compilers.
19119
19120 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19121
19122         * tests/check/Makefile.am:
19123           And now fix 'make distcheck' (builddir != srcdir)
19124
19125 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19126
19127         * configure.ac:
19128         * ext/cdparanoia/Makefile.am:
19129         * ext/cdparanoia/gstcdparanoia.c:
19130         * ext/cdparanoia/gstcdparanoia.h:
19131         * ext/cdparanoia/gstcdparanoiasrc.c:
19132         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
19133         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
19134         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
19135         (gst_cd_paranoia_paranoia_callback),
19136         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
19137         (gst_cd_paranoia_src_set_property),
19138         (gst_cd_paranoia_src_get_property), (plugin_init):
19139         * ext/cdparanoia/gstcdparanoiasrc.h:
19140           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
19141           plugin again (there are still fixes required to playbin to make
19142           cdda:// uris work there).
19143
19144 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19145
19146         * tests/check/Makefile.am:
19147           Fix test case compilation.
19148
19149 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19150
19151         * gst-libs/gst/cdda/gstcddabasesrc.c:
19152         (gst_cdda_base_src_update_duration),
19153         (gst_cdda_base_src_calculate_cddb_id):
19154           An integer is not a string. Fix access to uninitialised variable.
19155
19156         * tests/check/Makefile.am:
19157           Add cddabasesrc unit test; also actually enable the vorbis test.
19158
19159         * tests/check/generic/states.c:
19160           Blacklist new cd audio elements as well.
19161
19162         * tests/check/libs/cddabasesrc.c:
19163           Unit test for GstCddaBaseSrc (discid calculation mostly).
19164
19165 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19166
19167         * docs/libs/Makefile.am:
19168         * docs/libs/gst-plugins-base-libs-docs.sgml:
19169         * docs/libs/gst-plugins-base-libs-sections.txt:
19170         * docs/libs/gst-plugins-base-libs.types:
19171           Add docs for libgstcdda/GstCddaBaseSrc.
19172
19173         * gst-libs/gst/interfaces/mixertrack.h:
19174           Do one struct member per line with a semicolon at the end, that way
19175           even gtk-doc might parse it without complaining.
19176
19177 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19178
19179         * configure.ac:
19180         * gst-libs/gst/Makefile.am:
19181         * gst-libs/gst/cdda/Makefile.am:
19182         * gst-libs/gst/cdda/base64.c:
19183         * gst-libs/gst/cdda/base64.h:
19184         * gst-libs/gst/cdda/gstcddabasesrc.c:
19185         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
19186         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
19187         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
19188         (gst_cdda_base_src_get_property),
19189         (gst_cdda_base_src_get_track_from_sector),
19190         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
19191         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
19192         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
19193         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
19194         (gst_cdda_base_src_uri_get_protocols),
19195         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
19196         (gst_cdda_base_src_uri_handler_init),
19197         (gst_cdda_base_src_setup_interfaces),
19198         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
19199         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
19200         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
19201         (gst_cdda_base_src_add_tags),
19202         (gst_cdda_base_src_add_index_associations),
19203         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
19204         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
19205         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
19206         (gst_cdda_base_src_create):
19207         * gst-libs/gst/cdda/gstcddabasesrc.h:
19208         * gst-libs/gst/cdda/sha1.c:
19209         * gst-libs/gst/cdda/sha1.h:
19210           Add new libgstcdda with GstCddaBaseSrc class.
19211
19212 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19213
19214         * ext/gnomevfs/gstgnomevfssink.h:
19215           Use GstBaseSinkClass as parent_class member for class struct, not
19216           GstBaseSink.
19217
19218 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19219
19220         Patch by: Michael Benes
19221
19222         * gst/videotestsrc/gstvideotestsrc.c:
19223         (gst_video_test_src_class_init), (gst_video_test_src_start):
19224           Add start method to reset running time and number of frames sent
19225           when starting up (fixes #324696)
19226
19227 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19228
19229         * docs/plugins/Makefile.am:
19230         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19231         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19232         * docs/plugins/gst-plugins-base-plugins.args:
19233         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19234         * docs/plugins/gst-plugins-base-plugins.signals:
19235           Add docs stuff for gnomevfssrc and gnomevfssink.
19236
19237         * ext/gnomevfs/gstgnomevfssrc.c:
19238           Fix example pipeline in gtk-doc blurb.
19239
19240 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19241
19242         * ext/gnomevfs/Makefile.am:
19243         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
19244         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
19245         (gst_gnome_vfs_handle_get_type), (plugin_init):
19246         * ext/gnomevfs/gstgnomevfs.h:
19247         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
19248         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
19249         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
19250         (gst_gnome_vfs_sink_set_property),
19251         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
19252         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
19253         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
19254         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
19255         (gst_gnome_vfs_sink_uri_get_type),
19256         (gst_gnome_vfs_sink_uri_get_protocols),
19257         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
19258         (gst_gnome_vfs_sink_uri_handler_init):
19259         * ext/gnomevfs/gstgnomevfssink.h:
19260           Port gnomevfssink; add gtk-doc blurb.
19261
19262         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
19263         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
19264         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
19265         (gst_gnome_vfs_src_uri_get_type),
19266         (gst_gnome_vfs_src_uri_get_protocols),
19267         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
19268         (gst_gnome_vfs_src_uri_handler_init),
19269         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
19270         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
19271         (gst_gnome_vfs_src_send_additional_headers_callback),
19272         (gst_gnome_vfs_src_received_headers_callback),
19273         (gst_gnome_vfs_src_push_callbacks),
19274         (gst_gnome_vfs_src_pop_callbacks),
19275         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
19276         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
19277         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
19278         * ext/gnomevfs/gstgnomevfssrc.h:
19279           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
19280           file; add gtk-doc blurb with example pipelines.
19281
19282 === release 0.10.1 ===
19283
19284 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
19285
19286         * configure.ac:
19287           releasing 0.10.1, "Dobro Dedek"
19288
19289 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
19290
19291         * gst/typefind/gsttypefindfunctions.c:
19292         iLBC30 and iLBC20 added to typefind.
19293
19294 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19295
19296         * gst-libs/gst/audio/gstbaseaudiosink.c:
19297         (gst_base_audio_sink_class_init):
19298         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19299         (gst_base_audio_src_class_init):
19300           update strings, values are in microseconds
19301           change the default sink buffer time to something that is smaller
19302           (to help software volume mixing have a slightly lower delay) but
19303           still be acceptable on Wim's laptop
19304
19305 2005-12-20  Edward Hervey  <edward@fluendo.com>
19306
19307         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
19308         Made a quack, forgot to add DUCK to the riff video template.
19309
19310 2005-12-19  Edward Hervey  <edward@fluendo.com>
19311
19312         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
19313         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
19314         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
19315         (gst_ogm_parse_chain):
19316         Make sure pads are initialized correctly.
19317         * gst-libs/gst/riff/riff-ids.h:
19318         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19319         (gst_riff_create_video_template_caps):
19320         Add a whole bunch of FOURCC <=> MimeType.
19321         Extend the riff video pad template to support the newly added fourcc.
19322
19323 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19324
19325         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
19326         (gst_ogg_demux_activate_chain):
19327           Extra debug output when activating/deactivating chains.
19328
19329         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
19330         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
19331         (unlinked):
19332           Remove a queue from our list when it becomes unlinked.
19333           Don't add queues to elements in class 'Demux' if they
19334           can only produce one pad 
19335
19336 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19337
19338         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
19339         (gst_video_sink_get_type): Add a debug category.
19340
19341 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19342
19343         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19344         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
19345           Handle downstream newsegment by sending our own newsegment before the
19346           next buffer to be released. (#323900)
19347
19348 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19349
19350         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19351         (gst_base_rtp_depayload_set_gst_timestamp):
19352           add queue delay to new segment as well (as opposed to just the first
19353           buffer). (bug #322347)
19354
19355 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19356
19357         * ext/libvisual/visual.c: (make_valid_name):
19358           change some char* into char[]
19359         * gst/audiotestsrc/gstaudiotestsrc.c:
19360         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
19361         (gst_audio_test_src_create):
19362         * gst/audiotestsrc/gstaudiotestsrc.h:
19363           prepare to handle EOS and SEGMENT_DONE
19364
19365 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19366
19367         * tests/check/generic/states.c: (GST_START_TEST):
19368           Blacklist cdparanoia element in state test.
19369
19370 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19371
19372           Patch by: Benjamin Pineau
19373
19374         * gst/tcp/gsttcp.c:
19375         * gst/tcp/gsttcpclientsink.c:
19376         * gst/tcp/gsttcpserversink.c:
19377         * gst/tcp/gsttcpserversrc.c:
19378           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
19379
19380 2005-12-15  Michael Smith  <msmith@fluendo.com>
19381
19382         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
19383         (gst_video_rate_chain):
19384           Fix timestamping for videorate when the first buffer it sees has a
19385           non-zero timestamp. Fix some misleading debug output.
19386
19387 2005-12-15  Michael Smith  <msmith@fluendo.com>
19388
19389         * gst/audioresample/gstaudioresample.c:
19390           Don't leak all input buffers to audioresample.
19391
19392 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19393
19394         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
19395           Don't operate on empty text buffers. Strip newlines and
19396           tabs only from the end of the text, but leave them intact
19397           in the middle. Fix typo in gtk-doc description.
19398
19399 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19400
19401         * gst/playback/gstplaybasebin.c:
19402         * gst/playback/gstplaybin.c: (handoff):
19403           Make sure the video frame buffer we return to apps via the
19404           "frame" property always has caps set on it. Modify
19405           _gst_gvalue_set_object() macro to handle NULL objects
19406           gracefully too.
19407
19408 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
19409
19410         * gst/audiotestsrc/gstaudiotestsrc.c:
19411         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19412         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
19413         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
19414         (gst_audio_test_src_create):
19415         * gst/audiotestsrc/gstaudiotestsrc.h:
19416         Adjust to some recent api changes and add wtays new cool seeking
19417         capabillities
19418
19419 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
19420
19421         * ext/alsa/Makefile.am:
19422         * ext/alsa/gstalsadeviceprobe.c:
19423         * ext/alsa/gstalsadeviceprobe.h:
19424           Helper functions to add device probing via the GstPropertyProbe
19425           interface to a class.
19426
19427         * ext/alsa/gstalsamixer.h:
19428           Comment out GST_ALSA_MIXER, it returns a struct that's not
19429           used.
19430
19431         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
19432           Add some debug info. 
19433
19434         * ext/alsa/gstalsamixerelement.c:
19435         (gst_alsa_mixer_element_interface_supported),
19436         (gst_implements_interface_init),
19437         (gst_alsa_mixer_element_init_interfaces),
19438         (gst_alsa_mixer_element_class_init),
19439         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
19440         (gst_alsa_mixer_element_set_property),
19441         (gst_alsa_mixer_element_get_property),
19442         (gst_alsa_mixer_element_change_state):
19443         * ext/alsa/gstalsamixerelement.h:
19444           Add 'device' and 'device-name' properties. Add GstPropertyProbe
19445           for device handling (gnome-volume-control will need that).
19446
19447 2005-12-12  Christian Schaller  <uraeus@gnome.org>
19448
19449         * ext/Makefile.am: fix cdparanoia entry
19450         * gst-plugins-base.spec.in: add cdparanoia
19451
19452 2005-12-12  Michael Smith  <msmith@fluendo.com>
19453
19454         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
19455           Use the correct function to free list of typefind factories.
19456
19457 2005-12-12  Wim Taymans  <wim@fluendo.com>
19458
19459         * gst/videotestsrc/gstvideotestsrc.c:
19460         (gst_video_test_src_class_init), (gst_video_test_src_init),
19461         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
19462         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
19463         (gst_video_test_src_create):
19464         * gst/videotestsrc/gstvideotestsrc.h:
19465         Implement seeking in videotestsrc.
19466         Small cleanups.
19467
19468 2005-12-12  Wim Taymans  <wim@fluendo.com>
19469
19470         * ext/cdparanoia/Makefile.am:
19471         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
19472         (gst_paranoia_endian_get_type), (_do_init),
19473         (cdparanoia_class_init), (cdparanoia_init),
19474         (cdparanoia_set_property), (cdparanoia_get_property),
19475         (cdparanoia_do_seek), (cdparanoia_is_seekable),
19476         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
19477         (cdparanoia_convert), (cdparanoia_get_query_types),
19478         (cdparanoia_query), (cdparanoia_set_index),
19479         (cdparanoia_uri_set_uri):
19480         * ext/cdparanoia/gstcdparanoia.h:
19481         Partially ported cdparanoia now that basesrc can support a
19482         plugin like this..
19483
19484 2005-12-12  Wim Taymans  <wim@fluendo.com>
19485
19486         * tests/examples/seek/scrubby.c: (main):
19487         Set higher priority for bus events so they don't get reordered with
19488         gtk gui events.
19489
19490         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
19491         (flush_toggle_cb), (main):
19492         Added checkbox to disable flushing seeks. 
19493         Disable scrubbing when doing non flushing seeks.
19494
19495 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19496
19497         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
19498         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
19499         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
19500         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
19501           Implement some sort of event handling that doesn't rely on
19502           g_return_if_fail; make sure we always push the last chunk of an 
19503           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
19504           state change function; remove some old cruft. Seeking is still
19505           rather unlikely to work though.
19506
19507         * tools/.cvsignore:
19508           Ignore more.
19509
19510 2005-12-11  Julien MOUTTE  <julien@moutte.net>
19511
19512         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
19513         Fixed a leak of the current image reference when cleaning up.
19514         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
19515
19516 2005-12-09  Michael Smith  <msmith@fluendo.com>
19517
19518         * tools/Makefile.am:
19519         * tools/gst-launch-ext-m.m:
19520           Remove gst-launch-ext. It doesn't work, and is no longer
19521           particularly useful.
19522
19523 2005-12-08  Luca Ognibene  <luogni@tin.it>
19524
19525         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
19526           don't pass random values to ogmparse convert function.
19527           Make seeking possible in the exile1.ogm file.
19528
19529 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
19530
19531         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
19532         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
19533           Work around refcount problem with g_value_set_object() that occur
19534           if the core has been compiled against GLib-2.6 (g_value_set_object()
19535           will only g_object_ref() the element, but the caller will
19536           gst_object_unref() it and bad things will happen due to the way
19537           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
19538           totem for people on FC4 using Thomas's 0.10 RPMs.
19539           
19540 2005-12-07  Edward Hervey  <edward@fluendo.com>
19541
19542         Time to welcome ogm to 0.10 :)
19543         
19544         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
19545         (gst_ogg_pad_typefind):
19546         Oggdemux can now properly typefind elements with dynamic pads.
19547         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19548         Properly set caps on src pad, and set caps on outgoing buffers.
19549
19550 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19551
19552         * ext/alsa/gstalsamixer.h:
19553         * ext/alsa/gstalsamixerelement.h:
19554         * ext/alsa/gstalsamixeroptions.h:
19555         * ext/alsa/gstalsamixertrack.h:
19556         * ext/alsa/gstalsasink.c:
19557         * ext/alsa/gstalsasink.h:
19558         * ext/alsa/gstalsasrc.c:
19559         * ext/alsa/gstalsasrc.h:
19560         * ext/cdparanoia/gstcdparanoia.h:
19561         * ext/gnomevfs/gstgnomevfsuri.h:
19562         * ext/ogg/gstoggdemux.c:
19563         * ext/ogg/gstoggmux.c:
19564         * ext/pango/gsttextoverlay.h:
19565         * ext/theora/theoradec.c:
19566         * ext/theora/theoraenc.c:
19567         * ext/vorbis/vorbisdec.h:
19568         * ext/vorbis/vorbisenc.c:
19569         * ext/vorbis/vorbisenc.h:
19570         * ext/vorbis/vorbisparse.h:
19571         * gst-libs/gst/audio/gstaudioclock.h:
19572         * gst-libs/gst/audio/gstaudiosink.c:
19573         * gst-libs/gst/audio/gstaudiosink.h:
19574         * gst-libs/gst/audio/gstaudiosrc.c:
19575         * gst-libs/gst/audio/gstaudiosrc.h:
19576         * gst-libs/gst/audio/gstbaseaudiosink.c:
19577         * gst-libs/gst/audio/gstbaseaudiosink.h:
19578         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19579         * gst-libs/gst/audio/gstbaseaudiosrc.h:
19580         * gst-libs/gst/audio/gstringbuffer.h:
19581         * gst-libs/gst/audio/multichannel.h:
19582         * gst-libs/gst/floatcast/floatcast.h:
19583         * gst-libs/gst/interfaces/colorbalance.c:
19584         * gst-libs/gst/interfaces/colorbalance.h:
19585         * gst-libs/gst/interfaces/colorbalancechannel.h:
19586         * gst-libs/gst/interfaces/mixer.h:
19587         * gst-libs/gst/interfaces/mixeroptions.h:
19588         * gst-libs/gst/interfaces/mixertrack.h:
19589         * gst-libs/gst/interfaces/navigation.h:
19590         * gst-libs/gst/interfaces/propertyprobe.h:
19591         * gst-libs/gst/interfaces/tuner.h:
19592         * gst-libs/gst/interfaces/tunerchannel.h:
19593         * gst-libs/gst/interfaces/tunernorm.h:
19594         * gst-libs/gst/interfaces/xoverlay.h:
19595         * gst-libs/gst/netbuffer/gstnetbuffer.h:
19596         * gst-libs/gst/riff/riff-ids.h:
19597         * gst-libs/gst/riff/riff-media.h:
19598         * gst-libs/gst/riff/riff-read.h:
19599         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19600         * gst-libs/gst/rtp/gstbasertppayload.c:
19601         * gst-libs/gst/rtp/gstbasertppayload.h:
19602         * gst-libs/gst/rtp/gstrtpbuffer.c:
19603         * gst-libs/gst/rtp/gstrtpbuffer.h:
19604         * gst-libs/gst/tag/gsttageditingprivate.h:
19605         * gst-libs/gst/tag/gstvorbistag.c:
19606         (gst_tag_list_from_vorbiscomment_buffer):
19607         * gst-libs/gst/tag/tag.h:
19608         * gst-libs/gst/video/video.h:
19609         * gst/adder/gstadder.c:
19610         * gst/adder/gstadder.h:
19611         * gst/audioconvert/audioconvert.c:
19612         * gst/audioconvert/audioconvert.h:
19613         * gst/audioconvert/gstaudioconvert.c:
19614         * gst/audioconvert/gstchannelmix.c:
19615         * gst/audioconvert/gstchannelmix.h:
19616         * gst/audiorate/gstaudiorate.c:
19617         * gst/audioresample/buffer.h:
19618         * gst/audioresample/functable.h:
19619         * gst/audioresample/gstaudioresample.c:
19620         * gst/audioresample/resample.h:
19621         * gst/ffmpegcolorspace/avcodec.h:
19622         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19623         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19624         * gst/ffmpegcolorspace/imgconvert.c:
19625         * gst/ffmpegcolorspace/imgconvert_template.h:
19626         * gst/playback/gstdecodebin.c:
19627         * gst/playback/gstplaybasebin.h:
19628         * gst/playback/gstplaybin.c:
19629         * gst/playback/gststreaminfo.h:
19630         * gst/tcp/gstfdset.c:
19631         * gst/tcp/gstfdset.h:
19632         * gst/tcp/gstmultifdsink.c:
19633         * gst/tcp/gstmultifdsink.h:
19634         * gst/tcp/gsttcp.h:
19635         * gst/tcp/gsttcpclientsrc.c:
19636         * gst/tcp/gsttcpclientsrc.h:
19637         * gst/tcp/gsttcpplugin.h:
19638         * gst/tcp/gsttcpserversink.c:
19639         * gst/tcp/gsttcpserversrc.c:
19640         * gst/typefind/gsttypefindfunctions.c:
19641         * gst/videorate/gstvideorate.c:
19642         * gst/videotestsrc/gstvideotestsrc.h:
19643         * gst/videotestsrc/videotestsrc.h:
19644         * sys/v4l/gstv4lcolorbalance.h:
19645         * sys/v4l/gstv4ltuner.h:
19646         * sys/v4l/gstv4lxoverlay.h:
19647         * sys/v4l/v4l_calls.h:
19648         * sys/v4l/videodev_mjpeg.h:
19649         * tests/check/elements/audioconvert.c:
19650         * tests/check/elements/audioresample.c:
19651         * tests/check/elements/audiotestsrc.c:
19652         * tests/check/elements/videotestsrc.c:
19653         * tests/check/elements/volume.c:
19654         * tests/examples/seek/scrubby.c:
19655         * tests/examples/seek/seek.c:
19656           expand tabs
19657
19658 === release 0.10.0 ===
19659
19660 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19661
19662         * configure.ac:
19663           releasing 0.10.0, "Mont-d'or"
19664
19665 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
19666
19667         * tests/examples/seek/Makefile.am:
19668         Build fix for when gtk is not available.
19669
19670 2005-12-05  Andy Wingo  <wingo@pobox.com>
19671
19672         * ext/libvisual/visual.c: (get_buffer):
19673         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
19674         * ext/pango/gsttextrender.c: (gst_text_render_chain):
19675         * ext/theora/theoradec.c: (theora_handle_data_packet):
19676         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19677         (theora_enc_chain):
19678         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19679         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
19680         Update for alloc_buffer changes.
19681
19682 2005-12-05  Andy Wingo  <wingo@pobox.com>
19683
19684         patch by: Kai Vehmanen <kv2004 eca cx>
19685         
19686         * gst-libs/gst/rtp/gstbasertpdepayload.c
19687         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
19688
19689 2005-12-04  Andy Wingo  <wingo@pobox.com>
19690
19691         patch by: Sebastien Cote <sebas642 yahoo ca>
19692         
19693         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
19694         Fixes #319172.
19695
19696 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19697
19698         * docs/plugins/Makefile.am:
19699         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19700         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19701         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19702         * ext/pango/gstclockoverlay.c:
19703         * ext/pango/gsttextoverlay.c: 
19704         * ext/pango/gsttextrender.c:
19705         * ext/pango/gsttimeoverlay.c:
19706           Add gtk-doc blurbs to pango elements.
19707
19708 2005-12-02  Wim Taymans  <wim@fluendo.com>
19709
19710         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
19711         * gst/audioresample/buffer.h:
19712         * gst/audioresample/gstaudioresample.c:
19713         * gst/audioresample/gstaudioresample.h:
19714         * gst/audioresample/resample.c: (resample_input_flush),
19715         (resample_input_pushthrough), (resample_input_eos),
19716         (resample_get_output_size_for_input),
19717         (resample_get_input_size_for_output), (resample_get_output_size),
19718         (resample_get_output_data):
19719         * gst/audioresample/resample.h:
19720         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19721         Fix audioresample, seek torture, new segments, reverse negotiation
19722         etc.. work fine.
19723
19724 2005-12-02  Wim Taymans  <wim@fluendo.com>
19725
19726         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19727         Small cleanups.
19728
19729 2005-12-02  Wim Taymans  <wim@fluendo.com>
19730
19731         * gst/audioconvert/gstaudioconvert.c:
19732         (gst_audio_convert_transform):
19733         Post errors.
19734
19735 === release 0.9.7 ===
19736
19737 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19738
19739         * configure.ac:
19740           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
19741
19742 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19743
19744         * Makefile.am:
19745         * po/hu.po:
19746         * win32/MANIFEST:
19747         * win32/gst.sln:
19748           add win32 MANIFEST file
19749           do something to the hungarian translation
19750
19751 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
19752
19753         * ext/Makefile.am:
19754           Add $(PANGO_DIR) to SUBDIRS
19755
19756         * ext/pango/gstclockoverlay.c:
19757         * ext/pango/gsttimeoverlay.c:
19758           Fix and improve element descriptions.
19759
19760 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19761
19762         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19763         * docs/plugins/inspect/plugin-libvisual.xml:
19764         * docs/plugins/inspect/plugin-pango.xml:
19765           add pango plugin to docs
19766
19767 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19768
19769         * configure.ac:
19770         * ext/Makefile.am:
19771           moved pango to base
19772
19773 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19774
19775         * configure.ac:
19776         * tests/Makefile.am:
19777         * tests/icles/.cvsignore:
19778         * tests/icles/Makefile.am:
19779         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
19780         (close_display), (resize_window), (move_window), (create_window),
19781         (terminate_playback), (pause_playback), (start_playback), (main):
19782           add stress test for xoverlay from Julien
19783
19784 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19785
19786         * docs/libs/tmpl/gstcolorbalance.sgml:
19787         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19788         * gst-libs/gst/rtp/gstbasertppayload.c:
19789         * gst-libs/gst/rtp/gstrtpbuffer.c:
19790         * gst-libs/gst/rtp/gstrtpbuffer.h:
19791           Do burger's rename for rtp payloaders and depayloaders
19792
19793 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19794
19795         * win32/:
19796           add Visual Studio 6 build files
19797
19798 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19799
19800         * docs/libs/gst-plugins-base-libs-docs.sgml:
19801         * docs/libs/gst-plugins-base-libs-sections.txt:
19802         * docs/libs/tmpl/gstaudio.sgml:
19803         * docs/libs/tmpl/gstringbuffer.sgml:
19804         * gst-libs/gst/interfaces/xoverlay.c:
19805         * gst-libs/gst/video/gstvideofilter.c:
19806         * gst-libs/gst/video/gstvideosink.c:
19807           update documentation
19808
19809 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19810
19811         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
19812         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
19813         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
19814         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
19815         (gst_multi_fd_sink_get_stats),
19816         (gst_multi_fd_sink_remove_client_link),
19817         (gst_multi_fd_sink_handle_client_read),
19818         (gst_multi_fd_sink_client_queue_data),
19819         (gst_multi_fd_sink_client_queue_caps),
19820         (gst_multi_fd_sink_client_queue_buffer),
19821         (gst_multi_fd_sink_new_client),
19822         (gst_multi_fd_sink_handle_client_write),
19823         (gst_multi_fd_sink_recover_client),
19824         (gst_multi_fd_sink_queue_buffer),
19825         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
19826         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
19827         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
19828         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
19829         * gst/tcp/gstmultifdsink.h:
19830         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
19831         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
19832         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
19833         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
19834         (gst_tcp_client_sink_set_property),
19835         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
19836         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
19837         * gst/tcp/gsttcpclientsink.h:
19838         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
19839         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
19840         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
19841         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
19842         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
19843         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
19844         * gst/tcp/gsttcpclientsrc.h:
19845         * gst/tcp/gsttcpplugin.c: (plugin_init):
19846         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
19847         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
19848         (gst_tcp_server_sink_finalize),
19849         (gst_tcp_server_sink_handle_server_read),
19850         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
19851         (gst_tcp_server_sink_set_property),
19852         (gst_tcp_server_sink_get_property),
19853         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
19854         * gst/tcp/gsttcpserversink.h:
19855         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
19856         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
19857         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
19858         (gst_tcp_server_src_set_property),
19859         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
19860         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
19861         * gst/tcp/gsttcpserversrc.h:
19862           more borgifying
19863
19864 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19865
19866         * docs/plugins/Makefile.am:
19867         * docs/plugins/gst-plugins-base-plugins.args:
19868         * docs/plugins/inspect/plugin-libvisual.xml:
19869         * gst/audioconvert/plugin.h:
19870         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
19871         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
19872         (gst_audio_rate_setcaps), (gst_audio_rate_init),
19873         (gst_audio_rate_chain), (gst_audio_rate_set_property),
19874         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
19875         (plugin_init):
19876         * gst/audiotestsrc/gstaudiotestsrc.c:
19877         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
19878         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19879         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
19880         (gst_audio_test_src_get_query_types),
19881         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
19882         (gst_audio_test_src_create_square),
19883         (gst_audio_test_src_create_saw),
19884         (gst_audio_test_src_create_triangle),
19885         (gst_audio_test_src_create_silence),
19886         (gst_audio_test_src_create_white_noise),
19887         (gst_audio_test_src_init_pink_noise),
19888         (gst_audio_test_src_generate_pink_noise_value),
19889         (gst_audio_test_src_create_pink_noise),
19890         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
19891         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
19892         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
19893         (plugin_init):
19894         * gst/audiotestsrc/gstaudiotestsrc.h:
19895         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
19896         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
19897         (gst_sub_parse_init), (gst_sub_parse_formats),
19898         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
19899         (convert_encoding), (get_next_line),
19900         (gst_sub_parse_data_format_autodetect),
19901         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
19902         (gst_sub_parse_loop), (gst_sub_parse_chain),
19903         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
19904         (plugin_init):
19905         * gst/subparse/gstsubparse.h:
19906         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
19907         (gst_video_rate_base_init), (gst_video_rate_class_init),
19908         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
19909         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
19910         (gst_video_rate_init), (gst_video_rate_event),
19911         (gst_video_rate_chain), (gst_video_rate_set_property),
19912         (gst_video_rate_get_property), (gst_video_rate_change_state),
19913         (plugin_init):
19914         * gst/videoscale/gstvideoscale.c:
19915         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
19916         (gst_video_scale_src_template_factory),
19917         (gst_video_scale_sink_template_factory),
19918         (gst_video_scale_get_type), (gst_video_scale_base_init),
19919         (gst_video_scale_class_init), (gst_video_scale_init),
19920         (gst_video_scale_set_property), (gst_video_scale_get_property),
19921         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
19922         (gst_video_scale_prepare_size), (parse_caps),
19923         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
19924         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
19925         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
19926         (plugin_init):
19927         * gst/videoscale/gstvideoscale.h:
19928         * gst/videotestsrc/gstvideotestsrc.c:
19929         (gst_video_test_src_pattern_get_type),
19930         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
19931         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
19932         (gst_video_test_src_set_pattern),
19933         (gst_video_test_src_set_property),
19934         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
19935         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
19936         (gst_video_test_src_event), (gst_video_test_src_get_times),
19937         (gst_video_test_src_create), (plugin_init):
19938         * gst/videotestsrc/gstvideotestsrc.h:
19939         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
19940         (gst_video_test_src_smpte), (gst_video_test_src_snow),
19941         (gst_video_test_src_black):
19942         * gst/videotestsrc/videotestsrc.h:
19943           borgify further
19944           clean up docs a little
19945
19946 2005-11-30  Wim Taymans  <wim@fluendo.com>
19947
19948         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19949         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
19950         (gst_basertppayload_event), (gst_basertppayload_push),
19951         (gst_basertppayload_change_state):
19952         * gst-libs/gst/rtp/gstbasertppayload.h:
19953         closed #320644.
19954
19955 2005-11-30  Julien MOUTTE  <julien@moutte.net>
19956
19957         * docs/libs/gst-plugins-base-libs-docs.sgml:
19958         * docs/libs/gst-plugins-base-libs-sections.txt:
19959         * gst-libs/gst/video/gstvideofilter.c:
19960         * gst-libs/gst/video/gstvideosink.c:
19961         * gst-libs/gst/video/gstvideosink.h: Adding docs.
19962
19963 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19964
19965         * LICENSE:
19966           move
19967         * po/af.po:
19968         * po/az.po:
19969         * po/cs.po:
19970         * po/en_GB.po:
19971         * po/hu.po:
19972         * po/it.po:
19973         * po/nb.po:
19974         * po/nl.po:
19975         * po/or.po:
19976         * po/sq.po:
19977         * po/sr.po:
19978         * po/sv.po:
19979         * po/uk.po:
19980         * po/vi.po:
19981         * Makefile.am:
19982           update
19983         * scripts/autoplugins.sh:
19984           remove
19985
19986 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19987
19988         * Makefile.am:
19989         * configure.ac:
19990         * examples/Makefile.am:
19991         * examples/capsfilter/Makefile.am:
19992         * examples/capsfilter/capsfilter1.c:
19993         * examples/gob/Makefile.am:
19994         * examples/gob/gst-identity2.gob:
19995         * examples/indexing/.cvsignore:
19996         * examples/indexing/Makefile.am:
19997         * examples/indexing/indexmpeg.c:
19998         * examples/seeking/.cvsignore:
19999         * examples/seeking/Makefile.am:
20000         * examples/seeking/cdparanoia.c:
20001         * examples/seeking/cdplayer.c:
20002         * examples/seeking/chained.c:
20003         * examples/seeking/scrubby.c:
20004         * examples/seeking/seek.c:
20005         * examples/stats/Makefile.am:
20006         * examples/stats/mp2ogg.c:
20007         * examples/switch/.cvsignore:
20008         * examples/switch/Makefile.am:
20009         * examples/switch/switcher.c:
20010         * tests/Makefile.am:
20011         * tests/check/generic/.cvsignore:
20012         * tests/check/pipelines/.cvsignore:
20013         * tests/examples/Makefile.am:
20014         * tests/examples/seek/Makefile.am:
20015           reorganize stuff under tests/
20016
20017 2005-11-30  Edward Hervey  <edward@fluendo.com>
20018
20019         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
20020         Go away you stupid GstStaticPadTemplate memleak.
20021
20022 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20023
20024         * gst-libs/gst/net/Makefile.am:
20025         * gst-libs/gst/net/README:
20026         * gst-libs/gst/net/gstnetbuffer.c:
20027         * gst-libs/gst/net/gstnetbuffer.h:
20028           this was moved to "netbuffer"
20029
20030 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20031
20032         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
20033         (gst_video_filter_class_init), (gst_video_filter_init):
20034         * gst-libs/gst/video/gstvideofilter.h:
20035           borgify name to bring in line with other classes
20036
20037 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20038
20039         * gst/audioscale/.cvsignore:
20040         * gst/audioscale/Makefile.am:
20041         * gst/audioscale/README:
20042         * gst/audioscale/audioscale.vcproj:
20043         * gst/audioscale/dtof.c:
20044         * gst/audioscale/dtos.c:
20045         * gst/audioscale/functable.c:
20046         * gst/audioscale/gstaudioscale.c:
20047         * gst/audioscale/gstaudioscale.h:
20048         * gst/audioscale/private.h:
20049         * gst/audioscale/resample.c:
20050         * gst/audioscale/resample.h:
20051         * gst/audioscale/test.c:
20052           remove
20053
20054 2005-11-30  Edward Hervey  <edward@fluendo.com>
20055
20056         * gst-libs/gst/netbuffer/Makefile.am:
20057         really, really tired
20058
20059 2005-11-30  Edward Hervey  <edward@fluendo.com>
20060
20061         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20062         Update for new GstTypeFindFactory _register()
20063
20064 2005-11-30  Edward Hervey  <edward@fluendo.com>
20065
20066         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
20067         Let's not override libgstnet from core for no reason...
20068         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
20069         Ok, maybe not so quick next time.
20070
20071 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20072
20073         * configure.ac:
20074         * gst-libs/gst/Makefile.am:
20075           moved gst-libs/gst/net to netbuffer through CVS surgery
20076           remove old directory
20077           updating build to accomodate
20078           (#322257)
20079
20080 2005-11-29  Andy Wingo  <wingo@pobox.com>
20081
20082         * pkgconfig/gstreamer-plugins-base.pc.in:
20083         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
20084         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
20085         (#322257).
20086
20087 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20088
20089         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
20090         3rd time's the charm. Correct ref-counting for discarded buffers.
20091
20092 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20093
20094         * gst/playback/gststreamselector.c:
20095         (gst_stream_selector_class_init),
20096         (gst_stream_selector_set_property),
20097         (gst_stream_selector_get_property),
20098         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
20099         Fix ref-counting
20100
20101 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20102
20103         * gst/subparse/gstsubparse.c: (feed_textbuf):
20104           Don't access already unref'ed buffer.
20105
20106 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20107
20108         * gst/playback/gststreamselector.c:
20109         (gst_stream_selector_class_init), (gst_stream_selector_init),
20110         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
20111         (gst_stream_selector_get_property),
20112         (gst_stream_selector_get_linked_pad),
20113         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
20114         * gst/playback/gststreamselector.h:
20115         Add the active-pad property for playbin to use shortly. Ignore buffers
20116         from any other pad, returning GST_FLOW_NOT_LINKED
20117
20118 2005-11-29  Julien MOUTTE  <julien@moutte.net>
20119
20120         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
20121         patch from bug #322704 (Alessandro Decina).
20122
20123 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20124
20125         * gst-libs/gst/audio/Makefile.am:
20126           folded audiofilter into the audio library
20127
20128 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20129
20130         * gst/videoscale/gstvideoscale.h:
20131         * gst/videoscale/gstvideoscale.c:
20132           remove unimplemented scale methods
20133
20134 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20135
20136         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
20137           Don't leak caps.
20138
20139 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20140
20141         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
20142         (gst_ximagesink_setcaps):
20143         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
20144         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
20145         happens (only visible on ximagesink but bug is in xv too) set_caps was
20146         destroying the internal x[v]image used to memcpy non locally alloced
20147         buffers so that it got renewed on next _chain. The issue is that 
20148         _expose will try to put that image as it reffed it in _put.
20149         Using gst_buffer_unref instead of destroy fixes it !
20150
20151 2005-11-28  Edward Hervey  <edward@fluendo.com>
20152
20153         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20154         (try_to_link_1), (queue_filled_cb):
20155         Better use of the queues. Start with a small size queue and only increase
20156         the size of the queues when the other queues are empty.
20157
20158 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
20159
20160         * gst-libs/gst/video/Makefile.am:
20161           compile in copied-over videofilter into the video library
20162         * gst-libs/gst/video/videosink.h:
20163           rename the header to gstvideosink.h since it's a base GstObject class
20164         * sys/ximage/ximagesink.h:
20165         * sys/xvimage/xvimagesink.h:
20166           use the new header
20167
20168 2005-11-28  Wim Taymans  <wim@fluendo.com>
20169
20170         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
20171         * gst/playback/gstplaybasebin.h:
20172         Prepare to handle errors betters.
20173
20174         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
20175         Set sinks to PAUSED first before adding and linking them so that
20176         we don't interrupt dataflow.
20177
20178 2005-11-28  Wim Taymans  <wim@fluendo.com>
20179
20180         * gst-libs/gst/audio/TODO:
20181         Updated TODO
20182
20183         * gst-libs/gst/audio/gstaudiosink.c:
20184         (gst_audioringbuffer_open_device),
20185         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
20186         (gst_audioringbuffer_release):
20187         Small cleanups.
20188
20189         * gst-libs/gst/audio/gstbaseaudiosink.c:
20190         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
20191         (gst_base_audio_sink_change_state):
20192         Slave to the master clock when going to PLAYING and unslave when
20193         going to PAUSED.
20194
20195         * gst-libs/gst/audio/gstringbuffer.c:
20196         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
20197         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
20198         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
20199         (gst_ring_buffer_clear_all), (wait_segment),
20200         (gst_ring_buffer_commit), (gst_ring_buffer_read),
20201         (gst_ring_buffer_advance):
20202         * gst-libs/gst/audio/gstringbuffer.h:
20203         Add some docs and cleanups.
20204
20205 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20206
20207         * sys/xvimage/xvimagesink.c:
20208         (gst_xvimagesink_navigation_send_event): Fix navigation events
20209         coordinates translation with pixel aspect ratios.
20210
20211 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20212
20213         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
20214         Use calculated video geometry from _setcaps instead of buffer
20215         caps to respect pixel aspect ratio. (fixes #322388)
20216
20217 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20218
20219         * docs/libs/tmpl/gstcolorbalance.sgml:
20220         * docs/libs/tmpl/gstmixer.sgml:
20221         * docs/libs/tmpl/gstxoverlay.sgml:
20222         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
20223         interface.
20224
20225 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20226
20227         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
20228         Refuse to create an XvImage if we can't find the format.
20229
20230 2005-11-28  Edward Hervey  <edward@fluendo.com>
20231
20232         * gst-libs/gst/riff/riff-media.c:
20233         (gst_riff_create_audio_template_caps):
20234         Add ATRAC3 to the list of riff-possible audio caps.
20235         I know we still don't have a plugin for atrac3, but it's saner to output
20236         that than a cryptic mimetype.
20237
20238 2005-11-27  Edward Hervey  <edward@fluendo.com>
20239
20240         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
20241         Don't try to create a zero-sized subbuffer.
20242
20243 2005-11-27  Julien MOUTTE  <julien@moutte.net>
20244
20245         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
20246         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
20247         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
20248         (gst_ximagesink_expose): Fixed a tricky race.
20249         * sys/ximage/ximagesink.h:
20250         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
20251         (gst_xvimagesink_expose): Fixed a tricky race.
20252         * sys/xvimage/xvimagesink.h:
20253
20254 2005-11-27  Edward Hervey  <edward@fluendo.com>
20255
20256         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20257         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
20258         Remove unused properties, and add queues between demuxers and decoders
20259         so that a lot more files can preroll properly.
20260
20261 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20262
20263         * gst-libs/gst/net/Makefile.am:
20264         * gst-libs/gst/rtp/Makefile.am:
20265         * gst-libs/gst/tag/Makefile.am:
20266           remove silly include
20267         * gst/tags/Makefile.am:
20268         * gst/tags/gsttagediting.c:
20269         * gst/tags/gsttageditingprivate.h:
20270         * gst/tags/tagedit.vcproj:
20271           remove directory, is as good as empty
20272
20273 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20274
20275         * configure.ac:
20276           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
20277         * gst-libs/Makefile.am:
20278         * gst-libs/gst/audio/Makefile.am:
20279         * gst-libs/gst/interfaces/Makefile.am:
20280         * gst-libs/gst/net/Makefile.am:
20281         * gst-libs/gst/riff/Makefile.am:
20282         * gst-libs/gst/rtp/Makefile.am:
20283         * gst-libs/gst/tag/Makefile.am:
20284         * gst-libs/gst/video/Makefile.am:
20285           and use them
20286
20287 2005-11-27  Julien MOUTTE  <julien@moutte.net>
20288
20289         * docs/libs/tmpl/gstcolorbalance.sgml:
20290         * docs/libs/tmpl/gstmixer.sgml:
20291         * docs/libs/tmpl/gstxoverlay.sgml:
20292         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
20293         * sys/ximage/ximagesink.h:
20294         * sys/xvimage/xvimagesink.h: More and more documentation.
20295
20296 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20297
20298         * docs/libs/gst-plugins-base-libs-docs.sgml:
20299         * docs/libs/gst-plugins-base-libs-sections.txt:
20300         * docs/libs/tmpl/gstcolorbalance.sgml:
20301         * docs/libs/tmpl/gstmixer.sgml:
20302         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
20303         to documentation.
20304
20305 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20306
20307         * docs/plugins/Makefile.am:
20308         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20309         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20310         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
20311
20312 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20313
20314         * docs/plugins/Makefile.am:
20315         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20316         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20317         * docs/plugins/inspect/plugin-adder.xml:
20318         * docs/plugins/inspect/plugin-alsa.xml:
20319         * docs/plugins/inspect/plugin-audioconvert.xml:
20320         * docs/plugins/inspect/plugin-audiorate.xml:
20321         * docs/plugins/inspect/plugin-audioresample.xml:
20322         * docs/plugins/inspect/plugin-audiotestsrc.xml:
20323         * docs/plugins/inspect/plugin-decodebin.xml:
20324         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
20325         * docs/plugins/inspect/plugin-gnomevfs.xml:
20326         * docs/plugins/inspect/plugin-ogg.xml:
20327         * docs/plugins/inspect/plugin-playbin.xml:
20328         * docs/plugins/inspect/plugin-subparse.xml:
20329         * docs/plugins/inspect/plugin-tcp.xml:
20330         * docs/plugins/inspect/plugin-theora.xml:
20331         * docs/plugins/inspect/plugin-typefindfunctions.xml:
20332         * docs/plugins/inspect/plugin-video4linux.xml:
20333         * docs/plugins/inspect/plugin-videorate.xml:
20334         * docs/plugins/inspect/plugin-videoscale.xml:
20335         * docs/plugins/inspect/plugin-videotestsrc.xml:
20336         * docs/plugins/inspect/plugin-volume.xml:
20337         * docs/plugins/inspect/plugin-vorbis.xml:
20338         * docs/plugins/inspect/plugin-ximagesink.xml:
20339         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
20340         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
20341
20342 2005-11-26  Edward Hervey  <edward@fluendo.com>
20343
20344         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
20345         Properly return GstFlowReturn from gst_pad_push in chain functions.
20346
20347 2005-11-25  Michael Smith  <msmith@fluendo.com>
20348
20349         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
20350         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
20351         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20352         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
20353           Handle various conditions better when we don't understand a stream.
20354           Removes a heap of CRITICALs on ogg streams containing unknown data.
20355
20356 2005-11-24  Andy Wingo  <wingo@pobox.com>
20357
20358         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
20359         Be threadsafe.
20360
20361 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20362
20363         * configure.ac: back to HEAD
20364
20365 === release 0.9.6 ===
20366
20367 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20368
20369         * configure.ac:
20370           releasing 0.9.6, "White Eight"
20371
20372 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20373
20374         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
20375         * docs/plugins/inspect/plugin-sine.xml:
20376           remove sinesrc some more
20377
20378 2005-11-23  Wim Taymans  <wim@fluendo.com>
20379
20380         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
20381         If we are reading too slowly, jump forward in the ringbuffer
20382         instead of blocking.
20383
20384 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20385
20386         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20387         (gst_visual_chain):
20388         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
20389         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
20390         (gst_videorate_chain):
20391         * gst/videotestsrc/gstvideotestsrc.c:
20392         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
20393         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
20394         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
20395         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
20396         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20397         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20398           Updates for API changes
20399
20400 2005-11-23  Wim Taymans  <wim@fluendo.com>
20401
20402         * gst-libs/gst/audio/gstbaseaudiosink.c:
20403         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20404         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20405         Fix for calibration API change.
20406
20407 2005-11-23  Michael Smith <msmith@fluendo.com>
20408
20409         * gst-libs/gst/audio/multichannel.c:
20410         (gst_audio_get_channel_positions),
20411         (gst_audio_set_channel_positions),
20412         (gst_audio_set_structure_channel_positions_list),
20413         (gst_audio_fixate_channel_positions):
20414           Use gst_value_array_*() functions on value arrays, not
20415           gst_value_list_*().
20416
20417 2005-11-23  Edward Hervey  <edward@fluendo.com>
20418
20419         * autogen.sh:
20420         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
20421         Fixes autogen
20422
20423 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20424
20425         * check/Makefile.am:
20426         * check/elements/videotestsrc.c: (setup_videotestsrc),
20427         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
20428         (main):
20429           add a test for videotestsrc
20430
20431 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20432
20433         * gst/sine/.cvsignore:
20434         * gst/sine/Makefile.am:
20435         * gst/sine/gstsinesrc.c:
20436         * gst/sine/gstsinesrc.h:
20437         * gst/sine/sinesrc.vcproj:
20438           and remove sinesrc from the repository.  Closes #321446
20439
20440 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20441
20442         * configure.ac:
20443         * gst-plugins-base.spec.in:
20444           remove sinesrc from the build
20445
20446 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20447
20448         * check/Makefile.am:
20449         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
20450         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
20451         (main):
20452           add a test for audiotestsrc, testing all waves.  Even seems
20453           leak-free at first glance, nice job Stefan
20454
20455 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20456
20457         * po/af.po:
20458         * po/az.po:
20459         * po/cs.po:
20460         * po/en_GB.po:
20461         * po/hu.po:
20462         * po/it.po:
20463         * po/nb.po:
20464         * po/nl.po:
20465         * po/or.po:
20466         * po/sq.po:
20467         * po/sr.po:
20468         * po/sv.po:
20469         * po/uk.po:
20470         * po/vi.po:
20471           Translation string updates
20472
20473         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20474         (gst_v4lsrc_set_caps):
20475         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20476         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20477         * sys/v4l/v4lsrc_calls.h:
20478           Improve v4lsrc, by making it work again.
20479
20480 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20481
20482         * ext/libvisual/visual.c: (gst_visual_chain):
20483           Fix the fps calculations.
20484
20485         * gst/ffmpegcolorspace/avcodec.h:
20486           Move structure element for clarity
20487
20488         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
20489         * gst-libs/gst/interfaces/tunernorm.h:
20490         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
20491         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20492         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20493         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
20494         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
20495         (gst_v4lmjpegsrc_getcaps):
20496         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20497         (gst_v4lsrc_set_caps):
20498         * sys/v4l/gstv4lsrc.h:
20499         * sys/v4l/v4l_calls.c: (gst_v4l_open):
20500         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20501         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20502         * sys/v4l/v4lsrc_calls.h:
20503           Fractional framerates...
20504
20505 2005-11-22  Wim Taymans  <wim@fluendo.com>
20506
20507         * gst-libs/gst/audio/gstbaseaudiosink.c:
20508         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20509         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20510         And we provide a clock by default, of course...
20511
20512 2005-11-22  Wim Taymans  <wim@fluendo.com>
20513
20514         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
20515         This clock can be slaved to a master clock now.
20516
20517         * gst-libs/gst/audio/gstbaseaudiosink.c:
20518         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20519         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
20520         (gst_base_audio_sink_set_clock),
20521         (gst_base_audio_sink_set_property),
20522         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
20523         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20524         * gst-libs/gst/audio/gstbaseaudiosink.h:
20525         Handle slaving the internal clock to the clock selected in the
20526         pipeline.
20527         Add property to make the basesink not provide a clock.
20528
20529         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20530         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20531         (gst_base_rtp_depayload_wait):
20532         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20533         We can use the clock in GstElement, no need to store it ourselves.
20534
20535 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20536
20537         * docs/libs/tmpl/gstaudio.sgml:
20538           update
20539         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
20540         (gst_paranoia_endian_get_type):
20541         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
20542         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
20543         * gst/audiotestsrc/gstaudiotestsrc.c:
20544         (gst_audiostestsrc_wave_get_type):
20545         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
20546         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
20547         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20548         (gst_sync_method_get_type), (gst_unit_type_get_type),
20549         (gst_client_status_get_type), (gst_multifdsink_class_init),
20550         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
20551         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
20552         (gst_multifdsink_get_property):
20553         * gst/tcp/gstmultifdsink.h:
20554         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
20555         * gst/videotestsrc/gstvideotestsrc.c:
20556         (gst_videotestsrc_pattern_get_type):
20557           remove deprecated properties
20558           fix up enums to correctly have short lowercase dashed nicks
20559
20560 2005-11-22  Michael Smith <msmith@fluendo.com>
20561
20562         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20563         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20564           Add underscore.
20565
20566 2005-11-22  Michael Smith <msmith@fluendo.com>
20567
20568         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20569         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20570           Use utility method for scaling clocktime for fractional framerates.
20571
20572 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20573
20574         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20575         (gst_visual_chain):
20576         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
20577         * ext/theora/theoradec.c: (theora_handle_type_packet):
20578         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
20579         (theora_enc_chain):
20580         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20581         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
20582         * gst-libs/gst/video/video.h:
20583         * gst/ffmpegcolorspace/avcodec.h:
20584         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20585         (gst_ffmpeg_caps_to_pixfmt):
20586         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20587         (gst_ffmpegcsp_set_caps):
20588         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
20589         (gst_videorate_setcaps), (gst_videorate_blank_data),
20590         (gst_videorate_chain):
20591         * gst/videotestsrc/gstvideotestsrc.c:
20592         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
20593         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
20594         (gst_videotestsrc_event), (gst_videotestsrc_create):
20595         * gst/videotestsrc/gstvideotestsrc.h:
20596         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
20597         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20598         (gst_ximagesink_get_times), (gst_ximagesink_init):
20599         * sys/ximage/ximagesink.h:
20600         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20601         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
20602         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
20603         * sys/xvimage/xvimagesink.h:
20604           Convert elements to use fractions for their framerate.
20605           V4L elements to come later tonight.
20606
20607 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20608
20609         * gst-libs/gst/audio/audio.c:
20610         * gst-libs/gst/audio/audio.h:
20611           remove some deprecated functions
20612
20613 2005-11-22  Andy Wingo  <wingo@pobox.com>
20614
20615         * Update for gst_tag_setter API changes.
20616
20617 2005-11-22  Andy Wingo  <wingo@pobox.com>
20618
20619         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
20620         (gst_ogg_demux_perform_seek):
20621         * ext/theora/theoradec.c (theora_dec_sink_event):
20622         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
20623         update-funcnames.
20624
20625 2005-11-22  Wim Taymans  <wim@fluendo.com>
20626
20627         * examples/seeking/seek.c: (main):
20628         Give higher priority to bus signals than the gtk events
20629         to fix a race condition in the segment looping.
20630
20631 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20632
20633         * ext/theora/Makefile.am:
20634         * ext/vorbis/Makefile.am:
20635         * gst-libs/gst/tag/Makefile.am:
20636         * gst-plugins-base.spec.in:
20637           Rename libgsttagedit to libgsttag (#322117).
20638
20639 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20640
20641         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
20642         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20643           Call gst_x_overlay_prepare_xwindow_id() to give applications
20644           a final chance to set their own xwindow id before the video
20645           sink creates its own window.
20646
20647 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20648
20649         * sys/xvimage/xvimagesink.c:
20650         (gst_xvimagesink_navigation_send_event): Handle navigation
20651         events correcly with borders if applicable.
20652
20653 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20654
20655         Patch by: Luca Ognibene
20656
20657         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20658         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
20659         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20660         (gst_ffmpegcsp_caps_remove_format_info):
20661         * gst/ffmpegcolorspace/imgconvert.c:
20662         * gst/ffmpegcolorspace/imgconvert_template.h:
20663           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
20664           #318353); use gst_structure_has_name().
20665
20666 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20667
20668         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
20669         (gst_ximagesink_class_init): Add debug macros on functions.
20670         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20671         (gst_xvimagesink_xwindow_draw_borders),
20672         (gst_xvimagesink_xvimage_put),
20673         (gst_xvimagesink_xwindow_update_geometry),
20674         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
20675         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
20676         (gst_xvimagesink_xcontext_clear),
20677         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
20678         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
20679         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
20680         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
20681         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
20682         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
20683         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
20684         expose while being PAUSED, out of data flow navigation events, etc..
20685
20686 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20687
20688         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20689         * gst-libs/gst/audio/audio.h:
20690           fix prototype - wondering why the test worked regardless
20691
20692 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20693
20694         * check/Makefile.am:
20695         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20696         * gst-libs/gst/audio/audio.h:
20697           add a method that returns a proper GstClockTime
20698
20699 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20700
20701         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
20702         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
20703         * gst-libs/gst/interfaces/xoverlay.h:
20704           Remove everything having to do with the desired size; add 
20705           gst_x_overlay_prepare_xwindow_id() function; remove the
20706           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
20707           post a message on the bus instead (#321816).
20708
20709         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
20710         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
20711         (gst_xvimagesink_xoverlay_init):
20712           Remove desired size stuff (#321816).
20713
20714 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20715
20716         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
20717         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20718         (mpeg_video_type_find), (mpeg_video_stream_type_find):
20719           Terminate vararg functions with NULL instead of 0 to 
20720           make gcc4 happy.
20721
20722 2005-11-21  Andy Wingo  <wingo@pobox.com>
20723
20724         patch by: Sebastien Cote <sebas642@yahoo.ca>
20725         
20726         * gst-libs/gst/rtp/gstrtpbuffer.h: 
20727         * gst-libs/gst/rtp/gstrtpbuffer.c
20728         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
20729
20730 2005-11-21  Andy Wingo  <wingo@pobox.com>
20731
20732         * gst/playback/gstplaybin.c (gen_audio_element) 
20733         (gen_video_element): Use the new MISSING_PLUGIN core error
20734         category. Closes #320060.
20735
20736         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
20737         * gst/videorate/gstvideorate.c (gst_videorate_event):
20738         * ext/theora/theoradec.c (theora_dec_sink_event): 
20739         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
20740         stream lock.
20741
20742         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
20743         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
20744         stream lock changes.
20745
20746 2005-11-21  Wim Taymans  <wim@fluendo.com>
20747
20748         * gst-libs/gst/audio/gstbaseaudiosink.c:
20749         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20750         (gst_base_audio_sink_provide_clock),
20751         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
20752         (gst_base_audio_sink_change_state):
20753         * gst/audioresample/gstaudioresample.c:
20754         Segment update fix.
20755
20756 2005-11-21  Andy Wingo  <wingo@pobox.com>
20757
20758         * *.h:
20759         * *.c: Ran scripts/update-macros. Oh yes.
20760
20761 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20762
20763         * sys/ximage/Makefile.am:
20764         * sys/ximage/ximage.c:
20765           Rename ximage plugin to ximagesink (#321426) (Don't forget to
20766           remove your old libgstximage.* manually if necessary).
20767
20768 2005-11-21  Michael Smith <msmith@fluendo.com>
20769
20770         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
20771           Minimal fix for bug #320200: set the min/max bitrate in the correct
20772           units. A better fix would be to upgrade to the RATEMANAGE2
20773           interface, rather than using the deprecated interface used here, but
20774           that would require an update in our libvorbis dependency (to 1.1),
20775           which is probably undesirable.
20776
20777 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20778
20779         * ext/libvisual/visual.c: (get_buffer):
20780         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20781         (gst_base_audio_src_fixate):
20782         * gst/audioconvert/gstaudioconvert.c:
20783         (gst_audio_convert_fixate_caps):
20784         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
20785         * gst/audiotestsrc/gstaudiotestsrc.c:
20786         (gst_audiotestsrc_src_fixate):
20787         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
20788         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
20789         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
20790         * gst/videotestsrc/gstvideotestsrc.c:
20791         (gst_videotestsrc_src_fixate):
20792         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
20793         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
20794           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20795           (#322027)
20796
20797
20798 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20799
20800         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20801         (gst_riff_create_iavs_caps):
20802         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
20803         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
20804         (gst_riff_parse_info):
20805         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
20806         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
20807         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20808           Fixes for GST_FOURCC_FORMAT API change.
20809
20810 2005-11-21  Andy Wingo  <wingo@pobox.com>
20811
20812         patch by: Alessandro Dessina <alessandro nnva org>
20813
20814         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
20815         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
20816         (gst_ogg_parse_chain):
20817         * ext/theora/theoraenc.c (theora_set_header_on_caps):
20818         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
20819         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
20820         gst_value_list calls on arrays. Fixes #321962.
20821
20822 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20823
20824         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20825         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
20826         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20827         * gst/adder/gstadder.c: (gst_adder_init),
20828         (gst_adder_request_new_pad), (gst_adder_collected),
20829         (gst_adder_change_state):
20830           Update for gst_collectpads_foo() to gst_collect_pads_foo()
20831           API change.
20832
20833 2005-11-21  Michael Smith <msmith@fluendo.com>
20834
20835         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
20836         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
20837           Properly handle pad_push return values.
20838
20839 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
20840
20841         * gst-libs/gst/tag/Makefile.am:
20842         * gst-libs/gst/tag/gstvorbistag.c:
20843         (gst_tag_list_to_vorbiscomment_buffer):
20844           Remove obsolete vorbistag element and debug category.
20845
20846         * gst/playback/gstplaybasebin.c: (check_queue):
20847           Don't divide by 0 when queue-threshold is 0.
20848
20849         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
20850           Don't modify an existing pixel-aspect-ratio if we fail to read
20851           a new one.
20852
20853 2005-11-20  Wim Taymans  <wim@fluendo.com>
20854
20855         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
20856         (gst_vorbisenc_push_packet):
20857         GST_PAD_IS_USABLE is gone, use the return value of
20858         the push or pad_alloc_buffer instead.
20859
20860 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20861
20862         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
20863         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
20864         (gst_ximagesink_ximage_destroy),
20865         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
20866         (gst_ximagesink_xwindow_new),
20867         (gst_ximagesink_xwindow_update_geometry),
20868         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
20869         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
20870         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
20871         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20872         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
20873         (gst_ximagesink_navigation_send_event),
20874         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
20875         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
20876         (gst_ximagesink_finalize), (gst_ximagesink_init),
20877         (gst_ximagesink_class_init):
20878         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
20879         This new version brings correct software scaling, non flickering
20880         window while resizing, pixel aspect ratio handling, usage of
20881         hardware buffer pools, out of data flow event thread for 
20882         navigation and handling of expose events even when being PAUSED,
20883         a new property to keep video aspect ratio when resizing, etc...
20884
20885 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20886
20887         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
20888         (gst_videoscale_fixate_caps): Introduce back caps fixate with
20889         handling of PAR.
20890
20891 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
20892
20893         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
20894         Unsetting IS_SINK flag from the fakesink, so decodebin
20895         never behaves as a sink.
20896
20897 2005-11-17  Wim Taymans  <wim@fluendo.com>
20898
20899         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20900         (gst_base_audio_src_change_state):
20901         Fix the audiosrc base class again, we did not unflush.
20902
20903 2005-11-17  Julien MOUTTE  <julien@moutte.net>
20904
20905         * examples/seeking/seek.c: (make_dv_pipeline),
20906         (make_vorbis_theora_pipeline), (make_avi_pipeline),
20907         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
20908         to ogg/vorbis/theora pipeline.
20909
20910 2005-11-17  Wim Taymans  <wim@fluendo.com>
20911
20912         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
20913         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
20914         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
20915         Fix EOS on multiple streams.
20916         More debugging.
20917
20918 2005-11-16  Wim Taymans  <wim@fluendo.com>
20919
20920         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
20921         (gst_ogg_demux_perform_seek):
20922         Segment done must include stream time.
20923
20924         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20925         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
20926         (gst_ogg_mux_change_state):
20927         Fix ogg muxer again.
20928
20929 2005-11-16  Wim Taymans  <wim@fluendo.com>
20930
20931         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
20932         Fix compile again.
20933
20934 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20935
20936         * ext/libvisual/visual.c: (gst_visual_init):
20937         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
20938         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
20939         (gst_ogg_parse_chain):
20940         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
20941         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
20942         * ext/theora/theoradec.c: (gst_theora_dec_init):
20943         * ext/theora/theoraenc.c: (gst_theora_enc_init):
20944         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
20945         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
20946         * gst/adder/gstadder.c: (gst_adder_class_init),
20947         (gst_adder_dispose):
20948         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
20949         * gst/subparse/gstsubparse.c: (gst_subparse_init):
20950         * gst/videorate/gstvideorate.c: (gst_videorate_init):
20951           Fix a whole set of pad template leaks
20952
20953 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20954
20955         * check/generic/states.c: (GST_START_TEST):
20956           fix the test so that it only checks for elements that are part of
20957           this source module
20958
20959 2005-11-16  Michael Smith <msmith@fluendo.com>
20960
20961         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
20962         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
20963         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20964         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20965         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
20966         (gst_ogg_mux_change_state):
20967           Fix leaking collectpads.
20968
20969 2005-11-16  Edward Hervey  <edward@fluendo.com>
20970
20971         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
20972         (gst_videorate_event), (gst_videorate_chain):
20973         Handle segment seeks
20974
20975 2005-11-16  Wim Taymans  <wim@fluendo.com>
20976
20977         * gst-libs/gst/audio/gstbaseaudiosink.c:
20978         (gst_base_audio_sink_provide_clock),
20979         (gst_base_audio_sink_change_state):
20980         Set ringbuffer to non-flushing when going to PAUSED, set to
20981         flushing again when going to READY.
20982
20983         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
20984         (gst_ring_buffer_stop):
20985         Start in flushing mode by default.
20986         Don't set flushing in the _stop method, let the app call
20987         this explicitly.
20988
20989 2005-11-16  Julien MOUTTE  <julien@moutte.net>
20990
20991         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
20992         * gst-libs/gst/video/videosink.h: Add helper function needed
20993         for video sinks.
20994
20995 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
20996
20997         * gst/videoscale/gstvideoscale.c:
20998         (gst_videoscale_handle_src_event):
20999           Don't leak reference to pad parent.
21000
21001 2005-11-16  Wim Taymans  <wim@fluendo.com>
21002
21003         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
21004         Set ringbuffer to flushing when stopping so that we don't
21005         block on wait_segment anymore and livelock.
21006
21007 2005-11-16  Wim Taymans  <wim@fluendo.com>
21008
21009         * examples/seeking/seek.c: (send_event), (do_seek),
21010         (loop_toggle_cb), (segment_done), (main):
21011         Added looping checkbox.
21012
21013 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21014
21015         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
21016         (gst_ogg_demux_init):
21017         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
21018         (gst_vorbis_dec_init):
21019           revert unrefs, they don't pass make check
21020
21021 2005-11-15  Johan Dahlin  <johan@gnome.org>
21022
21023         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
21024         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
21025         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
21026         (gst_vorbis_dec_init):
21027         Fix pad template leaks. 
21028
21029 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
21030
21031         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
21032           Make state change function thread safe.
21033
21034 2005-11-15  Edward Hervey  <edward@fluendo.com>
21035
21036         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
21037         (gst_ogg_demux_class_init):
21038         Implement GstElement::send_event, so we can send seek events
21039         in GST_STATE_READY
21040
21041 2005-11-14  Julien MOUTTE  <julien@moutte.net>
21042
21043         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
21044         Discovered how to take away flickering while resizing the
21045         window. Please don't put that in ximagesink, refactoring in
21046         progress.
21047
21048 2005-11-14  Michael Smith <msmith@fluendo.com>
21049
21050         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
21051         (gst_multifdsink_render):
21052           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
21053
21054 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
21055
21056         * gst/playback/gstplaybin.c: (gen_audio_element):
21057           Use autoaudiosink, it tends to be more widely available than
21058           autoaudiiosink.
21059           
21060 2005-11-14  Andy Wingo  <wingo@pobox.com>
21061
21062         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
21063         as well if it is available. Fixes #316442.
21064
21065 2005-11-14  Michael Smith <msmith@fluendo.com>
21066
21067         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
21068         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
21069         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
21070         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
21071         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
21072         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
21073         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
21074         (gst_vorbisenc_change_state):
21075           Fix a small memory leak in vorbisenc.
21076           Fix large memory leaks in oggmux, also fix lots of state change
21077           bugs in oggmux.
21078
21079 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21080
21081         * gst/videotestsrc/gstvideotestsrc.c:
21082         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
21083         (gst_videotestsrc_src_fixate):
21084           move fixation to a fixate function
21085           remove negotiate function, basesrc's is good enough
21086           fixes a bug for check when using the element alone
21087
21088 2005-11-13  Edward Hervey  <edward@fluendo.com>
21089
21090         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
21091         (key_toggle_cb), (main):
21092         Added checkboxes for adding/removing the accurate and key_unit seek
21093         flags.
21094
21095 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21096
21097         * configure.ac: back to HEAD
21098
21099 === release 0.9.5 ===
21100
21101 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
21102
21103         * configure.ac:
21104           releasing 0.9.5, "No No Kia"
21105
21106 2005-11-11  Edward Hervey  <edward@fluendo.com>
21107
21108         * examples/seeking/seek.c: (make_parselaunch_pipeline):
21109         Added parse-launch syntax seeking mode for the seeking example.
21110         This should help stress-test even more cases.
21111         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
21112
21113 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
21114
21115         * sys/xvimage/xvimagesink.c:
21116         (gst_xvimagesink_navigation_send_event):
21117           Check whether peer pad exists before sending navigation events
21118           to it.
21119
21120 2005-11-11  Michael Smith <msmith@fluendo.com>
21121
21122         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
21123         (gst_vorbisenc_buffer_from_packet):
21124         * ext/vorbis/vorbisenc.h:
21125           Set duration on encoded buffers. This allows oggmux's
21126           max_page_delay parameter to actually work.
21127
21128 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
21129
21130         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21131         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
21132         (gst_ffmpegcsp_avpicture_fill):
21133         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21134         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
21135           Make palettes work again (see #132341). Use our own macros
21136           for rounding up.
21137
21138 2005-11-10  Andy Wingo  <wingo@pobox.com>
21139
21140         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
21141         string doober.
21142
21143 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21144
21145         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21146         (gst_ffmpegcsp_transform_caps):
21147           Prefer passthrough in transform_caps
21148
21149 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21150
21151         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
21152           check for ALSA errors properly, instead of relying on ALSA's
21153           error strings to serve to the user.
21154
21155 2005-11-10  Wim Taymans  <wim@fluendo.com>
21156
21157         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
21158         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
21159         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
21160         Modernise the seek code.
21161
21162 2005-11-10  Michael Smith <msmith@fluendo.com>
21163         
21164         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
21165         (setup_substreams), (set_active_source):
21166           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
21167           trying to go to NULL if we failed to read a file.
21168
21169 2005-11-10  Wim Taymans  <wim@fluendo.com>
21170
21171         * gst/audiotestsrc/gstaudiotestsrc.c:
21172         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
21173         (gst_audiotestsrc_create):
21174         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21175         (gst_sinesrc_get_times), (gst_sinesrc_create):
21176         * gst/videotestsrc/gstvideotestsrc.c:
21177         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
21178         (gst_videotestsrc_create):
21179         The base class can now sync for us.
21180
21181 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21182
21183         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
21184           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
21185           name=source autoprobe=false autoprobe-fps=false copy-mode=1
21186           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
21187           format=(fourcc)I420" ! xvimagesink
21188
21189 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
21190
21191         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21192         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
21193         (gst_sinesrc_newsegment):
21194           Send newsegment event in TIME format, set duration if
21195           num-buffers is set, fix duration querying.
21196
21197 2005-11-10  Michael Smith <msmith@fluendo.com>
21198
21199         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
21200         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
21201         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
21202         (gst_ogg_mux_collected):
21203          Fix EOS handling, partially. Now forwarding an EOS event once we have
21204          EOS on all pads works correctly. However, we still don't properly set
21205          EOS on the actual ogg stream pages.
21206
21207 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
21208
21209         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
21210           Set elements to NULL state before disposing of them.
21211
21212 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
21213
21214         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21215
21216         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21217         (gst_base_rtp_depayload_init),
21218         (gst_base_rtp_depayload_set_gst_timestamp):
21219         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21220           We need to send a newsegment event for each instance, not
21221           just for the first instance of this class (get rid of
21222           static variable in function). (#321011).
21223           
21224 2005-11-08  Michael Smith <msmith@fluendo.com>
21225
21226         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
21227         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
21228         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
21229         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
21230           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
21231           This makes us mux things correctly according to the ogg muxing
21232           rules. Still not handling EOS correctly right now, though.
21233
21234 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
21235
21236         * gst/audioconvert/gstaudioconvert.c:
21237           Fix typo in docs. 
21238
21239 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
21240
21241         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
21242         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
21243           Initialise segment_stop to GST_CLOCK_TIME_NONE when
21244           creating a new chain; should fix live streaming. Also
21245           add more debug output and fix a typo.
21246
21247 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
21248
21249         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21250
21251         * gst/volume/gstvolume.c: (volume_set_caps):
21252           Fix compilation on Solaris with Forte. (#320923)
21253
21254 2005-11-08  Wim Taymans  <wim@fluendo.com>
21255
21256         * gst-libs/gst/audio/gstbaseaudiosink.c:
21257         (gst_base_audio_sink_render):
21258         No need to do a typecheck.
21259
21260 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
21261
21262         * ext/alsa/gstalsa.h:
21263           We register a debug category, so let's use it.
21264
21265 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
21266
21267         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21268         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
21269         Fixed a small problem.
21270
21271 2005-11-04  Wim Taymans  <wim@fluendo.com>
21272
21273         * examples/seeking/Makefile.am:
21274         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
21275         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
21276         (make_playerbin_pipeline), (format_value), (update_scale),
21277         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
21278         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
21279         (print_usage), (main):
21280         Added app for playback speed testing.
21281
21282         * examples/seeking/seek.c: (dynamic_link),
21283         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
21284         (make_mpeg_pipeline), (do_seek), (set_update_scale),
21285         (message_received), (main):
21286         Updated seek example.
21287
21288 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
21289
21290         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21291         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21292         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
21293         (gst_base_rtp_depayload_set_clock):
21294         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21295         Don't sleep on the bench (system clock) when you have a nice 
21296         comfortable bed (Gstreamer clock) to sleep on.
21297
21298 2005-11-03  Wim Taymans  <wim@fluendo.com>
21299
21300         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21301         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
21302         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
21303         Handle the case where a pad_block failed.
21304
21305 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
21306
21307         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
21308
21309         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21310         (gst_base_rtp_depayload_add_to_queue),
21311         (gst_base_rtp_depayload_push),
21312         (gst_base_rtp_depayload_set_gst_timestamp),
21313         (gst_base_rtp_depayload_queue_release):
21314           Fixes some bugs in the depayloader's queuing/de-queueing code.
21315
21316 2005-10-31  Michael Smith <msmith@fluendo.com>
21317
21318         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
21319         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
21320         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
21321           Patch from Alessandro Decina <alessandro@nnva.org>.
21322           Make oggdemux only find the final time in a chain, not per-pad,
21323           since the per-pad information can be very expensive to locate, and
21324           it isn't used anywhere. This makes reading a file containing
21325           OggSkeleton reasonably fast.
21326           Also, make chain finding work when there are logical bitstreams that
21327           can't be decoded. Fixes #319110.
21328
21329 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21330
21331         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21332         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21333         (gst_base_rtp_depayload_chain),
21334         (gst_base_rtp_depayload_add_to_queue),
21335         (gst_base_rtp_depayload_push),
21336         (gst_base_rtp_depayload_set_gst_timestamp),
21337         (gst_base_rtp_depayload_queue_release),
21338         (gst_base_rtp_depayload_start_thread),
21339         (gst_base_rtp_depayload_set_property),
21340         (gst_base_rtp_depayload_get_property):
21341         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21342         Some random fixes, to fullfill the desires of thomas.
21343
21344 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21345
21346         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21347         (gst_base_rtp_depayload_add_to_queue),
21348         (gst_base_rtp_depayload_push):
21349         Fixed the queueing algorithm.
21350
21351 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21352
21353         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21354         (gst_base_rtp_depayload_push):
21355         A small fix
21356
21357 2005-10-31  Wim Taymans  <wim@fluendo.com>
21358
21359         * gst-libs/gst/audio/gstringbuffer.h:
21360         Don't break ABI.
21361
21362         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21363         (gst_ffmpeg_caps_to_pixfmt):
21364         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21365         (gst_ffmpegcsp_set_caps):
21366         Some more comments.
21367         Handle missing required caps fields better.
21368
21369 2005-10-31  Wim Taymans  <wim@fluendo.com>
21370
21371         * gst-libs/gst/audio/gstbaseaudiosink.c:
21372         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
21373         (gst_base_audio_sink_render):
21374         * gst-libs/gst/audio/gstringbuffer.c:
21375         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21376         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
21377         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
21378         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
21379         (gst_ring_buffer_read):
21380         * gst-libs/gst/audio/gstringbuffer.h:
21381         Add flushing mode to the ringbuffer so that it in all cases does
21382         not try to handle more audio. This makes sure it does not try to
21383         block anymore when flushing and fixes a livelock.
21384
21385 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
21386
21387         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
21388         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
21389         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
21390           Explicitly check for -1 values before doing a conversion
21391           and always map them to -1. (#315545)
21392
21393 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21394
21395         * gst/playback/gstplaybin.c: (gen_video_element):
21396           first try autovideosink, then xvimagesink, then error out
21397         * po/POTFILES.in:
21398           add translatable file
21399         * po/af.po:
21400         * po/az.po:
21401         * po/cs.po:
21402         * po/en_GB.po:
21403         * po/hu.po:
21404         * po/it.po:
21405         * po/nb.po:
21406         * po/nl.po:
21407         * po/or.po:
21408         * po/sq.po:
21409         * po/sr.po:
21410         * po/sv.po:
21411         * po/uk.po:
21412         * po/vi.po:
21413           update translations
21414
21415 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
21416
21417         * gst-libs/gst/rtp/gstbasedepayload.c:
21418         * gst-libs/gst/rtp/gstbasedepayload.h:
21419           Minor cleanups
21420
21421 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
21422
21423         * gst/playback/.cvsignore:
21424         * gst/playback/decodetest.c:
21425         * gst/playback/test3.c:
21426           Port these two tests as well.
21427
21428 2005-10-27  Wim Taymans  <wim@fluendo.com>
21429
21430         * ext/theora/theoradec.c: (theora_dec_src_query),
21431         (theora_dec_sink_event):
21432         * ext/theora/theoraenc.c: (theora_enc_sink_event),
21433         (theora_enc_change_state):
21434         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21435         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
21436         Take proper locks when handling events.
21437
21438 2005-10-27  Wim Taymans  <wim@fluendo.com>
21439
21440         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
21441         (gst_adder_change_state):
21442         Fix timestamps and fix deadlock when stopping the collectpads.
21443
21444 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21445
21446         * gst-libs/gst/rtp/gstrtpbuffer.h:
21447         Declaring the payload types as strings too so that they can be used
21448         in the padtemplate inialization.
21449
21450 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
21451
21452         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
21453
21454         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21455         (gst_base_rtp_depayload_class_init):
21456         Fixes a small but nasty bug. The derived elements no longer segfaults
21457         on finalization.
21458
21459 2005-10-26  Michael Smith <msmith@fluendo.com>
21460
21461         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
21462           When clearing an audioconvert context, set tmpbufsize to zero, so
21463           we'll allocate it again later if required.
21464           This fixes audioconvert re-negotiating formats, which previously
21465           segfaulted with a NULL destination buffer.
21466
21467 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
21468
21469         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21470         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
21471         (gst_base_rtp_depayload_set_gst_timestamp),
21472         (gst_base_rtp_depayload_queue_release):
21473         Fixed a smalll memleak.
21474
21475 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21476         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21477         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
21478         (gst_base_rtp_depayload_finalize),
21479         (gst_base_rtp_depayload_setcaps),
21480         (gst_base_rtp_depayload_add_to_queue),
21481         (gst_base_rtp_depayload_push),
21482         (gst_base_rtp_depayload_set_gst_timestamp),
21483         (gst_base_rtp_depayload_queue_release),
21484         (gst_base_rtp_depayload_thread),
21485         (gst_base_rtp_depayload_change_state):
21486         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21487         Changed the C++ comments to C comments
21488
21489 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21490
21491         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
21492         * gst/tcp/gsttcpclientsrc.h:
21493         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
21494         * gst/tcp/gsttcpserversrc.h:
21495           Remove unused 'curoffset' structure member.
21496
21497 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21498
21499         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21500         (gst_base_rtp_depayload_base_init),
21501         (gst_base_rtp_depayload_finalize):
21502         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21503         * gst-libs/gst/rtp/gstbasertppayload.h:
21504           The pad-template on the sinkpad should be set by the derived classes.
21505           Also added some useful macros.
21506
21507 2005-10-24  Wim Taymans  <wim@fluendo.com>
21508
21509         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21510         Correctly flush decoder samples even if we could not
21511         copy them to an output buffer. Fixes #319618.
21512
21513 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21514
21515         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
21516         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
21517         the caps against our xcontext caps.
21518
21519 2005-10-24  Wim Taymans  <wim@fluendo.com>
21520
21521         * gst-libs/gst/audio/gstbaseaudiosink.c:
21522         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21523         Remove g_print
21524         Use sync property from baseclass to disable sync.
21525
21526 2005-10-24  Wim Taymans  <wim@fluendo.com>
21527
21528         * gst-libs/gst/audio/gstbaseaudiosink.c:
21529         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21530         Buffers with no timestamps get aligned with previous buffers or
21531         on underrun, played ASAP.
21532
21533 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21534
21535         * gst-libs/gst/video/video.h:
21536         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21537         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21538         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
21539         here comes my change on caps for framerate and geometry range.
21540         We are now accepting 1 to MAXINT for width and height, and from
21541         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
21542         to be blended correctly in videomixer.
21543
21544 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21545
21546         * configure.ac:
21547           back to HEAD
21548
21549 === release 0.9.4 ===
21550
21551 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21552
21553         * NEWS:
21554         * RELEASE:
21555         * configure.ac:
21556           releasing 0.9.4, "Velociraptor"
21557
21558 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21559
21560         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21561         * po/POTFILES.in:
21562           STOPPED -> FAILED
21563
21564 2005-10-21  Wim Taymans  <wim@fluendo.com>
21565
21566         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21567         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
21568         (pad_blocked), (close_pad_link), (new_pad):
21569         Don't try to remove elements twice.
21570
21571 2005-10-21  Wim Taymans  <wim@fluendo.com>
21572
21573         * ext/theora/theoradec.c: (theora_dec_src_query),
21574         (theora_dec_sink_event):
21575         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21576         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21577         (vorbis_handle_data_packet):
21578         * ext/vorbis/vorbisdec.h:
21579         Fix old naming.
21580
21581         * gst-libs/gst/audio/gstbaseaudiosink.c:
21582         (gst_base_audio_sink_render):
21583         Don't try to sync on buffers without a timestamp.
21584
21585 2005-10-21  Wim Taymans  <wim@fluendo.com>
21586
21587         * ext/theora/theoradec.c: (theora_dec_src_query),
21588         (theora_dec_sink_event):
21589         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21590         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21591         (vorbis_handle_data_packet):
21592         * ext/vorbis/vorbisdec.h:
21593         Fix old naming.
21594
21595 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21596
21597         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
21598         (gst_vorbisenc_src_query):
21599           Implement position and duration queries.
21600
21601         * gst/playback/test3.c: (update_scale), (main):
21602           Fix for async state changes and print nicer output.
21603
21604 2005-10-20  Wim Taymans  <wim@fluendo.com>
21605
21606         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21607         (dump_element_stats), (main):
21608         * gst/playback/test6.c: (main):
21609         Fix tests again
21610
21611 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21612
21613         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21614         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21615           Don't use functions for position queries when handling
21616           duration queries.
21617
21618 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21619
21620         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21621         (vorbis_handle_data_packet), (vorbis_dec_chain),
21622         (vorbis_dec_change_state):
21623         * ext/vorbis/vorbisdec.h:
21624           Vorbis streams can be embedded in other container formats
21625           than ogg, container formats where the demuxer might set 
21626           timestamps on encoded vorbis buffers instead of those silly 
21627           granulepos thingies. In short: make vorbisdec handle 
21628           timestamps on incoming buffers as well.
21629
21630 2005-10-20  Wim Taymans  <wim@fluendo.com>
21631
21632         * gst/playback/gstplaybasebin.c: (group_destroy),
21633         (gst_play_base_bin_change_state):
21634         Fix leak.
21635         Handle case where playbasebin is now ASYNC because
21636         decodebin is.
21637
21638 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21639
21640         * gst/audioconvert/Makefile.am:
21641         * gst/audioconvert/bufferframesconvert.c:
21642         * gst/audioconvert/plugin.c: (plugin_init):
21643         * gst/audioconvert/plugin.h:
21644           And bye bye buffer-frames-convert
21645
21646 2005-10-19  Wim Taymans  <wim@fluendo.com>
21647
21648         * check/elements/audioconvert.c:
21649         * docs/libs/tmpl/gstaudio.sgml:
21650         * docs/libs/tmpl/gstcolorbalance.sgml:
21651         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21652         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
21653         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
21654         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
21655         * gst-libs/gst/audio/audio.h:
21656         * gst/audioconvert/audioconvert.h:
21657         * gst/audioconvert/gstaudioconvert.c:
21658         (gst_audio_convert_parse_caps):
21659         * gst/volume/gstvolume.c:
21660         Bye bye buffer-frames.
21661
21662 2005-10-19  Wim Taymans  <wim@fluendo.com>
21663
21664         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21665         (query_positions_elems), (query_positions_pads), (update_scale),
21666         (do_seek), (set_update_scale), (message_received), (main):
21667         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
21668         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
21669         (gst_ogg_demux_loop):
21670         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
21671         * ext/theora/theoradec.c: (theora_dec_src_query),
21672         (theora_dec_sink_event):
21673         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21674         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
21675         * gst/adder/gstadder.c: (gst_adder_query):
21676         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21677         * gst/playback/test3.c: (update_scale):
21678         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21679         (dump_element_stats), (main):
21680         * gst/playback/test6.c: (main):
21681         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21682         Query API update.
21683
21684 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21685
21686         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
21687         (xml_check_first_element), (xml_type_find), (smil_type_find),
21688         (plugin_init):
21689           Add typefinding for SMIL and for generic XML. Based on patch by
21690           Akos Maroy (#308663).
21691
21692 2005-10-18  Wim Taymans  <wim@fluendo.com>
21693
21694         * gst/playback/Makefile.am:
21695         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21696         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
21697         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
21698         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
21699         (gst_decode_bin_change_state):
21700         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21701         (gst_play_bin_send_event_to_sink):
21702         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21703         (dump_element_stats), (main):
21704         * gst/playback/test6.c: (main):
21705         Make playbin async, it'll commit state to paused when all streams
21706         are detected.
21707         Remove ugly hack.
21708         Added test6.c to show async behaviour.
21709
21710 2005-10-18  Wim Taymans  <wim@fluendo.com>
21711
21712         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
21713         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
21714         Fix for segment-start/stop API change.
21715
21716 2005-10-18  Wim Taymans  <wim@fluendo.com>
21717
21718         * check/Makefile.am:
21719         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
21720         (main):
21721         Add future test for clock selection.
21722
21723 2005-10-18  Wim Taymans  <wim@fluendo.com>
21724
21725         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
21726         (gst_alsasink_close):
21727         Set handle to NULL.
21728
21729         * gst-libs/gst/audio/gstringbuffer.c:
21730         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21731         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
21732         (gst_ring_buffer_start), (gst_ring_buffer_pause),
21733         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
21734         (gst_ring_buffer_read):
21735         More debug info.
21736
21737 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
21738
21739         * gst/audiotestsrc/Makefile.am:
21740         * gst/sine/Makefile.am:
21741         * gst/volume/Makefile.am:
21742           fix broken build of controllerized plugins
21743
21744 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
21745
21746         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21747
21748         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21749         (gst_riff_create_video_template_caps):
21750           Add support for Indeo-3 (IV32).
21751
21752 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21753
21754         * configure.ac:
21755           rewrite
21756
21757 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21758
21759         * gst-libs/gst/video/video.c: (gst_video_get_size):
21760         * gst/audiotestsrc/gstaudiotestsrc.c:
21761           doc updates
21762
21763 2005-10-17  Andy Wingo  <wingo@pobox.com>
21764
21765         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
21766         with the collectpads change.
21767         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
21768
21769         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
21770
21771         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
21772
21773         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
21774         alloc_buffer flow return to callers.
21775         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
21776         change. Fix some memleaks in theoraenc.
21777
21778         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
21779         in strange circumstance.
21780
21781 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21782
21783         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21784         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
21785         from caps, let's use the caps...
21786
21787 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21788
21789         * configure.ac:
21790           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
21791
21792 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21793
21794         * gst-libs/gst/interfaces/Makefile.am:
21795           fix silly typo
21796
21797 2005-10-16  Andy Wingo  <wingo@pobox.com>
21798
21799         * gst/playback/gstdecodebin.c
21800         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
21801         function!
21802         (try_to_link_1): Increase kraziness level.
21803
21804 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21805
21806         * configure.ac:
21807           restructure like the core one
21808         * gst-libs/gst/audio/Makefile.am:
21809         * gst-libs/gst/interfaces/Makefile.am:
21810         * gst-libs/gst/net/Makefile.am:
21811         * gst-libs/gst/riff/Makefile.am:
21812         * gst-libs/gst/rtp/Makefile.am:
21813         * gst-libs/gst/tag/Makefile.am:
21814         * gst-libs/gst/video/Makefile.am:
21815           use correct linker flags, now the libs are properly versioned
21816         * check/elements/audioconvert.c: (verify_convert):
21817         * ext/alsa/gstalsaplugin.c:
21818         * ext/cdparanoia/gstcdparanoia.c:
21819         * ext/gnomevfs/gstgnomevfs.c:
21820         * ext/libvisual/visual.c:
21821         * ext/ogg/gstogg.c:
21822         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
21823         * ext/theora/theora.c:
21824         * ext/vorbis/vorbis.c:
21825         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
21826         * gst-libs/gst/tag/gsttagediting.c:
21827         * gst-libs/gst/video/video.c:
21828         * gst/adder/gstadder.c:
21829         * gst/audioconvert/plugin.c:
21830         * gst/audiorate/gstaudiorate.c:
21831         * gst/audioresample/gstaudioresample.c:
21832         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21833         * gst/audioscale/gstaudioscale.c:
21834         * gst/audioscale/resample.c:
21835         * gst/audiotestsrc/gstaudiotestsrc.c:
21836         * gst/ffmpegcolorspace/gstffmpeg.c:
21837         * gst/playback/gstdecodebin.c: (close_pad_link):
21838         * gst/playback/gstplaybin.c: (gen_video_element),
21839         (gen_audio_element):
21840         * gst/sine/gstsinesrc.c:
21841         * gst/subparse/gstsubparse.c:
21842         * gst/tags/gsttagediting.c:
21843         * gst/tcp/gsttcpplugin.c:
21844         * gst/typefind/gsttypefindfunctions.c:
21845         * gst/videorate/gstvideorate.c:
21846         * gst/videoscale/gstvideoscale.c:
21847         * gst/videotestsrc/gstvideotestsrc.c:
21848         * gst/volume/gstvolume.c:
21849         * sys/v4l/gstv4l.c:
21850         * sys/ximage/ximage.c:
21851         * sys/xvimage/xvimagesink.c:
21852           fix up defines
21853
21854 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21855
21856         * ext/vorbis/vorbisenc.c:
21857         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
21858         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
21859         (gst_tag_to_vorbis_comments):
21860           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
21861
21862 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21863
21864         * examples/stats/mp2ogg.c:
21865         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21866           typo fixes
21867
21868 2005-10-13  Michael Smith <msmith@fluendo.com>
21869
21870         * ext/ogg/gstoggmux.c:
21871           Use magic glib macros to define constants as 64 bit, to ensure
21872           appropriate vararg passing.
21873
21874 2005-10-13  Michael Smith <msmith@fluendo.com>
21875
21876         * ext/ogg/gstoggmux.c:
21877         * gst/audioconvert/audioconvert.c: (float):
21878           Don't use LL suffix, as it's not portable, and neither of these
21879           uses required it anyway.
21880
21881 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21882
21883         * examples/indexing/indexmpeg.c: (main):
21884         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
21885         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
21886         (cdparanoia_convert), (cdparanoia_query):
21887         * ext/cdparanoia/gstcdparanoia.h:
21888         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
21889         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
21890         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
21891         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
21892         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
21893         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
21894         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
21895         (gst_multifdsink_render), (gst_multifdsink_start),
21896         (gst_multifdsink_stop):
21897         * gst/tcp/gstmultifdsink.h:
21898         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
21899         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
21900         (gst_tcpclientsink_stop):
21901         * gst/tcp/gsttcpclientsink.h:
21902         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
21903         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
21904         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
21905         * gst/tcp/gsttcpclientsrc.h:
21906         * gst/tcp/gsttcpserversink.h:
21907         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
21908         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
21909         (gst_tcpserversrc_stop):
21910         * gst/tcp/gsttcpserversrc.h:
21911         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
21912         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
21913         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
21914           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21915           moved bitshift from macro to enum definition
21916
21917 2005-10-12  Wim Taymans  <wim@fluendo.com>
21918
21919         * examples/seeking/Makefile.am:
21920         Oops.
21921
21922 2005-10-12  Wim Taymans  <wim@fluendo.com>
21923
21924         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21925         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21926         Don't assert on normal stuff.
21927
21928         * gst/playback/gstplaybin.c: (do_playbin_seek):
21929         API fix.
21930
21931 2005-10-12  Wim Taymans  <wim@fluendo.com>
21932
21933         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21934         * examples/seeking/Makefile.am:
21935         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
21936         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21937         (do_seek), (set_update_scale), (message_received), (main):
21938         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21939         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21940         Update for _get_state() API change.
21941
21942 2005-10-11  Wim Taymans  <wim@fluendo.com>
21943
21944         * gst-libs/gst/audio/gstbaseaudiosink.c:
21945         (gst_base_audio_sink_render):
21946         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21947         (gst_base_audio_src_create):
21948         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21949         (gst_ring_buffer_read):
21950         Cleanups.
21951         Commit and read from ringbuffer in samples rather than bytes.
21952
21953 2005-10-11  Wim Taymans  <wim@fluendo.com>
21954
21955         * gst-libs/gst/audio/gstbaseaudiosink.c:
21956         (gst_base_audio_sink_render):
21957         Respect segment rate and accum when scheduling samples.
21958
21959 2005-10-11  Julien MOUTTE  <julien@moutte.net>
21960
21961         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
21962         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
21963         EOS correctly, that needs more work.
21964
21965 2005-10-11  Wim Taymans  <wim@fluendo.com>
21966
21967         * check/generic/states.c: (GST_START_TEST):
21968         remove old property.
21969
21970         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21971         (gst_ogg_demux_perform_seek):
21972         * ext/theora/theoradec.c: (theora_dec_sink_event):
21973         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21974         (vorbis_handle_data_packet):
21975         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21976         (gst_base_rtp_depayload_set_gst_timestamp):
21977         * gst/videorate/gstvideorate.c: (gst_videorate_event):
21978         Update for newsegment API change.
21979
21980 2005-10-11  Michael Smith <msmith@fluendo.com>
21981
21982         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
21983         (do_playbin_seek), (gst_play_bin_send_event):
21984           Override send_event differently, so that we can takes bits of
21985           functionality from GstPipeline (special handling for seeks,
21986           including pausing/resuming, and resetting stream time) and still get
21987           the appropriate behaviour of only forwarding event to a single sink,
21988           rather than all of them.
21989           Unfortunately requires a lot of code duplication, but the
21990           alternatives are equally ugly in the end.
21991
21992 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21993
21994         * check/elements/audioconvert.c: (setup_audioconvert),
21995         (cleanup_audioconvert), (get_int_caps), (verify_convert),
21996         (GST_START_TEST), (audioconvert_suite):
21997           clean up tests a little, fix some leaks.
21998
21999 2005-10-10  Wim Taymans  <wim@fluendo.com>
22000
22001         * ext/alsa/gstalsasink.c:
22002         Also allow unsigned int.
22003
22004         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22005         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
22006         Small cleanup
22007
22008 2005-10-10  Wim Taymans  <wim@fluendo.com>
22009
22010         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22011         Small update, use API as stated in design docs.
22012
22013         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
22014         (update_scale), (do_seek), (seek_cb), (set_update_scale),
22015         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
22016         (message_received), (main):
22017         Updated seek example for GOption. Some usability improvements.
22018
22019 2005-10-10  Wim Taymans  <wim@fluendo.com>
22020
22021         * gst/audioconvert/audioconvert.h:
22022         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22023         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
22024         Alloc temp storage somewhere else where we can do it more
22025         portable.
22026
22027 2005-10-10  Wim Taymans  <wim@fluendo.com>
22028
22029         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
22030         (gst_tcpserversrc_start):
22031         Don't block in accept while doing the state change, move
22032         to poll and make cancellable.
22033
22034 2005-10-09  Philippe Khalaf <burger@speedy.org>
22035
22036         * gst-libs/gst/rtp/rtpbasedepayload.c:
22037         Set timestamp and add queue delay to timestamp
22038         * gst-libs/gst/rtp/rtpbuffer.h:
22039         Set correct payload type for h263
22040
22041 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
22042
22043         * gst/audiotestsrc/gstaudiotestsrc.c:
22044         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
22045         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
22046         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
22047         (gst_audiotestsrc_create_triangle),
22048         (gst_audiotestsrc_create_silence),
22049         (gst_audiotestsrc_create_white_noise),
22050         (gst_audiotestsrc_init_pink_noise),
22051         (gst_audiotestsrc_generate_pink_noise_value),
22052         (gst_audiotestsrc_create_pink_noise),
22053         (gst_audiotestsrc_change_wave):
22054         * gst/audiotestsrc/gstaudiotestsrc.h:
22055           fixed typo, added pink noise
22056
22057 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22058
22059         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
22060         (plugin_init):
22061           Add wavpack and spc typefind functions from 0.8 branch.
22062
22063 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22064
22065         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
22066         (ar_type_find), (msdos_type_find), (plugin_init):
22067           Add typefind functions for tar archives, ar archives,
22068           RAR archives, and msdos-executables (dlls, exe, etc.).
22069           Some of those would be wrongly identified as mpeg
22070           streams of some sort before (#315550).
22071
22072 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
22073
22074         * configure.ac:
22075         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22076         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22077         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
22078         * gst/audiotestsrc/Makefile.am:
22079         * gst/audiotestsrc/gstaudiotestsrc.c:
22080         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
22081         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
22082         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
22083         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
22084         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
22085         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
22086         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
22087         (gst_audiotestsrc_create_silence),
22088         (gst_audiotestsrc_create_white_noise),
22089         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
22090         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
22091         (gst_audiotestsrc_start), (plugin_init):
22092         * gst/audiotestsrc/gstaudiotestsrc.h:
22093           add new plugin and element
22094         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
22095           use gobject_class
22096
22097 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22098
22099         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
22100         (gst_adder_init), (gst_adder_request_new_pad),
22101         (gst_adder_change_state):
22102           Add query function to source pad, so adder reports the correct
22103           time/sample position when queried (#315457); fix state change
22104           function; use GST_DEBUG_FUNCPTR() for pad functions.
22105
22106 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22107
22108         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
22109           Fix leaks in typefind registration
22110           Clean up the gratuitous commenting and whitespacing a little
22111
22112 2005-10-08  Wim Taymans  <wim@fluendo.com>
22113
22114         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
22115         Only actually wait for the thread to be stopped if it's 
22116         running.
22117
22118 2005-10-08  Wim Taymans  <wim@fluendo.com>
22119
22120         * gst-libs/gst/audio/gstbaseaudiosink.c:
22121         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
22122         If we receive EOS we can start playback of what we had.
22123
22124 2005-10-08  Wim Taymans  <wim@fluendo.com>
22125
22126         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22127         (gst_multifdsink_finalize), (multifdsink_hash_remove),
22128         (gst_multifdsink_stop):
22129         Fix crasher when going to NULL multiple times.
22130
22131 2005-10-06  Wim Taymans  <wim@fluendo.com>
22132
22133         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
22134         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
22135         * gst-libs/gst/audio/gstbaseaudiosrc.h:
22136         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
22137         patch from Edgard Lima <edgard.lima@indt.org.br>
22138         Fixed gstbaseaudiosrc adding ring buffer sync to it.
22139
22140 2005-10-06  Wim Taymans  <wim@fluendo.com>
22141
22142         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
22143         Report the FLOW_RETURN as string in the error message.
22144
22145         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
22146         Don't assert when clearing an unnegotiated buffer.
22147
22148 2005-10-04  Michael Smith <msmith@fluendo.com>
22149
22150         * gst/playback/gstplaybasebin.c: (group_destroy),
22151         (gen_preroll_element), (remove_groups), (setup_source):
22152         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
22153         (setup_sinks), (gst_play_bin_send_event),
22154         (gst_play_bin_change_state):
22155           Set state to NULL before removing from bin. Fix refcounting.
22156
22157 2005-10-04  Michael Smith <msmith@fluendo.com>
22158
22159         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
22160           Correct refcounting in send_event() function. Previously was wrong
22161           if the first sink was unable to handle the event.
22162
22163 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22164
22165         * configure.ac:
22166           back to development
22167
22168 === release 0.9.3 ===
22169
22170 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22171
22172         * configure.ac:
22173           Releasing 0.9.3, "De Facto"
22174
22175 2005-10-03  Andy Wingo  <wingo@pobox.com>
22176
22177         * gst/playback/gstdecodebin.c (try_to_link_1)
22178         (remove_element_chain): set element to NULL before removing it.
22179
22180 2005-10-02  Johan Dahlin  <johan@gnome.org>
22181
22182         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
22183         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
22184         MT safe.
22185
22186 2005-10-02  Andy Wingo  <wingo@pobox.com>
22187
22188         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
22189         (gst_ring_buffer_prepare_read): 
22190         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
22191         Demote to LOG.
22192
22193 2005-09-29  Wim Taymans  <wim@fluendo.com>
22194
22195         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
22196         * ext/theora/theoradec.c: (theora_handle_data_packet):
22197         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
22198         Propagate error codes from alloc_buffer too.
22199
22200 2005-09-29  Wim Taymans  <wim@fluendo.com>
22201
22202         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
22203         We use fixed caps.
22204
22205         * gst/playback/Makefile.am:
22206         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
22207         (dump_element_stats), (main):
22208         Added example stream introspection code.
22209
22210 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
22211
22212         * gst/adder/gstadder.c: (gst_adder_collected):
22213           fix adder for float elements
22214
22215 2005-09-28  Wim Taymans  <wim@fluendo.com>
22216
22217         * gst-libs/gst/audio/gstbaseaudiosink.c:
22218         (gst_base_audio_sink_class_init),
22219         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
22220         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22221         (gst_base_audio_src_class_init),
22222         (gst_base_audio_src_provide_clock):
22223         get_clock -> provide_clock
22224
22225 2005-09-28  Andy Wingo  <wingo@pobox.com>
22226
22227         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
22228         and unlocking.
22229
22230         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
22231         unlocking.
22232
22233         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
22234         Actually add the pad template.
22235         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
22236
22237         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
22238         I'm at it...
22239
22240         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
22241         from fdsrc. Get caps in create() instead of start() so it can be
22242         interrupted. Interruption somewhat untested.
22243
22244         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
22245         Proper EOS handling.
22246
22247 2005-09-27  Andy Wingo  <wingo@pobox.com>
22248
22249         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
22250
22251         * gst/tcp/gsttcpserversrc.c: Cleaned up.
22252
22253         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
22254
22255         * gst/tcp/gsttcp.h: 
22256         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
22257         out of tcpclientsrc.c. Cancellable.
22258         (gst_tcp_socket_read): Made private, cancellable, with better
22259         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
22260         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
22261         whole buffer, and better diagnostics.
22262         (gst_tcp_gdp_read_caps): Same.
22263
22264         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
22265
22266 2005-09-26  Andy Wingo  <wingo@pobox.com>
22267
22268         * gst/sine/gstsinesrc.h:
22269         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
22270         change the 'sync' property to 'is-live' and implement it halfway,
22271         update for controller api change.
22272
22273         * gst/volume/gstvolume.c (volume_transform_ip): Update for
22274         controller api change.
22275
22276 2005-09-24  Wim Taymans  <wim@fluendo.com>
22277
22278         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
22279         * gst-libs/gst/audio/gstaudiosink.c:
22280         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
22281         (gst_audioringbuffer_stop):
22282         * gst-libs/gst/audio/gstbaseaudiosink.c:
22283         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
22284         (gst_base_audio_sink_change_state):
22285         * gst-libs/gst/audio/gstbaseaudiosink.h:
22286         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
22287         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
22288         (gst_ring_buffer_commit), (gst_ring_buffer_read):
22289         * gst-libs/gst/audio/gstringbuffer.h:
22290         Fix sync again. Moved sample alignment to basesink.
22291
22292 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22293
22294         * docs/plugins/Makefile.am:
22295         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22296         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22297         * gst/volume/gstvolume.c:
22298           add/fix docs
22299         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
22300         * gst-libs/gst/audio/audio.h:
22301           add conversion macros for frames <-> clocktime
22302
22303 2005-09-23  David Schleef  <ds@schleef.org>
22304
22305         * gst/audioresample/Makefile.am:
22306         * gst/audioresample/debug.h:
22307         * gst/audioresample/gstaudioresample.c:
22308         * gst/audioresample/resample.c: Convert to using gst debugging
22309
22310 2005-09-22  Wim Taymans  <wim@fluendo.com>
22311
22312         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
22313         (gst_play_bin_send_event):
22314         Only seek on one sink, the first one that succeeds.
22315
22316 2005-09-22  Michael Smith <msmith@fluendo.com>
22317
22318         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
22319         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
22320         Don't flush encoder state unless we have an initialised encoder.
22321         Clear out encoder state on PAUSED_TO_READY.
22322
22323 2005-09-22  Wim Taymans  <wim@fluendo.com>
22324
22325         * gst-libs/gst/rtp/gstbasertppayload.c:
22326         (gst_basertppayload_class_init), (gst_basertppayload_init),
22327         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22328         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22329         (gst_basertppayload_is_filled), (gst_basertppayload_push),
22330         (gst_basertppayload_set_property),
22331         (gst_basertppayload_get_property),
22332         (gst_basertppayload_change_state):
22333         * gst-libs/gst/rtp/gstbasertppayload.h:
22334         Added max-ptime to control amount of data in the rtp packets.
22335
22336 2005-09-21  Andy Wingo  <wingo@pobox.com>
22337
22338         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
22339         thingies.
22340
22341         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
22342         can be called multiple times, dogs.
22343
22344 2005-09-21  Wim Taymans  <wim@fluendo.com>
22345
22346         * gst-libs/gst/rtp/gstbasertppayload.c:
22347         (gst_basertppayload_class_init), (gst_basertppayload_init),
22348         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22349         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22350         (gst_basertppayload_push), (gst_basertppayload_get_property),
22351         (gst_basertppayload_change_state):
22352         Allow 0 ssrc too.
22353
22354 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
22355
22356         * docs/libs/compiling.sgml:
22357           fixing typos
22358
22359 2005-09-20  Wim Taymans  <wim@fluendo.com>
22360
22361         * gst-libs/gst/rtp/gstbasertppayload.c:
22362         (gst_basertppayload_class_init), (gst_basertppayload_init),
22363         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22364         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22365         (gst_basertppayload_push), (gst_basertppayload_set_property),
22366         (gst_basertppayload_get_property),
22367         (gst_basertppayload_change_state):
22368         * gst-libs/gst/rtp/gstbasertppayload.h:
22369         Added property to configure sequence number offsets.
22370
22371 2005-09-20  Wim Taymans  <wim@fluendo.com>
22372
22373         * gst-libs/gst/rtp/gstbasertppayload.c:
22374         (gst_basertppayload_class_init), (gst_basertppayload_init),
22375         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22376         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22377         (gst_basertppayload_push), (gst_basertppayload_set_property),
22378         (gst_basertppayload_get_property),
22379         (gst_basertppayload_change_state):
22380         * gst-libs/gst/rtp/gstbasertppayload.h:
22381         Make timestamp offset configurable.
22382
22383 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22384
22385         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22386           fix wrong pop/unref
22387
22388 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
22389
22390         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22391
22392         * gst-libs/gst/interfaces/propertyprobe.c:
22393         (gst_property_probe_probe_property_name),
22394         (gst_property_probe_needs_probe_name),
22395         (gst_property_probe_get_values_name),
22396         (gst_property_probe_probe_and_get_values_name):
22397           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
22398           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
22399
22400 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22401
22402         * check/Makefile.am:
22403           have some tests be disabled for valgrinding
22404         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
22405         (GST_START_TEST):
22406         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
22407           Fix A Leak.  Chain To Parent Finalize.
22408
22409 2005-09-19  Wim Taymans  <wim@fluendo.com>
22410
22411         * examples/seeking/seek.c: (make_wav_pipeline), (main):
22412         Fixed wav pipeline.
22413
22414 2005-09-19  Wim Taymans  <wim@fluendo.com>
22415
22416         * gst-libs/gst/rtp/gstbasertppayload.c:
22417         (gst_basertppayload_class_init), (gst_basertppayload_init),
22418         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22419         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22420         (gst_basertppayload_push), (gst_basertppayload_get_property),
22421         (gst_basertppayload_change_state):
22422         Posting ERROR and WARNING messages is good.
22423
22424 2005-09-19  Wim Taymans  <wim@fluendo.com>
22425
22426         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22427         (gst_base_rtp_depayload_add_to_queue),
22428         (gst_base_rtp_depayload_push),
22429         (gst_base_rtp_depayload_set_gst_timestamp),
22430         (gst_base_rtp_depayload_queue_release):
22431         This one was not supposed to go in.
22432
22433 2005-09-19  Wim Taymans  <wim@fluendo.com>
22434
22435         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22436         Fix for bus API.
22437
22438         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22439         (gst_base_rtp_depayload_chain),
22440         (gst_base_rtp_depayload_add_to_queue),
22441         (gst_base_rtp_depayload_push),
22442         (gst_base_rtp_depayload_set_gst_timestamp),
22443         (gst_base_rtp_depayload_queue_release):
22444         Some cleanups.
22445
22446         * gst-libs/gst/rtp/gstbasertppayload.c:
22447         (gst_basertppayload_class_init), (gst_basertppayload_init),
22448         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
22449         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22450         (gst_basertppayload_get_property),
22451         (gst_basertppayload_change_state):
22452         Added debugging category.
22453
22454 2005-09-18  David Schleef  <ds@schleef.org>
22455
22456         * gst/playback/gstdecodebin.c: free plugin list correctly
22457         * gst/playback/gstplaybin.c: emit warning if autovideosink
22458           and autoaudiosink can't be found (instead of segfaulting)
22459
22460 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22461
22462         * check/elements/audioconvert.c: (GST_START_TEST):
22463           try out 24 bit conversion
22464
22465 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22466
22467         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
22468         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
22469         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
22470         * ext/vorbis/vorbisenc.h:
22471           Fix EOS handling.  Still needs a fix in the ogg muxer to
22472           mark the last page as eos.
22473
22474 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22475
22476         * common/gtk-doc-plugins.mak:
22477         * docs/plugins/Makefile.am:
22478         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22479         * gst/ffmpegcolorspace/Makefile.am:
22480         * gst/ffmpegcolorspace/avcodec.h:
22481         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22482         * gst/tcp/gstmultifdsink.c:
22483           fix up ffmpegcolorspace docs; extract header
22484
22485 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22486
22487         * common/gtk-doc-plugins.mak:
22488         * docs/plugins/Makefile.am:
22489         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22490         * ext/theora/Makefile.am:
22491         * ext/theora/gsttheoraenc.h:
22492         * ext/theora/theoraenc.c:
22493         * ext/vorbis/vorbisenc.c:
22494           pick up signals and args for vorbis; add some docs for vorbis
22495
22496 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22497
22498         * common/gstdoc-scangobj:
22499         * common/gtk-doc-plugins.mak:
22500         * docs/libs/Makefile.am:
22501         * docs/plugins/gst-plugins-base-plugins.args:
22502         * docs/plugins/gst-plugins-base-plugins.hierarchy:
22503         * docs/plugins/gst-plugins-base-plugins.interfaces:
22504         * docs/plugins/gst-plugins-base-plugins.prerequisites:
22505         * docs/plugins/gst-plugins-base-plugins.signals:
22506           only scanobj stuff from our source module.  Not sure yet
22507           if that's correct, given the hierarchy stuff :)
22508
22509 2005-09-15  Wim Taymans  <wim@fluendo.com>
22510
22511         * gst/audioconvert/gstaudioconvert.c:
22512         And enable 24 bits mode as well..
22513
22514 2005-09-15  Wim Taymans  <wim@fluendo.com>
22515
22516         * gst-libs/gst/rtp/Makefile.am:
22517         * gst-libs/gst/rtp/gstbasertppayload.c:
22518         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
22519         (gst_basertppayload_class_init), (gst_basertppayload_init),
22520         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
22521         (gst_basertppayload_chain), (gst_basertppayload_set_options),
22522         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22523         (gst_basertppayload_set_property),
22524         (gst_basertppayload_get_property),
22525         (gst_basertppayload_change_state):
22526         * gst-libs/gst/rtp/gstbasertppayload.h:
22527         Added rtp payloader base class.
22528
22529 2005-09-15  Andy Wingo  <wingo@pobox.com>
22530
22531         * configure.ac (plugindir): Remove the EOL matcher from the
22532         regexp, as it causes me problems. Libtool? Make? Who knows?
22533
22534 2005-09-14  David Schleef  <ds@schleef.org>
22535
22536         * check/generic/states.c: 
22537         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
22538         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
22539           Fixes for changes in registry API.
22540
22541         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
22542           to GST_PLUGIN_LDFLAGS.
22543         * ext/libvisual/visual.c: Make the library shut up.
22544         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
22545         * gst-libs/gst/audio/gstaudiofilter.c: same
22546
22547 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22548
22549         * docs/plugins/Makefile.am:
22550         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22551         * docs/plugins/inspect/plugin-libvisual.xml:
22552         * docs/plugins/tmpl/element-tcpserversink.sgml:
22553         * ext/theora/theoraenc.c:
22554           add libvisual plugin and theoraenc element to docs
22555
22556 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22557
22558         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22559         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22560         * ext/theora/theoraenc.c:
22561           add theoraenc
22562
22563 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
22564
22565         * gst/audioconvert/Makefile.am:
22566           Audioconvert derives from GstBaseTransform and should
22567           link to the library with our base elements to avoid
22568           unresolved symbols. Makes things work with MinGW (#316160)
22569
22570         * gst/playback/test4.c: (main):
22571           Fix MinGW build problem and use g_usleep() instead of 
22572           sleep() (#316162)
22573
22574 2005-09-12  Wim Taymans  <wim@fluendo.com>
22575
22576         * gst/audioconvert/audioconvert.c: (float),
22577         (audio_convert_prepare_context), (audio_convert_convert):
22578         * gst/audioconvert/audioconvert.h:
22579         Cleanups, speedups, simplifications, added back support
22580         for 24 bits.
22581
22582 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22583
22584         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22585         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22586         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22587         * docs/plugins/tmpl/element-tcpserversink.sgml:
22588         * gst/ffmpegcolorspace/gstffmpeg.c:
22589         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22590         * gst/videotestsrc/gstvideotestsrc.c:
22591         * gst/volume/gstvolume.c:
22592           add more elements to the docs
22593
22594 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22595
22596         * check/Makefile.am:
22597         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
22598         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
22599           Add extra tests for basetransform based components. 
22600           Comment out the test_element_negotiation test until we decide
22601           if it's testing correct behaviour.
22602         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
22603         (gst_visual_chain), (gst_visual_change_state):
22604           Slightly more correct but still bogus timestamping.
22605           Fix state change function.
22606         * gst/audioconvert/gstaudioconvert.c:
22607         (gst_audio_convert_class_init):
22608         * gst/audioresample/gstaudioresample.c:
22609         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22610         (gst_ffmpegcsp_class_init):
22611         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22612         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
22613         (gst_videoscale_prepare_image):
22614         * gst/volume/gstvolume.c: (gst_volume_class_init),
22615         (volume_transform_ip):
22616           Basetransform updates. Enable passthrough modes.
22617         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22618         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
22619         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
22620           Negotiation fix that allows the window to return to the original
22621           size and renegotiate passthrough upstream. Extra debug output.
22622
22623 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22624
22625         * gst/sine/gstsinesrc.c:
22626         * gst/volume/gstvolume.c:
22627           fix up header include
22628
22629 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
22630
22631         * gst-libs/gst/audio/gstbaseaudiosink.c:
22632         (gst_base_audio_sink_render):
22633         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
22634         * gst/volume/gstvolume.c: (gst_volume_class_init),
22635         (volume_transform):
22636           fixing lost sync, some more debugging
22637
22638 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
22639
22640         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22641         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
22642         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22643         (gst_xvimagesink_check_xshm_calls):
22644           Fix compilation when XShm is not available.
22645
22646 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22647
22648         * ext/libvisual/visual.c: (gst_visual_dispose),
22649         (gst_visual_getcaps), (gst_visual_src_setcaps),
22650         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
22651         (gst_visual_change_state):
22652           Finish fixing up libvisual plugin so that it runs. 
22653
22654 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22655
22656         * ext/vorbis/vorbisenc.c:
22657         * gst-libs/gst/tag/gstvorbistag.c:
22658           gsttaginterface.h -> gsttagsetter.h
22659
22660 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22661
22662         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
22663           added another test that failes for me (test is not active by default)
22664
22665 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22666
22667         * configure.ac:
22668           v4l2 is no longer in gst-plugins-base
22669
22670 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22671
22672         * configure.ac:
22673           In the output at the end, don't show the first plugin on the same
22674           line as "Core plug-ins, always built:".
22675           Indent the output as for other plugin categories
22676         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
22677           #define that can be used to not use peer buffer_alloc functions for
22678           test purposes.
22679         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22680         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
22681         (gst_ximagesink_show_frame):
22682         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22683         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
22684         (gst_xvimagesink_show_frame):
22685           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
22686           fails gracefully instead of XError aborting or deadlocking.
22687
22688 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22689
22690         * ext/libvisual/Makefile.am:
22691           link against gst-base-libs
22692
22693 2005-09-06  David Schleef  <ds@schleef.org>
22694
22695         * configure.ac: Enable libvisual plugin.
22696         * ext/libvisual/Makefile.am:
22697         * ext/libvisual/visual.c: Fixes to make it compile.
22698
22699 === release 0.9.2 ===
22700
22701 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22702
22703         * NEWS:
22704         * RELEASE:
22705         * configure.ac:
22706         * docs/random/ChangeLog-0.8:
22707           releasing 0.9.2, "Spoon"
22708
22709 2005-09-05  Michael Smith <msmith@fluendo.com>
22710
22711         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
22712           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
22713           that in the vorbisenc element.
22714
22715 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22716
22717         * common/gtk-doc-plugins.mak:
22718         * docs/plugins/Makefile.am:
22719           fix distcheck
22720         * gst/audioresample/resample.c:
22721           fix wrong docstring
22722
22723 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22724
22725         * common/gst-xmlinspect.py:
22726         * common/gtk-doc-plugins.mak:
22727           only inspect plugins for this given package
22728           require gst-python 0.9
22729
22730 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22731
22732         * Makefile.am:
22733         * autogen.sh:
22734         * common/gst-xmlinspect.py:
22735         * configure.ac:
22736         * docs/Makefile.am:
22737         * docs/plugins/inspect/plugin-alsa.xml:
22738         * docs/plugins/inspect/plugin-audioresample.xml:
22739         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22740         * docs/plugins/inspect/plugin-ogg.xml:
22741         * docs/plugins/tmpl/element-gnomevfssink.sgml:
22742         * docs/plugins/tmpl/element-multifdsink.sgml:
22743         * docs/plugins/tmpl/element-tcpserversink.sgml:
22744         * docs/plugins/tmpl/element-vorbisenc.sgml:
22745         * gst-plugins-base.spec.in:
22746           various doc-related updates
22747
22748 2005-08-31  Wim Taymans  <wim@fluendo.com>
22749
22750         * gst-libs/gst/audio/gstbaseaudiosink.c:
22751         (gst_base_audio_sink_render):
22752         Resync if the buffer timestamps drift more than a 10th 
22753         of a second.
22754
22755 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
22756
22757         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
22758         (gst_v4lsrc_get_property):
22759           The 'timestamp-offset' property is registered as an int64, so
22760           let's use g_value_{set|get}_int64() in our setter and getter
22761           functions (makes it work and fixes warnings with gst-inspect).
22762
22763 2005-08-30  Wim Taymans  <wim@fluendo.com>
22764
22765         * check/elements/audioconvert.c: (setup_audioconvert):
22766         * check/elements/audioresample.c: (setup_audioresample):
22767         * check/elements/volume.c: (setup_volume):
22768         Fix checks.
22769
22770 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22771
22772         * common/gtk-doc-plugins.mak:
22773         * common/plugins.xsl:
22774         * docs/plugins/Makefile.am:
22775           make module a param
22776
22777 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22778
22779         * examples/seeking/seek.c: (make_mp3_pipeline),
22780         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
22781         (play_cb), (pause_cb), (stop_cb):
22782           update the example
22783
22784 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22785
22786         * gst/volume/gstvolume.c: (gst_volume_class_init),
22787         (volume_transform):
22788           do not update controlled params, if buffer has no timestamp
22789
22790 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22791
22792         * configure.ac:
22793         * gst/sine/Makefile.am:
22794         * gst/volume/Makefile.am:
22795           controllerized elements also need to link against controller-libs ;)
22796
22797 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22798
22799         * docs/libs/tmpl/gstcolorbalance.sgml:
22800         * docs/libs/tmpl/gstgconf.sgml:
22801         * docs/libs/tmpl/gstmixer.sgml:
22802         * docs/libs/tmpl/gstringbuffer.sgml:
22803         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22804         (gst_sinesrc_create):
22805         * gst/volume/gstvolume.c: (gst_volume_class_init),
22806         (volume_transform):
22807           controllerized two audio plugins
22808
22809 2005-08-29  Andy Wingo  <wingo@pobox.com>
22810
22811         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
22812         (vorbis_handle_data_packet): Fix some int overflow errors.
22813
22814         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
22815         -1.
22816         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
22817         valid.
22818         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
22819         if it's valid. Fixed streaming-mode playback.
22820
22821         * check/elements/volume.c (cleanup_volume): Fix for running
22822         CK_FORK=no.
22823
22824         * check/elements/audioconvert.c: Convert from native endian, not
22825         little endian.
22826
22827 2005-08-29  Michael Smith <msmith@fluendo.com>
22828
22829         * ext/ogg/Makefile.am:
22830         * ext/ogg/gstogg.c: (plugin_init):
22831         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
22832         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
22833         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
22834         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
22835         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
22836         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
22837         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
22838         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
22839         Add an ogg parser element.
22840
22841 2005-08-28  Andy Wingo  <wingo@pobox.com>
22842
22843         * Updates for two-arg init from GST_BOILERPLATE_FULL.
22844
22845 2005-08-26  Wim Taymans  <wim@fluendo.com>
22846
22847         * gst/audioconvert/audioconvert.c: (if), (float),
22848         (audio_convert_get_func_index), (check_default),
22849         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22850         (audio_convert_clean_context), (audio_convert_get_sizes),
22851         (audio_convert_convert):
22852         Cleanups.
22853
22854 2005-08-26  Wim Taymans  <wim@fluendo.com>
22855
22856         * gst/audioconvert/audioconvert.c: (if), (float),
22857         (audio_convert_get_func_index), (check_default),
22858         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22859         (audio_convert_clean_context), (audio_convert_get_sizes),
22860         (audio_convert_convert):
22861         More elegant and working temp buffer selection algo.
22862
22863 2005-08-26  Wim Taymans  <wim@fluendo.com>
22864
22865         * gst/audioconvert/audioconvert.c: (if), (float),
22866         (audio_convert_get_func_index), (check_default),
22867         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22868         (audio_convert_clean_context), (audio_convert_get_sizes),
22869         (get_temp_buffer), (audio_convert_convert):
22870         Use realloc else we lose our original data.
22871
22872 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22873
22874         * gst/audioresample/gstaudioresample.c:
22875           use base class' newsegment to properly timestamp
22876
22877 2005-08-26  Wim Taymans  <wim@fluendo.com>
22878
22879         * gst/audioconvert/audioconvert.c: (if), (float),
22880         (audio_convert_get_func_index), (check_default),
22881         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22882         (audio_convert_clean_context), (audio_convert_get_sizes),
22883         (get_temp_buffer), (audio_convert_convert):
22884         * gst/audioconvert/gstaudioconvert.c:
22885         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
22886         (gst_audio_convert_transform_caps),
22887         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
22888         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
22889         Oops, allocate enough space to perform the channel mix.
22890
22891 2005-08-26  Wim Taymans  <wim@fluendo.com>
22892
22893         * gst/audioconvert/Makefile.am:
22894         * gst/audioconvert/audioconvert.c: (if), (float),
22895         (audio_convert_get_func_index), (check_default),
22896         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22897         (audio_convert_clean_context), (audio_convert_get_sizes),
22898         (get_temp_buffer), (audio_convert_convert):
22899         * gst/audioconvert/audioconvert.h:
22900         * gst/audioconvert/gstaudioconvert.c:
22901         (gst_audio_convert_class_init), (gst_audio_convert_init),
22902         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
22903         (gst_audio_convert_get_unit_size),
22904         (gst_audio_convert_transform_caps),
22905         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
22906         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
22907         * gst/audioconvert/gstaudioconvert.h:
22908         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22909         (gst_channel_mix_fill_identical),
22910         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
22911         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
22912         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
22913         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
22914         (gst_channel_mix_mix):
22915         * gst/audioconvert/gstchannelmix.h:
22916         Cleanups, librarify a bit, optimize, better negotiation and more.
22917
22918 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22919
22920         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
22921         Another from MikeS:
22922         During typefinding, don't support negative offsets
22923         (offsets from the end of the stream) in our typefind->peek() function
22924         - nothing embedded in ogg ever needs them. However, we need to recognise
22925         those requests and reject them, otherwise we return invalid pointers.
22926
22927 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22928
22929         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
22930         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
22931         (vorbisdec_finalize), (vorbis_handle_type_packet):
22932           Big shout-out to MikeS for fixing this giant memory leak.
22933           Huzzah!
22934
22935 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22936
22937         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
22938         (audio_convert_get_unit_size):
22939           plug some leaks
22940
22941 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22942
22943         * check/Makefile.am:
22944         * check/elements/audioconvert.c: (setup_audioconvert),
22945         (cleanup_audioconvert), (get_int_caps), (verify_convert),
22946         (GST_START_TEST), (audioconvert_suite), (main):
22947           add a test for audioconvert
22948         * gst/audioresample/gstaudioresample.c:
22949         * gst/audioresample/gstaudioresample.h:
22950           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
22951           note that for buffers of 1/3 sec this means DURATION(c) is 
22952           one nanosecond more than for a and b
22953
22954 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22955
22956         * check/Makefile.am:
22957         * check/elements/audioresample.c: (setup_audioresample),
22958         (cleanup_audioresample), (fail_unless_perfect_stream),
22959         (test_perfect_stream_instance), (GST_START_TEST),
22960           add a check for audioresample
22961         (audioresample_suite), (main):
22962         * check/elements/volume.c: (GST_START_TEST):
22963           remove unused method
22964         * gst/audioresample/gstaudioresample.c:
22965           set correct buffer parameters since we're changing them
22966         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22967           add some debug
22968
22969 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22970
22971         * gst/audioresample/debug.c:
22972         * gst/audioresample/gstaudioresample.c:
22973           add room for extra overlap samples when asked to transform size
22974           protect against possible mem corruption and check for discrepancies
22975           between written size and outbuffer's size so we can warn for
22976           potential problems
22977         * gst/audioresample/resample.c: (resample_init),
22978         (resample_get_output_size_for_input), (resample_get_output_size),
22979         (resample_set_n_channels), (resample_set_format):
22980           set debug level based on RESAMPLE_DEBUG env var
22981           make sure that get_output_size* returns a whole number of
22982           sample_size
22983           set sample_size each time either channel or format is set
22984         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
22985         * gst/audioresample/resample_functable.c:
22986         (resample_scale_functable):
22987         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22988           remove r->sample_size, it's done in resample.c now
22989           add some debugging to the ref implementation
22990           make sure we only give back bytes that are wholes of the sample
22991           size
22992
22993 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
22994         * gst/playback/gstplaybasebin.c: (fill_buffer):
22995         Revert unpopular change for GST_MESSAGE_SRC to GObject.
22996
22997 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
22998
22999         * gst/volume/gstvolume.c:
23000           made set_caps function static
23001
23002 2005-08-24  Wim Taymans  <wim@fluendo.com>
23003
23004         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
23005         (gst_vorbisenc_change_state):
23006         Stop leaking taglists.
23007
23008 2005-08-24  Wim Taymans  <wim@fluendo.com>
23009
23010         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
23011         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
23012         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
23013         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
23014         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23015         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
23016         Parse seeking events better.
23017         Unref static caps.
23018         Generate correct newsegment events, fixes seeking in live oggs.
23019
23020         * ext/theora/theoradec.c: (theora_dec_src_query),
23021         (theora_dec_src_event), (theora_dec_src_getcaps),
23022         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
23023         Use newsegment values to report correct play time.
23024
23025         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
23026         (vorbis_dec_src_event), (vorbis_dec_sink_event):
23027         * ext/vorbis/vorbisdec.h:
23028         Parse and use newsegment values to report correct play time.
23029
23030         * gst-libs/gst/audio/gstbaseaudiosink.c:
23031         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23032         Clear ringbuffer on flush.
23033         Use newsegment values to calculate playback time.
23034
23035         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
23036         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23037         Basesink does newsegment calculations for us now.
23038
23039 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23040
23041         * check/Makefile.am:
23042         * configure.ac:
23043           add core's plugins to the mix so that playbin works
23044         * check/generic/states.c: (GST_START_TEST):
23045           set a 0 timeout on pipelines, so they don't force the next
23046           state change
23047         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
23048         (gst_play_base_bin_change_state):
23049           remove the crappy error handling and do GST error handling
23050
23051 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23052
23053         * check/Makefile.am:
23054         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
23055           add same test as to core, it bitches out on playbin atm.
23056
23057 2005-08-24  Wim Taymans  <wim@fluendo.com>
23058
23059         * configure.ac:
23060         Remove audioscale.
23061
23062 2005-08-24  Wim Taymans  <wim@fluendo.com>
23063
23064         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
23065         (gst_videoscale_prepare_size), (parse_caps),
23066         (gst_videoscale_set_caps), (gst_videoscale_get_size),
23067         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
23068         (gst_videoscale_transform):
23069         * gst/videoscale/gstvideoscale.h:
23070         Refactor, make use of BaseTranform really well.
23071
23072 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23073
23074         * configure.ac:
23075           compile audioresample
23076         * gst/audioresample/Makefile.am:
23077         * gst/audioresample/buffer.c:
23078         * gst/audioresample/functable.c:
23079         * gst/audioresample/gstaudioresample.c:
23080         * gst/audioresample/gstaudioresample.h:
23081         * gst/audioresample/resample.c:
23082         (resample_get_output_size_for_input):
23083         * gst/audioresample/resample.h:
23084         * gst/audioresample/resample_chunk.c:
23085         * gst/audioresample/resample_functable.c:
23086         * gst/audioresample/resample_ref.c:
23087           port to use basetransform; doesn't work in all cases yet
23088
23089 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23090
23091         * gst/audioconvert/gstaudioconvert.c:
23092         (gst_audio_convert_class_init), (gst_audio_convert_init),
23093         (audio_convert_get_unit_size), (audio_convert_transform_caps),
23094         (audio_convert_fixate_caps), (audio_convert_set_caps),
23095         (audio_convert_transform),
23096         (gst_audio_convert_buffer_to_default_format),
23097         (gst_audio_convert_buffer_from_default_format),
23098         (gst_audio_convert_channels):
23099         * gst/audioconvert/gstchannelmix.c:
23100         * gst/audioconvert/gstchannelmix.h:
23101           port to basetransform
23102         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23103         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
23104         (gst_ffmpegcsp_get_unit_size):
23105         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
23106         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
23107           fix for basetransform changes
23108
23109 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
23110
23111         * check/Makefile.am:
23112           Add CHECK_CFLAGS and LDFLAGS
23113
23114         * gst/playback/gstplaybasebin.c: (fill_buffer):
23115           GST_MESSAGE_SRC became a GObject
23116
23117 2005-08-24  Wim Taymans  <wim@fluendo.com>
23118
23119         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
23120         (gst_ring_buffer_clear_all):
23121         * gst-libs/gst/audio/gstringbuffer.h:
23122         Added function to clear the ringbuffer.
23123
23124 2005-08-24  Andy Wingo  <wingo@pobox.com>
23125
23126         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
23127         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
23128         of _open and _close.
23129
23130         * sys/v4l/gstv4lxoverlay.h:
23131         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
23132         an Xv connection here, instead of all the time. Make Xv only be
23133         loaded if you axe for it. Kindof a workaround for buggy behaviour
23134         of Xv when using remote xservers (XvQueryExtension would block).
23135         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
23136         replace the _open and _close public API. Only start the xv
23137         connection if necessary.
23138         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
23139
23140 2005-08-23  David Schleef  <ds@schleef.org>
23141
23142         * gst/audioresample/Makefile.am: Leet audioresampling code
23143         * gst/audioresample/buffer.c:
23144         * gst/audioresample/buffer.h:
23145         * gst/audioresample/debug.c:
23146         * gst/audioresample/debug.h:
23147         * gst/audioresample/functable.c:
23148         * gst/audioresample/functable.h:
23149         * gst/audioresample/gstaudioresample.c:
23150         * gst/audioresample/gstaudioresample.h:
23151         * gst/audioresample/resample.c:
23152         * gst/audioresample/resample.h:
23153         * gst/audioresample/resample_chunk.c:
23154         * gst/audioresample/resample_functable.c:
23155         * gst/audioresample/resample_ref.c:
23156
23157 2005-08-23  Wim Taymans  <wim@fluendo.com>
23158
23159         * examples/seeking/seek.c: (make_vorbis_pipeline),
23160         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
23161         Small seek updates.
23162
23163 2005-08-23  Andy Wingo  <wingo@pobox.com>
23164
23165         * gst-libs/gst/audio/gstbaseaudiosrc.c
23166         (gst_base_audio_src_fixate): Only fixate endianness if it is
23167         present in the caps.
23168
23169 2005-08-22  Andy Wingo  <wingo@pobox.com>
23170
23171         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
23172         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
23173         device-name property.
23174
23175         * gst-libs/gst/audio/gstaudiosrc.h:
23176         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
23177         close_device in the ring buffer, like gstaudiosink.
23178
23179         * ext/alsa/gstalsamixer.h:
23180         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
23181         macro to implement the interface without much code. Cleanups. 
23182
23183         * ext/alsa/gstalsasrc.h:
23184         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
23185         READY.
23186
23187         * ext/alsa/Makefile.am: Add new files.
23188         * ext/alsa/gstalsamixerelement.c: 
23189         * ext/alsa/gstalsamixerelement.c: Split element code out from
23190         mixer code so that alsasrc can be a mixer too.
23191
23192 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23193
23194         * check/elements/volume.c: (setup_volume), (cleanup_volume),
23195         (GST_START_TEST):
23196         * check/elements/vorbisdec.c: (setup_vorbisdec),
23197         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
23198         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
23199         (vorbis_handle_identification_packet),
23200         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
23201         (vorbis_handle_header_packet), (vorbis_dec_push),
23202         (vorbis_dec_chain):
23203           use the setup/teardown methods to save code.  save code is good.
23204
23205 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23206
23207         * check/Makefile.am:
23208           add ext dir for plugins
23209           add vorbisdec test conditionally
23210         * check/elements/volume.c: (setup_volume), (cleanup_volume),
23211         (GST_START_TEST), (volume_suite):
23212           add a test with wrong caps
23213         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
23214         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
23215           add a vorbisdec test
23216         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
23217         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
23218           clean up debug output
23219         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
23220           yay, fix a segfault/security issue in vorbisdec
23221           gst-launch fakesrc ! vorbisdec wasn't happy
23222         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
23223         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
23224         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
23225         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
23226         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
23227         (gst_vorbisenc_set_metadata), (get_constraints_string),
23228         (update_start_message), (gst_vorbisenc_setup),
23229         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
23230         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
23231         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
23232         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
23233         * ext/vorbis/vorbisenc.h:
23234           march in line
23235         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23236         (gst_ffmpegcsp_transform):
23237           have the kow come home
23238         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
23239           debug my func ptr
23240         * gst/volume/gstvolume.c: (volume_set_caps):
23241           add a debug
23242
23243 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23244
23245         * Makefile.am:
23246         * check/.cvsignore:
23247         * check/Makefile.am:
23248         * check/elements/.cvsignore:
23249         * check/elements/volume.c: (chain_func), (event_func),
23250         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
23251         (main):
23252         * configure.ac:
23253           add unit test structure for gst-plugins-base
23254           add a test for volume
23255         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
23256         (gst_volume_set_volume), (gst_volume_get_volume),
23257         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
23258         (volume_funcfind), (volume_process_float), (volume_process_int16),
23259         (volume_set_caps), (volume_transform), (volume_update_mute),
23260         (volume_update_volume), (volume_set_property),
23261         (volume_get_property):
23262           document a little; use basetransform vmethod _set_caps
23263
23264 2005-08-19  Andy Wingo  <wingo@pobox.com>
23265
23266         * ext/alsa/gstalsamixertrack.h:
23267         * ext/alsa/gstalsamixertrack.c:
23268         * ext/alsa/gstalsamixeroptions.h:
23269         * ext/alsa/gstalsamixeroptions.c:
23270         * ext/alsa/gstalsamixer.h:
23271         * ext/alsa/gstalsamixer.c: Port to 0.9.
23272
23273         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
23274         Remove gstalsa.c and alsaclock. No more cruft here.
23275         
23276 2005-08-18  Wim Taymans  <wim@fluendo.com>
23277
23278         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23279         (gst_base_rtp_depayload_chain),
23280         (gst_base_rtp_depayload_add_to_queue),
23281         (gst_base_rtp_depayload_push),
23282         (gst_base_rtp_depayload_queue_release):
23283         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23284         Fix for RTPBuffer changes.
23285
23286         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
23287         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
23288         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
23289         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
23290         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
23291         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
23292         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
23293         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
23294         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
23295         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
23296         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
23297         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
23298         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
23299         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
23300         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
23301         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
23302         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
23303         (gst_rtpbuffer_get_payload):
23304         * gst-libs/gst/rtp/gstrtpbuffer.h:
23305         Don't subclass GstBuffer but add methods and helper functions
23306         to construct and manipulate RTP packets in regular GstBuffers.
23307
23308 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
23309
23310         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
23311           moved statement below switch
23312         * gst/volume/gstvolume.c: (gst_volume_class_init):
23313           added debug ptr
23314
23315 2005-08-16  Wim Taymans  <wim@fluendo.com>
23316
23317         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23318         (gst_base_audio_src_change_state):
23319         Open and close device in READY<->NULL state change.
23320
23321 2005-08-16  Andy Wingo  <wingo@pobox.com>
23322
23323         * examples/seeking/Makefile.am: Don't compile non-compiling
23324         compiled objects with the compiler.
23325
23326         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
23327         elements.
23328
23329 2005-08-12  Philippe Khalaf <burger@speedy.org>
23330         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23331         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23332           Made a thread to release the queue.
23333           Removed timestamp conversion for now.
23334
23335 2005-08-10  Philippe Khalaf <burger@speedy.org>
23336         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23337         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23338           Added rtp timestamp -> gst timestamp conversion.
23339           Fixed several problems with queue.
23340
23341 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23342
23343         * gst-libs/gst/audio/gstaudioclock.h:
23344         * gst-libs/gst/audio/gstaudiofilter.h:
23345         * gst-libs/gst/audio/gstaudiosink.h:
23346         * gst-libs/gst/audio/gstaudiosrc.h:
23347         * gst-libs/gst/audio/gstbaseaudiosink.h:
23348         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23349         * gst-libs/gst/audio/gstringbuffer.h:
23350         * gst-libs/gst/net/gstnetbuffer.h:
23351         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23352         * gst-libs/gst/rtp/gstrtpbuffer.h:
23353           Add padding (you will need to rebuild gst-plugins-base,
23354           gst-plugins and all applications afterwards!)
23355
23356 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23357
23358         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
23359         (gst_riff_parse_chunk):
23360           Fix bug in debug message and add some more debug messages.
23361
23362 2005-08-08  Edward Hervey  <edward@fluendo.com>
23363
23364         * gst-libs/gst/riff/riff-media.c:
23365         backported updates since branch
23366
23367 2005-08-08  Andy Wingo  <wingo@pobox.com>
23368
23369         * gst-libs/gst/audio/gstbaseaudiosink.c
23370         (gst_base_audio_sink_change_state): Open the device in NULL->READY
23371         like good elements should. Close on READY->NULL too.
23372
23373         * gst-libs/gst/audio/gstaudiosink.c
23374         (gst_audioringbuffer_open_device,
23375         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
23376         (gst_audioringbuffer_release): Updates for new ring buffer API,
23377         hook into the new audio sink api.
23378
23379         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
23380         (GstAudioSinkClass.close): Just open and close the device -- no
23381         resource allocation or configuration.
23382         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
23383         vmethods, handle device setup and resource allocation.
23384
23385         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
23386         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
23387         base class API.
23388
23389         * gst-libs/gst/audio/gstringbuffer.h
23390         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
23391         New vmethods.
23392
23393         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
23394         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
23395         New API functions. The device should be opened before acquiring
23396         and closed after releasing.
23397
23398 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
23399
23400         * gst-libs/gst/interfaces/mixer.h:
23401           Reset padding to GST_PADDING.
23402
23403 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23404
23405         * gst/playback/gstplaybin.c: (remove_sinks):
23406           Remove visualization from parent explicitely; works around some
23407           apparent refcount issue that I haven't tracked down yet.
23408
23409 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23410
23411         * ext/alsa/gstalsasink.c: (set_hwparams):
23412           Assign debug category, add negotiation debug msgs.
23413
23414 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23415
23416         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
23417           Fix error code for file-not-found to NOT_FOUND.
23418
23419 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23420
23421         * common/gtk-doc-plugins.mak:
23422         * docs/plugins/Makefile.am:
23423         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23424         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23425           renamed to actual element names, so much nicer to look at
23426         * docs/plugins/tmpl/gstmultifdsink.sgml:
23427           remove
23428         * docs/plugins/tmpl/multifdsink.sgml:
23429         * docs/plugins/tmpl/tcpserversink.sgml:
23430           add
23431         * ext/alsa/gstalsa.c:
23432         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
23433         * ext/ogg/gstoggmux.c:
23434         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
23435         * gst/playback/gstdecodebin.c:
23436         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
23437         * gst/tcp/gsttcpserversink.c:
23438           various fixes and documentation additions
23439
23440 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23441
23442         * common/Makefile.am:
23443         * common/gstdoc-scangobj:
23444         * common/gtk-doc-plugins.mak:
23445         * common/gtk-doc.mak:
23446           add a custom scangobj that uses the registry
23447           add a custom gtk-doc-plugins.mak that uses it
23448           some doc build fixes
23449         * configure.ac:
23450         * docs/Makefile.am:
23451         * docs/plugins/Makefile.am:
23452         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23453         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23454         * docs/plugins/gst-plugins-base-plugins.types:
23455         * docs/plugins/tmpl/gstmultifdsink.sgml:
23456           add docs for one element, multifdsink
23457         * gst/adder/gstadder.h:
23458         * gst/volume/gstvolume.h:
23459           don't privatize enum
23460         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
23461         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23462         (gst_sync_method_get_type), (gst_client_status_get_type),
23463         (gst_multifdsink_class_init),
23464         (gst_multifdsink_client_queue_buffer),
23465         (gst_multifdsink_handle_client_write):
23466         * gst/tcp/gstmultifdsink.h:
23467         * gst/tcp/gsttcp.h:
23468         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23469         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
23470         (gst_tcpclientsink_render):
23471         * gst/tcp/gsttcpclientsink.h:
23472         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
23473         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
23474         (gst_tcpclientsrc_start):
23475         * gst/tcp/gsttcpclientsrc.h:
23476         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
23477         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
23478         * gst/tcp/gsttcpserversrc.h:
23479         * gst/typefind/gsttypefindfunctions.c:
23480           remove superfluous Type stuff
23481
23482 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23483
23484         * gst/playback/gstplaybin.c: (gen_video_element):
23485           Enable videoscale.
23486
23487 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23488
23489         * gst-libs/gst/gconf/gconf.c:
23490         * gst-libs/gst/gconf/gconf.h:
23491           Fix some Andy Problem [tm].
23492
23493 2005-08-04  Andy Wingo  <wingo@pobox.com>
23494
23495         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
23496         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
23497         (gst_ffmpegcsp_get_size): Adapt to API changes.
23498
23499         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
23500         Implement an in-place do-nothing transform.
23501
23502 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23503
23504         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
23505         (gst_ximagesink_renegotiate_size):
23506           Do not set new window sizes yet if we prepare a new buffer size
23507           for upstream renegotiation (software scaling) at some point in the
23508           future, because this new size waqs not actually accepted yet. Once
23509           accepted, renegotiation later on will set the new sizes just fine.
23510           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
23511           embedding testcase.
23512
23513 2005-08-03  Andy Wingo  <wingo@pobox.com>
23514
23515         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
23516         (gst_ximagesink_buffer_alloc): 
23517         Protect the height, width, and desired_caps with the pool_lock.
23518         Fixes videotestsrc ! queue ! ximagesink.
23519
23520 2005-08-02  Edward Hervey  <edward@fluendo.com>
23521
23522         * gst/volume/gstvolume.c:
23523         include left from controller cleanup
23524
23525 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
23526         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
23527           Stop collectpads before calling the parent state
23528           change function on PAUSED->READY.
23529
23530 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
23531         * configure.ac:
23532           When testing for X libs, use the X CFlags 
23533         * gst/adder/gstadder.c: (gst_adder_change_state):
23534           Stop the collectpads before calling parent state change function
23535           on PAUSED->READY, otherwise we deadlock deactivating pads.
23536
23537 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
23538
23539         * configure.ac:
23540         * docs/libs/tmpl/gstcolorbalance.sgml:
23541         * docs/libs/tmpl/gstmixer.sgml:
23542         * examples/Makefile.am:
23543         * gst/sine/Makefile.am:
23544         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
23545         (gst_sinesrc_set_property), (plugin_init):
23546         * gst/sine/gstsinesrc.h:
23547         * gst/volume/Makefile.am:
23548         * gst/volume/gstvolume.c: (gst_volume_set_volume),
23549         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
23550         (volume_process_float), (volume_process_int16),
23551         (volume_set_property), (plugin_init):
23552         * gst/volume/gstvolume.h:
23553           deactivate and remove dparams (libgstcontrol)
23554
23555 2005-07-29  Wim Taymans  <wim@fluendo.com>
23556
23557         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
23558         Convert me to BaseTransform!! help..
23559
23560 2005-07-29  Andy Wingo  <wingo@pobox.com>
23561
23562         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
23563         sinks.
23564
23565         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
23566         support of both endiannesses.
23567
23568 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23569
23570         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
23571           Fix confusing debug message (s/event/query/)
23572
23573 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23574
23575         * gst/videotestsrc/videotestsrc.h:
23576           Use "_stdint.h" instead of <stdint.h>
23577
23578 2005-07-27  Wim Taymans  <wim@fluendo.com>
23579
23580         * ext/vorbis/Makefile.am:
23581         Revert wrong commit.
23582
23583 2005-07-27  Wim Taymans  <wim@fluendo.com>
23584
23585         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
23586         More compilation fixen.
23587
23588 2005-07-27  Wim Taymans  <wim@fluendo.com>
23589
23590         * gst-libs/gst/audio/gstbaseaudiosink.c:
23591         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
23592         (gst_base_audio_sink_create_ringbuffer),
23593         (gst_base_audio_sink_change_state):
23594         Fix compilation.
23595
23596 2005-07-27  Wim Taymans  <wim@fluendo.com>
23597
23598         * examples/seeking/seek.c: (setup_dynamic_link),
23599         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
23600         (query_positions_elems), (query_positions_pads), (do_seek):
23601         Update seek example.
23602
23603         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23604         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
23605         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
23606         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23607         (gst_ogg_demux_handle_event),
23608         (gst_ogg_demux_deactivate_current_chain),
23609         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23610         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23611         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
23612         (gst_ogg_demux_loop):
23613         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
23614         * ext/theora/theoradec.c: (theora_dec_src_event),
23615         (theora_dec_src_getcaps), (theora_dec_sink_event),
23616         (theora_dec_push), (theora_dec_chain):
23617         * ext/vorbis/Makefile.am:
23618         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
23619         (vorbis_dec_sink_event), (vorbis_dec_push),
23620         (vorbis_handle_data_packet):
23621         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
23622         (gst_vorbisenc_chain):
23623         * gst/playback/gststreaminfo.c: (cb_probe):
23624         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
23625         * gst/videorate/gstvideorate.c: (gst_videorate_event):
23626         * gst/videoscale/gstvideoscale.c:
23627         (gst_videoscale_handle_src_event):
23628         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
23629         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
23630         (gst_ximagesink_navigation_send_event):
23631         * sys/xvimage/xvimagesink.c:
23632         (gst_xvimagesink_navigation_send_event):
23633         Various event updates and cleanups
23634
23635 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23636
23637         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
23638           Fix segfault for I420/YV12.
23639
23640 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23641
23642         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
23643           Report bitrate.
23644
23645 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23646
23647         * gst/playback/gstplaybin.c: (gen_video_element),
23648         (gen_audio_element):
23649           Switch to auto*sink elements as default sinks; add volume element
23650           so that volume control in totem works.
23651
23652 2005-07-21  Wim Taymans  <wim@fluendo.com>
23653
23654         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
23655         * gst/playback/gstplaybin.c: (setup_sinks),
23656         (gst_play_bin_change_state):
23657         Refcount fix and more comments.
23658
23659 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23660
23661         * sys/ximage/Makefile.am:
23662         * sys/ximage/ximage.c: (plugin_init):
23663         * sys/ximage/ximagesink.c:
23664         Prepare for adding ximagesrc, rename of plugin to ximage etc.
23665         
23666
23667 2005-07-21  Wim Taymans  <wim@fluendo.com>
23668
23669         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23670         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23671         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23672         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23673         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23674         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
23675         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
23676         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
23677         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
23678         Generate correct disconts for live chained oggs.
23679
23680         * gst-libs/gst/audio/gstbaseaudiosink.c:
23681         (gst_base_audio_sink_render),
23682         (gst_base_audio_sink_create_ringbuffer),
23683         (gst_base_audio_sink_change_state):
23684         Handle discont math correctly.
23685
23686         * gst/playback/gstplaybin.c: (add_sink):
23687         Some small debug cleanup.
23688
23689 2005-07-21  Wim Taymans  <wim@fluendo.com>
23690
23691         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
23692         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23693         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23694         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23695         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23696         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
23697         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23698         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
23699         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23700         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
23701         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
23702         (gst_ogg_demux_change_state), (gst_ogg_print):
23703         Reorganize code to send the right disconts when in streaming
23704         mode.
23705
23706 2005-07-20  Andy Wingo  <wingo@pobox.com>
23707
23708         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
23709         fix (?), fixes a seggie mcfalterson (#310894).
23710
23711 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23712
23713         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
23714         (gst_ogg_mux_set_header_on_caps):
23715         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23716         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23717         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
23718         * gst-libs/gst/audio/multichannel.c:
23719         (gst_audio_set_channel_positions),
23720         (gst_audio_set_structure_channel_positions_list):
23721         * gst/playback/gstdecodebin.c: (dynamic_create):
23722         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
23723         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
23724           Fixes for API changes in core.
23725
23726 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23727
23728         * gst/playback/gstplaybasebin.c: (fill_buffer):
23729           Use _new_custom() so we can set custom message types for buffering
23730           messages.
23731
23732 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23733
23734         * configure.ac:
23735         * gst-libs/gst/Makefile.am:
23736         * gst-libs/gst/gconf/.cvsignore:
23737         * gst-libs/gst/gconf/Makefile.am:
23738         * gst-libs/gst/gconf/test-gconf.c:
23739         * pkgconfig/Makefile.am:
23740         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
23741         * pkgconfig/gstreamer-gconf.pc.in:
23742           Remove gconf stuff, use gconf elements instead from now on.
23743
23744 2005-07-20  Wim Taymans  <wim@fluendo.com>
23745
23746         * gst-libs/gst/audio/TODO:
23747         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
23748         (gst_audio_clock_get_internal_time):
23749         * gst-libs/gst/audio/gstaudioclock.h:
23750         * gst-libs/gst/audio/gstbaseaudiosink.c:
23751         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23752         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
23753         (gst_base_audio_sink_render),
23754         (gst_base_audio_sink_create_ringbuffer),
23755         (gst_base_audio_sink_change_state):
23756         Make sure the audio clock always returns an increasing value.
23757
23758 2005-07-19  Andy Wingo  <wingo@pobox.com>
23759
23760         * gst/videotestsrc/: Cleanups.
23761
23762 2005-07-19  Wim Taymans  <wim@fluendo.com>
23763
23764         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
23765         Better debugging.
23766
23767 2005-07-19  Wim Taymans  <wim@fluendo.com>
23768
23769         * examples/seeking/seek.c: (make_dv_pipeline),
23770         (make_vorbis_theora_pipeline), (query_rates),
23771         (query_positions_elems), (query_positions_pads), (do_seek):
23772         Make correct DV pipeline.
23773
23774 2005-07-18  Andy Wingo  <wingo@pobox.com>
23775
23776         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
23777         default. Also because it's the only thing that really works. (This
23778         is used in the GConf elements).
23779         Use AS_LIBTOOL_TAGS.
23780
23781 2005-07-18  Wim Taymans  <wim@fluendo.com>
23782
23783         * gst/playback/gstdecodebin.c: (remove_element_chain):
23784         * gst/playback/gstplaybin.c: (add_sink):
23785         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23786         (gst_stream_info_set_mute):
23787         * gst/playback/gststreamselector.c:
23788         (gst_stream_selector_get_linked_pad),
23789         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
23790         More leak and compile fixes.
23791
23792 2005-07-18  Wim Taymans  <wim@fluendo.com>
23793
23794         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23795         (query_rates), (query_positions_elems), (query_positions_pads),
23796         (do_seek), (seek_cb), (stop_seek):
23797         Updated seek example. 
23798
23799         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
23800         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
23801         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
23802         * gst/playback/gstplaybin.c: (add_sink):
23803         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23804         (gst_stream_info_set_mute):
23805         Some refcount leak fixes.
23806
23807 2005-07-16  Wim Taymans  <wim@fluendo.com>
23808
23809         * gst-libs/gst/audio/gstbaseaudiosink.c:
23810         (gst_base_audio_sink_render):
23811         Align samples even if we have roundoff errors in the 
23812         timestamp conversion.
23813
23814 2005-07-16  Wim Taymans  <wim@fluendo.com>
23815
23816         * docs/libs/tmpl/gstringbuffer.sgml:
23817         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23818         (query_rates), (query_positions_elems), (query_positions_pads),
23819         (update_scale), (do_seek):
23820         Updated seek example.
23821
23822         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23823         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
23824         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
23825         (gst_ogg_demux_loop):
23826         Push out correct discont values.
23827
23828         * ext/theora/theoradec.c: (theora_dec_src_convert),
23829         (theora_dec_sink_convert), (theora_dec_src_getcaps),
23830         (theora_dec_sink_event), (theora_handle_type_packet),
23831         (theora_handle_header_packet), (theora_dec_push),
23832         (theora_handle_data_packet), (theora_dec_chain),
23833         (theora_dec_change_state):
23834         Better timestamping.
23835
23836         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
23837         (vorbis_dec_sink_event), (vorbis_dec_push),
23838         (vorbis_handle_data_packet), (vorbis_dec_chain):
23839         * ext/vorbis/vorbisdec.h:
23840         Better timestamping.
23841
23842         * gst-libs/gst/audio/gstbaseaudiosink.c:
23843         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
23844         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23845         Handle syncing on timestamps instead of sample offsets. Make
23846         use of DISCONT values as described in design docs.
23847
23848         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23849         (gst_base_audio_src_get_time):
23850         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
23851         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
23852         (gst_ring_buffer_read):
23853         * gst-libs/gst/audio/gstringbuffer.h:
23854         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
23855         (gst_ximagesink_show_frame):
23856         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23857         Correcly convert buffer timestamp to stream time.
23858
23859 2005-07-16  Wim Taymans  <wim@fluendo.com>
23860
23861         * gst/audioconvert/gstaudioconvert.c:
23862         (gst_audio_convert_get_buffer):
23863         Timestamp buffers correctly.
23864
23865         * gst/playback/gstplaybin.c: (gen_video_element):
23866         Make internal fakesink silent.
23867
23868 2005-07-15  Wim Taymans  <wim@fluendo.com>
23869
23870         * gst/ffmpegcolorspace/Makefile.am:
23871         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23872         (gst_ffmpegcsp_caps_remove_format_info),
23873         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
23874         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
23875         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
23876         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
23877         Ported ffmpegcolorspace to basetransform.
23878
23879         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
23880         * gst/volume/gstvolume.c: (volume_transform):
23881         Ported to new API.
23882
23883 2005-07-14  Wim Taymans  <wim@fluendo.com>
23884
23885         * gst/videotestsrc/Makefile.am:
23886         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
23887         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
23888         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
23889         (gst_videotestsrc_init), (gst_videotestsrc_event),
23890         (gst_videotestsrc_create), (gst_videotestsrc_start),
23891         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
23892         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23893         (gst_videotestsrc_get_property):
23894         * gst/videotestsrc/gstvideotestsrc.h:
23895         Make videotestsrc a pushsrc.
23896
23897 2005-07-14  Wim Taymans  <wim@fluendo.com>
23898
23899         * gst/tcp/gstfdset.c: (gst_fdset_free):
23900         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
23901         (gst_multifdsink_add), (gst_multifdsink_remove),
23902         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
23903         (gst_multifdsink_remove_client_link),
23904         (gst_multifdsink_client_queue_data),
23905         (gst_multifdsink_client_queue_caps),
23906         (gst_multifdsink_client_queue_buffer),
23907         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
23908         (gst_multifdsink_stop):
23909         * gst/tcp/gstmultifdsink.h:
23910         0.8 backporting.
23911
23912         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
23913         Also draw image when not from a pool.
23914
23915 2005-07-14  Wim Taymans  <wim@fluendo.com>
23916
23917         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
23918         (mute_stream), (silence_stream):
23919         Small debug additions.
23920
23921 2005-07-14  Wim Taymans  <wim@fluendo.com>
23922
23923         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
23924         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23925         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
23926         Better error recovery, ignore unconnected pads and
23927         non-fatal errors.
23928
23929 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23930
23931         * docs/libs/tmpl/gstaudio.sgml:
23932         * docs/libs/tmpl/gstcolorbalance.sgml:
23933         * docs/libs/tmpl/gstgconf.sgml:
23934         * docs/libs/tmpl/gstmixer.sgml:
23935         * docs/libs/tmpl/gstringbuffer.sgml:
23936         * docs/libs/tmpl/gsttuner.sgml:
23937         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23938         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
23939         (gst_tcpclientsrc_class_init):
23940         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
23941         (gst_tcpserversrc_class_init):
23942         * sys/v4l/gstv4lelement.c:
23943           more autistic cleanliness in functions/names/defines
23944
23945 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23946
23947         * configure.ac:
23948           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
23949           added manually to each Makefile.am so we are sure it goes
23950           *last* and doesn't add -L flags before linking in libs of our
23951           own, like, say, internal .la libs, that then accidentally pick
23952           up the installed copy.
23953         * docs/libs/Makefile.am:
23954         * ext/alsa/Makefile.am:
23955         * ext/cdparanoia/Makefile.am:
23956         * ext/gnomevfs/Makefile.am:
23957         * ext/libvisual/Makefile.am:
23958         * ext/ogg/Makefile.am:
23959         * ext/theora/Makefile.am:
23960         * ext/vorbis/Makefile.am:
23961         * gst-libs/gst/video/Makefile.am:
23962         * gst/adder/Makefile.am:
23963         * gst/audioconvert/Makefile.am:
23964         * gst/audiorate/Makefile.am:
23965         * gst/audioscale/Makefile.am:
23966         * gst/ffmpegcolorspace/Makefile.am:
23967         * gst/playback/Makefile.am:
23968         * gst/sine/Makefile.am:
23969         * gst/subparse/Makefile.am:
23970         * gst/tags/Makefile.am:
23971         * gst/tcp/Makefile.am:
23972         * gst/typefind/Makefile.am:
23973         * gst/videorate/Makefile.am:
23974         * gst/videoscale/Makefile.am:
23975         * gst/videotestsrc/Makefile.am:
23976         * gst/volume/Makefile.am:
23977         * sys/v4l/Makefile.am:
23978         * sys/ximage/Makefile.am:
23979         * sys/xvimage/Makefile.am:
23980           adapt properly to this change. This should make sure that
23981           plugins and libs properly link to the as-yet-uninstalled
23982           copies of stuff like libgstinterfaces and libgstvideo
23983
23984 2005-07-13  Andy Wingo  <wingo@pobox.com>
23985
23986         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
23987         (gst_v4lsrc_fixate): Fixate on format as well.
23988
23989         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
23990         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
23991         buffer points to it.
23992         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
23993         rather just doing X calls ourselves. Also fixes a memleak.
23994
23995 2005-07-12  Andy Wingo  <wingo@pobox.com>
23996
23997         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
23998         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
23999         (gst_v4lsrc_create): Re-add the copy-mode property, default to
24000         TRUE to avoid deadlocks if an element holds on to our buffers.
24001
24002 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
24003
24004         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24005         (gst_sinesrc_init), (gst_sinesrc_create),
24006         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
24007         (gst_sinesrc_start):
24008         * gst/sine/gstsinesrc.h:
24009           removing num-buffers property before moving it
24010
24011 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
24012
24013         * configure.ac:
24014           use overridable ERROR_CFLAGS
24015         * docs/libs/gst-plugins-base-libs.types:
24016         * docs/libs/tmpl/gstringbuffer.sgml:
24017         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
24018         (gst_alsasink_class_init):
24019         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
24020         (gst_alsasrc_class_init):
24021         * gst-libs/gst/audio/audio.h:
24022         * gst-libs/gst/audio/gstaudioclock.h:
24023         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
24024         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
24025         (gst_audio_filter_link), (gst_audio_filter_init),
24026         (gst_audio_filter_chain), (gst_audio_filter_set_property),
24027         (gst_audio_filter_get_property),
24028         (gst_audio_filter_class_add_pad_templates):
24029         * gst-libs/gst/audio/gstaudiofilter.h:
24030         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
24031         (gst_audio_filter_template_get_type),
24032         (gst_audio_filter_template_base_init),
24033         (gst_audio_filter_template_class_init),
24034         (gst_audio_filter_template_init),
24035         (gst_audio_filter_template_set_property),
24036         (gst_audio_filter_template_get_property), (plugin_init),
24037         (gst_audio_filter_template_setup),
24038         (gst_audio_filter_template_filter),
24039         (gst_audio_filter_template_filter_inplace):
24040         * gst-libs/gst/audio/gstaudiosink.c:
24041         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24042         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
24043         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
24044         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
24045         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
24046         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
24047         * gst-libs/gst/audio/gstaudiosink.h:
24048         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
24049         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
24050         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24051         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
24052         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
24053         (gst_audio_src_class_init), (gst_audio_src_init),
24054         (gst_audio_src_create_ringbuffer):
24055         * gst-libs/gst/audio/gstaudiosrc.h:
24056         * gst-libs/gst/audio/gstbaseaudiosink.c:
24057         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
24058         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
24059         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
24060         (gst_base_audio_sink_set_property),
24061         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
24062         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
24063         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
24064         (gst_base_audio_sink_create_ringbuffer),
24065         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
24066         * gst-libs/gst/audio/gstbaseaudiosink.h:
24067         * gst-libs/gst/audio/gstbaseaudiosrc.c:
24068         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
24069         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
24070         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
24071         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
24072         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
24073         (gst_base_audio_src_event), (gst_base_audio_src_create),
24074         (gst_base_audio_src_create_ringbuffer),
24075         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
24076         * gst-libs/gst/audio/gstbaseaudiosrc.h:
24077         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
24078         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
24079         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
24080         (gst_ring_buffer_debug_spec_caps),
24081         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
24082         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
24083         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
24084         (gst_ring_buffer_start), (gst_ring_buffer_pause),
24085         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
24086         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
24087         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
24088         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
24089         (gst_ring_buffer_clear):
24090         * gst-libs/gst/audio/gstringbuffer.h:
24091         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
24092         (gst_video_sink_class_init), (gst_video_sink_get_type):
24093         * gst-libs/gst/video/videosink.h:
24094         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
24095         (gst_multifdsink_class_init),
24096         (gst_multifdsink_handle_client_write),
24097         (gst_multifdsink_change_state):
24098         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
24099         (gst_tcpclientsink_setcaps):
24100         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24101         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
24102         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
24103         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
24104         (gst_ximagesink_send_pending_navigation),
24105         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
24106         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
24107         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
24108         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24109         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
24110         (gst_xvimagesink_send_pending_navigation),
24111         (gst_xvimagesink_navigation_send_event),
24112         (gst_xvimagesink_set_xwindow_id),
24113         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
24114         (gst_xvimagesink_get_type):
24115         more macro splitting
24116
24117 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24118
24119         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
24120           plug a memleak, allows me to import 1479 albums in one go
24121           in jamboree
24122         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24123         (vorbis_handle_type_packet), (vorbis_dec_chain),
24124         (vorbis_dec_change_state):
24125           fix some format strings
24126
24127 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24128
24129         * docs/libs/tmpl/gstcolorbalance.sgml:
24130         * docs/libs/tmpl/gstmixer.sgml:
24131         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
24132         (gst_alsasink_set_property), (gst_alsasink_get_property):
24133         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
24134         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
24135           add device property
24136
24137 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24138
24139         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
24140         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
24141         (audiocast_register_listener), (audiocast_thread_run),
24142         (gst_gnomevfssrc_send_additional_headers_callback),
24143         (gst_gnomevfssrc_received_headers_callback),
24144         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
24145         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
24146         (gst_gnomevfssrc_get_size):
24147           add/clean up debugging
24148         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
24149           cleanups
24150
24151 2005-07-07  Andy Wingo  <wingo@pobox.com>
24152
24153         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
24154         framerate. Need to get a handle on when exactly this function is
24155         called, tho.
24156
24157         * sys/v4l/v4lsrc_calls.h:
24158         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
24159         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
24160         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
24161
24162         * sys/v4l/v4l_calls.h: Cast to V4lElement.
24163         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
24164         v4lelements are sources.
24165
24166         * sys/v4l/gstv4lxoverlay.h:
24167         * sys/v4l/gstv4lxoverlay.c:
24168         * sys/v4l/gstv4ltuner.h:
24169         * sys/v4l/gstv4ltuner.c: Header loc fixen.
24170         
24171         * sys/v4l/gstv4lsrc.h:
24172         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
24173         PushSrc/BaseSrc. Removed most sync-related properties, videorate
24174         or something should handle that. Made a live source.
24175
24176         * sys/v4l/gstv4lelement.h:
24177         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
24178         signals. Some cleanups.
24179
24180         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
24181
24182         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
24183         stuff.
24184
24185         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
24186         stuff.
24187
24188         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
24189
24190 2005-07-07  Wim Taymans  <wim@fluendo.com>
24191
24192         * ext/theora/theoradec.c: (theora_get_query_types),
24193         (theora_dec_src_getcaps), (theora_dec_push):
24194         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
24195         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
24196         Remove deprecated/unused query types.
24197
24198 2005-07-06  Wim Taymans  <wim@fluendo.com>
24199
24200         * ext/alsa/Makefile.am:
24201         * ext/alsa/gstalsaplugin.c: (plugin_init):
24202         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24203         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
24204         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
24205         (gst_alsasrc_class_init), (gst_alsasrc_init),
24206         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
24207         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
24208         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
24209         (gst_alsasrc_reset):
24210         * ext/alsa/gstalsasrc.h:
24211         * gst-libs/gst/audio/Makefile.am:
24212         * gst-libs/gst/audio/gstaudiosink.c:
24213         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24214         (gst_audioringbuffer_start):
24215         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
24216         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
24217         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
24218         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
24219         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
24220         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
24221         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
24222         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
24223         * gst-libs/gst/audio/gstaudiosrc.h:
24224         * gst-libs/gst/audio/gstbaseaudiosink.c:
24225         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
24226         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
24227         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
24228         * gst-libs/gst/audio/gstbaseaudiosrc.c:
24229         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
24230         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
24231         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
24232         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
24233         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
24234         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
24235         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
24236         (gst_baseaudiosrc_change_state):
24237         * gst-libs/gst/audio/gstbaseaudiosrc.h:
24238         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
24239         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
24240         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
24241         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24242         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
24243         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
24244         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
24245         * gst-libs/gst/audio/gstringbuffer.h:
24246         Added audiosource base classes.
24247         Ported alsasrc, still very basic.
24248
24249 2005-07-06  Wim Taymans  <wim@fluendo.com>
24250
24251         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
24252         (theora_dec_push), (theora_handle_data_packet):
24253         Prepare for better timestamp fix later.
24254
24255         * gst/audioconvert/gstaudioconvert.c:
24256         List most accurate caps first
24257
24258         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
24259         Use proper pad task function.
24260
24261         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
24262         (gst_xvimagesink_show_frame):
24263         Fix deadlock when alloc failed.
24264
24265 2005-07-05  Andy Wingo  <wingo@pobox.com>
24266
24267         * ext/gnomevfs/gstgnomevfssrc.c:
24268         * gst/sine/gstsinesrc.c:
24269         * gst/tcp/gsttcpserversrc.c:
24270         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
24271
24272         * sys/v4l/: Port from 0.8.
24273
24274         * Many files: Null if we got it....
24275
24276 2005-07-05  Andy Wingo  <wingo@pobox.com>
24277
24278         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
24279         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
24280         Signedness fixes.
24281
24282 2005-07-05  Wim Taymans  <wim@fluendo.com>
24283
24284         * configure.ac:
24285         * gst/tcp/Makefile.am:
24286         * gst/tcp/README:
24287         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
24288         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
24289         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
24290         (is_sync_frame), (gst_multifdsink_handle_client_write),
24291         (gst_multifdsink_render), (gst_multifdsink_start),
24292         (gst_multifdsink_stop), (gst_multifdsink_change_state):
24293         * gst/tcp/gstmultifdsink.h:
24294         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
24295         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
24296         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
24297         * gst/tcp/gsttcp.h:
24298         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
24299         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
24300         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
24301         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
24302         * gst/tcp/gsttcpclientsink.h:
24303         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
24304         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
24305         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
24306         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
24307         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
24308         * gst/tcp/gsttcpclientsrc.h:
24309         * gst/tcp/gsttcpplugin.c: (plugin_init):
24310         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
24311         * gst/tcp/gsttcpserversink.h:
24312         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
24313         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
24314         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
24315         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
24316         (gst_tcpserversrc_stop):
24317         * gst/tcp/gsttcpserversrc.h:
24318         * gst/tcp/gsttcpsink.c:
24319         * gst/tcp/gsttcpsink.h:
24320         * gst/tcp/gsttcpsrc.c:
24321         * gst/tcp/gsttcpsrc.h:
24322         Ported tcp plugins to 0.9. 
24323         
24324
24325 2005-07-05  Andy Wingo  <wingo@pobox.com>
24326
24327         * gst/playback/gstplaybasebin.c (fill_buffer):
24328         message_new_application fixen.
24329
24330         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
24331         Style fix.
24332
24333 2005-07-04  Wim Taymans  <wim@fluendo.com>
24334
24335         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
24336         Set caps on output buffer.
24337
24338 2005-07-04  Andy Wingo  <wingo@pobox.com>
24339
24340         * ext/gnomevfs/gstgnomevfssrc.c
24341         (gst_gnomevfssrc_received_headers_callback) 
24342         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
24343         hopefully.
24344
24345         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
24346         No refcount leakage.
24347
24348         * configure.ac: Enable -Werror.
24349         
24350         * ext/theora/theoradec.c (theora_dec_src_getcaps):
24351         * gst/audioconvert/bufferframesconvert.c
24352         (buffer_frames_convert_fixate):
24353         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
24354         (gst_audio_convert_fixate):
24355         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
24356         (gst_sinesrc_create): Fixate func changes.
24357         
24358         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24359         (gst_ximagesink_buffer_alloc): Unused var.
24360
24361 2005-07-01  Andy Wingo  <wingo@pobox.com>
24362
24363         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
24364         getcaps to do explicit caps. Needs to be done in all decoders,
24365         possibly via a base class.
24366
24367         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
24368
24369         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
24370         caps on the sink pad, just rely on the pad template. Also, setting
24371         ANY caps on a pad is not valid because the caps are not fixed.
24372
24373         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
24374         caps on the buffer, and get the width from the desired_caps if
24375         they're set.
24376         (gst_ximagesink_renegotiate_size): Implement via setting the
24377         desired_caps on the ximagesink.
24378         (gst_ximagesink_setcaps): Only reset the width of the player if it
24379         wasn't already set. Not sure if this is right.
24380         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
24381
24382         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
24383         that the user wants. NULL unless the window has been resized.
24384
24385         * gst/volume/gstvolume.c (volume_transform): Adapt to
24386         basetransform refcount changes.
24387         
24388 2005-07-01  Andy Wingo  <wingo@pobox.com>
24389
24390         * gst/videoscale/gstvideoscale.c:
24391         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
24392         from BaseTransform, implements a transform_caps. Removed dead code
24393         including some PAR stuff that was never reached -- should probably
24394         be added back somehow.
24395
24396 2005-07-01  Andy Wingo  <wingo@pobox.com>
24397
24398         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
24399         come later.
24400
24401 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
24402
24403         * configure.ac:
24404         * docs/libs/Makefile.am:
24405         * docs/libs/gst-plugins-libs.types:
24406         * ext/alsa/Makefile.am:
24407         * ext/alsa/gstalsamixer.h:
24408         * ext/alsa/gstalsamixeroptions.h:
24409         * ext/alsa/gstalsamixertrack.h:
24410         * gst-libs/gst/Makefile.am:
24411         * gst-libs/gst/colorbalance/.cvsignore:
24412         * gst-libs/gst/colorbalance/Makefile.am:
24413         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
24414         * gst-libs/gst/colorbalance/colorbalance.c:
24415         * gst-libs/gst/colorbalance/colorbalance.h:
24416         * gst-libs/gst/colorbalance/colorbalance.vcproj:
24417         * gst-libs/gst/colorbalance/colorbalancechannel.c:
24418         * gst-libs/gst/colorbalance/colorbalancechannel.h:
24419         * gst-libs/gst/interfaces/Makefile.am:
24420         * gst-libs/gst/interfaces/colorbalance.c:
24421         (gst_color_balance_class_init):
24422         * gst-libs/gst/interfaces/colorbalance.h:
24423         * gst-libs/gst/interfaces/interfaces-marshal.list:
24424         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
24425         * gst-libs/gst/interfaces/mixer.h:
24426         * gst-libs/gst/interfaces/mixeroptions.h:
24427         * gst-libs/gst/interfaces/navigation.c:
24428         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
24429         * gst-libs/gst/interfaces/tuner.h:
24430         * gst/volume/Makefile.am:
24431         * gst/volume/gstvolume.c:
24432         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
24433         * sys/ximage/Makefile.am:
24434         * sys/ximage/ximagesink.c:
24435         * sys/xvimage/Makefile.am:
24436         * sys/xvimage/xvimagesink.c:
24437           fold in all interfaces into an interfaces dir, preserving CVS
24438           history
24439
24440 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24441
24442         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24443           Fix build after riff changes.
24444
24445 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24446
24447         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
24448         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
24449         (gst_riff_create_video_template_caps),
24450         (gst_riff_create_audio_template_caps),
24451         (gst_riff_create_iavs_template_caps):
24452         * gst-libs/gst/riff/riff-media.h:
24453         * gst-libs/gst/riff/riff-read.h:
24454         * gst-libs/gst/riff/riff.c: (gst_riff_init):
24455           Add gst_riff_init() to initialize the debug category, instead
24456           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
24457
24458 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24459
24460         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
24461           Oops, I shouldn't apply hacks.
24462
24463 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24464
24465         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
24466           Remove pad_loop function which doesn't work.
24467
24468 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24469
24470         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
24471           Send EOS when deactivating.
24472         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24473         (check_queue), (queue_threshold_reached), (queue_out_of_data),
24474         (gen_preroll_element), (probe_triggered), (mute_stream),
24475         (silence_stream), (new_decoded_pad), (setup_substreams),
24476         (set_active_source):
24477         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
24478         (remove_sinks), (add_sink):
24479         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
24480           Change for new probe API.
24481
24482 2005-06-29  Wim Taymans  <wim@fluendo.com>
24483
24484         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
24485         * gst-libs/gst/audio/gstbaseaudiosink.c:
24486         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
24487         (gst_baseaudiosink_change_state):
24488         * gst-libs/gst/audio/gstbaseaudiosink.h:
24489         * gst-libs/gst/audio/gstringbuffer.c:
24490         (gst_ringbuffer_set_callback):
24491         Fix compilation error.
24492         Ringbuffer starts out as not running.
24493         Free our clock in dispose.
24494         When releasing the ringbuffer we need to renegotiate so
24495         clear the pad caps.
24496
24497 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
24498
24499         * autogen.sh:
24500         * configure.ac:
24501         * docs/Makefile.am:
24502         * docs/libs/Makefile.am:
24503         * docs/libs/gst-plugins-libs-docs.sgml:
24504         * docs/libs/gst-plugins-libs-sections.txt:
24505         * docs/libs/gst-plugins-libs.types:
24506         * docs/libs/tmpl/gstaudio.sgml:
24507         * docs/libs/tmpl/gstcolorbalance.sgml:
24508         * docs/libs/tmpl/gstringbuffer.sgml:
24509         * gst-libs/gst/audio/gstringbuffer.c:
24510         (gst_ringbuffer_set_callback):
24511           reinstate gtk-doc docs for plugin libs
24512
24513 2005-06-28  Wim Taymans  <wim@fluendo.com>
24514
24515         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24516         (gst_ogg_demux_init):
24517         Removed pad loop function.
24518
24519 2005-06-28  Wim Taymans  <wim@fluendo.com>
24520
24521         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24522         If we're building a chain we are not in an error case
24523         when we queue a buffer.
24524
24525 2005-06-28  Andy Wingo  <wingo@pobox.com>
24526
24527         * *.c: Don't cast to GstObject before reffing/unreffing.
24528
24529 2005-06-27  Andy Wingo  <wingo@pobox.com>
24530
24531         * gst/videotestsrc/gstvideotestsrc.c
24532         (gst_videotestsrc_activate_push): Activation API changes.
24533
24534         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
24535         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
24536         they have refs on the decodebin.
24537
24538         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
24539         parent class.
24540         (gst_ogg_pad_typefind): Don't leak a pad ref.
24541         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
24542         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
24543         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
24544
24545 2005-06-27  Edward Hervey  <edward@fluendo.com>
24546
24547         * ext/theora/theoradec.c: (theora_dec_change_state): 
24548         re-arranged call to parent's state change in order to avoid locks (or
24549         worse).
24550
24551 2005-06-26  Edward Hervey  <edward@fluendo.com>
24552
24553         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24554         2nd argument of 'unknow-type' signal is a GstCaps and not a
24555         GstMiniObject
24556
24557 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
24558         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
24559           Set the worker thread's running flag to TRUE before starting the
24560           thread.
24561         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
24562           Catch a failure to add typefind to the bin.
24563
24564 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24565
24566         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24567         (gst_sinesrc_init), (gst_sinesrc_create),
24568         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
24569         (gst_sinesrc_start):
24570         * gst/sine/gstsinesrc.h:
24571           add num-buffers and timestamp-offset properties
24572         * gst/videotestsrc/gstvideotestsrc.c:
24573         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
24574         (gst_videotestsrc_get_property):
24575           add timestamp-offset property
24576
24577 2005-06-23  Christian Schaller  <uraeus@gnome.org>
24578
24579         * configure.ac: add videorate
24580         * gst-plugins-base.spec.in: add videorate
24581
24582 2005-06-23  Wim Taymans  <wim@fluendo.com>
24583
24584         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24585         (gst_videorate_getcaps), (gst_videorate_setcaps),
24586         (gst_videorate_event), (gst_videorate_chain):
24587         Fixed videorate, fixating an already fixated caps is not
24588         an error.
24589
24590 2005-06-23  Wim Taymans  <wim@fluendo.com>
24591
24592         * ext/ogg/README:
24593         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
24594         Buffer on caps is not boxed anymore.
24595
24596 2005-06-22  Wim Taymans  <wim@fluendo.com>
24597
24598         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
24599         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
24600         Set buffers on caps as miniobjects and not as boxed.
24601
24602 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24603
24604         * configure.ac:
24605           back to HEAD
24606
24607 === release 0.9.1 ===
24608
24609 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24610
24611         * .cvsignore:
24612         * NEWS:
24613         * README:
24614         * RELEASE:
24615         * configure.ac:
24616         * po/af.po:
24617         * po/az.po:
24618         * po/cs.po:
24619         * po/en_GB.po:
24620         * po/hu.po:
24621         * po/it.po:
24622         * po/nb.po:
24623         * po/nl.po:
24624         * po/or.po:
24625         * po/sq.po:
24626         * po/sr.po:
24627         * po/sv.po:
24628         * po/uk.po:
24629         * po/vi.po:
24630           updates for release
24631
24632 2005-06-09  Andy Wingo  <wingo@pobox.com>
24633
24634         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
24635         
24636 2005-06-09  Andy Wingo  <wingo@pobox.com>
24637
24638         * configure.ac:
24639         * gst-libs/gst/Makefile.am:
24640         * gst-libs/gst/net/Makefile.am:
24641         Add gstnet to build.
24642
24643 2005-06-09  Andy Wingo  <wingo@pobox.com>
24644
24645         * gst-libs/gst/gconf/gconf.c:
24646         * gst/playback/test.c:
24647         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
24648         fixes.
24649
24650         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
24651
24652         * ext/theora/theoraenc.c (theora_enc_chain): 
24653         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
24654
24655         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
24656         RealPad.
24657
24658 2005-06-02  Wim Taymans  <wim@fluendo.com>
24659
24660         * gst-libs/gst/net/Makefile.am:
24661         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
24662         * pkgconfig/gstreamer-libs.pc.in:
24663         Added net stuff, version net lib.
24664
24665 2005-06-02  Wim Taymans  <wim@fluendo.com>
24666
24667         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
24668         (query_rates), (query_positions_elems), (query_positions_pads),
24669         (do_seek):
24670         Updated seek example.
24671
24672 2005-06-02  Andy Wingo  <wingo@pobox.com>
24673
24674         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
24675         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
24676         list.
24677
24678         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
24679         remove the typefind, the bin dispose will do it for us. When it's
24680         removed and unreffed, the signal handler will be disconnected,
24681         too.
24682         (unlinked): It's too difficult to disconnect from unlinked
24683         handlers, as they are on pads not elements. Just punt if the pads
24684         aren't grandkids of the bin.
24685
24686 2005-06-02  Wim Taymans  <wim@fluendo.com>
24687
24688         * ext/ogg/README:
24689         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24690         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
24691         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
24692         * ext/theora/theoradec.c: (theora_dec_src_query),
24693         (theora_handle_data_packet):
24694         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24695         (theora_enc_chain):
24696         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24697         (vorbis_handle_data_packet):
24698         * gst/audioconvert/bufferframesconvert.c:
24699         (buffer_frames_convert_chain):
24700         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24701         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24702         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24703         (gst_ffmpegcsp_chain):
24704         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24705         (gst_videorate_getcaps), (gst_videorate_setcaps),
24706         (gst_videorate_event), (gst_videorate_chain):
24707         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
24708         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
24709         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24710         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
24711         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24712         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24713         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24714         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24715         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
24716         Cleanups and buffer alloc.
24717
24718 2005-05-31  Wim Taymans  <wim@fluendo.com>
24719
24720         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
24721         Don't try to call the delay method when the device is not
24722         opened.
24723
24724 2005-05-31  Wim Taymans  <wim@fluendo.com>
24725
24726         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
24727         Get actual segment size and buffer size after opening
24728         the device.
24729
24730 2005-05-30  Wim Taymans  <wim@fluendo.com>
24731
24732         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
24733         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
24734         Also FLUSH upstream, makes the loop function exit faster.
24735         
24736         * ext/theora/theoradec.c: (theora_dec_src_query):
24737         Some more debug info in the query.
24738         
24739         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24740         (gst_ximagesink_setcaps):
24741         Release lock on par error, better error reporting.
24742
24743 2005-05-26  Wim Taymans  <wim@fluendo.com>
24744
24745         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24746         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
24747         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
24748         Clear chains in READY
24749         Queue packets until the chain is activated.
24750
24751 2005-05-25  Wim Taymans  <wim@fluendo.com>
24752
24753         * gst-libs/gst/audio/gstaudiosink.c:
24754         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24755         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24756         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24757         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24758         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24759         (gst_audiosink_create_ringbuffer):
24760         * gst-libs/gst/audio/gstbaseaudiosink.c:
24761         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24762         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24763         (gst_baseaudiosink_set_property), (build_linear_format),
24764         (debug_spec_caps), (debug_spec_buffer),
24765         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24766         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24767         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24768         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24769         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24770         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24771         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24772         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24773         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24774         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24775         (wait_segment), (gst_ringbuffer_commit),
24776         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24777         (gst_ringbuffer_clear):
24778         Various small cleanups.
24779
24780         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24781         (gst_audio_convert_change_state):
24782         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
24783         No need to take the locks anymore.
24784
24785 2005-05-25  Wim Taymans  <wim@fluendo.com>
24786
24787         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
24788         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
24789         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
24790         (type_found):
24791         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
24792         (group_destroy), (group_commit), (queue_overrun),
24793         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
24794         (mute_stream), (new_decoded_pad), (setup_substreams),
24795         (setup_source), (mute_group_type), (set_active_source),
24796         (gst_play_base_bin_change_state):
24797         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
24798         (gen_video_element), (gen_text_element), (gen_audio_element),
24799         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
24800         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
24801         (gst_stream_info_dispose), (gst_stream_info_set_mute):
24802         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
24803         Some playbin cleanups mostly refcounting sloppyness.
24804
24805 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24806
24807         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24808           Work with streaming input.
24809
24810 2005-05-25  Wim Taymans  <wim@fluendo.com>
24811
24812         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24813         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24814         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24815         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
24816         No need to take the STREAM lock anymore.
24817
24818 2005-05-25  Wim Taymans  <wim@fluendo.com>
24819
24820         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
24821         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
24822         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
24823         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
24824         (gst_ogg_demux_sink_activate):
24825         * ext/theora/theoradec.c: (theora_dec_src_event),
24826         (theora_handle_comment_packet), (theora_dec_chain),
24827         (theora_dec_change_state):
24828         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24829         (vorbis_handle_data_packet), (vorbis_dec_chain),
24830         (vorbis_dec_change_state):
24831         Remove STREAM locks as they are taken in core now.
24832         Never set bogus granulepos on vorbis/theora.
24833         Fix leaks in theoradec tag parsing.
24834
24835 2005-05-25  Wim Taymans  <wim@fluendo.com>
24836
24837         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
24838         Fix memleaks, GST_BUFFER_DATA() is not freed.
24839
24840 2005-05-25  Wim Taymans  <wim@fluendo.com>
24841
24842         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24843         Open non-blocking, set to blocking mode afterwards to avoid
24844         lockups when audio device is busy.
24845
24846 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24847
24848         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
24849           This can't be good.
24850
24851 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24852
24853         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24854         (gst_audio_convert_chain), (gst_audio_convert_link_src),
24855         (gst_audio_convert_setcaps):
24856           Implement instant setup switching.
24857
24858 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24859
24860         * gst/playback/gstplaybasebin.c: (probe_triggered):
24861           Fix missing unlock.
24862         * gst/playback/gstplaybin.c: (add_sink):
24863           First add, then link (otherwise pad link fails).
24864
24865 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24866
24867         * examples/Makefile.am:
24868         fix buildbot (make distcheck)
24869
24870 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24871
24872         * gst/playback/gstplaybin.c: (gen_vis_element):
24873           Remove some wrong code. Doesn't work yet.
24874
24875 2005-05-19  Wim Taymans  <wim@fluendo.com>
24876
24877         * gst-libs/gst/net/Makefile.am:
24878         * gst-libs/gst/net/README:
24879         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
24880         (gst_netbuffer_class_init), (gst_netbuffer_init),
24881         (gst_netbuffer_finalize), (gst_netbuffer_copy),
24882         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
24883         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
24884         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
24885         * gst-libs/gst/net/gstnetbuffer.h:
24886         Added buffer subclass to store extra to/from addresses for
24887         network sources/sinks.
24888
24889 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24890
24891         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
24892           Don't lock an unassigned variable.
24893
24894 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24895
24896         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
24897           Increase buffer for video, decrease buffer for other media types.
24898         * gst/playback/gstplaybin.c: (gen_video_element),
24899         (gen_audio_element):
24900           Change names for debugging purposes.
24901
24902 2005-05-18  Wim Taymans  <wim@fluendo.com>
24903
24904         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24905         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24906         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24907         (gst_ffmpegcsp_chain):
24908         Enable buffer alloc passthrough if the source and dest
24909         formats are the same.
24910
24911 2005-05-17  Wim Taymans  <wim@fluendo.com>
24912
24913         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
24914         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
24915         (gst_ogg_demux_chain_unlocked):
24916         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24917         (gst_audio_convert_caps_remove_format_info),
24918         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24919         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
24920         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24921         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24922         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
24923         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
24924         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24925         (gst_ffmpegcsp_get_property):
24926         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24927         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24928         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24929         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
24930         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
24931         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24932         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
24933         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
24934         Leak fixes in oggdemux.
24935         Some cleanups in audioconvert.
24936         Make passthrough work along with buffer_alloc etc.
24937         Make buffer_alloc and buffer recycling actually work in
24938         xvimagesink.
24939
24940 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24941
24942         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
24943           make the compiler happy
24944
24945 2005-05-17  Wim Taymans  <wim@fluendo.com>
24946
24947         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
24948         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
24949         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
24950         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
24951         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24952         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
24953         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
24954         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
24955         (gst_xvimagesink_set_xwindow_id):
24956         * sys/xvimage/xvimagesink.h:
24957         Port xvimagesink to new MiniObject.
24958
24959 2005-05-17  Wim Taymans  <wim@fluendo.com>
24960
24961         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24962         (gst_audiofilter_chain):
24963         * gst-libs/gst/audio/gstaudiosink.c:
24964         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24965         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24966         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24967         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24968         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24969         (gst_audiosink_create_ringbuffer):
24970         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24971         (gst_audio_convert_caps_remove_format_info),
24972         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24973         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24974         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24975         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24976         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24977         Fix passthrough in ffmpegcolorspace.
24978         Fix memset in audiosink on wrong memory.
24979
24980 2005-05-16  David Schleef  <ds@schleef.org>
24981
24982         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
24983         to GstMiniObject.
24984
24985 2005-05-16  David Schleef  <ds@schleef.org>
24986
24987         Port from GstData to GstMiniObject.
24988         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
24989         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
24990         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
24991         (gst_ogg_mux_collected):
24992         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24993         * ext/theora/theoradec.c: (theora_handle_comment_packet),
24994         (theora_handle_data_packet):
24995         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24996         (theora_set_header_on_caps), (theora_enc_chain):
24997         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24998         (vorbis_handle_comment_packet):
24999         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
25000         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
25001         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
25002         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
25003         * gst/audioconvert/gstaudioconvert.c:
25004         (gst_audio_convert_get_buffer):
25005         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
25006         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
25007         (mute_stream), (silence_stream):
25008         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
25009         * gst/volume/gstvolume.c: (volume_transform):
25010         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
25011         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
25012         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
25013         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
25014         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
25015         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
25016         (gst_ximagesink_buffer_alloc):
25017         * sys/ximage/ximagesink.h:
25018
25019 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25020
25021         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25022         (fill_buffer), (check_queue), (queue_threshold_reached),
25023         (queue_out_of_data):
25024         * gst/playback/gstplaybasebin.h:
25025           Post buffer-fullness on the bus.
25026
25027 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25028
25029         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25030         (try_to_link_1):
25031         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25032         (group_commit), (probe_triggered), (setup_source),
25033         (gst_play_base_bin_change_state):
25034         * gst/playback/gstplaybasebin.h:
25035         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25036         (gst_play_bin_init), (remove_sinks), (setup_sinks),
25037         (gst_play_bin_change_state):
25038           Move setup_output_pads into a virtual function, remove
25039           group-switch (no longer needed) and redirect (handled by bus
25040           now) signals.
25041
25042 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25043
25044         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
25045         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
25046         (get_active_group), (get_building_group), (group_destroy),
25047         (group_commit), (check_queue), (queue_overrun),
25048         (queue_threshold_reached), (queue_out_of_data),
25049         (gen_preroll_element), (remove_groups), (unknown_type),
25050         (add_element_stream), (no_more_pads), (probe_triggered),
25051         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
25052         (setup_substreams), (setup_source), (finish_source),
25053         (prepare_output), (muted_group_change_state),
25054         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
25055         (gst_play_base_bin_change_state):
25056         * gst/playback/gstplaybasebin.h:
25057         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25058         (gst_play_bin_init), (gst_play_bin_set_property),
25059         (gen_video_element), (gen_text_element), (gen_audio_element),
25060         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
25061         (gst_play_bin_change_state):
25062         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
25063         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
25064         (stream_info_change_state), (gst_stream_info_set_mute),
25065         (gst_stream_info_get_property):
25066         * gst/playback/gststreaminfo.h:
25067         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25068         (gst_stream_selector_get_linked_pad),
25069         (gst_stream_selector_getcaps),
25070         (gst_stream_selector_get_linked_pads),
25071         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
25072         * gst/playback/gststreamselector.h:
25073           Rough port of playbin. Needs some more work, but is mostly done,
25074           and uses a few locks in important places, which should make stuff
25075           like chain-switches clean. Still uses GST_STATE() in a few places,
25076           which isn't all that good an idea, subtitles/elements disabled
25077           because no elements to test with and thus probably broken, query
25078           and event handling moved to GstBin, internal thread removed
25079           alltogether because the pipeline does that for us now. Can play
25080           Ogg/Vorbis files. Haven't tested anything else yet.
25081
25082 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25083
25084         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
25085           Do no-more-pads (needed for autoplugging).
25086
25087 2005-05-10  Andy Wingo  <wingo@pobox.com>
25088
25089         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
25090         message to the bus with the tags. Still not sent downstream tho.
25091
25092         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
25093         get_parent.
25094         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
25095         avoid refcounting hassles.
25096
25097 2005-05-09  Andy Wingo  <wingo@pobox.com>
25098
25099         * gst/volume/Makefile.am:
25100         * gst/volume/demo.c
25101         * gst/volume/gstvolume.h
25102         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
25103         basetransform. Probably need an audio filter base class.
25104
25105 2005-05-09  Wim Taymans  <wim@fluendo.com>
25106
25107         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
25108         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
25109         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
25110         (gst_vorbisenc_chain):
25111         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25112         (gst_audio_convert_caps_remove_format_info),
25113         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
25114         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25115         Make caps writable before writing to it.
25116         Fix negotiation in audioconvert some more.
25117
25118 2005-05-09  Wim Taymans  <wim@fluendo.com>
25119
25120         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
25121         (gst_videorate_getcaps), (gst_videorate_setcaps),
25122         (gst_videorate_event), (gst_videorate_chain):
25123         Better negotiation.
25124
25125 2005-05-09  Wim Taymans  <wim@fluendo.com>
25126
25127         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
25128         (gst_videorate_getcaps), (gst_videorate_setcaps),
25129         (gst_videorate_blank_data), (gst_videorate_init),
25130         (gst_videorate_event), (gst_videorate_chain),
25131         (gst_videorate_change_state):
25132         Port videorate, do a better job at negotiation while we're at
25133         it.
25134
25135 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
25136
25137         * configure.ac:
25138           Disable libvisual
25139
25140         * examples/Makefile.am:
25141         * gst-libs/gst/audio/Makefile.am:
25142         * gst-libs/gst/riff/Makefile.am:
25143         * gst-libs/gst/tag/Makefile.am:
25144         * gst-libs/gst/video/Makefile.am:
25145           Fixups for missing variables.
25146
25147 2005-05-09  Wim Taymans  <wim@fluendo.com>
25148
25149         * examples/seeking/seek.c: (make_theora_pipeline),
25150         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
25151         (query_rates), (query_positions_elems), (query_positions_pads),
25152         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
25153         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
25154         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
25155         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
25156         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
25157         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
25158         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25159         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
25160         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
25161         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
25162         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
25163         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
25164         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
25165         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
25166         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
25167         (theora_dec_src_convert), (theora_dec_sink_convert),
25168         (theora_dec_src_query), (theora_dec_sink_query),
25169         (theora_dec_src_event), (theora_dec_sink_event),
25170         (theora_handle_comment_packet), (theora_handle_type_packet),
25171         (theora_handle_header_packet), (theora_handle_data_packet),
25172         (theora_dec_chain):
25173         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25174         (vorbis_dec_convert), (vorbis_dec_src_query),
25175         (vorbis_dec_sink_query), (vorbis_dec_src_event),
25176         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25177         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25178         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
25179         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
25180         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
25181         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
25182         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25183         (gst_play_bin_query):
25184         * gst/playback/test3.c: (update_scale):
25185         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
25186         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
25187         * gst/subparse/gstsubparse.c: (gst_subparse_init):
25188         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
25189         (gst_videotestsrc_src_query):
25190         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
25191         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
25192         (paint_hline_YUV9):
25193         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
25194         Port to new query API.
25195         Updated seek.
25196         Cleanups in x[v]imagesink
25197
25198 2005-05-09  Andy Wingo  <wingo@pobox.com>
25199
25200         * ext/alsa/gstalsasink.h:
25201         * ext/gnomevfs/gstgnomevfssrc.c:
25202         (gst_gnomevfssrc_get_icy_metadata):
25203         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
25204         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
25205         * ext/theora/theoradec.c (theora_dec_src_query)
25206         (theora_dec_src_event, theora_dec_sink_event)
25207         (theora_handle_comment_packet, theora_handle_data_packet):
25208         * ext/theora/theoraenc.c (theora_enc_chain):
25209         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
25210         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
25211         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
25212         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
25213         (qt_type_find):
25214         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
25215         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
25216         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
25217         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
25218         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
25219         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
25220         (paint_setup_xBGR8888, paint_setup_RGBx8888)
25221         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
25222         (paint_setup_RGB565, paint_setup_xRGB1555):
25223         * gst/videotestsrc/videotestsrc.h:
25224         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
25225         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
25226         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
25227         GCC4 fixes.
25228         
25229         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
25230         gst_pad_query_position. Fixes oggdemux.
25231
25232 2005-05-08  David Schleef  <ds@schleef.org>
25233
25234         * configure.ac: Require liboil.
25235         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
25236         a few more.
25237         * gst/videotestsrc/videotestsrc.c:
25238         * gst/videotestsrc/videotestsrc.h:
25239
25240 2005-05-06  Wim Taymans  <wim@fluendo.com>
25241
25242         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25243         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
25244         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
25245         Well, unreffing a buffer right before pushing it is asking
25246         for trouble..
25247
25248 2005-05-06  Christian Schaller  <uraeus@gnome.org>
25249
25250         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
25251
25252 2005-05-06  Wim Taymans  <wim@fluendo.com>
25253
25254         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25255         (gst_audio_convert_caps_remove_format_info),
25256         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
25257         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25258         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25259         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
25260         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
25261         * gst/sine/Makefile.am:
25262         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
25263         (gst_sinesrc_class_init), (gst_sinesrc_init),
25264         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
25265         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
25266         (gst_sinesrc_update_freq):
25267         * gst/sine/gstsinesrc.h:
25268         * gst/tcp/gstmultifdsink.c:
25269         * sys/xvimage/xvimagesink.c:
25270         Fixed negotiation wrt _peer_get_caps()
25271         Some cleanups.
25272
25273
25274 2005-05-06  Wim Taymans  <wim@fluendo.com>
25275
25276         * gst-libs/gst/audio/gstaudiosink.c:
25277         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25278         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25279         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25280         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25281         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25282         (gst_audiosink_create_ringbuffer):
25283         * gst-libs/gst/audio/gstbaseaudiosink.c:
25284         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25285         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25286         (gst_baseaudiosink_set_property), (build_linear_format),
25287         (debug_spec_caps), (debug_spec_buffer),
25288         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25289         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25290         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25291         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25292         * gst-libs/gst/audio/gstbaseaudiosink.h:
25293         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25294         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25295         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
25296         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25297         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
25298         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
25299         (wait_segment), (gst_ringbuffer_commit),
25300         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
25301         (gst_ringbuffer_clear):
25302         * gst-libs/gst/audio/gstringbuffer.h:
25303         Make the base audiosink return an error when there is no
25304         audiobuffer negotiated.
25305
25306 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25307
25308         * ext/Makefile.am:
25309         Disable cdparanoia until someone ports it!
25310
25311 2005-05-06  Wim Taymans  <wim@fluendo.com>
25312
25313         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25314         (gst_ogg_demux_sink_activate):
25315         And revert after wingo's revert.. sigh..
25316
25317 2005-05-05  Andy Wingo  <wingo@pobox.com>
25318
25319         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
25320         GObject.
25321         * configure.ac: Return audiorate and subparse from the ghetto.
25322         Re-enable -Wall -Werror.
25323         * gst/subparse/gstsubparse.c:
25324         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
25325         or chain-based. Cleaned up a bit. Not tested.
25326         
25327 2005-05-05  Christian Schaller <christian@fluendo.com> 
25328
25329         * Makefile.am: remove stuff that is not building
25330         * configure.ac: remove stuff that is not building
25331         * examples/Makefile.am: remove stuff that is not building
25332         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
25333         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
25334         * sys/Makefile.am: remove stuff that is not building
25335         * testsuite/Makefile.am: remove stuff that is not building
25336
25337 2005-05-05  Andy Wingo  <wingo@pobox.com>
25338
25339         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
25340         * gst-libs/gst/tag/gstvorbistag.c:
25341         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
25342         * gst/adder/gstadder.h:
25343         * gst/audioconvert/gstchannelmix.c:
25344         (gst_audio_convert_fill_one_other):
25345         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
25346         (gst_audiorate_init), (gst_audiorate_chain):
25347         * gst/playback/gstplaybasebin.c: (setup_source):
25348         * gst/playback/test3.c: (update_scale):
25349         Some GCC4 fixes
25350         
25351         * po/af.po:
25352         * po/az.po:
25353         * po/cs.po:
25354         * po/en_GB.po:
25355         * po/hu.po:
25356         * po/it.po:
25357         * po/nb.po:
25358         * po/nl.po:
25359         * po/or.po:
25360         * po/sq.po:
25361         * po/sr.po:
25362         * po/sv.po:
25363         * po/uk.po:
25364         * po/vi.po: Foo
25365
25366 2005-05-05  Wim Taymans  <wim@fluendo.com>
25367
25368         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25369         (gst_audio_convert_caps_remove_format_info),
25370         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25371         (gst_audio_convert_change_state), (gst_audio_convert_channels):
25372         * gst/videotestsrc/gstvideotestsrc.c:
25373         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
25374         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
25375         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
25376         (gst_videotestsrc_init), (gst_videotestsrc_loop):
25377         Don't ignore _push() return values.
25378         Make sure no processing is done when shutting down.
25379         Videotestsrc pad activation fix.
25380
25381 2005-05-05  Wim Taymans  <wim@fluendo.com>
25382
25383         * gst/adder/Makefile.am:
25384         * gst/adder/gstadder.c: (gst_adder_setcaps),
25385         (gst_adder_class_init), (gst_adder_init),
25386         (gst_adder_request_new_pad), (gst_adder_collected),
25387         (gst_adder_change_state):
25388         * gst/adder/gstadder.h:
25389         Ported adder as an example of a mixer element using
25390         collect pads. Needs more negotiation work.
25391
25392 2005-05-05  Wim Taymans  <wim@fluendo.com>
25393
25394         * ext/theora/theoradec.c: (_inc_granulepos),
25395         (theora_dec_src_event), (theora_dec_sink_event),
25396         (theora_handle_comment_packet), (theora_handle_type_packet),
25397         (theora_handle_header_packet), (theora_handle_data_packet),
25398         (theora_dec_chain):
25399         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25400         (gst_theora_enc_init), (theora_enc_sink_setcaps),
25401         (theora_push_buffer), (theora_push_packet),
25402         (theora_enc_sink_event), (theora_enc_chain),
25403         (theora_enc_change_state), (theora_enc_set_property),
25404         (theora_enc_get_property):
25405         Added stream lock to decoder so that we can serialize
25406         the discont event.
25407         More theoraenc porting, recover from errors, do clean
25408         shutdown.
25409
25410 2005-05-05  Wim Taymans  <wim@fluendo.com>
25411
25412         * ext/ogg/Makefile.am:
25413         * ext/ogg/README:
25414         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25415         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
25416         (gst_ogg_print):
25417         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25418         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
25419         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
25420         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
25421         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
25422         (gst_ogg_mux_change_state):
25423         Ported ogg muxer.
25424
25425 2005-05-05  Wim Taymans  <wim@fluendo.com>
25426
25427         * docs/design-audiosinks.txt:
25428         * gst-libs/gst/audio/TODO:
25429         * gst-libs/gst/audio/gstaudiosink.c:
25430         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25431         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25432         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25433         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25434         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25435         (gst_audiosink_create_ringbuffer):
25436         * gst-libs/gst/audio/gstbaseaudiosink.c:
25437         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25438         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25439         (gst_baseaudiosink_set_property), (build_linear_format),
25440         (debug_spec_caps), (debug_spec_buffer),
25441         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25442         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25443         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25444         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25445         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25446         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25447         (gst_ringbuffer_release), (gst_ringbuffer_play),
25448         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25449         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25450         (gst_ringbuffer_set_sample), (wait_segment),
25451         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25452         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25453         More work on the audiosink, mostly debugging and a race in
25454         shutdown.
25455
25456 2005-04-28  Wim Taymans  <wim@fluendo.com>
25457
25458         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25459         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
25460         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
25461         (vorbis_dec_src_query), (vorbis_dec_src_event),
25462         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25463         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25464         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
25465         Don't crap out when seeking back to position 0.
25466
25467 2005-04-28  Wim Taymans  <wim@fluendo.com>
25468
25469         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
25470         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
25471         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
25472         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25473         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
25474         Make audio sink configurable, use alsasink as default.
25475
25476 2005-04-28  Wim Taymans  <wim@fluendo.com>
25477
25478         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25479         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25480         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25481         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
25482         (vorbis_dec_change_state):
25483         * ext/vorbis/vorbisdec.h:
25484         Refactor, use STREAM_LOCK.
25485
25486 2005-04-28  Wim Taymans  <wim@fluendo.com>
25487
25488         * ext/theora/theoradec.c: (_inc_granulepos),
25489         (theora_dec_sink_event), (theora_handle_comment_packet),
25490         (theora_handle_type_packet), (theora_handle_header_packet),
25491         (theora_handle_data_packet), (theora_dec_chain),
25492         (theora_dec_change_state):
25493         Refactor a bit, use STREAM_LOCK.
25494
25495 2005-04-28  Wim Taymans  <wim@fluendo.com>
25496
25497         * ext/alsa/Makefile.am:
25498         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
25499         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
25500         (gst_alsa_link), (gst_alsa_close_audio):
25501         * ext/alsa/gstalsaplugin.c: (plugin_init):
25502         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
25503         (gst_alsasink_dispose), (gst_alsasink_base_init),
25504         (gst_alsasink_class_init), (gst_alsasink_init),
25505         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
25506         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
25507         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
25508         (gst_alsasink_reset):
25509         * ext/alsa/gstalsasink.h:
25510         Implement alsasink with simple open/write/close API. 
25511         Make alsa dir build by disabling compilation of code.
25512
25513 2005-04-28  Wim Taymans  <wim@fluendo.com>
25514
25515         * gst-libs/gst/audio/Makefile.am:
25516         * gst-libs/gst/audio/audio.h:
25517         * gst-libs/gst/audio/audioclock.c:
25518         * gst-libs/gst/audio/audioclock.h:
25519         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
25520         (gst_audio_clock_class_init), (gst_audio_clock_init),
25521         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
25522         * gst-libs/gst/audio/gstaudioclock.h:
25523         * gst-libs/gst/audio/gstaudiosink.c:
25524         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25525         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25526         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25527         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25528         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25529         (gst_audiosink_create_ringbuffer):
25530         * gst-libs/gst/audio/gstbaseaudiosink.c:
25531         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25532         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25533         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
25534         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
25535         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25536         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25537         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25538         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25539         * gst-libs/gst/audio/gstbaseaudiosink.h:
25540         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25541         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
25542         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25543         (gst_ringbuffer_release), (gst_ringbuffer_play),
25544         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25545         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25546         (gst_ringbuffer_set_sample), (wait_segment),
25547         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25548         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25549         * gst-libs/gst/audio/gstringbuffer.h:
25550         Make ringbuffer faster and more simple by removing the locks
25551         in the playback thread.
25552         Add sample accurate playback based on buffer sample offsets.
25553         Make the baseaudiosink provide a clock.
25554         Parse caps in the base class.
25555         Correctly handle seeking, flushing and state changes.
25556
25557 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25558
25559         * configure.ac:
25560         * gst/audioconvert/Makefile.am:
25561         * gst/audioscale/Makefile.am:
25562           Fix part of the build.  Come on guys, autogen didn't even work :)
25563
25564 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25565
25566         * configure.ac:
25567         * gst-libs/gst/Makefile.am:
25568         * gst-libs/gst/media-info/.cvsignore:
25569         * gst-libs/gst/media-info/Makefile.am:
25570         * gst-libs/gst/media-info/README:
25571         * gst-libs/gst/media-info/media-info-priv.c:
25572         * gst-libs/gst/media-info/media-info-priv.h:
25573         * gst-libs/gst/media-info/media-info-test.c:
25574         * gst-libs/gst/media-info/media-info.c:
25575         * gst-libs/gst/media-info/media-info.h:
25576         * gst-libs/gst/media-info/media-info.vcproj:
25577         * pkgconfig/Makefile.am:
25578         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
25579         * pkgconfig/gstreamer-media-info.pc.in:
25580           Remove media-info, which is also successed by playbin (see Totem
25581           implementation).
25582
25583 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25584
25585         * configure.ac:
25586         * examples/Makefile.am:
25587         * examples/gstplay/.cvsignore:
25588         * examples/gstplay/Makefile.am:
25589         * examples/gstplay/player.c:
25590         * gst-libs/gst/Makefile.am:
25591         * gst-libs/gst/play/.cvsignore:
25592         * gst-libs/gst/play/Makefile.am:
25593         * gst-libs/gst/play/play.c:
25594         * gst-libs/gst/play/play.h:
25595         * gst-libs/gst/play/play.vcproj:
25596         * pkgconfig/Makefile.am:
25597         * pkgconfig/gstreamer-play-uninstalled.pc.in:
25598         * pkgconfig/gstreamer-play.pc.in:
25599           Remove libgstplay, playbin is now the official successor.
25600
25601 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25602
25603         * configure.ac:
25604         * gst-libs/gst/Makefile.am:
25605         * gst-libs/gst/xwindowlistener/Makefile.am:
25606         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
25607         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
25608           Remove deprecated xwindowlistener (I've moved xwindowlistening
25609           in the v4l/v4l2 plugins over to serverside).
25610
25611 2005-04-25  David Schleef  <ds@schleef.org>
25612
25613         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
25614         to examples/dynparams.  Examples do not belong interspersed with
25615         source code.
25616         * examples/dynparams/demo-dparams.c:
25617         * gst/sine/Makefile.am:
25618         * gst/sine/demo-dparams.c:
25619
25620 2005-04-25  David Schleef  <ds@schleef.org>
25621
25622         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
25623         * gst-libs/gst/audio/Makefile.am:
25624         * gst-libs/gst/riff/Makefile.am:
25625         * gst-libs/gst/tag/Makefile.am:
25626         * gst-libs/gst/video/Makefile.am:
25627         * gst-libs/gst/xwindowlistener/Makefile.am:
25628
25629         Convert to 0.9 API, seems to work:
25630         * sys/ximage/Makefile.am:
25631         * sys/ximage/ximagesink.c:
25632
25633 2005-04-24  David Schleef  <ds@schleef.org>
25634
25635         Link plugins against libraries:
25636         * ext/alsa/Makefile.am:
25637         * gst/tcp/Makefile.am:
25638
25639         Remove asm code that should be in liboil
25640         * gst/videoscale/Makefile.am:
25641         * gst/videoscale/videoscale_x86_asm.s:
25642
25643         gettext wants these checked in:
25644         * po/af.po:
25645         * po/az.po:
25646         * po/cs.po:
25647         * po/en_GB.po:
25648         * po/hu.po:
25649         * po/it.po:
25650         * po/nb.po:
25651         * po/nl.po:
25652         * po/or.po:
25653         * po/sq.po:
25654         * po/sr.po:
25655         * po/sv.po:
25656         * po/uk.po:
25657         * po/vi.po:
25658
25659 2005-04-24  David Schleef  <ds@schleef.org>
25660
25661         Convert gst_main() to g_main_loop_run()
25662         * gst/playback/decodetest.c: (main):
25663         * gst/playback/test2.c: (main):
25664         * gst/playback/test3.c: (main):
25665         * gst/playback/test4.c: (main):
25666
25667         Link plugins against libraries:
25668         * ext/libvisual/Makefile.am:
25669         * sys/xvimage/Makefile.am:
25670
25671 2005-04-24  David Schleef  <ds@schleef.org>
25672
25673         * configure.ac: Remove idct and resample libs
25674         * gst-libs/gst/Makefile.am: same
25675
25676         Remove usage of gst_library_load():
25677         * ext/alsa/gstalsaplugin.c: (plugin_init):
25678         * ext/libvisual/visual.c: (plugin_init):
25679         * ext/ogg/gstogg.c: (plugin_init):
25680         * ext/theora/theora.c: (plugin_init):
25681         * ext/vorbis/vorbis.c: (plugin_init):
25682         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
25683         * gst/audioscale/gstaudioscale.c:
25684         * gst/adder/gstadder.c: (plugin_init):
25685         * gst/audioconvert/plugin.c: (plugin_init):
25686         * sys/ximage/ximagesink.c: (plugin_init):
25687         * sys/xvimage/xvimagesink.c: (plugin_init):
25688         * gst/tcp/gsttcpplugin.c: (plugin_init):
25689
25690         Link plugins against libraries:
25691         * ext/ogg/Makefile.am:
25692         * ext/theora/Makefile.am:
25693         * ext/vorbis/Makefile.am:
25694         * gst/audioconvert/Makefile.am:
25695
25696         Create proper libraries:
25697         * gst-libs/gst/riff/Makefile.am:
25698         * gst-libs/gst/audio/Makefile.am:
25699         * gst-libs/gst/video/Makefile.am:
25700
25701         Move resample library to audioscale plugin directory:
25702         * gst-libs/gst/resample/Makefile.am:
25703         * gst-libs/gst/resample/README:
25704         * gst-libs/gst/resample/dtof.c:
25705         * gst-libs/gst/resample/dtos.c:
25706         * gst-libs/gst/resample/functable.c:
25707         * gst-libs/gst/resample/private.h:
25708         * gst-libs/gst/resample/resample.c:
25709         * gst-libs/gst/resample/resample.h:
25710         * gst-libs/gst/resample/resample.vcproj:
25711         * gst-libs/gst/resample/test.c:
25712         * gst/audioscale/Makefile.am:
25713         * gst/audioscale/README:
25714         * gst/audioscale/dtof.c:
25715         * gst/audioscale/dtos.c:
25716         * gst/audioscale/functable.c:
25717         * gst/audioscale/private.h:
25718         * gst/audioscale/resample.c:
25719         * gst/audioscale/resample.h:
25720         * gst/audioscale/test.c:
25721
25722         Move tagedit library to gst-libs:
25723         * gst-libs/gst/tag/Makefile.am:
25724         * gst-libs/gst/tag/gstid3tag.c:
25725         * gst-libs/gst/tag/gsttagediting.c:
25726         * gst-libs/gst/tag/gsttageditingprivate.h:
25727         * gst-libs/gst/tag/gstvorbistag.c:
25728         * gst/tags/Makefile.am:
25729         * gst/tags/gstid3tag.c:
25730         * gst/tags/gstvorbistag.c:
25731
25732         Fix for core changes:
25733         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
25734         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
25735         (gst_sinesrc_getrange):
25736
25737 2005-04-23  David Schleef  <ds@schleef.org>
25738
25739         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
25740         in gst-plugins in a long time, and properly belongs in liboil.
25741         * gst-libs/gst/idct/Makefile.am:
25742         * gst-libs/gst/idct/README:
25743         * gst-libs/gst/idct/dct.h:
25744         * gst-libs/gst/idct/doieee:
25745         * gst-libs/gst/idct/fastintidct.c:
25746         * gst-libs/gst/idct/floatidct.c:
25747         * gst-libs/gst/idct/idct.c:
25748         * gst-libs/gst/idct/idct.h:
25749         * gst-libs/gst/idct/idtc.vcproj:
25750         * gst-libs/gst/idct/ieeetest.c:
25751         * gst-libs/gst/idct/intidct.c:
25752
25753 2005-04-20  Wim Taymans  <wim@fluendo.com>
25754
25755         * docs/design-audiosinks.txt:
25756         * gst-libs/gst/audio/Makefile.am:
25757         * gst-libs/gst/audio/TODO:
25758         * gst-libs/gst/audio/gstaudiosink.c:
25759         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25760         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25761         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
25762         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25763         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25764         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
25765         (gst_audiosink_class_init), (gst_audiosink_init),
25766         (gst_audiosink_create_ringbuffer):
25767         * gst-libs/gst/audio/gstaudiosink.h:
25768         * gst-libs/gst/audio/gstbaseaudiosink.c:
25769         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
25770         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
25771         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
25772         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
25773         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
25774         (gst_baseaudiosink_create_ringbuffer),
25775         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25776         * gst-libs/gst/audio/gstbaseaudiosink.h:
25777         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25778         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
25779         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
25780         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25781         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
25782         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25783         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
25784         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
25785         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
25786         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
25787         * gst-libs/gst/audio/gstringbuffer.h:
25788         An attempt at a set of audio base classes together with some
25789         design docs.
25790
25791 2005-04-20  Wim Taymans  <wim@fluendo.com>
25792
25793         * gst/audioconvert/Makefile.am:
25794         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25795         (gst_audio_convert_caps_remove_format_info),
25796         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25797         (gst_audio_convert_channels):
25798         Link against audio libs.
25799         Fix audio convert plugin.
25800
25801 2005-04-20  Wim Taymans  <wim@fluendo.com>
25802
25803         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
25804         (gst_ogg_demux_sink_activate):
25805         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
25806         (theora_set_header_on_caps), (theora_enc_sink_event),
25807         (theora_enc_chain):
25808         Fix theora encoder.
25809
25810 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25811
25812         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
25813         * gst/playback/gstdecodebin.c: (find_compatibles):
25814           Work with staticpadtemplates in elementfactories.
25815
25816 2005-04-12  Wim Taymans  <wim@fluendo.com>
25817
25818         * gst/playback/README:
25819         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25820         (compare_ranks), (print_feature), (gst_decode_bin_init),
25821         (dynamic_create), (dynamic_free), (find_compatibles),
25822         (mimetype_is_raw), (close_pad_link), (got_redirect),
25823         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
25824         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
25825         (gst_decode_bin_change_state):
25826         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25827         (gst_play_base_bin_init), (group_destroy), (group_commit),
25828         (check_queue), (queue_overrun), (queue_threshold_reached),
25829         (queue_out_of_data), (gen_preroll_element), (unknown_type),
25830         (new_decoded_pad), (setup_subtitle), (gen_source_element),
25831         (got_redirect), (setup_source), (play_base_eos),
25832         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
25833         (gst_play_base_bin_remove_element):
25834         * gst/playback/gstplaybasebin.h:
25835         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25836         (gst_play_bin_init), (gst_play_bin_dispose),
25837         (gst_play_bin_set_property), (gen_video_element),
25838         (gen_text_element), (gen_audio_element), (remove_sinks),
25839         (gst_play_bin_send_event):
25840         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
25841         (stream_info_change_state), (gst_stream_info_set_mute):
25842         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25843         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
25844         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
25845         (gst_stream_selector_chain):
25846         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
25847         (main):
25848         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
25849         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
25850         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25851         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
25852         Raw and crude port of decodebin. 
25853         Make playbin compile.
25854
25855 2005-04-06  Wim Taymans  <wim@fluendo.com>
25856
25857         * ext/gnomevfs/Makefile.am:
25858         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
25859         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25860         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
25861         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
25862         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
25863         (gst_gnomevfssrc_stop):
25864         * ext/ogg/Makefile.am:
25865         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
25866         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
25867         * ext/theora/Makefile.am:
25868         * ext/theora/theoradec.c: (_inc_granulepos),
25869         (theora_dec_sink_event), (theora_dec_chain):
25870         * ext/vorbis/Makefile.am:
25871         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25872         (vorbis_dec_sink_event), (vorbis_dec_chain):
25873         * gst-libs/gst/audio/Makefile.am:
25874         * sys/xvimage/Makefile.am:
25875         Make gnomevfssrc extend the source base class.
25876         Fix linking against libs in various plugins.
25877
25878 2005-04-06  Andy Wingo  <wingo@pobox.com>
25879
25880         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
25881         GST_BASE_LIBS.
25882
25883         * configure.ac: Add check and AC_SUBST for libgstbase.
25884
25885 2005-03-31  Wim Taymans  <wim@fluendo.com>
25886
25887         * examples/seeking/Makefile.am:
25888         * examples/seeking/cdparanoia.c: (main):
25889         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
25890         (play_cb), (pause_cb), (stop_cb), (main):
25891         * examples/seeking/playbin.c:
25892         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
25893         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
25894         (make_sid_pipeline), (make_vorbis_pipeline),
25895         (make_theora_pipeline), (make_vorbis_theora_pipeline),
25896         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25897         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
25898         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
25899         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
25900         (stop_cb), (main):
25901         * examples/seeking/spider_seek.c:
25902         * examples/seeking/vorbisfile.c:
25903         * ext/gnomevfs/Makefile.am:
25904         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
25905         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
25906         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25907         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
25908         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
25909         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
25910         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
25911         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
25912         * ext/ogg/README:
25913         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
25914         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
25915         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
25916         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
25917         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
25918         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
25919         (gst_ogg_pad_event), (gst_ogg_pad_reset),
25920         (gst_ogg_demux_factory_filter), (compare_ranks),
25921         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
25922         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
25923         (gst_ogg_chain_new), (gst_ogg_chain_free),
25924         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
25925         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
25926         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
25927         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
25928         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
25929         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
25930         (gst_ogg_demux_get_prev_page),
25931         (gst_ogg_demux_deactivate_current_chain),
25932         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
25933         (gst_ogg_demux_bisect_forward_serialno),
25934         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
25935         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
25936         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
25937         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
25938         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
25939         (gst_ogg_demux_change_state), (gst_ogg_print):
25940         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
25941         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
25942         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
25943         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
25944         (gst_ogg_mux_loop):
25945         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
25946         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
25947         (theora_dec_src_convert), (theora_dec_sink_convert),
25948         (theora_dec_src_query), (theora_dec_src_event),
25949         (theora_dec_sink_event), (theora_dec_chain),
25950         (theora_dec_change_state):
25951         * ext/theora/theoraenc.c: (gst_theora_enc_init),
25952         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
25953         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
25954         (theora_enc_change_state):
25955         * ext/vorbis/Makefile.am:
25956         * ext/vorbis/oggvorbisenc.c:
25957         * ext/vorbis/oggvorbisenc.h:
25958         * ext/vorbis/vorbis.c: (plugin_init):
25959         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25960         (vorbis_dec_src_query), (vorbis_dec_src_event),
25961         (vorbis_dec_sink_event), (vorbis_dec_chain),
25962         (vorbis_dec_change_state):
25963         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
25964         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
25965         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25966         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
25967         (gst_vorbisenc_change_state):
25968         * ext/vorbis/vorbisenc.h:
25969         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
25970         * gst-libs/gst/audio/audioclock.c:
25971         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
25972         (gst_audiofilter_init), (gst_audiofilter_chain):
25973         * gst-libs/gst/audio/testchannels.c: (main):
25974         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
25975         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
25976         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
25977         (gmip_find_track_streaminfo), (gmip_find_track_format):
25978         * gst-libs/gst/media-info/media-info.c:
25979         (gst_media_info_read_idler):
25980         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
25981         (gst_play_get_all_by_interface):
25982         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
25983         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
25984         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
25985         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
25986         (gst_riff_parse_info):
25987         * gst-libs/gst/riff/riff-read.h:
25988         * gst-libs/gst/riff/riff.c: (plugin_init):
25989         * gst-libs/gst/video/Makefile.am:
25990         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
25991         (gst_videosink_class_init), (gst_videosink_get_type):
25992         * gst-libs/gst/video/videosink.h:
25993         * gst/audioconvert/bufferframesconvert.c:
25994         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
25995         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
25996         * gst/audioconvert/channelmixtest.c: (main):
25997         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
25998         (gst_audio_convert_chain),
25999         (gst_audio_convert_caps_remove_format_info),
26000         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
26001         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
26002         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
26003         (gst_audio_convert_buffer_to_default_format),
26004         (gst_audio_convert_buffer_from_default_format),
26005         (gst_audio_convert_channels):
26006         * gst/audioconvert/gstchannelmix.h:
26007         * gst/ffmpegcolorspace/avcodec.h:
26008         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26009         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
26010         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
26011         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
26012         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
26013         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
26014         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
26015         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
26016         (mpeg_video_type_find), (mpeg_video_stream_type_find),
26017         (dv_type_find):
26018         * gst/videotestsrc/gstvideotestsrc.c:
26019         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
26020         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
26021         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
26022         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
26023         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
26024         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
26025         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
26026         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26027         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
26028         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
26029         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
26030         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
26031         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
26032         (gst_xvimagesink_navigation_send_event),
26033         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
26034         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
26035         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
26036         * sys/xvimage/xvimagesink.h:
26037         Plugin port to 0.9, ogg/theora playback should work in the seek
26038         example now.
26039         Removed old examples.
26040         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
26041         explained in 0.9 TODO doc.
26042
26043
26044 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
26045
26046         * autogen.sh:
26047         * configure.ac:
26048         * ext/Makefile.am:
26049         * gst/Makefile.am:
26050         * po/POTFILES.in:
26051         * po/af.po:
26052         * po/az.po:
26053         * po/cs.po:
26054         * po/en_GB.po:
26055         * po/hu.po:
26056         * po/it.po:
26057         * po/nb.po:
26058         * po/nl.po:
26059         * po/or.po:
26060         * po/sq.po:
26061         * po/sr.po:
26062         * po/sv.po:
26063         * po/uk.po:
26064         * po/vi.po:
26065         * sys/Makefile.am:
26066         * testsuite/Makefile.am:
26067           remove a whole bunch of plugins.  This module now contains a set
26068           of free reference plugins/elements as agreed.
26069
26070 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
26071
26072         * configure.ac:
26073           hunting season on 0.9 is now OPEN
26074
26075 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26076
26077         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
26078           Kick the hell out of gcc for not warning me about a symbol conflict.
26079
26080 2005-02-22  Luca Ognibene  <luogni@tin.it>
26081
26082         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26083
26084         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
26085           Don't leak caps string (fixes #168134)
26086
26087         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
26088         (gst_jpegenc_init), (gst_jpegenc_finalize),
26089         (gst_jpegenc_change_state):
26090           Don't leak line buffers and context struct (fixes #168133).
26091
26092 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
26093
26094         * configure.ac:
26095         * ext/dirac/gstdiracdec.cc:
26096         (gst_diracdec_chain):
26097           Since dirac 0.5.0 the framerate in dirac is expressed as a
26098           rational number. Fix build and up requirement to 0.5.0, and
26099           also pass parameters to gst_diracdec_link in the right order
26100           (fixes #167959).
26101
26102 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
26103
26104         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
26105         * ext/faad/gstfaad.h:
26106         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
26107         certain invalid muxed streams, where some packets will contain 
26108         junk after decoder data. Partially fixes #149158.
26109
26110 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
26111         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
26112           Make sure we only write to writable buffers
26113
26114 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
26115
26116         * gst-libs/gst/riff/riff-media.c:
26117         (gst_riff_create_audio_caps_with_data):
26118           Do actually fix invalid RIFF fmt header values for alaw
26119           and mulaw audio instead of just saying so.
26120
26121         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
26122           Give gst_riff_create_audio_caps_with_data() a chance to
26123           fix up broken format header fields before extracting any
26124           parameters from the header. (fixes #167633)
26125
26126 2005-02-19  Martin Holters  <martin.holters@gmx.de>
26127
26128         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26129
26130         * gst/audioconvert/bufferframesconvert.c:
26131         (buffer_frames_convert_link):
26132           Don't leak othercaps. (fixes #167878)
26133
26134 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
26135
26136         * configure.ac:
26137         * ext/libvisual/visual.c: (gst_visual_srclink),
26138         (gst_visual_change_state):
26139           Support libvisual 0.2.0.
26140
26141 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
26142
26143         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
26144         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
26145           Use same rowstrides for I420 as used everywhere else.
26146
26147 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
26148
26149         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
26150           Declare variables at beginning of block and make gcc-2.95 happy
26151           (fixes # 167482, patch by Gergely Nagy).
26152           
26153         * gst/tcp/gsttcpclientsrc.c:
26154         * gst/tcp/gsttcpclientsrc.h:
26155           Move some includes into the header, so that struct sockaddr_in is
26156           defined when it should be defined on FreeBSD as well (fixes
26157           #167483).
26158           
26159         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
26160           Don't pass uninitialised values to setsockopt() here either.
26161
26162 2005-02-17  Luca Ognibene  <luogni at tin dot it>
26163
26164         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26165
26166         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
26167           Don't pass uninitialised values to setsockopt(). (fixes #167704)
26168
26169 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26170
26171         * gst/playback/gstplaybin.c: (add_sink):
26172           Invert bin_add/link order to workaround deadlock in opt.
26173
26174 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26175
26176         * gst/modplug/gstmodplug.cc:
26177           Add missing break causing position queries to fail.
26178
26179 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26180
26181         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
26182           Granpos can apparently be -1, which screws up calculations...
26183
26184 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
26185
26186         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
26187         (gst_ximagesink_send_pending_navigation),
26188         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
26189         (gst_ximagesink_init):
26190         * sys/ximage/ximagesink.h:
26191         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
26192         (gst_xvimagesink_send_pending_navigation),
26193         (gst_xvimagesink_navigation_send_event),
26194         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
26195         * sys/xvimage/xvimagesink.h:
26196           Use a mutex protected list to marshal navigation
26197           events into the stream thread from whichever thread
26198           sends them.
26199
26200 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
26201
26202         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
26203           Display current position and track length; misc. clean-ups.
26204           
26205         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
26206         (speed_init), (speed_chain):
26207           Add query function, so that the stream length and current position
26208           get adjusted when queried (note that current position queries may
26209           still be wrong if the audio sink returns values based on buffer
26210           timestamps instead of passing on the query).
26211
26212 2005-02-13  Benjamin Otte  <otte@gnome.org>
26213
26214         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
26215         (gst_audio_convert_channels):
26216           create channel conversion matrix when linking
26217         * gst/audioconvert/.cvsignore:
26218         * gst/audioconvert/Makefile.am:
26219         * gst/audioconvert/channelmixtest.c: (main):
26220           add (ugly) test that ensures stereo <=> mono conversion works
26221           correctly
26222
26223 2005-02-13  Benjamin Otte  <otte@gnome.org>
26224
26225         * gst/audioconvert/gstchannelmix.h:
26226           include missing header file
26227         * gst/audioconvert/gstchannelmix.c:
26228         (gst_audio_convert_fill_compatible):
26229           use same sign for both channels when converting to/from compatible
26230           channel. Previously used different signs made the signals cancel
26231           each other out and appear like silence. (fixes #167269)
26232
26233 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
26234
26235         * gst/ffmpegcolorspace/avcodec.h:
26236         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26237         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
26238         (gst_ffmpegcsp_avpicture_fill):
26239         * gst/ffmpegcolorspace/imgconvert.c:
26240           Convert to and from YV12 (fixes #156379).
26241
26242 2005-02-12  Julien MOUTTE  <julien@moutte.net>
26243
26244         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
26245         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
26246         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
26247         (gst_ximagesink_expose), (gst_ximagesink_set_property),
26248         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
26249         methods from chain and negotiation and vice versa (Fixes #166142).
26250         * sys/ximage/ximagesink.h: Add stream_lock.
26251         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
26252         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
26253         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
26254         (gst_xvimagesink_expose): Check for xcontext before trying to link.
26255
26256 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
26257
26258         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
26259           Don't send "Hey! You gave me a NULL pointer you naughty person" as
26260           error message when we can't open the DVD device (when dvdnav_open()
26261           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
26262           the above). Send something more useful instead (fixes #167117).
26263
26264 2005-02-11  Julien MOUTTE  <julien@moutte.net>
26265
26266         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
26267         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
26268         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
26269         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
26270         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
26271         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
26272         methods from chain and negotiation and vice versa (Fixes #166142).
26273         Fix a possible bug of images in the buffer pool being discarded because
26274         we are looking at the wrong geometry.
26275         * sys/xvimage/xvimagesink.h: Add stream_lock.
26276
26277 2005-02-11  David Schleef  <ds@schleef.org>
26278
26279         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
26280         unsigned int. (fixes #167128)
26281
26282 2005-02-11  David Schleef  <ds@schleef.org>
26283
26284         * gst/librfb/Makefile.am: Testing stuff before committing is
26285           for wimps... and people with fast machines.  Fix stupid
26286           mistake.
26287
26288 2005-02-11  David Schleef  <ds@schleef.org>
26289
26290         * configure.ac: Pull in librfb from my CVS tree, because it is
26291           too small and annoying to be separate.  Move rfbsrc plugin
26292           to gst/.
26293         * ext/Makefile.am:
26294         * ext/librfb/Makefile.am:
26295         * ext/librfb/gstrfbsrc.c:
26296         * gst/librfb/Makefile.am:
26297         * gst/librfb/gstrfbsrc.c:
26298         * gst/librfb/rfb.c:
26299         * gst/librfb/rfb.h:
26300         * gst/librfb/rfbbuffer.c:
26301         * gst/librfb/rfbbuffer.h:
26302         * gst/librfb/rfbbytestream.c:
26303         * gst/librfb/rfbbytestream.h:
26304         * gst/librfb/rfbcontext.h:
26305         * gst/librfb/rfbdecoder.c:
26306         * gst/librfb/rfbdecoder.h:
26307         * gst/librfb/rfbutil.h:
26308
26309 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
26310
26311         * gst/speed/Makefile.am:
26312         * gst/speed/demo-mp3.c: (main):
26313         * gst/speed/filter.func:
26314         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
26315         (speed_class_init), (speed_init), (speed_chain_int16),
26316         (speed_chain_float32), (speed_chain), (speed_set_property),
26317         (speed_get_property), (speed_change_state):
26318         * gst/speed/gstspeed.h:
26319           Fix speed element and make it chain-based (fixes #156467),
26320           and make it handle more than one channel.
26321
26322 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
26323
26324         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
26325         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
26326         (gst_dtsdec_chain), (gst_dtsdec_change_state):
26327         * ext/dts/gstdtsdec.h:
26328           Don't clobber the stack constructing the channels array.
26329           Make the element chain-based. DTS tracks can now be played.
26330           
26331 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
26332
26333         * gst-libs/gst/audio/multichannel.h:
26334         * gst-libs/gst/gconf/gconf.h:
26335         * gst-libs/gst/idct/idct.h:
26336         * gst-libs/gst/media-info/media-info-priv.h:
26337         * gst-libs/gst/play/play.h:
26338         * gst-libs/gst/resample/private.h:
26339         * gst-libs/gst/resample/resample.h:
26340         * gst-libs/gst/riff/riff-ids.h:
26341         * gst-libs/gst/video/video.h:
26342         * gst-libs/gst/video/videosink.h:
26343           Add G_BEGIN_DECLS and G_END_DECLS around headers where
26344           missing, so that they work when included from C++ code.
26345
26346 2005-02-09  David Schleef  <ds@schleef.org>
26347
26348         * testsuite/gst-lint: Check for non-statically scoped
26349           parent_class variables.  This won't be a problem once
26350           plugins are loaded with RTLD_LOCAL.
26351
26352 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26353
26354         * ext/mplex/gstmplexibitstream.cc:
26355           gcc madness.
26356
26357 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26358
26359         * ext/ogg/gstogmparse.c:
26360         * gst/debug/gstnavigationtest.c:
26361           Die, thou faulty symbol pollutors (non-static parent_class).
26362
26363 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26364
26365         * ext/mplex/gstmplexibitstream.cc:
26366           Fix event handling (#165525).
26367
26368 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26369
26370         * ext/mikmod/gstmikmod.c:
26371         * gst/modplug/gstmodplug.cc:
26372           Add missing endianness to template (fixes #165509).
26373
26374 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26375
26376         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
26377           Fix wrong order of reading of optional bytes (#165290).
26378
26379 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26380
26381         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26382           Implement FILLER event awareness.
26383
26384 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26385
26386         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
26387           Fix track calculations (#166208).
26388
26389 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26390
26391         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26392
26393         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
26394         * ext/libpng/gstpngenc.c:
26395           Fix byte-order, use proper fixed caps. Fixes #164197.
26396
26397 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
26398
26399         * configure.ac:
26400           Add dvdlpcmdec 
26401
26402         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
26403         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
26404           Don't push buffers if the src pad isn't negotiated yet.
26405           
26406         * gst/audioconvert/gstaudioconvert.c:
26407         (gst_audio_convert_buffer_to_default_format),
26408         (gst_audio_convert_buffer_from_default_format):
26409           Add support for 24-bit width.
26410
26411         * gst/dvdlpcmdec/.cvsignore:
26412         * gst/dvdlpcmdec/Makefile.am:
26413         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
26414         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
26415         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
26416         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
26417         (plugin_init):
26418         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
26419           New decoder for rearranging DVD LPCM into our audio/x-raw-int
26420           format. Needs support for the channels maps if someone can find 
26421           a DVD LPCM track with > 2 channels.
26422
26423         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
26424         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
26425         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
26426         * gst/mpegstream/gstdvddemux.h:
26427         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26428         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
26429         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
26430         * gst/mpegstream/gstmpegdemux.h:
26431         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
26432         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
26433         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
26434         (gst_mpeg_parse_handle_src_query),
26435         (gst_mpeg_parse_handle_src_event):
26436           Use audio/x-dvd-lpcm for LPCM output.
26437           Add DTS output.
26438
26439 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26440
26441         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26442
26443         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
26444         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
26445           Add BGRA handling (#165736).
26446
26447 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
26448
26449         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26450
26451         * gst/law/alaw-decode.c: (alawdec_link):
26452         * gst/law/alaw-encode.c: (alawenc_link):
26453         * gst/law/mulaw-decode.c: (mulawdec_link):
26454         * gst/law/mulaw-encode.c: (mulawenc_link):
26455           Fix caps memleaks (#166600).
26456
26457 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
26458
26459         * ext/tarkin/mem.h:
26460         * ext/tarkin/wavelet.h:
26461         * ext/tarkin/yuv.h:
26462         * gst/ffmpegcolorspace/avcodec.h:
26463           Include "_stdint.h" instead of <stdint.h>. Fixes build on
26464           systems that don't have stdint.h, like Solaris9 (fixes #166631).
26465
26466 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26467
26468         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
26469         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
26470         (gst_xvimagesink_change_state):
26471           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
26472           Xv video (and thereby regenerate Xv colourkey) in clear() so
26473           that PLAY -> READY -> PLAY works (fixes #162504).
26474
26475 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26476
26477         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
26478           Switch to list instead of range, since MJPEG-devices really just
26479           support decimations, not any size.
26480
26481 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26482         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
26483         (gst_mpeg2dec_reset), (free_all_buffers),
26484         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
26485         * ext/mpeg2dec/gstmpeg2dec.h:
26486           The libmpeg2 user-allocated buffer management is awkward, 
26487           to say the least. Hopefully this fixes things.
26488
26489 2005-02-04  Andy Wingo  <wingo@pobox.com>
26490
26491         * gst/audioconvert/bufferframesconvert.c
26492         (buffer_frames_convert_fixate): New function, fixates to 256
26493         frames per buffer by default. (Much better than 1.)
26494         (buffer_frames_convert_init): Set the fixate function for both src
26495         and sink pad.
26496         (buffer_frames_convert_link): After success setting nonfixed caps,
26497         get the negotiated caps so we can know how many buffer-frames it
26498         will be. No idea how this worked at all before.
26499
26500 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26501
26502         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
26503         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
26504         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
26505         (handle_sequence), (handle_picture):
26506         * ext/mpeg2dec/gstmpeg2dec.h:
26507           Rearrange buffer tracking and refcounting and refactor
26508           a little for readability. 
26509
26510 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
26511         * sys/v4l/gstv4l.c: (plugin_init):
26512         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
26513         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
26514         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
26515         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
26516         * sys/v4l/gstv4ljpegsrc.h:
26517         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
26518         * sys/v4l/v4l_calls.h:
26519         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
26520         (gst_v4lsrc_get_fps):
26521         * sys/v4l/v4lsrc_calls.h:
26522           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
26523           you jpeg inside rgb frames" driver.
26524           Don't error in the v4lsrc link function, just return 
26525           REFUSED.
26526
26527 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26528
26529         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
26530         (gst_qcamsrc_open):
26531           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
26532
26533 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26534
26535         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26536           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
26537
26538 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26539
26540         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
26541           Reset negotiated state on PAUSED->READY.
26542
26543 2005-02-02  David Schleef  <ds@schleef.org>
26544
26545         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
26546         whereever possible.  (Fixes #165997)
26547         * examples/capsfilter/capsfilter1.c: (main):
26548         * examples/dynparams/filter.c: (create_ui):
26549         * examples/seeking/cdparanoia.c: (get_track_info), (main):
26550         * examples/seeking/chained.c: (main):
26551         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
26552         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
26553         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
26554         (make_mpeg_pipeline), (make_mpegnt_pipeline):
26555         * examples/seeking/spider_seek.c: (make_spider_pipeline):
26556         * examples/switch/switcher.c: (main):
26557         * ext/dv/demo-play.c: (main):
26558         * ext/faad/gstfaad.c: (gst_faad_change_state):
26559         * ext/mad/gstmad.c: (gst_mad_chain):
26560         * ext/smoothwave/demo-osssrc.c: (main):
26561         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
26562         (gst_gconf_render_bin_from_description),
26563         (gst_gconf_get_default_audio_sink),
26564         (gst_gconf_get_default_video_sink),
26565         (gst_gconf_get_default_audio_src),
26566         (gst_gconf_get_default_video_src),
26567         (gst_gconf_get_default_visualization_element):
26568         * gst/level/demo.c: (main):
26569         * gst/level/plot.c: (main):
26570         * gst/playback/gstplaybin.c: (gen_video_element),
26571         (gen_audio_element):
26572         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
26573         * gst/playondemand/demo-mp3.c: (setup_pipeline):
26574         * gst/sine/demo-dparams.c: (main):
26575         * gst/spectrum/demo-osssrc.c: (main):
26576         * gst/speed/demo-mp3.c: (main):
26577         * gst/volume/demo.c: (main):
26578         * testsuite/embed/embed.c: (main):
26579
26580 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26581
26582         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
26583         (gst_tcpclientsink_finalize):
26584         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
26585         (gst_tcpclientsrc_finalize):
26586         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
26587         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
26588         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
26589         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
26590           Don't leak the hostname when shutting down.
26591           In tcpserversrc, take a copy of the default hostname.
26592
26593 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26594
26595         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
26596           Set caps to systemstream=TRUE.
26597
26598 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26599
26600         * testsuite/Makefile.am:
26601           Fix more OSX buildbots.
26602
26603 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26604
26605         * ext/mpeg2dec/gstmpeg2dec.c:
26606           Don't send things to NULL PAD_PEERs
26607
26608         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
26609           Copy-on-write the incoming buffer.
26610
26611         * gst/mpegstream/gstdvddemux.h:
26612         * gst/mpegstream/gstmpegclock.h:
26613         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26614         (normal_seek), (gst_mpeg_demux_handle_src_event):
26615         * gst/mpegstream/gstmpegdemux.h:
26616         * gst/mpegstream/gstmpegpacketize.h:
26617         * gst/mpegstream/gstmpegparse.c:
26618         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
26619         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
26620         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
26621         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
26622         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
26623         * gst/mpegstream/gstmpegparse.h:
26624         * gst/mpegstream/gstrfc2250enc.h:
26625           Various changes to the way time is computed that make seeking and
26626           total time estimation much better here.
26627           Use G_BEGIN/END_DECLS instead of __cplusplus
26628
26629         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
26630           Use gst_buffer_stamp instead of only copying the TIMESTAMP
26631
26632 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26633
26634         * gst/subparse/gstsubparse.c:
26635           Fix OSX buildbot.
26636
26637 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26638
26639         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
26640         (theora_enc_chain), (theora_enc_change_state):
26641         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
26642         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
26643         (gst_vorbisenc_change_state):
26644         * ext/vorbis/vorbisenc.h:
26645           Set granulepos and timestamp correctly for streams not
26646           starting at 0, taking into account the initial delay.
26647
26648 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26649
26650         * gst/mpegstream/gstdvddemux.c:
26651           Add audio/x-dts to audio pad template caps
26652
26653 2005-01-30  David Schleef  <ds@schleef.org>
26654
26655         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
26656         (create_context), (gst_polypsink_link): Fix silly endianness
26657         bug.  Add some debugging.  Remove float from caps; it doesn't
26658         work.  Attempt to get remote audio working.
26659
26660 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26661
26662         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26663           Add 3IV2 fourcc.
26664
26665 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26666
26667         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
26668         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
26669         (gst_avi_demux_stream_data):
26670         * gst/avi/gstavidemux.h:
26671           Invert DIB images. Fixes #132341.
26672
26673 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26674
26675         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26676         (gst_ffmpegcsp_chain):
26677           D'oh, reference the palette data, not the palette structure.
26678           Fixes color distortion in #132341.
26679
26680 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26681
26682         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
26683           PAR can be non-fixed when not provided as argument (#162626).
26684
26685 2005-01-29  David Moore  <dcm@acm.org>
26686
26687         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26688
26689         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26690         (gst_qtdemux_loop_header):
26691           Re-apply patch from #142272 that allows non-seekable sources,
26692           re-proposed by Daniel Drake <dsd@gentoo.org>.
26693
26694 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26695
26696         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
26697           Use the src template for creating the src pad (#162330).
26698
26699 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26700
26701         * configure.ac:
26702         * ext/musepack/Makefile.am:
26703         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
26704         (gst_musepackdec_init), (gst_musepackdec_dispose),
26705         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
26706         (gst_musepack_stream_init), (gst_musepackdec_loop),
26707         (gst_musepackdec_change_state):
26708         * ext/musepack/gstmusepackdec.cpp:
26709         * ext/musepack/gstmusepackdec.h:
26710         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
26711         (gst_musepack_reader_read), (gst_musepack_reader_seek),
26712         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
26713         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
26714         * ext/musepack/gstmusepackreader.cpp:
26715         * ext/musepack/gstmusepackreader.h:
26716           Update to 1.1 API (#165446).
26717
26718 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26719
26720         * ext/Makefile.am:
26721           Unbreak buildbot.
26722
26723 2005-01-28  Andy Wingo  <wingo@pobox.com>
26724
26725         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
26726         to reflect a different dubious internet source. Add a reference
26727         and some commentary.
26728
26729 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26730
26731         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
26732         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
26733         * gst/playback/gststreamselector.h:
26734           Be more selective when we're redoing caps negotiation from
26735           within the chain function on a stream change.
26736
26737 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26738
26739         * configure.ac:
26740         * ext/Makefile.am:
26741         * ext/amrnb/Makefile.am:
26742         * ext/amrnb/amrnb.c: (plugin_init):
26743         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
26744         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
26745         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
26746         (gst_amrnbdec_state_change):
26747         * ext/amrnb/amrnbdec.h:
26748         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
26749         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
26750         (gst_amrnbparse_init), (gst_amrnbparse_formats),
26751         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
26752         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
26753         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
26754         * ext/amrnb/amrnbparse.h:
26755           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
26756         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
26757           Add AMR-NB/-WB raw formats.
26758         * ext/alsa/gstalsa.c: (gst_alsa_link):
26759           Keep valid time when changing format.
26760         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26761         (qtdemux_parse_trak):
26762           Add some more format-specific options (#140141, #143555, #155163).
26763
26764 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26765
26766         * gst/matroska/matroska-demux.c:
26767         (gst_matroska_demux_parse_blockgroup):
26768           Fix logic error in timing of subtitle stream synchronization.
26769         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
26770           Add skip-chunk, which is found in kodak-camera streams.
26771
26772 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26773
26774         * po/LINGUAS:
26775         * po/vi.po:
26776           Adding Vietnamese translation (submitted by Clytie Siddall)
26777
26778 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26779
26780         * gst/playback/gstdecodebin.c: (try_to_link_1):
26781           Use realpad for signal.
26782
26783 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26784
26785         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
26786           Fix category so decodebin picks it up.
26787
26788 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26789
26790         * ext/mad/Makefile.am:
26791         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
26792         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
26793         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
26794         (found_type), (gst_id3demux_bin_change_state):
26795         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
26796         (gst_id3_tag_init), (gst_id3_tag_handle_event),
26797         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26798         (gst_id3_tag_change_state), (plugin_init):
26799         * ext/mad/gstmad.h:
26800           Add id3demuxbin (which is a simple bin consisting of id3demux
26801           and typefind), take over rank from id3demux, remove typefind
26802           code from id3demux. Makes all broken mp3s that I know of work,
26803           and thereby fixes #152688.
26804
26805 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
26806
26807         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26808
26809         * ext/mad/gstmad.c: (gst_mad_src_event):
26810         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
26811           Allow seeks on audio pad, make mad forward those (#164826).
26812         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26813           Set duration (#165335).
26814
26815 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26816
26817         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
26818         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
26819         (gst_asf_demux_process_ext_content_desc),
26820         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
26821         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
26822         * gst/asfdemux/gstasfdemux.h:
26823           Improve metadata display, e.g. if the metadata comes before the
26824           streams are loaded (which is perfectly valid).
26825
26826 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26827
26828         * tools/gst-launch-ext-m.m:
26829           Fix AVI/ASF pipelines (#165340).
26830
26831 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
26832         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
26833         build failure on amd64
26834
26835 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
26836
26837         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
26838         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
26839           Check environment variables GST_ID3V2_TAG_ENCODING,
26840           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26841           list of character encodings to force interpretation of non-unicode
26842           strings stored in an ID3v2 tag to a particular encoding. If none
26843           is specified, try to use current locale's encoding, then fall back
26844           to ISO-8859-1 (which will always succeed). (Resolves #149274)
26845         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
26846         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
26847           Check environment variables GST_ID3V1_TAG_ENCODING,
26848           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26849           list of character encodings to use in case a string encountered
26850           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
26851           specified, try to use the current locale's encoding, then fall
26852           back to ISO-8859-1 (which will always succeed).
26853
26854 2005-01-25  Benjamin Otte  <otte@gnome.org>
26855
26856         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26857           - on half framerate, compute the rate in advance so the comparisons
26858             don't compare wrong values
26859           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
26860             behaviour
26861           - don't use mad_header_decode anymore, mad_frame_decode does that
26862             automatically
26863           - when getting rid of consumed bytes, reset the stream's skiplen
26864           (fixes #163867)
26865
26866 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26867
26868         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
26869           Use 1/2 a second for default max_discont, as PES streams from DVB
26870           seem to have larger spacings in the SCR. 
26871           Fix a typo.
26872
26873 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26874
26875         * gst/playback/gstplaybasebin.c: (group_commit):
26876           Notify delayed stream-info availability.
26877
26878 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26879         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
26880         (gst_a52dec_handle_event), (gst_a52dec_chain):
26881         Add some debug output. Check that a discont has a valid
26882         time associated.
26883         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
26884         (gst_alsa_sink_loop):
26885         Ignore TAG events. A little extra debug for broken timestamps.
26886         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
26887         (dvdnavsrc_change_state):
26888         Ensure we send a discont to engage the link before we send any
26889         other events.
26890         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
26891         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
26892         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
26893         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
26894         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
26895         dvd://title works in totem because typefinding sends a seek that ends
26896         up going back to chapter 1 regardless.
26897         * ext/mpeg2dec/gstmpeg2dec.c:
26898         * ext/mpeg2dec/gstmpeg2dec.h:
26899         Output correct timestamps and handle disconts.
26900         * ext/ogg/gstoggdemux.c: (get_relative):
26901         Small guard against a null dereference.
26902         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
26903         (gst_textoverlay_set_property):
26904         Free memory when done. Don't call gst_event_filler_get_duration on
26905         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
26906         g_warning.
26907         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
26908         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
26909         (gst_sw_srclink), (gst_smoothwave_chain):
26910         Draw solid lines, prettier colours.
26911         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
26912         Add a default palette that'll work for some movies.
26913         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
26914         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
26915         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
26916         * gst/mpegstream/gstdvddemux.h:
26917         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26918         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
26919         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
26920         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
26921         * gst/mpegstream/gstmpegparse.h:
26922         Use PTM/NAV events when for timestamp adjustment when connected to 
26923         dvdnavsrc. Don't use many discont events where one suffices.
26924         * gst/playback/gstplaybasebin.c: (group_destroy),
26925         (gen_preroll_element), (gst_play_base_bin_add_element):
26926         * gst/playback/gstplaybasebin.h:
26927         Make sure we remove subtitles from the same bin we put them in.
26928         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
26929         (gst_subparse_buffer_format_autodetect),
26930         (gst_subparse_change_state):
26931         Fix some memleaks and invalid accesses.
26932         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
26933         (oggskel_type_find), (cmml_type_find), (plugin_init):
26934         Some typefind functions for Annodex v3.0 files
26935         * gst/wavparse/gstwavparse.h:
26936         GstRiffReadClass is the correct parent class.
26937
26938 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26939
26940         * gst-libs/gst/riff/riff-media.c:
26941         (gst_riff_create_video_caps_with_data):
26942           Add extradata to huffyuv (fixes #165013).
26943         * gst-libs/gst/riff/riff-read.c:
26944         (gst_riff_read_strf_vids_with_data):
26945           Fix extradata extraction if it is in the chunk size.
26946
26947 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
26948
26949         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26950
26951         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
26952         (gst_quarktv_change_state), (gst_quarktv_dispose):
26953           Memory free'ing location fix (#164708).
26954
26955 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26956
26957         * gst/playback/gstplaybasebin.c: (group_commit),
26958         (gen_preroll_element), (probe_triggered), (gen_source_element),
26959         (setup_source), (gst_play_base_bin_change_state),
26960         (gst_play_base_bin_add_element):
26961           Don't block for streams.
26962         * gst/playback/gststreaminfo.c: (stream_info_change_state),
26963         (gst_stream_info_set_mute):
26964           Use gst_pad_set_active_recursive.
26965
26966 2005-01-25  Andy Wingo  <wingo@pobox.com>
26967
26968         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
26969         for #ifndef HAVE_XVIDEO.
26970
26971 2005-01-24  Jeffrey C. Ollie
26972
26973         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
26974
26975         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
26976         * ext/gsm/gstgsmdec.h:
26977         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
26978         * ext/gsm/gstgsmenc.h:
26979         Fix rate to 8kHz as per spec, removes obscure errors when no rate
26980         was given by property. Add proper buffer timestamps and offsets.
26981
26982 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26983
26984         * gst-libs/gst/riff/riff-media.c:
26985         (gst_riff_create_audio_caps_with_data):
26986           Audio can be <8000Hz.
26987
26988 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26989
26990         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
26991           Explicit state change to workaround refcount bugs.
26992
26993 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26994
26995         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
26996         (gst_avimux_riff_get_avi_header):
26997           Fix...
26998
26999 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27000
27001         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
27002         (gst_riff_read_element_data):
27003         * gst-libs/gst/riff/riff-read.h:
27004           Add _peek version (req'ed in CDXA).
27005         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
27006         (gst_cdxaparse_loop):
27007           Fix parsing in playbin.
27008         * gst/playback/gstdecodebin.c: (close_pad_link):
27009           Ignore current_ pads, they cause major annoyance.
27010
27011 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27012
27013         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27014           Safety guard.
27015
27016 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27017
27018         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
27019           Fix padding...
27020
27021 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27022
27023         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
27024           Allow for 0-sized buffers. Fixes length query problems in
27025           starwars.mkv from the testsuite.
27026
27027 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
27028
27029         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
27030         (gst_video_box_i420), (gst_video_box_chain):
27031           Fix row strides for I420 (fixes #163159)
27032           
27033 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27034
27035         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
27036           MPEG2 has a useful rate property, so we can actually use that.
27037           For MPEG-1, continue using the bytes/time properties.
27038
27039 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27040
27041         * gst-libs/gst/riff/riff-media.c:
27042         (gst_riff_create_video_caps_with_data),
27043         (gst_riff_create_video_template_caps):
27044           Add intel-h263.
27045
27046 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27047
27048         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
27049           Fail if caps negotiation fails. Should fix #162184, and should
27050           definately be in there regardless of it fixing the actual bug.
27051         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
27052         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
27053         (gst_avimux_riff_get_avix_header),
27054         (gst_avimux_riff_get_video_header),
27055         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
27056         (gst_avimux_start_file), (gst_avimux_handle_event),
27057         (gst_avimux_change_state):
27058         * gst/avi/gstavimux.h:
27059           Refactor structure writing to use GST_WRITE_UINT macros, add
27060           metadata writing support.
27061
27062 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27063
27064         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
27065           Elements may already be destroyed when this function is called.
27066
27067 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27068
27069         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
27070         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
27071           More memory leak fixes (#149162).
27072
27073 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27074
27075         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
27076         (gst_qtdemux_add_stream):
27077           Fix two memleaks.
27078
27079 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27080
27081         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
27082           Argh...
27083
27084 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27085
27086         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
27087           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
27088           when fixating to six channels in Totem.
27089
27090 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27091
27092         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
27093           Fix compile warnings on Solaris 10 buildbot
27094
27095 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27096
27097         * ext/dvdread/dvdreadsrc.c: (_read):
27098           Don't read beyond the last cell in a chapter (fixes 
27099           invalid memory access)
27100
27101 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27102
27103         * ext/dvdread/stream_labels.c:
27104         (dvdreadsrc_get_audio_stream_labels):
27105           Use NULL for an empty GList instead of g_list_alloc(); fix 
27106           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
27107           of GString (easier to bulk free later)
27108
27109 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
27110
27111         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27112
27113         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27114         (gst_ffmpeg_pixfmt_to_caps):
27115           Fix BGRA32 caps (#164209).
27116
27117 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
27118
27119         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27120
27121         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27122         (gst_ffmpeg_caps_to_pixfmt):
27123           alpha_mask can be RGBA/ABGR. Fixes #164265.
27124
27125 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
27126
27127         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27128
27129         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
27130         (gst_mpeg2dec_alloc_buffer):
27131         * ext/mpeg2dec/gstmpeg2dec.h:
27132           Crop if decoding size is not the actual image size (#163676).
27133
27134 2005-01-17  Steve Baker  <steve@stevebaker.org>
27135
27136         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27137
27138         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
27139         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
27140           Add libsndfile typefind functions (#163309).
27141
27142 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27143
27144         * tools/gst-launch-ext-m.m:
27145           Add .aac, fix .m1v/.m2v (#163891).
27146
27147 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27148
27149         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
27150           Sanity check, don't wait endlessly since the clock might not
27151           actually run at this point (which is a deadlock). Fixes #164069.
27152
27153 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27154
27155         * gst/playback/gstplaybasebin.c: (probe_triggered):
27156           Of course, only pause if group is done...
27157
27158 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27159
27160         * gst/playback/gstplaybasebin.c: (probe_triggered):
27161           Thread safety.
27162
27163 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
27164
27165         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
27166           Don't return state change success when the parent
27167           failed.
27168
27169 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27170
27171         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
27172           Free events (fix memleak in #162905).
27173
27174 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
27175
27176         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27177
27178         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27179         (gst_ffmpeg_caps_to_pixfmt):
27180           Fix for depth = 15. Fixes #161675.
27181
27182 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27183
27184         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27185           Set FPS correctly, even for webcams and the like.
27186         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
27187           Don error on setting while capturing.
27188
27189 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27190
27191         * ext/dv/gstdvdec.c:
27192         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
27193         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
27194           I'm a bad boy. using /1001. to force C to do float division
27195           and not integer division (as it did in my last commit)
27196           Thanks to David I. Lehn for pointing this mistake.
27197
27198 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27199
27200         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
27201           Revert Johan's 1.35->1.36 since it breaks compat.
27202
27203 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27204
27205         * ext/dv/gstdvdec.c:
27206         * ext/libfame/gstlibfame.c:
27207         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
27208         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
27209           replace framerate aproximations by their real value
27210           (24000/1001, 30000/1001, 60000/1001)
27211           Finish fixing bug #164049
27212
27213 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27214
27215         * ext/ogg/gstoggmux.c:
27216           eos/bos debugging
27217         * gst/tcp/gstmultifdsink.c:
27218         * gst/tcp/gstmultifdsink.h:
27219         * gst/tcp/gsttcp.c:
27220         * gst/tcp/gsttcp.h:
27221         * gst/tcp/gsttcpclientsink.c:
27222         * gst/tcp/gsttcpclientsrc.c:
27223         * gst/tcp/gsttcpserversink.c:
27224         * gst/tcp/gsttcpserversrc.c:
27225           improve reusability of elements after state changes and errors
27226           make multifdsink throw away streamheaders when receiving new ones
27227
27228 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27229
27230         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
27231           Fix for if items are already in list...
27232
27233 2005-01-12  Benjamin Otte  <otte@gnome.org>
27234
27235         * gst/adder/gstadder.c: (gst_adder_loop):
27236           fix adder a bit so it doesn't screw up with events as much anymore
27237
27238 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
27239
27240         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
27241         (pixbufscale_scale), (gst_pixbufscale_chain):
27242         * ext/gdk_pixbuf/pixbufscale.h:
27243           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
27244           to ensure rowstrides are calculated the same way as 
27245           ffmpegcolorspace
27246           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
27247           that we pick up duration and offset also.
27248
27249 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27250
27251         * gst/avi/gstavimux.c: (gst_avimux_class_init),
27252         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
27253           Reusability fixes.
27254
27255 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27256
27257         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
27258         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
27259         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
27260         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
27261           Update flags when requested.
27262
27263 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27264
27265         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
27266           Fix dmix.
27267
27268 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27269
27270         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27271         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
27272         (probe_triggered), (new_decoded_pad), (gen_source_element),
27273         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
27274         * gst/playback/gstplaybasebin.h:
27275         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
27276         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
27277         (gst_play_bin_change_state):
27278           Implement group-switch signal for use in apps to clear metadata
27279           cache, clean up subtitle, add suburi property instead of # hack,
27280           some error-out fixes.
27281
27282 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27283
27284         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27285           Debug.
27286         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
27287           If we got a state change in the _get handler, don't return success.
27288
27289 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27290
27291         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
27292         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
27293           Make jpegdec quiet on MJPEG decoding
27294         * gst/asfdemux/README:
27295           Fix mimetypes for MJPEG and H263
27296
27297 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27298
27299         * ext/theora/theoradec.c: (theora_dec_chain):
27300           Fix broken code generation by gcc by swapping arguments.
27301         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27302           Fix \n in debug.
27303
27304 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27305
27306         * TODO:
27307           delete this file, it is by far outdated
27308         * ext/alsa/gstalsa.1: remove
27309         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
27310         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
27311         (gst_alsa_get_caps):
27312           Add HW probing for supported sample rates. Fixes #161704
27313
27314 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27315
27316         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27317           Don't crash, biatch! :).
27318
27319 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27320
27321         * ext/musepack/gstmusepackreader.cpp:
27322         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27323           Some work on tags - still doesn't work in playbin...
27324         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27325           Handle events...
27326
27327 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27328
27329         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
27330           Also shove tags on kid pads.
27331
27332 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27333
27334         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
27335           Don't bail on unknown events.
27336         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27337           Don't crash on events before negotiation.
27338         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27339           Send tags on pads, too.
27340         * gst/playback/gststreamselector.c:
27341         (gst_stream_selector_request_new_pad):
27342           Forward events on first pad if no input was selected yet.
27343
27344 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27345
27346         * gst/playback/gstplaybasebin.c: (setup_substreams):
27347           Don't disable streamtype if the stream doesn't exist, since
27348           then playing a video after audio will disable both and nothing
27349           will happen. Fixes the testsuite.
27350
27351 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27352
27353         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
27354         (gst_v4l_xoverlay_set_xwindow_id):
27355         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
27356         (gst_v4l2_xoverlay_set_xwindow_id):
27357           Add debug categories, fix overlay disabling.
27358
27359 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27360
27361         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
27362         * ext/alsa/gstalsa.h:
27363           Add HW probing for period_count/size and buffer_size MIX/MAX
27364           Adjust default/user defined value if out of bounds
27365           Should fix bug #162024
27366
27367 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27368
27369         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
27370           Fix warning (#161191).
27371
27372 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27373
27374         * ext/dvdread/stream_labels.c:
27375         (dvdreadsrc_get_audio_stream_labels):
27376           Fix warning (init the good variable in switch default)
27377
27378 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
27379
27380         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27381
27382         * gst/tta/gstttaparse.c: (gst_tta_src_event):
27383           Fix gcc-2.95 compile (#163485).
27384
27385 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27386
27387         * configure.ac:
27388         * ext/flac/gstflacenc.c: (gst_flacenc_init),
27389         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
27390         (gst_flacenc_tell_callback), (gst_flacenc_chain),
27391         (gst_flacenc_change_state):
27392         * ext/flac/gstflacenc.h:
27393           Update for API change in flac-1.1.1. Update requirement in
27394           configure.ac. Fixes #162974.
27395
27396 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27397
27398         * gst/playback/gstplaybasebin.c: (group_destroy):
27399           Remove hack to get rid of assert and get rid of unlinked
27400           signals properly.
27401
27402 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27403
27404         * gst/playback/gstplaybasebin.c: (setup_source):
27405           Set source to NULL so that resources are free'ed. Fixes issues
27406           with playback of CDDA and similar device-accessing things.
27407
27408 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27409
27410         * testsuite/embed/Makefile.am:
27411           test->noinst, fix make test in buildbot.
27412
27413 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27414
27415         * ext/dvdread/stream_labels.c: new file
27416         * ext/dvdread/stream_labels.h: new file
27417         * ext/dvdread/Makefile.am:
27418         * ext/dvdread/dvdreadsrc.c: (_seek_title):
27419           Extract audio stream label from DVD IFO files.
27420           It only dump them on the console for now, still have to
27421           make playbin aware of them.
27422
27423 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27424
27425         * gst/playback/gstplaybasebin.c: (setup_source):
27426           Fix hanging subs.
27427
27428 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27429
27430         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27431         (gen_preroll_element), (remove_groups), (setup_subtitle),
27432         (gen_source_element), (setup_source):
27433         * gst/playback/gstplaybasebin.h:
27434           Multiple .sub files is just a stupid idea... Fix some threading
27435           mistakes. Interestingly, external .sub files cause playbin to
27436           hang, I don't know why... Parsing fixes contributed by Fran??ois
27437           Kooman <fkooman@tuxed.net>.
27438
27439 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27440
27441         * testsuite/embed/Makefile.am:
27442           Fix buildbot.
27443
27444 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27445
27446         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27447
27448         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
27449         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
27450         (gst_pngenc_set_property):
27451         * ext/libpng/gstpngenc.h:
27452           Add compression level property (#163323).
27453
27454 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27455
27456         * configure.ac:
27457         * examples/capsfilter/capsfilter1.c: (main):
27458         * examples/seeking/spider_seek.c: (make_spider_pipeline):
27459         * ext/dvdread/Makefile.am:
27460         * ext/dvdread/demo-play:
27461         * ext/dvdread/demo-play.c:
27462         * gconf/gstreamer.schemas.in:
27463         * gst-libs/gst/gconf/gconf.c:
27464         * sys/v4l/TODO:
27465         * testsuite/Makefile.am:
27466         * testsuite/embed/Makefile.am:
27467         * testsuite/embed/embed.c: (cb_expose), (main):
27468           Remove all references to xvideosink, fix examples (#140845).
27469         * gst/playback/gstplaybasebin.c: (group_destroy):
27470           Apparently, disposal does not unlink - so do explicitely.
27471         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
27472           Add debug.
27473
27474 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
27475
27476         * README: fix PKG_CONFIG_PATH instructions, what was there
27477         previously was breaking default search path, not nice. 
27478         Fixes #163358
27479
27480 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27481
27482         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
27483         (gst_audioscale_chain):
27484           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
27485           when resampling - how the ^@$^!@^! is this possible?!?
27486
27487 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27488
27489         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
27490           Reset variables on READY.
27491         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
27492         (gst_matroska_mux_loop):
27493           Require data before writing header.
27494
27495 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
27496
27497         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27498
27499         * ext/mad/gstmad.c: (gst_mad_chain):
27500           Don't call mad_stream_sync() directly after recovering sync.
27501           Fixes #151661.
27502
27503 2005-01-09  Martin Eikermann  <meiker@upb.de>
27504
27505         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27506
27507         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
27508         (snapshot_handler), (gst_snapshot_sinkconnect),
27509         (gst_snapshot_chain):
27510           Allocate resources when required, fix recursive signal emission
27511           and fix caps. Fixes #161667.
27512
27513 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27514
27515         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27516
27517         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
27518         (gst_pngdec_chain):
27519           Handle only 8-bppc (bits-per-pixel-component) images, better
27520           error handling and correct strides. Fixes #163177.
27521         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
27522         (gst_pngenc_chain):
27523           Better error handling. Fixes #163348.
27524
27525 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27526
27527         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
27528         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
27529         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
27530         (dvdnavsrc_uri_handler_init):
27531           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
27532         * gst/playback/gstplaybasebin.c: (gen_source_element):
27533           Add MMS to streaming URIs.
27534
27535 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27536
27537         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27538         * sys/xvimage/xvimagesink.c:
27539         (gst_xvimagesink_navigation_send_event):
27540           Check for pad availability before sending event.
27541
27542 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27543
27544         * gst-plugins.spec.in:
27545           Add subparse.
27546
27547 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27548
27549         * configure.ac:
27550           Since we use functions from CVS, up requirement.
27551
27552 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27553
27554         * gst/playback/Makefile.am:
27555         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27556         (group_destroy), (group_commit), (group_is_muted),
27557         (gen_preroll_element), (add_stream), (unknown_type),
27558         (probe_triggered), (preroll_unlinked), (mute_stream),
27559         (silence_stream), (new_decoded_pad), (setup_substreams),
27560         (setup_source), (get_active_source), (mute_group_type),
27561         (muted_group_change_state), (set_active_source),
27562         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
27563         (play_base_eos), (gst_play_base_bin_change_state):
27564         * gst/playback/gstplaybasebin.h:
27565         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
27566         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
27567         (gst_stream_info_dispose), (stream_info_mute_pad),
27568         (stream_info_change_state), (gst_stream_info_set_mute):
27569         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
27570         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
27571         (gst_stream_selector_init), (gst_stream_selector_dispose),
27572         (gst_stream_selector_get_linked_pad),
27573         (gst_stream_selector_get_caps), (gst_stream_selector_link),
27574         (gst_stream_selector_get_linked_pads),
27575         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
27576         * gst/playback/gststreamselector.h:
27577           Adding stream selection support plus required properties for
27578           applications to use this. Fully fixes #100931.
27579
27580 2005-01-08  Benjamin Otte  <otte@gnome.org>
27581
27582         * gst/games/gstpuzzle.c: (nav_event_handler):
27583           - handle nav events differently: forward every event no matter if it
27584             was handled or not.
27585           - translate events
27586           You can now cheat by using navigationtest ! puzzle and moving the
27587           mouse close to the edge of a tile. ;)
27588
27589 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27590
27591         * configure.ac:
27592         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27593         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
27594         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
27595         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
27596         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
27597         (gst_ogm_parse_plugin_init):
27598         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
27599         (gst_textoverlay_link), (gst_textoverlay_getcaps),
27600         (gst_textoverlay_event), (gst_textoverlay_video_chain),
27601         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
27602         * ext/pango/gsttextoverlay.h:
27603         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
27604         (gst_matroska_demux_handle_seek_event),
27605         (gst_matroska_demux_sync_streams),
27606         (gst_matroska_demux_parse_blockgroup),
27607         (gst_matroska_demux_subtitle_caps),
27608         (gst_matroska_demux_plugin_init):
27609         * gst/matroska/matroska-ids.h:
27610         * gst/playback/gstdecodebin.c: (close_pad_link):
27611         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27612         (gen_preroll_element), (remove_groups), (add_stream),
27613         (new_decoded_pad), (setup_subtitles), (gen_source_element),
27614         (setup_source):
27615         * gst/playback/gstplaybasebin.h:
27616         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
27617         * gst/subparse/Makefile.am:
27618         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
27619         (gst_subparse_base_init), (gst_subparse_class_init),
27620         (gst_subparse_init), (gst_subparse_formats),
27621         (gst_subparse_eventmask), (gst_subparse_event),
27622         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
27623         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
27624         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
27625         (parse_mpsub_deinit), (parse_mpsub_init),
27626         (gst_subparse_buffer_format_autodetect),
27627         (gst_subparse_format_autodetect), (gst_subparse_loop),
27628         (gst_subparse_change_state), (gst_subparse_type_find),
27629         (plugin_init):
27630         * gst/subparse/gstsubparse.h:
27631         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
27632         (plugin_init):
27633           Add subtitle support, .sub parser (supports SRT and MPsub),
27634           OGM text support, Matroska UTF-8 text support, deadlock fixes
27635           all over the place, subtitle awareness in decodebin/playbin
27636           and some fixes to textoverlay to handle subtitles in a stream
27637           correctly. Fixes #100931.
27638
27639 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27640
27641         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27642           Check for pad availability before doing a query on it.
27643
27644 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27645
27646         * ext/dv/gstdvdec.c:
27647           really fix bpp24/32 dvdec caps (classic rgba indeed)
27648         * gst/asfdemux/gstasfdemux.c:
27649         (gst_asf_demux_process_ext_content_desc):
27650           don't send text tags if they are empty (bis repetita)
27651
27652 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27653
27654         * ext/dv/gstdvdec.c:
27655          remove unneeded comment from dvdec
27656           (related to DV 4CC codes in AVI files)
27657           moved them in gstreamer/docs/random/mimetypes
27658         * gst/asfdemux/gstasfdemux.c:
27659         (gst_asf_demux_process_ext_content_desc):
27660          don't send text tags if they are empty
27661          fix mem leak on error path
27662         * gst/ffmpegcolorspace/avcodec.h:
27663         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27664         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
27665         (gst_ffmpegcsp_avpicture_fill):
27666         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
27667         * gst/ffmpegcolorspace/imgconvert_template.h:
27668          adds BGR32 and BGRA32 to ffmpegcolorspace
27669           (still bad colors, fixing it on next commit)
27670           helps with dvdec outputing BGR32
27671
27672 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27673
27674         * ext/dv/gstdvdec.c:
27675          Fix audio caps i just broke (missing ',')
27676         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
27677         (gst_matroska_mux_reset):
27678          Fix typo + add FIXME about old "x-gst-metadata" crap
27679
27680 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27681
27682         * ext/dv/demo-play.c: (main):
27683          xvideosink -> xvimagesink
27684         * ext/dv/gstdvdec.c:
27685          change rgb 32/32 caps to 24/32 (no alpha)
27686          change nb of channels to be a list (2 or 4, not 2)
27687          change sample rate to be a list (32, 44.1, 48 kHz) not a range
27688         * gst/asfdemux/gstasfdemux.c:
27689         (gst_asf_demux_process_ext_content_desc):
27690          Add 'date/year' to extracted metadata list
27691
27692 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27693
27694         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
27695           The return value of fixate_to does not imply that the requested
27696           value was set, so don't assume.
27697
27698 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
27699
27700         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27701
27702         * ext/libpng/gstpngdec.c:
27703         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
27704         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
27705         * ext/libpng/gstpngenc.h:
27706           Alpha support (encoder; #163161), mime fixage.
27707
27708 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
27709
27710         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27711
27712         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
27713         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
27714         (gst_faac_set_property), (gst_faac_get_property):
27715         * ext/faac/gstfaac.h:
27716           Allow for ADTS output (#153434).
27717
27718 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27719
27720         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
27721           Fix against template (#150576).
27722
27723 2005-01-06  Benjamin Otte  <otte@gnome.org>
27724
27725         * gst/games/gstpuzzle.c: (draw_puzzle):
27726           don't draw a puzzle if either width or height of tiles would be 0.
27727
27728 2005-01-06  Benjamin Otte  <otte@gnome.org>
27729
27730         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
27731         (gst_puzzle_class_init), (gst_puzzle_finalize):
27732           no memleaks, please
27733         (gst_puzzle_create), (gst_puzzle_init),
27734         (gst_puzzle_set_property), (gst_puzzle_setup):
27735           change initialization code around so we don't reshuffle on resize
27736         (draw_puzzle):
27737           fix another stupid typo
27738
27739 2005-01-06  Benjamin Otte  <otte@gnome.org>
27740
27741         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
27742           fix stupid typo that borked copying on YUY2
27743
27744 2005-01-06  Benjamin Otte  <otte@gnome.org>
27745
27746         * gst/games/gstpuzzle.c: (draw_puzzle):
27747           fix edges when image sizes aren't multiples of tile sizes
27748
27749 2005-01-06  Benjamin Otte  <otte@gnome.org>
27750
27751         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
27752           make RGB endianness work correctly
27753         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
27754           refactor and fix race with initial shuffling
27755         (nav_event_handler):
27756           allow using the mouse to puzzle
27757         (draw_puzzle):
27758           insist on tiles having width and height as multiples of 4 to get
27759           clean YUV image handling
27760         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27761         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
27762           s/DEBUG/LOG/ for common messages
27763         (gst_xvimagesink_navigation_send_event):
27764           fix mouse event translation to not include screen PAR
27765         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27766           fix mouse event translation to actually work
27767
27768 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27769
27770         * gst/asfdemux/gstasfdemux.c:
27771         (gst_asf_demux_process_ext_content_desc):
27772          Extract TrackNumber metadata + clean up code
27773         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
27774          Hope this is the good fix (var used unitialised)
27775
27776 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27777
27778         * ext/faad/gstfaad.c: (gst_faad_chain):
27779           Only increment timestamp if it's valid. Fixes raw AAC streams.
27780
27781 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27782
27783         * configure.ac:
27784         * gst/games/Makefile.am:
27785         * gst/games/gstpuzzle.c:
27786           add a puzzle game with...
27787         * gst/games/gstvideoimage.c:
27788         * gst/games/gstvideoimage.h:
27789           ... full colorspace support (that includes YUV9 and RGB16)) stolen
27790           from videotestsrc and made into something that would be a nice
27791           library for a lot of other plugins.
27792
27793 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27794
27795         * configure.ac:
27796          don't compile faad plugin if a RC of 2.0 is found
27797          Fixes #155346 (and FC1 buildbot)
27798         * gst/asfdemux/gstasfdemux.c:
27799         (gst_asf_demux_process_ext_content_desc):
27800          try to make Solaris compiler happier
27801
27802 2005-01-06  Paul Jack  <pjack@sfaf.org>
27803
27804         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27805
27806         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
27807           Fix segfault (#161667).
27808
27809 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27810
27811         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27812           Fix framerate reporting.
27813
27814 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27815
27816         * gst-libs/gst/riff/riff-ids.h:
27817         * gst/wavenc/riff.h:
27818          Add AMR (VBR and CBR) ids to riff.h audio codec list
27819         * gst/asfdemux/gstasfdemux.c:
27820         (gst_asf_demux_process_ext_content_desc),
27821         (gst_asf_demux_process_object):
27822           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
27823
27824 2005-01-05  Martin Eikermann  <meiker@upb.de>
27825
27826         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27827
27828         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27829         (gst_dvd_demux_handle_discont):
27830         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
27831         (gst_mpeg_demux_handle_discont):
27832           Recreate pads on new-media (#160730).
27833         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
27834           Send discont even if manager changes timestamps (#161929).
27835
27836 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
27837
27838         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27839
27840         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
27841           Fix invalid memory access (#159211).
27842
27843 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27844
27845         * examples/gstplay/player.c: (main):
27846           Don't iterate.
27847         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
27848           Add visualizations.
27849         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
27850         (gst_a52dec_handle_frame):
27851           Set duration.
27852         * ext/dvdnav/gst-dvd:
27853           Add audioconvert. Fixes #161325.
27854         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
27855           Explicitely case to gint64. Possible valgrind error.
27856         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
27857         (gst_play_tick_callback), (gst_play_change_state),
27858         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
27859         (gst_play_set_location), (gst_play_get_location),
27860         (gst_play_seek_to_time), (gst_play_set_data_src),
27861         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27862         (gst_play_set_visualization), (gst_play_connect_visualization),
27863         (gst_play_get_framerate), (gst_play_get_all_by_interface),
27864         (gst_play_new):
27865           Use playbin. Fixes #139749 and #147744.
27866         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
27867           Add genre tag.
27868         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27869         (audioscale_get_type), (gst_audioscale_base_init),
27870         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
27871         (gst_audioscale_getcaps), (gst_audioscale_fixate),
27872         (gst_audioscale_link), (gst_audioscale_get_buffer),
27873         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
27874         (gst_audioscale_init), (gst_audioscale_dispose),
27875         (gst_audioscale_chain), (gst_audioscale_set_property),
27876         (gst_audioscale_get_property), (plugin_init):
27877           Indent properly.
27878         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27879           Fix LPCM.
27880         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
27881         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
27882         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
27883           Add more metadata (fixes #162656).
27884
27885 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27886
27887         * configure.ac:
27888           back to cvs
27889
27890 === release 0.8.7 ===
27891
27892 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27893
27894         * NEWS:
27895         * RELEASE:
27896         * configure.ac:
27897           releasing 0.8.7, "Hyperspace"
27898
27899 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27900
27901         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
27902
27903         * gst/playback/gstplaybasebin.c:
27904          Fix for #162924 - free caps after use, not before
27905
27906 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27907
27908         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27909
27910         * gst/playback/gstplaybasebin.c:
27911         * gst/wavparse/gstwavparse.c:
27912           Fix for #154773 - fixes playback of small .wav files
27913
27914 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
27915
27916         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27917
27918         * gst/audioscale/gstaudioscale.c:
27919           Fix for #162819 - make audioscale reusable
27920           Fixes playback of more than one file with playbin/totem
27921
27922 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27923
27924         * gst/ffmpegcolorspace/avcodec.h:
27925         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27926         * gst/ffmpegcolorspace/imgconvert.c:
27927           clean up the mess that made me cry and avoid needless duplication
27928
27929 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27930
27931         * gst/ffmpegcolorspace/imgconvert.c:
27932           give some indication of why we're segfaulting
27933
27934 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27935
27936         * configure.ac:
27937           Fix indentation, fix v4l2 plugin detection.
27938         * ext/Makefile.am:
27939           Fix libmms location (Maciej, use diff -u!).
27940         * ext/alsa/gstalsa.c: (gst_alsa_init):
27941           Initialize caps cache to NULL.
27942         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
27943           Only change state on audiosink if it exists.
27944
27945 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
27946
27947         * gst/matroska/matroska-demux.c:
27948         * gst/matroska/matroska-ids.h:
27949         * gst/matroska/matroska-demux.h:
27950         Fix Vorbis streams failing to decode in some files, where cluster_time
27951         isn't 0, because then it doesn't send codec_priv before actual data.
27952         Remove time-based test and replace it with marker set on beginning of
27953         new stream
27954
27955 2004-12-28  David Schleef  <ds@schleef.org>
27956
27957         Merge patch from Ronald fixing problems with streaming
27958         text.
27959         * ext/cairo/gstcairo.c: (plugin_init):
27960         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27961         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27962         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27963         (gst_textoverlay_font_init), (gst_textoverlay_init),
27964         (gst_textoverlay_set_property):
27965         * ext/cairo/gsttextoverlay.h:
27966
27967 2004-12-27  David Schleef  <ds@schleef.org>
27968
27969         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27970         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27971         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27972         (gst_textoverlay_font_init), (gst_textoverlay_init),
27973         (gst_textoverlay_set_property): Improvements to actually
27974         render text as white on black outline on video, including
27975         font selection and horizontal/vertical alignment.  (Ronald's
27976         christmas present)
27977         * ext/cairo/gsttextoverlay.h:
27978
27979 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27980
27981         * ext/ogg/gstogg.c:
27982         * ext/ogg/gstogmparse.c:
27983           fix ogm[audio/video]parse plugin registration
27984           (riff won't load if bytestream is already loaded)
27985
27986 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27987
27988         * gst/audioconvert/gstchannelmix.c:
27989           fix for GLIB < 2.4
27990
27991 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27992
27993         * Makefile.am:
27994         * configure.ac:
27995           disable docs again until it actually passes make distcheck.
27996
27997 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27998
27999         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
28000         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
28001         (plugin_init):
28002           Add 3GP (variables name Q3GP because they can't start with a
28003           number). Add samr audio fourcc (used in .3gp files), decoder
28004           is work in progress. Also do a GST_WARNING instead of ERROR
28005           in case of unknown nodes, to decrease output.
28006
28007 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28008
28009         * Makefile.am:
28010           really fix dist
28011
28012 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28013
28014         * configure.ac:
28015         * ext/speex/gstspeexdec.h:
28016         * ext/speex/gstspeexenc.h:
28017           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
28018           Fix detection code in configure.ac
28019
28020 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28021
28022         * gst/matroska/matroska-demux.c:
28023         (gst_matroska_demux_parse_blockgroup):
28024           Save position, so that queries give proper return values. Don't
28025           know how this could ever have worked before...
28026
28027 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28028
28029         * configure.ac:
28030           Put additional LAME check inside the conditional.  Fixes #152339
28031
28032 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28033
28034         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28035         (gst_avi_demux_stream_scan):
28036           Add some more debug. Fix logic error when setting movi offset
28037           while reading index.
28038
28039 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28040
28041         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28042         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
28043         (gst_avi_demux_process_next_entry):
28044           Add some debugging. Better detection of broken indexes and the
28045           accompanying index recovery. No infinite loops on state changes
28046           when we're still in our loopfunction.
28047
28048 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28049
28050         * configure.ac:
28051           Fix up.
28052
28053 2004-12-22  Archana Shah  <archana.shah@wipro.com>
28054
28055         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
28056
28057         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
28058           Normalizing the value before setting
28059         (gst_sunaudiomixer_get_volume):
28060           Normalizing the value after getting. Fixes bug# 161980
28061
28062 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28063
28064         * Makefile.am: Make sure docs gets disted
28065         * docs/Makefile.am: Make sure all needed files get disted
28066         * gst-plugins.spec.in: latest updates
28067
28068 2004-12-22  Wim Taymans  <wim@fluendo.com>
28069
28070         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28071         Revert patch 1.38 as clock distribution over schedulers does
28072         not work correcly in the core yet.
28073
28074 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28075
28076         * sys/oss/README: remove this file, which predates my birth
28077           (and which content is by far outdated)
28078
28079 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
28080
28081         * Makefile.am:
28082         * configure.ac:
28083         * docs/Makefile.am:
28084         * docs/libs/Makefile.am:
28085         * docs/libs/gst-plugins-libs-docs.sgml:
28086         * docs/libs/gst-plugins-libs-sections.txt:
28087         * docs/libs/tmpl/gstgconf.sgml:
28088         * docs/upload.mak:
28089         * docs/version.entities.in:
28090           Added boilerplate gtk-doc files for plugin-libs documentation.
28091
28092 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28093
28094         * gst/auparse/gstauparse.c: fix int and float audio caps
28095
28096 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28097
28098         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
28099         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
28100           g_assert() can be a macro, don't use #ifdef inside it.
28101
28102 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
28103
28104         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28105
28106         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
28107         (gst_videorate_init), (gst_videorate_chain),
28108         (gst_videorate_change_state):
28109           Event handling (fixes #159986).
28110
28111 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28112
28113         * gst-libs/gst/riff/riff-media.c:
28114         (gst_riff_create_video_caps_with_data):
28115           Add BLZ0 (Blizzard's version of DivX) fourcc.
28116
28117 2004-12-18  David Schleef  <ds@schleef.org>
28118
28119         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
28120         portability fix.
28121
28122 2004-12-18  David Schleef  <ds@schleef.org>
28123
28124         * gst/tta/ttadec.h: Disable some header code that isn't used
28125         and clearly isn't portable.
28126
28127 2004-12-18  David Schleef  <ds@schleef.org>
28128
28129         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
28130         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
28131         (avcodec_get_pix_fmt), (avpicture_layout),
28132         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
28133         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
28134         Fix code to not use GCC extensions (and c99 extensions that
28135         Forte does not like.)
28136
28137 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28138
28139         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28140
28141         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
28142         (gst_deinterlace_chain):
28143           Rowstride fixes. Fixes #161039.
28144         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
28145         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
28146         (gst_video_crop_getcaps), (gst_video_crop_link),
28147         (gst_video_crop_i420), (gst_video_crop_chain),
28148         (gst_video_crop_change_state):
28149           Rework of negotiation. Actually works now. Fixes #158650.
28150
28151 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28152
28153         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
28154           That was very stupid.
28155
28156 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28157
28158         * gst/matroska/matroska-demux.c:
28159         (gst_matroska_demux_parse_blockgroup):
28160           Fix possible crasher.
28161
28162 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28163
28164         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
28165         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
28166           Lace sizes can be zero.
28167
28168 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28169
28170         * ext/musepack/gstmusepackdec.cpp:
28171           Fetch error return values. Fixes #161624.
28172         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
28173           Really EOS.
28174
28175 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28176
28177         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
28178           Work for truncated (unfinished download etc.) files. Fixes #160514.
28179
28180 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28181
28182         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28183           Fix for integer overflow. Makes #156001 not crash. Probably masks
28184           the real bug.
28185
28186 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28187
28188         * gst/ac3parse/gstac3parse.c: (plugin_init):
28189           Parsers never have ranks. Fixes #159651.
28190
28191 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28192
28193         * gst/playback/gstdecodebin.c: (compare_ranks):
28194           make sure the facotries are ordered the same every time even if they
28195           have the same rank by using the name
28196         * gst/playback/gstdecodebin.c: (find_compatibles):
28197           make sure we don't add factories to the list twice
28198
28199 2004-12-16  David Schleef  <ds@schleef.org>
28200
28201         * configure.ac: look for musepack headers as musepack/*.h
28202         (fixes #159847)
28203         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
28204         * ext/musepack/gstmusepackreader.h: same
28205
28206 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28207
28208         * gst-libs/gst/riff/riff-read.c:
28209         (gst_riff_read_strf_auds_with_data):
28210           Read extradata correctly (fixes #155879).
28211
28212 2004-12-16  David Schleef  <ds@schleef.org>
28213
28214         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
28215         audio.  does _not_ attempt or allow conversion unless channels
28216         is 1 or 2.
28217
28218 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28219
28220         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
28221
28222 2004-12-16  David Schleef  <ds@schleef.org>
28223
28224         * gst/audioscale/gstaudioscale.c: the resample library only
28225         handles 1 or 2 channels.  Change caps to compensate.
28226
28227 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28228
28229         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
28230         (gst_matroska_demux_audio_caps):
28231           Some MPEG-AAC hacks, because else it doesn't work...
28232
28233 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28234
28235         * gst-libs/gst/riff/riff-media.c:
28236         (gst_riff_create_video_caps_with_data),
28237         (gst_riff_create_video_template_caps):
28238           Add h264.
28239
28240 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28241
28242         * gst-libs/gst/audio/Makefile.am:
28243           Try to fix buildbot.
28244
28245 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28246
28247         * gst/tcp/gstmultifdsink.c:
28248           Clean up and uniformize debugging.
28249
28250 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
28251
28252         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28253
28254         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
28255         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
28256         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
28257         (gst_mpeg_demux_change_state):
28258           Reset on ready. Fixes 160276.
28259
28260 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
28261
28262         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28263
28264         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28265         (gst_ffmpegcsp_pad_link):
28266           Fix memleak (#154815).
28267
28268 2004-12-16  James Bowes  <bowes@cs.dal.ca>
28269
28270         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28271
28272         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
28273         (gst_musicbrainz_init), (gst_musicbrainz_chain),
28274         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
28275         * ext/musicbrainz/gsttrm.h:
28276           Add support for using a proxy server when getting a trm id from
28277           the MusicBrainz database (#149613).
28278
28279 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
28280
28281         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28282
28283         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
28284         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
28285           Fix memleaks (#157233).
28286
28287 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
28288
28289         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28290
28291         * gst-libs/gst/resample/resample.c: (gst_resample_close):
28292         * gst-libs/gst/resample/resample.h:
28293         * gst/audioscale/gstaudioscale.c:
28294           Fix memleak (#159215).
28295
28296 2004-12-16  Toni Willberg  <toniw@iki.fi>
28297
28298         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28299
28300         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
28301         * sys/oss/oss_probe.c: (main):
28302           Check for mono/stereo support (similar to samplerate probing),
28303           fixes #159433. Also add missing copyright header to oss_probe.c.
28304
28305 2004-12-15  David Schleef  <ds@schleef.org>
28306
28307         * configure.ac: add audioresample and cairo plugins.  Remove
28308         HAVE_MMX stuff, because it's not used.
28309         * ext/Makefile.am: same
28310         * ext/audioresample/Makefile.am: You are not ready for an
28311         audio resampling element based on audioresample.
28312         * ext/audioresample/gstaudioresample.c:
28313         * ext/audioresample/gstaudioresample.h:
28314         * ext/cairo/Makefile.am: You are not ready for overlay elements
28315         based on cairo.  Don't look too closely, these elements kinda
28316         suck right now.
28317         * ext/cairo/gstcairo.c: new
28318         * ext/cairo/gsttextoverlay.c: new
28319         * ext/cairo/gsttextoverlay.h: new
28320         * ext/cairo/gsttimeoverlay.c: new
28321         * ext/cairo/gsttimeoverlay.h: new
28322         * gst-libs/gst/media-info/media-info-priv.h: fix compile
28323         problem with compilers that don't support variadic macros.
28324
28325 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
28326
28327         Reviewed by:  David Schleef  <ds@schleef.org>
28328
28329         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
28330         Bala, registering sunaudiosrc (oops!), and cleaning up code a
28331         bit.  Also ran indent-gst.
28332         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
28333         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
28334         (gst_sunaudiosrc_setparams):
28335
28336 2004-12-14  David Schleef  <ds@schleef.org>
28337
28338         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
28339         output rate to 16000.  Should fix #160235.
28340
28341 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28342
28343         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
28344         Add typefinding for mpeg2 pes streams
28345
28346 2004-12-13  David Schleef  <ds@schleef.org>
28347
28348         * configure.ac:  Applied patch from bug #143659, making default
28349         sources and sinks OS-dependent (for Solaris), and added code
28350         for OS/X.
28351         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
28352
28353 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28354
28355         * gst-libs/gst/riff/riff-media.c:
28356           forgot to add h2.64 to avidemux template caps
28357
28358 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28359
28360         * gst/wavenc/riff.h:
28361         * gst-libs/gst/riff/riff-media.c:
28362         * gst-libs/gst/riff/riff-ids.h:
28363         * gst/avi/gstavimux.c
28364         add 4CC code for VideoSoft h264 in AVI (VSSH)
28365           fixes bug #160655
28366         remove s323 from riff, it's quicktime specific :(
28367
28368 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28369
28370         * gst/asfdemux/README
28371         * gst/wavenc/riff.h
28372         * gst-libs/gst/riff/riff-ids.h
28373         * gst-libs/gst/riff/riff-media.c
28374         * gst/qtdemux/qtdemux.c:
28375           add new 4CC codes for h263 related codecs
28376           fixes partially bug #155163
28377
28378 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
28379
28380         * configure.ac: Update polyaudio requirement to 0.7
28381         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
28382
28383 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28384
28385         * gst/interleave/deinterleave.c:
28386         fix my name's spelling! :)
28387
28388 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28389
28390         * AUTHORS ChangeLog
28391         * gst/auparse/gstauparse.c
28392         * gst/interleave/deinterleave.c
28393         * gst/law/:
28394                 alaw-decode.c alaw-encode.c
28395                 mulaw-decode.c mulaw-encode.c
28396         * gst/oneton/gstoneton.c
28397         * sys/osxaudio/:
28398                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
28399         * sys/osxvideo/:
28400                 cocoawindow.h cocoawindow.m
28401                 osxvideosink.h osxvideosink.m
28402
28403         put the same mail address for Zaheer Abbas Merali everywhere
28404
28405 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28406
28407         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
28408           Align by packetsize, and assert that we a packet available before
28409           playing. The first makes webstreams work (they often include
28410           trailing padding data in a packet), the second allows pausing a
28411           ASF stream in totem without getting demux errors afterwards.
28412
28413 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28414
28415         * ext/ogg/gstoggdemux.c: (get_relative):
28416           Check for non-NULL before accessing member (end-of-chain).
28417
28418 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28419
28420         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
28421         (cdparanoia_set_property), (cdparanoia_get_property):
28422         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
28423         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
28424         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
28425         (dvdreadsrc_init), (dvdreadsrc_set_property),
28426         (dvdreadsrc_get_property):
28427         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
28428         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
28429           Synchronize property names where not yet the case. Devices are
28430           now device=X, other versions are deprecated (but still exist).
28431           Also use g_free() unconditionally.
28432         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28433         (setup_source), (gst_play_base_bin_get_property):
28434           Expose source.
28435
28436 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28437
28438         * configure.ac: move GCONF macro outside conditional for the am
28439           conditional. Fixes #160439
28440
28441 2004-12-08  David Schleef  <ds@schleef.org>
28442
28443         * tools/gst-visualise-m.m: Switch to elements that currently
28444         exist.
28445
28446 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28447
28448         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
28449           We love wrong commas.
28450
28451 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28452
28453         * gst/matroska/matroska-demux.c:
28454         (gst_matroska_demux_handle_src_query):
28455           Don't set DEFAULT, unsupported - makes length display incorrectly
28456           in some cases.
28457
28458 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28459
28460         * gst/monoscope/README: remove blurb about files being GPL
28461         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
28462         * gst/monoscope/monoscope.c: Change license to BSD with explanation
28463           monoscope is now effectively LGPL licensed
28464
28465 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28466
28467         * gst/monoscope/README: Update information to be more correct
28468         * gst/monoscope/convolve.c: Relicense to LGPL
28469         * gst/monoscope/convolve.h: Relicense to LGPL
28470
28471 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
28472
28473         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28474           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
28475         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
28476           set default_duration for mpeg1 audio
28477
28478 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28479
28480         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
28481         * ext/alsa/gstalsa.h:
28482           refactor big chunks of the core caps negotiation code to make it
28483           a lot faster, because people claim it's really slow
28484           (actually, just cache the getcaps when the device is opened)
28485
28486 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28487
28488         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
28489         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
28490         (gst_a52dec_handle_frame), (gst_a52dec_chain),
28491         (gst_a52dec_change_state), (plugin_init):
28492         * ext/a52dec/gsta52dec.h:
28493           Do something useful with timestamps. Make chain-based (since
28494           there's really no reason to be loopbased).
28495         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
28496           Update current_byte/frame correctly.
28497
28498 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28499
28500         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
28501         (gst_ape_demux_stream_init):
28502           Forward tags, too.
28503
28504 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28505
28506         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
28507           Let's make sure we're done typefinding when detecting tags.
28508
28509 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28510
28511         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
28512         (gst_ebml_read_init), (gst_ebml_read_use_event),
28513         (gst_ebml_read_element_id), (gst_ebml_peek_id),
28514         (gst_ebml_read_seek), (gst_ebml_read_skip),
28515         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
28516         (gst_ebml_read_master):
28517         * gst/matroska/ebml-read.h:
28518         * gst/matroska/matroska-demux.c:
28519         (gst_matroska_demux_parse_contents),
28520         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
28521           Disgustingly evil hack for working around INTERRUPT events and
28522           their extremely annoying habit of being a pain in the ass. We
28523           simply peek a cluster before reading any of it.
28524
28525 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28526
28527         * ext/musepack/gstmusepackdec.cpp:
28528           There's also floating point libmusepacks.
28529
28530 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28531
28532         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
28533         (gst_faad_chanpos_to_gst), (gst_faad_chain):
28534           Set DURATION even if source buffer didn't. Also use increasing
28535           timestamps.
28536         * gst-libs/gst/riff/riff-media.c:
28537         (gst_riff_create_audio_caps_with_data):
28538           Block_align can have larger values than 8192.
28539
28540 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28541
28542         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
28543         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
28544         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
28545         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
28546           Fix caps.
28547
28548 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28549
28550         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
28551           Fix logic bug.
28552
28553 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28554
28555         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
28556           Yay, another one.
28557
28558 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28559
28560         * ext/esd/esdsink.c: (gst_esdsink_chain):
28561           Make error actually say something useful (fixes #156798).
28562         * gst-libs/gst/riff/riff-media.c:
28563         (gst_riff_create_video_caps_with_data),
28564         (gst_riff_create_video_template_caps):
28565           Add Intel Video 5.0 fourcc (IV50).
28566
28567 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
28568
28569         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
28570         detection on mono and stereo mp3 files.
28571
28572 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28573
28574         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28575           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
28576           the contained stream).
28577
28578 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28579
28580         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
28581           Oops, remove debug.
28582
28583 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28584
28585         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28586
28587         * gst/law/alaw-decode.c: (alawdec_getcaps):
28588         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
28589           Prevent warnings when negotiating caps (fixes #159338).
28590
28591 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28592
28593         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28594         (gst_ffmpegcsp_chain):
28595           Remove old leftover that shouldn't be there...
28596
28597 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28598
28599         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28600
28601         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
28602           Don't forward DISCONT events (fixes #159684).
28603
28604 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28605
28606         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
28607           Unlink manually since sometimes bin disposal (and therefore
28608           pad unlinking) is delayed, which will cause a new media file
28609           to not be able to start playing instantly.
28610
28611 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28612
28613         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
28614           On mute of an unlinked stream, check for pad availability so
28615           we don't crash on unlinked pad.
28616
28617 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28618
28619         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28620         (gst_avi_demux_massage_index):
28621           Fix quite humiliating bug in omitting 0-sized index chunks but
28622           forgetting to count them for timestamps.
28623
28624 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28625
28626         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28627           Actually leave the loop if we failed to sync. Don't crash.
28628
28629 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28630
28631         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
28632         (gst_dvd_demux_process_private):
28633         * gst/mpegstream/gstdvddemux.h:
28634           Fix crash (#159759). Doesn't work, though. :-(.
28635
28636 2004-11-28  Benjamin Otte  <otte@gnome.org>
28637
28638         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28639           more overwriting protection due to modifying channels one by one
28640           instead of all at once
28641
28642 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28643
28644         * gst/audioconvert/gstchannelmix.c:
28645         (gst_audio_convert_fill_normalize):
28646           Normalize using absolute values.
28647
28648 2004-11-28  Julien MOUTTE  <julien@moutte.net>
28649
28650         * configure.ac:
28651         * ext/Makefile.am:
28652         * ext/directfb/Makefile.am:
28653         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
28654         (gst_directfbvideosink_get_pixel_format),
28655         (gst_directfbvideosink_get_format_from_fourcc),
28656         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
28657         (gst_directfbvideosink_sink_link),
28658         (gst_directfbvideosink_change_state),
28659         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
28660         (gst_directfbvideosink_buffer_alloc),
28661         (gst_directfbvideosink_interface_supported),
28662         (gst_directfbvideosink_interface_init),
28663         (gst_directfbvideosink_navigation_send_event),
28664         (gst_directfbvideosink_navigation_init),
28665         (gst_directfbvideosink_set_property),
28666         (gst_directfbvideosink_get_property),
28667         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
28668         (gst_directfbvideosink_base_init),
28669         (gst_directfbvideosink_class_init),
28670         (gst_directfbvideosink_get_type), (plugin_init):
28671         * ext/directfb/directfbvideosink.h: Adding a first version of
28672         directfbvideosink.
28673         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
28674         more.
28675
28676 2004-11-28  Benjamin Otte  <otte@gnome.org>
28677
28678         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28679           walk the samples backwards if out_channels > in_channels so we don't
28680           overwrite data
28681
28682 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28683
28684         * gst/audioconvert/Makefile.am:
28685         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
28686         (gst_audio_convert_link), (gst_audio_convert_change_state),
28687         (gst_audio_convert_channels):
28688         * gst/audioconvert/gstchannelmix.c:
28689         (gst_audio_convert_unset_matrix),
28690         (gst_audio_convert_fill_identical),
28691         (gst_audio_convert_fill_compatible),
28692         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
28693         (gst_audio_convert_fill_others),
28694         (gst_audio_convert_fill_normalize),
28695         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
28696         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
28697         * gst/audioconvert/gstchannelmix.h:
28698           Implement a channel mixer.
28699
28700 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
28701
28702         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
28703         * ext/alsa/gstalsa.h:
28704         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
28705         Make alsasink actually honor gst_element_set_clock and use that
28706         clock instead of its internal one.
28707
28708 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28709
28710         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
28711         (gst_play_base_bin_change_state): nullify source and decoder when
28712         going from READY to NULL so that we don't try to do weird stuff with
28713         them when going from NULL to READY
28714         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
28715         instead of g_object_unref
28716         (gen_video_element), (gen_audio_element): more refcounting fixes, now
28717         it should be correct
28718         (gst_play_bin_change_state): don't call remove_sinks if we are
28719         currently disposing the object
28720
28721 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28722
28723         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28724           Don't forget bass if it's there. Else left channel is silent...
28725
28726 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28727
28728         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
28729         (gst_a52dec_change_state):
28730           Don't do sample adjusting anymore, we use float audio now.
28731         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
28732           Don't fixate to non-existing properties.
28733
28734 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28735
28736         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
28737         (gst_a52dec_change_state):
28738           Advertise that we can do surround sound.
28739
28740 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28741
28742         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
28743           Add buffer-frames=0.
28744         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
28745         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
28746         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
28747         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
28748         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
28749         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
28750         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
28751         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
28752         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
28753         * ext/dvdread/dvdreadsrc.h:
28754           Add seeking, querying for bytes, sectors, title, angle and
28755           chapter. Handle multiple chapters. Relicense to LGPL because
28756           Billy agreed on that (thanks Billy!).
28757
28758 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28759
28760         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
28761         call parent dispose method
28762
28763 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
28764
28765         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
28766         (gst_audio_clock_get_internal_time):
28767         Fix active <-> inactive transitions: ensure time value always
28768         grows and avoid abrupt value changes.
28769
28770 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
28771
28772         * configure.ac:
28773         * gst/tta/Makefile.am:
28774         * gst/tta/crc32.h:
28775         * gst/tta/filters.h:
28776         * gst/tta/gsttta.c:
28777         * gst/tta/gstttadec.c:
28778         * gst/tta/gstttadec.h:
28779         * gst/tta/gstttaparse.c:
28780         * gst/tta/gstttaparse.h:
28781         * gst/tta/ttadec.h:
28782           added TTA parser and decoder
28783
28784 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28785
28786         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28787         (probe_triggered), (check_queue), (buffer_underrun),
28788         (buffer_running), (buffer_overrun), (gen_source_element),
28789         (setup_source):
28790         * gst/playback/gstplaybasebin.h:
28791           Implement buffering. Needs some more work.
28792
28793 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28794
28795         * ext/theora/theoradec.c: (theora_dec_chain):
28796           Fix ilog mask range overflow.
28797
28798 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28799
28800         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28801           Don't omit the last (which in case of dmix is the only :) )
28802           channel count. Don't set channels if <= 2.
28803
28804 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
28805
28806         * gst/playback/gstplaybin.c: (gen_video_element),
28807         (gen_audio_element): Removed 2 obsolete comments
28808
28809 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
28810
28811         * ext/vorbis/oggvorbisenc.c
28812         * ext/vorbis/vorbisenc.c :
28813           change description fields of those plugins to differentiate them
28814           (pitivi show Encoders by description, they had the same one)
28815
28816 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
28817
28818         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28819
28820         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
28821         (gst_play_bin_set_property), (gen_video_element),
28822         (gen_audio_element):
28823           Refcounting fixes for provided audio-/videosinks.
28824
28825 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28826
28827         * gst/playback/gstplaybin.c: (gen_video_element),
28828         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
28829           Don't reference all sinks, but only the video- and audiosinks.
28830           The vis. element should be disposed when we're done with it.
28831           We don't have any reason to keep it around. This fixes warnings
28832           when reusing playbin for playing multiple audio files with
28833           vis. enabled. Also release audio device on pause - idea stolen
28834           from Rhythmbox.
28835
28836 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28837
28838         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
28839         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
28840         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28841         * ext/alsa/gstalsaplugin.c: (plugin_init):
28842         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
28843         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
28844         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
28845         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
28846         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
28847         (gst_faad_change_state), (plugin_init):
28848         * ext/faad/gstfaad.h:
28849         * ext/vorbis/vorbis.c: (plugin_init):
28850         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28851         * gst-libs/gst/audio/Makefile.am:
28852         * gst-libs/gst/audio/audio.c: (plugin_init):
28853         * gst-libs/gst/audio/multichannel.c:
28854         (gst_audio_check_channel_positions),
28855         (gst_audio_get_channel_positions),
28856         (gst_audio_set_channel_positions),
28857         (gst_audio_set_structure_channel_positions_list),
28858         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
28859         (gst_audio_fixate_channel_positions):
28860         * gst-libs/gst/audio/multichannel.h:
28861         * gst-libs/gst/audio/testchannels.c: (main):
28862         * gst/audioconvert/gstaudioconvert.c:
28863         (gst_audio_convert_class_init), (gst_audio_convert_init),
28864         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
28865         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
28866         (gst_audio_convert_fixate), (gst_audio_convert_channels):
28867         * gst/audioconvert/plugin.c: (plugin_init):
28868           Surround sound support.
28869
28870 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28871
28872         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
28873           Fix position for discont if we're close as well. Nitpicking, but
28874           saves a few milliseconds of extra waiting or skipping.
28875
28876 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28877
28878         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
28879           We sometimes need parsers for playback, so add those too.
28880
28881 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28882
28883         * configure.ac:
28884         * gst/apetag/Makefile.am:
28885         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
28886         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
28887         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
28888         (gst_ape_demux_get_src_query_types),
28889         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
28890         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
28891         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
28892         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
28893         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
28894         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
28895         (gst_ape_demux_change_state):
28896         * gst/apetag/apedemux.h:
28897         * gst/apetag/apetag.c: (plugin_init):
28898         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
28899         (plugin_init):
28900           APE v1/2 tag reader plus typefind function.
28901
28902 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28903
28904         * configure.ac:
28905         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28906         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28907           Remove hacks for older core. Require newer core version
28908           accordingly.
28909
28910 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28911
28912         * gst/cdxaparse/Makefile.am:
28913         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
28914         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
28915         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
28916         * gst/cdxaparse/gstcdxaparse.h:
28917         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
28918         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
28919         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
28920         (gst_cdxastrip_get_src_query_types),
28921         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
28922         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
28923         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
28924         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
28925         * gst/cdxaparse/gstcdxastrip.h:
28926           SVCD/VCD header stripping separated from CDXA image parsing.
28927         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28928         (plugin_init):
28929           Add VCD/SVCD header typefinding for VCD/SVCD.
28930         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
28931         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
28932         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
28933         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
28934         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
28935         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
28936         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
28937         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
28938         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
28939         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
28940         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
28941         * sys/vcd/vcdsrc.h:
28942           Fix up, add seeking, querying, URI interface. Works in totem now.
28943
28944 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28945
28946         * configure.ac:
28947           back to CVS
28948
28949 === release 0.8.6 ===
28950
28951 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28952
28953         * NEWS:
28954         * RELEASE:
28955         * configure.ac:
28956         * po/af.po:
28957         * po/az.po:
28958         * po/cs.po:
28959         * po/en_GB.po:
28960         * po/hu.po:
28961         * po/it.po:
28962         * po/nb.po:
28963         * po/nl.po:
28964         * po/or.po:
28965         * po/sq.po:
28966         * po/sr.po:
28967         * po/sv.po:
28968         * po/uk.po:
28969           releasing 0.8.6, "IOU Love"
28970
28971 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28972
28973         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28974
28975         * gst/playback/gstplaybasebin.c:
28976           Fix unplayable files error handling.  Fixes #158365
28977
28978 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28979
28980         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28981
28982         * gst/typefind/gsttypefindfunctions.c:
28983           Fix broken mp3 typefinding.  Fixes #158375
28984
28985 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28986
28987         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28988
28989         * ext/ogg/gstoggdemux.c:
28990           Fix sync on broken files.  Fixes #158976
28991
28992 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28993
28994         patch by: Edward Hervey <bilboed@bilboed.com>
28995
28996         * ext/libpng/gstpngenc.c:
28997           Copy over buffer properties.  Fixes #158832
28998
28999 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29000
29001         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
29002
29003         * ext/dvdread/dvdreadsrc.c:
29004           Fixes invalid reads (#158462)
29005
29006 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29007
29008         * sys/v4l/gstv4lsrc.c:
29009         * sys/v4l/gstv4lsrc.h:
29010         * sys/v4l/v4lsrc_calls.c:
29011           Probe less and cache it.  Fixes #159187.
29012
29013 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29014
29015         * gst/videorate/gstvideorate.c:
29016           Handle all video formats. Fixes #159186.
29017
29018 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
29019         * gst/synaesthesia/gstsynaesthesia.c:
29020         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
29021         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
29022         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
29023         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
29024         (gst_synaesthesia_change_state), (plugin_init):
29025         Fix up synaesthesia to work under different samplerates/ buffer sizes.
29026         Force 320x200 output, as that's the only thing the underlying
29027         synaesthesia implementation supports. Still needs to be made
29028         re-entrant.
29029
29030 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29031
29032         * configure.ac:
29033           Fix mpeg2enc configure check (similar to mplex check below).
29034
29035 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
29036
29037         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29038
29039         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29040           Fix for gcc-2.95 (fixes #158221).
29041
29042 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29043
29044         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
29045           Re-add clock distribution hack (until new core is released).
29046           Fixes #158125.
29047
29048 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
29049         * configure.ac:
29050           fix mplex configure check segfaulting on some systems (bug #140994)
29051
29052 2004-11-13  Benjamin Otte  <otte@gnome.org>
29053
29054         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
29055           add debugging
29056         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29057           do a wait when we enter the loop func with no data available to
29058           write instead of getting into an 100% CPU loop by just returning and
29059           being called again by the scheduler
29060
29061 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
29062
29063         * configure.ac:
29064         * ext/libvisual/visual.c: (gst_visual_get_type),
29065         (libvisual_log_handler), (gst_visual_getcaps),
29066         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
29067         (plugin_init):
29068           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
29069         * ext/smoothwave/Makefile.am:
29070         * ext/smoothwave/demo-osssrc.c: (main):
29071         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
29072         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
29073         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
29074         (plugin_init):
29075         * ext/smoothwave/gstsmoothwave.h:
29076           Make gstsmoothwave a working element in the 20th century.
29077
29078         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
29079           Fix incorrect link function
29080
29081 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29082
29083         * gst/volume/gstvolume.c:
29084           Allow buffer-frames=0.
29085
29086 2004-11-12 Iain <iaingnome@gmail.com>
29087
29088         * configure.ac: Check for polypaudio
29089
29090         * ext/Makefile.am: Build the polyp dir
29091
29092         * ext/polyp: The polypsink sources.
29093
29094 2004-10-30 Iain <iaingnome@gmail.com>
29095
29096         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
29097         caps to reflect the new number of channels.
29098
29099 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29100
29101         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29102           Fix for negotiation order problem. This would show when the
29103           ALSA loopfuction was called before any other function. ALSA
29104           wouldn't do anything because we're not negotiated yet, leading
29105           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
29106
29107 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29108
29109         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29110
29111         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
29112           No warnings (#157986).
29113
29114 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29115
29116         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
29117           Prefer apev1/2 and id3v1 (at end of file) over musepack.
29118
29119 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29120
29121         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
29122           Signal no-more-pads (so it works in playbin).
29123
29124 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29125
29126         * ext/musepack/gstmusepackreader.cpp:
29127           Workaround for older core.
29128
29129 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29130
29131         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
29132           Actually test for odd width/height rather than testing whether
29133           a temporary variable that was 0 before we subtracted 1 is now
29134           not equal to zero (which it always is).
29135
29136 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29137
29138         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
29139         Fix compilation if HAVE_XVIDEO is not defined
29140
29141 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29142
29143         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
29144         Fix compilation if HAVE_XVIDEO is not defined
29145
29146 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
29147
29148         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
29149         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
29150         (gst_goom_change_state), (plugin_init):
29151         Use the bytestream adapter so goom doesn't depend on the input
29152         buffer size.
29153         Add a debug category
29154
29155 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29156
29157         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
29158           Only set hardware parameters *after* negotiation. Before
29159           negotiation, it will set ANY and that seems to cause crashes
29160           (see e.g. #151288, #153227).
29161
29162 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29163
29164         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
29165           This seems to be antique leftover. It needs to pass error
29166           checking.
29167         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
29168         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
29169         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
29170         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
29171           Fix GstXOverlay implementation (#151059).
29172
29173 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29174
29175         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
29176           Don't assert (#157853).
29177
29178 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29179
29180         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
29181           Fix bytes/samples confustion.
29182         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
29183           Fix for underrun (#144389).
29184
29185 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29186
29187         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
29188           Disable halfway-seek for pending release (since it needs a new
29189           core release).
29190
29191 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
29192
29193         * sys/v4l/gstv4lsrc.c:
29194         * sys/v4l/gstv4lsrc.h:
29195         * sys/v4l/v4lsrc_calls.c:
29196           add autoprobe-fps property so we can separate autoprobing parts
29197
29198 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
29199
29200         * sys/v4l/gstv4lsrc.c:
29201         * sys/v4l/v4lsrc_calls.c:
29202         initialise fourcc to catch unset fourcc's, and debug
29203
29204 2004-11-09  Wim Taymans  <wim@fluendo.com>
29205
29206         * gst/playback/README:
29207         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
29208         * gst/playback/gstplaybin.c: (gst_play_bin_init),
29209         (gst_play_bin_dispose), (gst_play_bin_set_property),
29210         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
29211         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
29212         (gst_play_bin_get_formats), (gst_play_bin_convert),
29213         (gst_play_bin_get_query_types), (gst_play_bin_query):
29214         Cleanups and some more documentation.
29215
29216 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
29217
29218         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
29219         (gst_cacasink_init), (gst_cacasink_chain):
29220         * ext/libcaca/gstcacasink.h:
29221         Cacasink inherits from VideoSink, so let that store the clock.
29222
29223 2004-11-09  Wim Taymans  <wim@fluendo.com>
29224
29225         * gst/playback/README:
29226         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
29227         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
29228         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
29229         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
29230         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
29231         (setup_sinks):
29232         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
29233         (gst_stream_info_is_mute), (gst_stream_info_set_property):
29234         * gst/playback/gststreaminfo.h:
29235         Updated README.
29236         Only switch groups if all streams have muted (EOSed).
29237         Send Tags in sync with the stream playback instead of in
29238         the playback/preroll phase.
29239         Some cleanups, free the fakesrc elements.
29240
29241 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29242
29243         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
29244           buffer-frames property was missing
29245         * ext/arts/gst_arts.c:
29246           rate missing from sinkcaps
29247         * ext/audiofile/gstafparse.c:
29248         * ext/audiofile/gstafsink.c:
29249         * ext/audiofile/gstafsrc.c:
29250         * ext/swfdec/gstswfdec.c:
29251           int audio doesn't know buffer-frames
29252         * ext/cdparanoia/gstcdparanoia.c:
29253           int audio doesn't know chunksize either
29254         * ext/nas/nassink.c:
29255           it's endianness, not endianess
29256         * gst-libs/gst/audio/audio.h:
29257           make float standard pad template caps really describe float
29258         * gst/law/mulaw.c: (linear_factory):
29259           signed only, please
29260         * gst/mpegstream/gstdvddemux.c:
29261           widths of 20 are not valid
29262
29263 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29264
29265         Submitted by: Luca Ferretti <elle.uca@infinito.it>
29266
29267         * po/LINGUAS:
29268         * po/it.po:
29269           Add Italian
29270
29271 2004-11-08  Wim Taymans  <wim@fluendo.com>
29272
29273         * gst/playback/README:
29274         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
29275         * gst/playback/gstplaybasebin.c: (probe_triggered),
29276         (gst_play_base_bin_change_state):
29277         Updated README, added more comments for fixmes etc..
29278
29279 2004-11-08  Wim Taymans  <wim@fluendo.com>
29280
29281         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
29282         We can remove this hack now.
29283
29284 2004-11-08  Wim Taymans  <wim@fluendo.com>
29285
29286         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
29287         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29288         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29289         Only mix AYUV for maximum quality.
29290
29291 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29292
29293         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
29294         (gst_ogg_demux_push), (gst_ogg_pad_push):
29295           Let's act as if we're synchronized now! :).
29296         * ext/theora/theoradec.c: (theora_dec_chain):
29297           Add some debug.
29298
29299 2004-11-08  Wim Taymans  <wim@fluendo.com>
29300
29301         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29302         (gst_alpha_set_property), (gst_alpha_sink_link),
29303         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
29304         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
29305         (gst_alpha_init_params), (gst_alpha_chain):
29306         Implement alpha functions for AYUV too, this increases
29307         accuracy quite a bit.
29308
29309 2004-11-08  Wim Taymans  <wim@fluendo.com>
29310
29311         * gst/ffmpegcolorspace/avcodec.h:
29312         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29313         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
29314         (gst_ffmpegcsp_avpicture_fill):
29315         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29316         (gst_ffmpegcsp_caps_remove_format_info):
29317         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29318         (shrink12), (img_get_alpha_info), (deinterlace_line),
29319         (deinterlace_line_inplace):
29320         * gst/ffmpegcolorspace/imgconvert_template.h:
29321         Added AYUV colorspace and handle RGBA a bit more respectful.
29322
29323 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29324
29325         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29326           Actually always send a discont (cornercase when resending the
29327           same serial-tagged chain twice).
29328
29329 2004-11-08  Julien MOUTTE  <julien@moutte.net>
29330
29331         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
29332         (gst_ximagesink_finalize):
29333         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
29334         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
29335
29336 2004-11-08  Wim Taymans  <wim@fluendo.com>
29337
29338         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
29339         Don't segfault on NULL data.
29340
29341 2004-11-08  Wim Taymans  <wim@fluendo.com>
29342
29343         * gst/playback/gstdecodebin.c: (unlinked):
29344         * gst/playback/gstplay-marshal.list:
29345         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
29346         (gst_play_base_bin_init), (group_create), (get_active_group),
29347         (get_building_group), (group_destroy), (group_commit),
29348         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
29349         (add_element_stream), (no_more_pads), (probe_triggered),
29350         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
29351         (state_change), (setup_source), (gst_play_base_bin_get_property),
29352         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
29353         (gst_play_base_bin_link_stream),
29354         (gst_play_base_bin_get_streaminfo):
29355         * gst/playback/gstplaybasebin.h:
29356         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
29357         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
29358         Add support for chained ogg files. Prepare for playlist
29359         support. This patch introduces the concept of pad groups, which
29360         together compose one playable media file.
29361
29362 2004-11-07  David Schleef  <ds@schleef.org>
29363
29364         * testsuite/gst-lint: Check for pad templates that aren't statically
29365         scoped.
29366
29367 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29368
29369         * configure.ac:
29370         * ext/Makefile.am:
29371         * ext/musepack/Makefile.am:
29372         * ext/musepack/gstmusepackdec.cpp:
29373         * ext/musepack/gstmusepackdec.h:
29374         * ext/musepack/gstmusepackreader.cpp:
29375         * ext/musepack/gstmusepackreader.h:
29376           Add musepack decoder.
29377         * ext/faad/gstfaad.c: (gst_faad_base_init):
29378           Make pad templates static.
29379         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29380         (plugin_init):
29381           Add musepack typefinder, make mp3 typefinding work halfway stream,
29382           which doesn't actually work yet because id3demux doesn't implement
29383           _get_length().
29384
29385 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29386
29387         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
29388         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
29389           Fix interrupt event handling (#144436).
29390
29391 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29392
29393         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
29394           Hide unused glory.
29395
29396 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29397
29398         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29399
29400         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
29401           Fix weird caps (#157548).
29402
29403 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29404
29405         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29406
29407         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
29408           Add missing NULL terminator (#157543).
29409
29410 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
29411
29412         * gst/tcp/gsttcp.h:
29413         * gst/tcp/gsttcpclientsink.c:
29414         * gst/tcp/gsttcpclientsrc.c:
29415         * gst/tcp/gsttcpserversink.c:
29416         * gst/tcp/gsttcpserversrc.c:
29417           ports can go up to 65535.  Move common defines to gsttcp.h
29418
29419 2004-11-05  Wim Taymans  <wim@fluendo.com>
29420
29421         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
29422         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
29423         Added two more colorspaces.
29424
29425 2004-11-05  Wim Taymans  <wim@fluendo.com>
29426
29427         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29428         (gst_ffmpegcsp_avpicture_fill):
29429         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29430         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
29431         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
29432         More stride fixes.
29433
29434 2004-11-05  Wim Taymans  <wim@fluendo.com>
29435
29436         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
29437         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
29438         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29439         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
29440         (gst_videomixer_loop):
29441         More stride fixes.
29442
29443 2004-11-05  Benjamin Otte  <otte@gnome.org>
29444
29445         * ext/mad/gstmad.c: (gst_mad_chain):
29446           don't overflow data buffer. Flush not needed sync data when syncing
29447           failed.
29448
29449 2004-11-04  Wim Taymans  <wim@fluendo.com>
29450
29451         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29452         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
29453         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
29454         (gst_alpha_init_params), (gst_alpha_chain),
29455         (gst_alpha_change_state):
29456         Updated the chroma keying algorithm with something more
29457         sophisticated.
29458
29459 2004-11-03  Wim Taymans  <wim@fluendo.com>
29460
29461         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29462         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29463         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29464         Fix stride issues. Does not completely work for odd
29465         heights.
29466
29467 2004-11-03  Wim Taymans  <wim@fluendo.com>
29468
29469         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29470         (gst_alpha_chroma_key), (gst_alpha_chain):
29471         Fix stride issues. Does not completely work for odd
29472         heights.
29473
29474 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
29475
29476         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29477         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
29478         leak fixes
29479
29480 2004-11-03  Wim Taymans  <wim@fluendo.com>
29481
29482         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29483         (gst_ffmpegcsp_avpicture_fill):
29484         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29485         (avpicture_alloc):
29486         * gst/ffmpegcolorspace/imgconvert_template.h:
29487         Use correct _fill function to get correct strides.
29488
29489 2004-11-02  David Schleef  <ds@schleef.org>
29490
29491         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
29492         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
29493         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
29494         Change all g_print()s to debugging.  Add a bunch of consistency
29495         checks.
29496
29497 2004-11-02  Wim Taymans  <wim@fluendo.com>
29498
29499         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29500         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
29501         (unlinked), (no_more_pads), (close_link):
29502         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
29503         (unknown_type), (add_element_stream), (new_decoded_pad),
29504         (removed_decoded_pad), (setup_source):
29505         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
29506         (gst_stream_info_class_init), (gst_stream_info_init),
29507         (gst_stream_info_new), (gst_stream_info_dispose),
29508         (stream_info_mute_pad), (gst_stream_info_set_property),
29509         (gst_stream_info_get_property):
29510         * gst/playback/gststreaminfo.h:
29511         Fix playback of multiple files.
29512         a slightly different approach to handling dynamic pad removals.
29513         This one only looks at pads that we have linked.
29514
29515 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
29516
29517         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
29518         free" warning from libc.
29519
29520 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29521
29522         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29523         (get_unconnected_element), (remove_starting_from), (pad_removed),
29524         (close_link):
29525           Implement support for dynamic pad changing. We listen to "live"
29526           pad removals (i.e. while playing) and re-setup autoplugging
29527           after that. Playbasebin/playbin need some more work for this
29528           to finally work, but decodebin supports (and replugs) chained
29529           ogg now.
29530
29531 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
29532
29533         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
29534         (gst_alsa_finalize):
29535         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
29536         (gst_cdaudio_finalize):
29537         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
29538         (cdparanoia_finalize):
29539         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
29540         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
29541         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
29542         (dvdreadsrc_finalize):
29543         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
29544         (gst_flacdec_finalize):
29545         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
29546         (gst_flacenc_finalize):
29547         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
29548         (gst_gnomevfssink_finalize):
29549         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
29550         (gst_gnomevfssrc_finalize):
29551         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
29552         (gst_fameenc_finalize):
29553         * ext/nas/nassink.c: (gst_nassink_class_init),
29554         (gst_nassink_finalize):
29555         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
29556         (gst_sdlvideosink_class_init):
29557         * ext/sndfile/gstsf.c: (gst_sf_dispose):
29558         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
29559         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
29560         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
29561         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
29562         (gst_x_window_listener_dispose):
29563         * gst/audioscale/gstaudioscale.c:
29564         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
29565         (play_on_demand_finalize):
29566         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
29567         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
29568         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
29569         (cdplayer_finalize):
29570         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
29571         (gst_glimagesink_class_init):
29572         * sys/oss/gstosselement.c: (gst_osselement_class_init),
29573         (gst_osselement_finalize):
29574         * sys/oss/gstosssink.c: (gst_osssink_dispose):
29575         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
29576         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
29577           Fixes a bunch of problems with finalize and dispose functions,
29578           either assumptions that dispose is only called once, or not calling
29579           the parent class dispose/finalize function
29580
29581 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
29582
29583         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
29584           added two api precondition guards
29585           use g_strdup with getenv to fix crash when using ENVVAR
29586
29587 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
29588         * ext/esd/esdsink.c: (gst_esdsink_class_init),
29589         (gst_esdsink_finalize):
29590         Use a finalize function, not dispose, and more importantly,
29591         call the parent class finalize function too
29592
29593 2004-11-01  Johan Dahlin  <johan@gnome.org>
29594
29595         * ext/ogg/gstoggdemux.c:
29596         * gst/tags/gstvorbistag.c:
29597         Plug leaks.
29598
29599 2004-10-31  Benjamin Otte  <otte@gnome.org>
29600
29601         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29602           lotsa memleaks today. But they're all small...
29603
29604 2004-10-31  Benjamin Otte  <otte@gnome.org>
29605
29606         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29607           another memleak crushed
29608
29609 2004-10-31  Benjamin Otte  <otte@gnome.org>
29610
29611         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
29612           fix memleak
29613
29614 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29615
29616         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29617           Hack to prevent crash when going to READY inside signal handler
29618           while this function is active.
29619
29620 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29621
29622         * gst/ffmpegcolorspace/Makefile.am:
29623         * gst/ffmpegcolorspace/avcodec.h:
29624         * gst/ffmpegcolorspace/common.h:
29625         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
29626         * gst/ffmpegcolorspace/dsputil.h:
29627         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
29628         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29629         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
29630         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
29631         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
29632         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
29633         (gst_ffmpegcsp_avpicture_fill):
29634         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
29635         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29636         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
29637         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
29638         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
29639         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
29640         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
29641         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
29642         * gst/ffmpegcolorspace/imgconvert.c:
29643         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
29644         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
29645         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
29646         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
29647         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
29648         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
29649         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
29650         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
29651         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
29652         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
29653         (grow21), (grow22), (grow41), (grow44), (conv411),
29654         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
29655         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
29656         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
29657         (avpicture_free), (is_yuv_planar), (img_convert),
29658         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
29659         (deinterlace_line_inplace), (deinterlace_bottom_field),
29660         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
29661         * gst/ffmpegcolorspace/imgconvert_template.h:
29662         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
29663         * gst/ffmpegcolorspace/mmx.h:
29664         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
29665         (av_fast_realloc), (av_mallocz_static), (av_free_static),
29666         (av_freep), (avcodec_get_context_defaults),
29667         (avcodec_alloc_context), (avcodec_init):
29668           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
29669           handling plus update from ffmpeg CVS. Large clean-up.
29670
29671 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29672
29673         * gst/playback/Makefile.am:
29674           We need the marshallers for decodebin, too.
29675
29676 2004-10-30  David Schleef  <ds@schleef.org>
29677
29678         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
29679           quicktime typefinding work with 64-bit offsets.
29680
29681 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
29682
29683         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
29684           Set EOS on the element when processing an EOS event.
29685         * ext/speex/gstspeexdec.h:
29686         * ext/speex/gstspeexenc.h:
29687           Only keep a const ptr to the mode
29688         * gst-libs/gst/riff/riff-media.c:
29689         (gst_riff_create_audio_caps_with_data),
29690         (gst_riff_create_audio_template_caps):
29691           Allow WMAV3, with up to 6 channels.
29692         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
29693           Don't call gst_pad_set_event_function on a sink pad.
29694         * gst/mpegstream/gstdvddemux.c:
29695         (gst_dvd_demux_get_subpicture_stream),
29696         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
29697           Copy the explicit caps that were set across to the cur_* pads,
29698           instead of trying to use a possibly non-existent negotiated caps.
29699           Reset the type of subpicture pads to UNKNOWN after calling
29700           init_stream, so that the caps get set.
29701
29702 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
29703
29704         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29705
29706         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29707           Don't touch buffer if it is of size 0 (fixes #151064).
29708
29709 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29710
29711         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
29712           Synchronized discont handling.
29713
29714 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29715
29716         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29717         (gst_ogg_demux_push):
29718           Make seeking sort-of exact again (fixes #156387).
29719
29720 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29721
29722         * gst/playback/gstplaybasebin.c: (unknown_type),
29723         (add_element_stream), (new_decoded_pad),
29724         (gst_play_base_bin_change_state):
29725         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
29726         (gst_stream_info_init), (gst_stream_info_new),
29727         (gst_stream_info_dispose), (gst_stream_info_get_property):
29728         * gst/playback/gststreaminfo.h:
29729           Make caps explicitely available. Makes testing for unsupported
29730           types possible. Improves error reporting.
29731
29732 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29733
29734         * gst/audioconvert/gstaudioconvert.c:
29735         (gst_audio_convert_buffer_to_default_format):
29736           Really don't touch read-only buffers (#156563).
29737
29738 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
29739
29740         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29741
29742         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29743           Fix memleak (#155223).
29744
29745 2004-10-29  Wim Taymans  <wim@fluendo.com>
29746
29747         * gst/tcp/.cvsignore:
29748         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
29749         (gst_multifdsink_class_init), (gst_multifdsink_init),
29750         (gst_multifdsink_add), (gst_multifdsink_remove),
29751         (gst_multifdsink_remove_client_link), (is_sync_frame),
29752         (gst_multifdsink_new_client),
29753         (gst_multifdsink_handle_client_write),
29754         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29755         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
29756         (gst_multifdsink_get_property):
29757         * gst/tcp/gstmultifdsink.h:
29758         Added burst on connect sync_method, deprecated sync_clients,
29759         streamlined the sync code some more.
29760
29761 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29762
29763         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
29764         (gst_play_base_bin_change_state):
29765           Improve error reporting.
29766
29767 2004-10-28  Wim Taymans  <wim@fluendo.com>
29768
29769         * gst/tcp/Makefile.am:
29770         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
29771         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
29772         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
29773         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
29774         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
29775         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
29776         (gst_fdset_wait):
29777         Added more locks around fdset structures. Fixed/reworked
29778         the poll array resizing code.
29779         Added stress test for fdset.
29780
29781 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29782
29783         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29784         fix build
29785
29786 2004-10-28  Benjamin Otte  <otte@gnome.org>
29787
29788         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29789           fix link function to always query channels and query width for
29790           floats
29791         * configure.ac:
29792           add equalizer dir
29793         * gst/equalizer/Makefile.am:
29794         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
29795         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
29796         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
29797         (arg_to_scale), (setup_filter),
29798         (gst_iir_equalizer_compute_frequencies),
29799         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
29800         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
29801         (plugin_init):
29802           add an equalizer
29803
29804 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29805
29806         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
29807
29808         * po/LINGUAS:
29809         * po/nb.po:
29810           Added Norwegian Bokmaal translation
29811
29812 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29813
29814         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29815           Don't break on options (fixes #156488).
29816
29817 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29818
29819         * configure.ac:
29820         * ext/cdaudio/Makefile.am:
29821         * sys/Makefile.am:
29822           fix build on older automake
29823
29824 2004-10-26  Wim Taymans  <wim@fluendo.com>
29825
29826         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29827         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29828         Allow a little margin when negotiating the framerate.
29829
29830 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
29831
29832         * gst/level/gstlevel.c:
29833           synchonised naming of pads and pad-templates
29834
29835 2004-10-26  Wim Taymans  <wim@fluendo.com>
29836
29837         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29838         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
29839         (_find_streams_check), (gst_ogg_demux_push):
29840         Fix EOS again. Needs to be done in a better way. We should not
29841         remove the pad if there is no new chained stream.
29842
29843 2004-10-26 Iain <iaingnome@gmail.com>
29844
29845         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
29846         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
29847         of the caps.
29848         * gst/interleave/interleave.c (interleave_class_init): Hook up release
29849         pad.
29850         (interleave_release_pad): Remove the pad.
29851         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
29852         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
29853         the set device.
29854         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
29855         attrs
29856         (gst_xvimagesink_xcontext_clear): Free the xcontext.
29857         (gst_xvimagesink_finalize): Free the par.
29858
29859 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29860
29861         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
29862         (gst_avimux_stop_file):
29863           First calculate the rate, and only then use it. Hdr.rate is a
29864           multiple and not a derivative of hdr.scale. Scale is not the
29865           same as blockalign but is solely related to rate.
29866
29867 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29868
29869         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
29870         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
29871           Implement seeking.
29872
29873 2004-10-25  James Henstridge  <james@jamesh.id.au>
29874
29875         Reviewed by:  David Schleef  <ds@schleef.org>
29876
29877         * examples/gstplay/player.c: (got_stream_length), (main):
29878         * examples/seeking/cdplayer.c: (update_scale):
29879         * examples/seeking/seek.c: (format_value), (update_scale):
29880         * examples/seeking/spider_seek.c: (format_value), (update_scale),
29881         (stop_seek):
29882         Build fixes on AMD64.
29883
29884 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29885
29886         reviewed by: Ronald Bultje <rbultje at gnome dot org>
29887
29888         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
29889         Fix for some v4l cards which hang in v4lsrc
29890
29891 2004-10-25  Wim Taymans  <wim@fluendo.com>
29892
29893         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
29894         (gst_ogg_demux_push), (gst_ogg_chains_clear):
29895         Make sure to remove the pad when a new chain is
29896         encountered. Set some vars to NULL so we don't try
29897         to reference freed memory.
29898
29899 2004-10-25  Wim Taymans  <wim@fluendo.com>
29900
29901         * examples/seeking/Makefile.am:
29902         * examples/seeking/cdplayer.c: (update_scale):
29903         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
29904         * examples/seeking/playbin.c: (make_playerbin_pipeline),
29905         (format_value), (update_scale), (iterate), (start_seek),
29906         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
29907         (print_usage), (main):
29908         Added some more examples, update others.
29909
29910 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29911
29912         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
29913         * ext/speex/gstspeexdec.c: (speex_dec_chain):
29914         * ext/theora/theoradec.c: (theora_dec_chain):
29915         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29916           Add codec-name metadata.
29917
29918 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
29919
29920         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29921
29922         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29923         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29924         * ext/alsa/gstalsamixertrack.h:
29925         * po/POTFILES.in:
29926           ALSA mixer track label internationalization (#154054).
29927
29928 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29929
29930         * ext/theora/theoradec.c: (theora_dec_chain):
29931           Export bitrate as metadata.
29932
29933 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29934
29935         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29936         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29937         * ext/alsa/gstalsamixertrack.h:
29938           Fix names, fix loop.
29939
29940 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29941
29942         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
29943         (speex_dec_convert):
29944           sinkconvert function so oggdemux can get the file length (totem).
29945
29946 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
29947
29948         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29949
29950         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29951           Don't push incomplete packets.
29952         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
29953           Fix MPEG-4 audio typefinding.
29954
29955 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29956
29957         * sys/v4l/Makefile.am:
29958         * sys/v4l/gstv4l.c: (plugin_init):
29959         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
29960         (gst_v4lelement_init), (gst_v4lelement_dispose),
29961         (gst_v4lelement_change_state):
29962         * sys/v4l/gstv4lelement.h:
29963         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
29964         (gst_v4l_xoverlay_close), (idle_refresh),
29965         (gst_v4l_xoverlay_set_xwindow_id):
29966         * sys/v4l/gstv4lxoverlay.h:
29967         * sys/v4l/v4l-overlay_calls.c:
29968         * sys/v4l/v4l_calls.h:
29969         * sys/v4l2/Makefile.am:
29970         * sys/v4l2/gstv4l2.c: (plugin_init):
29971         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
29972         (gst_v4l2element_init), (gst_v4l2element_dispose),
29973         (gst_v4l2element_change_state):
29974         * sys/v4l2/gstv4l2element.h:
29975         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
29976         (gst_v4l2_xoverlay_close), (idle_refresh),
29977         (gst_v4l2_xoverlay_set_xwindow_id):
29978         * sys/v4l2/gstv4l2xoverlay.h:
29979         * sys/v4l2/v4l2-overlay_calls.c:
29980         * sys/v4l2/v4l2_calls.h:
29981           Remove client-side overlay handling, use the X-server v4l plugin
29982           for that. Nicer overlay, less code. Also make the plugin
29983           compileable without X (but then without overlay, obviously).
29984           Makes xwindowlistener obsolete, should we remove that?
29985
29986 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29987
29988         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
29989         (gst_osssrc_src_query):
29990         * sys/oss/gstosssrc.h:
29991           OK, so people want offset in DEFAULT. This time, actually fix all
29992           cases.
29993         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
29994           Add FPS properly.
29995
29996 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29997
29998         * gst/asfdemux/gstasfmux.c:
29999         * gst/avi/gstavimux.c:
30000           Framerate.
30001
30002 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30003
30004         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
30005           Fix properties (channel, norm, frequency).
30006
30007 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30008
30009         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
30010           Flag typo.
30011         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
30012           No warnings.
30013
30014 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30015
30016         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
30017           Fix hang.
30018
30019 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30020
30021         * sys/v4l2/gstv4l2element.h:
30022           Yet Another Hack (tm) for kernel header borkedness.
30023         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
30024         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
30025         (gst_v4l2src_link), (gst_v4l2src_getcaps),
30026         (gst_v4l2src_change_state):
30027         * sys/v4l2/gstv4l2src.h:
30028         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
30029         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
30030           Fix caps, keep track of state, work.
30031
30032 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30033
30034         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
30035           Quiet.
30036
30037 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30038
30039         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30040           Don't mix bytes and samples.
30041
30042 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30043
30044         * ext/ogg/gstoggmux.c:
30045           Basic pad template which accepts OGM tracks, speex, flac, vorbis
30046           and theora. Any is incorrect.
30047         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
30048           Fix caps.
30049         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
30050         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
30051         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
30052         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
30053         * sys/v4l/gstv4lmjpegsrc.h:
30054         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
30055         (gst_v4lsrc_change_state):
30056         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
30057         (gst_v4lmjpegsrc_capture_stop):
30058           Fix caps. Keep track of internal state. Work.
30059
30060 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30061
30062         * ext/Makefile.am:
30063           Fix the build fixes.
30064
30065 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30066
30067         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30068         (gst_ogg_demux_src_event), (_find_chain_seek),
30069         (gst_ogg_pad_push):
30070           Check for pad availability before using it.
30071         * ext/ogg/gstoggdemux.c: (_find_chain_process):
30072           Fix parsing of chained ogg. Needs more work on the decoder side.
30073
30074 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30075
30076         * gst/spectrum/Makefile.am:
30077         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
30078         (idle_func):
30079           Fix demo and reenable it. Yes, I'm currently playing with audio
30080           analysis tools
30081
30082 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30083
30084         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30085           We love it if files that start at zero work too...
30086
30087 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30088
30089         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30090           Handle files with missing EOS headers.
30091
30092 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30093
30094         * gst/tcp/gsttcpserversink.c:
30095         (gst_tcpserversink_handle_server_read),
30096         (gst_tcpserversink_init_send):
30097         Zero some variables first (need for accept not to return EINVAL)
30098
30099 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30100
30101         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30102         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
30103         * ext/theora/theoradec.c: (theora_dec_sink_convert),
30104         (theora_dec_chain):
30105         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
30106         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
30107           Seeking and querying finetune.
30108
30109 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30110
30111         * configure.ac:
30112         * ext/Makefile.am:
30113         * ext/raw1394/Makefile.am:
30114           fix the build
30115
30116 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30117
30118         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30119           Wrong return.
30120         * gst/playback/Makefile.am:
30121         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
30122         * gst/playback/gstplay-marshal.list:
30123         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
30124           Fix marshallers.
30125
30126 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30127
30128         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
30129           Silence.
30130
30131 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30132
30133         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30134         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
30135         (gst_ogg_pad_push):
30136           Yay for non-lineair granulepos in theora.
30137
30138 2004-10-18  Wim Taymans  <wim@fluendo.com>
30139
30140         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
30141         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
30142         * ext/dv/gstdvdec.h:
30143         Make sure we renegotiate aspect ratio when the camera switches.
30144
30145 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30146
30147         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30148         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
30149           Start at zero.
30150         * ext/theora/theoradec.c: (theora_dec_chain):
30151           Skip headers. Bad idea for chained ogg, but fixes seeking.
30152
30153 2004-10-18  Wim Taymans  <wim@fluendo.com>
30154
30155         * configure.ac:
30156         I swear, this is the last time I touch this.
30157
30158 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30159
30160         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30161         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
30162         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
30163           Faster seeking.
30164         * ext/theora/theoradec.c: (theora_dec_sink_convert):
30165           Time-to-default conversion.
30166         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
30167           Don't error on unknown packets, just skip. We should probably
30168           read them if we want to support chained ogg.
30169
30170 2004-10-18  Wim Taymans  <wim@fluendo.com>
30171
30172         * configure.ac:
30173         Added cdaudio to wrong list.
30174
30175 2004-10-18  Wim Taymans  <wim@fluendo.com>
30176
30177         * configure.ac:
30178         Revive cdaudio.
30179
30180 2004-10-18  Wim Taymans  <wim@fluendo.com>
30181
30182         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
30183         (gst_dvdec_video_link), (gst_dvdec_push):
30184         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
30185         (gst_smokeenc_resync), (gst_smokeenc_chain):
30186         Fix mimetype on smoke encoder.
30187         Add aspect ratio to dvdec. Not sure if these
30188         values are correct though....
30189
30190 2004-10-18  Wim Taymans  <wim@fluendo.com>
30191
30192         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
30193         Fix vorbis property descriptions and ranges.
30194
30195 2004-10-18  Wim Taymans  <wim@fluendo.com>
30196
30197         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30198         Really do nothing when no data is available.
30199         Go to the playing state when the stream is not seekable
30200         instead of failing.
30201
30202 2004-10-18  Wim Taymans  <wim@fluendo.com>
30203
30204         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
30205         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
30206         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
30207         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
30208         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
30209         Added uri handler for cd://
30210         Port to new API.
30211
30212 2004-10-18  Wim Taymans  <wim@fluendo.com>
30213
30214         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
30215         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30216         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30217         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
30218         (remove_prerolls), (unknown_type), (add_element_stream),
30219         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
30220         (gst_play_base_bin_remove_element),
30221         (gst_play_base_bin_link_stream):
30222         * gst/playback/gstplaybin.c: (gen_video_element),
30223         (gen_vis_element), (remove_sinks), (setup_sinks):
30224         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30225         (gst_stream_info_get_type), (gst_stream_info_class_init),
30226         (gst_stream_info_init), (gst_stream_info_new),
30227         (gst_stream_info_dispose), (stream_info_mute_pad),
30228         (gst_stream_info_set_property), (gst_stream_info_get_property):
30229         * gst/playback/gststreaminfo.h:
30230         Add sink padtemplate to decodebin.
30231         Added some more comments.
30232         Make queue size configurable in playbasebin.
30233         Added possibility to use elements as sinks (ex cdaudio).
30234
30235 2004-10-15  Wim Taymans  <wim@fluendo.com>
30236
30237         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
30238         (gst_speexenc_chain):
30239         Fix speex timestamps so that it gets muxed properly.
30240
30241 2004-10-15  Wim Taymans  <wim@fluendo.com>
30242
30243         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
30244         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
30245         (gst_dv1394src_init), (gst_dv1394src_dispose),
30246         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
30247         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
30248         (gst_dv1394src_event), (gst_dv1394src_get_formats),
30249         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
30250         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
30251         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
30252         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
30253         * ext/raw1394/gstdv1394src.h:
30254         Added conversion/query functions.
30255         Update buffer timestamps,
30256         Added signals.
30257         Added uri dv:// so it might play from the firewire in playbin.
30258         Fix a possible leak.
30259         Added debugging.
30260
30261 2004-10-15  Wim Taymans  <wim@fluendo.com>
30262
30263         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
30264         (gst_dv1394src_init), (gst_dv1394src_set_property),
30265         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
30266         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
30267         * ext/raw1394/gstdv1394src.h:
30268         Added AV/C VTR control support needed for some cameras.
30269         Added automatic port detection.
30270         Added properties for selecting the channel.
30271         The configure.ac script is not yet updated to reflect the
30272         new libavc1394 and librom1394 dependencies.
30273
30274 2004-10-15  Wim Taymans  <wim@fluendo.com>
30275
30276         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30277         (qtdemux_parse), (gst_qtdemux_handle_esds):
30278         An esds box is not a container.
30279         Fix parsing of mp4v boxes.
30280         Do not try to renegotiate fps for each frame. Need to
30281         find a better method. This should fix mp4 playback.
30282
30283 2004-10-14  David Schleef  <ds@schleef.org>
30284
30285         * configure.ac: update for swfdec-0.3 and liboil-0.2
30286         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
30287         * ext/swfdec/gstswfdec.h: same
30288         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
30289         * gst/videotestsrc/videotestsrc.c: same
30290
30291 2004-10-14  Wim Taymans  <wim@fluendo.com>
30292
30293         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30294         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
30295         (is_sync_frame), (gst_multifdsink_new_client),
30296         (gst_multifdsink_handle_client_write),
30297         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30298         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
30299         Turn warnings into info.
30300         Don't allow a state change in the streaming thread.
30301
30302 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
30303
30304         * ext/vorbis/oggvorbisenc.c:
30305         * ext/vorbis/vorbisdec.c:
30306           fix template sample rate
30307
30308 2004-10-13  Wim Taymans  <wim@fluendo.com>
30309
30310         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
30311         Decoding the header first fixes some problems in resyncing
30312         in more mp3s.
30313
30314 2004-10-12  Wim Taymans  <wim@fluendo.com>
30315
30316         * gst/playback/gstplaybin.c: (gen_video_element),
30317         (gen_vis_element), (remove_sinks), (setup_sinks):
30318         Added vis plugin support, need to configure the vis
30319         element to activate it.
30320
30321 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30322
30323         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
30324         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
30325           Some debug.
30326         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30327         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
30328         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
30329         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
30330         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30331         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
30332         * gst/avi/gstavidemux.h:
30333           Support for openDML-2.0 indx/ix## chunks. Support for broken index
30334           recovery (where, if part of the index is broken, we will still read
30335           the rest of the index and recover the broken part by stream
30336           scanning). More broken media support. EOS workarounds. General AVI
30337           braindamage headache recovery. Aspirin included.
30338
30339 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30340
30341         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
30342         (cdparanoia_event), (cdparanoia_query):
30343           Get rid of hideous lead-in.
30344
30345 2004-10-11  Wim Taymans  <wim@fluendo.com>
30346
30347         * gst/playback/gstplaybasebin.c: (setup_source):
30348         Wrong var used to get g_list_next.
30349
30350 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30351
30352         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
30353         (cdparanoia_get), (cdparanoia_open):
30354           Report discid as metadata, add duration.
30355
30356 2004-10-11  Wim Taymans  <wim@fluendo.com>
30357
30358         * gst/playback/gstplaybasebin.c: (setup_source):
30359         Cleanup the previous pipeline a little earlier for the
30360         case that a source element provides raw data.
30361
30362 2004-10-11  Benjamin Otte  <otte@gnome.org>
30363
30364         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
30365           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
30366           consuming the last 128 bytes, even though it was valid mp3 data.
30367
30368 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30369
30370         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30371         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
30372         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30373         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
30374
30375 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30376
30377         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
30378         Fix for webcams that support only specific width or height
30379
30380 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30381
30382         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30383
30384         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
30385           Fix wrong discont event setup (fixes #154967).
30386
30387 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
30388
30389         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30390
30391         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30392           Error out on invalid data (fixes #154807).
30393
30394 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30395
30396         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30397
30398         * ext/dvdread/dvdreadsrc.c: (_read):
30399           Make titles > 0 work again (fixes #154834).
30400
30401 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30402
30403         * gst-libs/gst/riff/riff-media.c:
30404         (gst_riff_create_video_template_caps):
30405           WMV3 missing in template caps.
30406
30407 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30408
30409         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30410           OK, so the original code was too strict. It makes random AVI files
30411           hang for seconds upon opening, which is unacceptable and is far
30412           beyond the original goal of getting multiple chunks for one-chunk
30413           sounc stream files. So now do just that.
30414
30415 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30416
30417         * gst/playback/gstplaybasebin.c: (setup_source),
30418         (gst_play_base_bin_change_state):
30419           Actually clean up streaminfo if output fails. This would trigger
30420           if, for example, there was no CD in the drive. No preroll, so
30421           a streaminfo structure is created, but the subsequent state change
30422           of the thread fails.
30423         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
30424           Don't change state if parent failed.
30425
30426 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30427
30428         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
30429         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
30430         (gen_video_element), (remove_sinks):
30431           Add small bits of code for screenshot handling.
30432
30433 2004-10-08  Wim Taymans  <wim@fluendo.com>
30434
30435         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
30436         (gen_video_element), (gen_audio_element), (setup_sinks):
30437         Don't assume the user provided sinks are named "sink"...
30438
30439 2004-10-08  Wim Taymans  <wim@fluendo.com>
30440
30441         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
30442         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
30443         (gst_play_base_bin_link_stream):
30444         Do not try to autoplug sources that generate raw streams like
30445         cdparanoia.
30446         disconnect the preroll overrun signal when we don't need it anymore.
30447
30448 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
30449
30450         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30451         Added reworked patch from #154903 from milosz derezynski (deadchip).
30452
30453 2004-10-08  Wim Taymans  <wim@fluendo.com>
30454
30455         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30456         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
30457         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
30458         (cdparanoia_convert), (cdparanoia_uri_get_type),
30459         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
30460         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
30461         * ext/cdparanoia/gstcdparanoia.h:
30462         This adds the cdda://<tracknum> uri.
30463
30464 2004-10-08  Wim Taymans  <wim@fluendo.com>
30465
30466         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
30467         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30468         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30469         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
30470         (unknown_type), (gst_play_base_bin_remove_element),
30471         (gst_play_base_bin_link_stream):
30472         * gst/playback/gstplaybasebin.h:
30473         * gst/playback/gstplaybin.c: (gst_play_bin_init),
30474         (gst_play_bin_set_property), (gen_video_element),
30475         (gen_audio_element), (setup_sinks):
30476         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30477         (gst_stream_info_get_type), (gst_stream_info_class_init),
30478         (gst_stream_info_init), (gst_stream_info_new),
30479         (gst_stream_info_dispose), (stream_info_mute_pad),
30480         (gst_stream_info_set_property), (gst_stream_info_get_property):
30481         * gst/playback/gststreaminfo.h:
30482         Reuse the audio and video bins.
30483         Some internal cleanups in the stream selection code.
30484
30485 2004-10-08  Julien MOUTTE  <julien@moutte.net>
30486
30487         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30488         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30489         * sys/ximage/ximagesink.h:
30490         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30491         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30492         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
30493         not coming from those elements. Moreover these elements should not keep
30494         the xid they have been given when in NULL state.
30495
30496 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30497
30498         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30499         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30500         * sys/ximage/ximagesink.h:
30501         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30502         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30503         * sys/xvimage/xvimagesink.h:
30504           Actually only create a new toplevel window if we're not gonna
30505           embed it right after.
30506
30507 2004-10-07  Wim Taymans  <wim@fluendo.com>
30508
30509         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
30510         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
30511         * gst/playback/gstplaybin.c: (setup_sinks):
30512         Implement muting/unmuting of streams, mute streams that are not
30513         used.
30514
30515 2004-10-07  Wim Taymans  <wim@fluendo.com>
30516
30517         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
30518         (plugin_init):
30519         Added lame audio/x-ac3 typefind function.
30520
30521 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30522
30523         * configure.ac:
30524           bump nano to cvs
30525
30526 === release 0.8.5 ===
30527
30528 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30529
30530         * NEWS:
30531         * RELEASE:
30532         * configure.ac:
30533           releasing 0.8.5, "Take You On"
30534
30535 2004-10-06  Wim Taymans  <wim@fluendo.com>
30536
30537         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30538         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
30539         (no_more_pads), (close_link), (type_found):
30540         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30541         * gst/playback/gstplaybin.c: (gen_video_element):
30542         Do not signal the no_more_pads after the first pad when
30543         we are plugging a non dynamic element with multiple
30544         output pads (like swfdec, dvdec, ...).
30545
30546 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30547
30548         * configure.ac:
30549           bump for prerelease
30550
30551 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30552
30553         * gst/wavparse/gstwavparse.c:
30554           add ATRAC3 to STATIC CAPS to fix a warning
30555
30556         * gst/matroska/ebml-read.c:
30557         * gst-libs/gst/riff/riff-read.c:
30558           fix typos
30559
30560 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30561
30562         * gst-libs/gst/riff/riff-media.c:
30563           generate caps for ATRAC3 audio streams
30564
30565         * gst/realmedia/rmdemux.c:
30566           generate caps for ATRAC3 audio streams
30567
30568 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30569
30570         * gst/wavparse/Makefile.am
30571         * gst/wavparse/riff.h
30572         * gst/wavparse/wavparse.vcproj
30573           riff.h removal (unused and duplication with riff-ids.h)
30574
30575 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30576
30577         * gst/wavparse/gstwavparse.h
30578           remove duplicated defines for audio codec codes
30579
30580         * gst-libs/gst/riff/riff-ids.h
30581         * gst/wavenc/riff.h:
30582           add "4CC" code for ATRAC3 audio streams
30583           add "4CC" code for ITU_G721_ADPCM (unused for now)
30584
30585 2004-10-06  Wim Taymans  <wim@fluendo.com>
30586
30587         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
30588         Actually _do_ negotiation. Pass gdouble as arg instead
30589         of guint64 for the framerate.
30590
30591 2004-10-06  Wim Taymans  <wim@fluendo.com>
30592
30593         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30594         (find_compatibles), (close_pad_link), (try_to_link_1),
30595         (no_more_pads), (close_link), (type_found):
30596         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30597         * gst/playback/gstplaybin.c: (gen_video_element),
30598         (gen_audio_element):
30599         Set state on newly added element to READY so that negotiation
30600         can happen ASAP.
30601         Addes some more debug info.
30602         Do not try to plug pads with multiple caps structures or ANY
30603         because it is too dangerous since we do not do dynamic
30604         replugging.
30605
30606 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30607
30608         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
30609
30610         * po/LINGUAS:
30611         * po/or.po:
30612           add Oriya translation
30613
30614 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30615
30616         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30617           Prevent overwrite of size member. Makes audio sound crappy.
30618
30619 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30620
30621         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
30622         Add rmvb to the list of known RealMedia extensions
30623
30624 2004-10-05  Wim Taymans  <wim@fluendo.com>
30625
30626         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
30627         (mngdec_openstream), (mngdec_closestream),
30628         (mngdec_handle_sink_event), (mngdec_readdata),
30629         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
30630         (mngdec_getcanvasline), (mngdec_refresh),
30631         (gst_mngdec_change_state):
30632         Set the framerate correctly.
30633
30634 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30635
30636         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30637           There was something wrong with the index massaging.
30638
30639 2004-10-04  Wim Taymans  <wim@fluendo.com>
30640
30641         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
30642         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
30643         (gst_smokedec_chain):
30644         * ext/jpeg/gstsmokedec.h:
30645         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
30646         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
30647         * ext/jpeg/gstsmokeenc.h:
30648         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
30649         (smokecodec_decode_new), (smokecodec_info_free),
30650         (smokecodec_set_quality), (smokecodec_get_quality),
30651         (smokecodec_set_threshold), (smokecodec_get_threshold),
30652         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
30653         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
30654         (smokecodec_encode), (smokecodec_parse_id),
30655         (smokecodec_parse_header), (smokecodec_decode):
30656         * ext/jpeg/smokecodec.h:
30657         * ext/jpeg/smokeformat.h:
30658         Updated smoke, new bitstream, allows embedding in ogg.
30659
30660 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30661
30662         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
30663           Fix seeking in some files. All this code is no longer needed (and
30664           actually breaks stuff) because we now synchronize the full index
30665           right when reading the header.
30666
30667 2004-10-04  Wim Taymans  <wim@fluendo.com>
30668
30669         * configure.ac:
30670         configure update for libmng.
30671
30672 2004-10-04  Wim Taymans  <wim@fluendo.com>
30673
30674         * ext/libmng/Makefile.am:
30675         * ext/libmng/gstmng.c: (plugin_init):
30676         * ext/libmng/gstmng.h:
30677         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
30678         (gst_mngdec_base_init), (gst_mngdec_class_init),
30679         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
30680         (gst_mngdec_loop), (gst_mngdec_get_property),
30681         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
30682         (mngdec_closestream), (mngdec_handle_sink_event),
30683         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
30684         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
30685         (gst_mngdec_change_state):
30686         * ext/libmng/gstmngdec.h:
30687         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
30688         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
30689         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
30690         (gst_mngenc_chain), (gst_mngenc_get_property),
30691         (gst_mngenc_set_property):
30692         * ext/libmng/gstmngenc.h:
30693         Added basic MNG decoder. Needs more work. The encoder does
30694         not work yet.
30695
30696 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30697
30698         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
30699         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
30700         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
30701           Don't hang on length=0 chunks. Some negotiation fixes. Signal
30702           no-more-pads.
30703
30704 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
30705
30706         * configure.ac:
30707           you need at least 1.0.4 of speex
30708
30709 2004-10-04 Iain <iaingnome@gmail.com>
30710
30711         * ext/speex/gstspeexdec.h: Revert the includes changes.
30712
30713         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
30714
30715 2004-09-30 Iain <iaingnome@gmail.com>
30716
30717         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
30718         found during init or set as a property instead of hardcoding /dev/audio
30719
30720 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30721
30722         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
30723         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
30724         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
30725         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
30726         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
30727         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
30728         (gst_rmdemux_dump_data):
30729           Use debug category, fix EOS handling. filesrc ! rmdemux now
30730           works.
30731
30732 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30733
30734         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
30735         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
30736         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
30737           Improve allocation, cutting and sorting of the index. How takes a
30738           few seconds instead of minutes.
30739
30740 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
30741
30742         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
30743           fixed compilation
30744
30745 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30746
30747         * gst-libs/gst/riff/riff-media.c:
30748         (gst_riff_create_video_caps_with_data),
30749         (gst_riff_create_video_template_caps):
30750           Add wing commander format mimetype/fourccs.
30751         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30752           Don't crash if some value is 0.
30753
30754 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30755
30756         * gst-libs/gst/riff/riff-media.c:
30757         (gst_riff_create_video_caps_with_data),
30758         (gst_riff_create_video_template_caps):
30759           Add DIB fourcc (raw, palettized 8-bit RGB).
30760         * gst-libs/gst/riff/riff-read.c:
30761         (gst_riff_read_strf_vids_with_data):
30762           Oops, fix strf_data reading bug.
30763         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
30764           Use a non-NULL tag.
30765         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
30766           Time for hacks. Sorry Dave. At least one quicktime movie (a
30767           trailer) that I've encountered contains multiple video tracks.
30768           One of those is the actual video track, the other are one-frame
30769           tracks (images). Unfortunately, the number of frames according
30770           to the trak header is 1 for each, so that doesn't help. So
30771           instead, I look at the duration and discard tracks with a
30772           duration shorter than 20% of the length of the stream. Better
30773           than nothing.
30774
30775 2004-10-01  Christian Schaller <christian@fluendo.com>
30776
30777         * ext/ivorbis/vorbis.c:
30778           Patch from Phil Blundell (Bug 152341)
30779
30780 2004-10-01  Wim Taymans  <wim@fluendo.com>
30781
30782         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
30783         (speex_dec_get_formats), (speex_dec_convert),
30784         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
30785         (speex_dec_chain), (gst_speexdec_get_property),
30786         (gst_speexdec_set_property):
30787         Small cleanups.
30788
30789 2004-10-01  Wim Taymans  <wim@fluendo.com>
30790
30791         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
30792         (gst_wavparse_stream_init), (gst_wavparse_fmt),
30793         (gst_wavparse_other), (gst_wavparse_loop),
30794         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
30795         (gst_wavparse_srcpad_event):
30796         * gst/wavparse/gstwavparse.h:
30797         Added some more debugging info.
30798         Fix the case where the length of the file is 0.
30799         Make sure we seek to sample borders.
30800
30801 2004-10-01  Wim Taymans  <wim@fluendo.com>
30802
30803         * gst/playback/README:
30804         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
30805         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30806         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30807         Add some debug info to decodebin, update README
30808
30809 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30810
30811         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
30812           Don't use g_print(); use GST_DEBUG().
30813
30814 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30815
30816         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30817         (gst_ogg_mux_queue_pads):
30818           Handle EOS properly.
30819
30820 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30821
30822         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30823
30824         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
30825         (gst_faad_chain), (gst_faad_change_state):
30826         * ext/faad/gstfaad.h:
30827           Allow playback of raw (unframed) MPEG AAC files (#148993).
30828
30829 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30830
30831         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30832
30833         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30834           Throw error if we didn't recognize the stream. Fixes #152289.
30835
30836 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30837
30838         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
30839           Fix negotiation.
30840
30841 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
30842
30843         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30844
30845         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30846           Fix memleak.
30847
30848 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
30849
30850         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30851
30852         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
30853           Solve #152805.
30854         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
30855           Solve 152806.
30856
30857 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30858
30859         * gst-libs/gst/riff/riff-media.c:
30860         (gst_riff_create_video_caps_with_data),
30861         (gst_riff_create_audio_caps_with_data):
30862           Add codec_data handling (like asfdemux used to do).
30863         * gst/asfdemux/gstasf.c: (plugin_init):
30864         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30865         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
30866           Use riff-media for caps creation instead of our own (mostly
30867           broken) copy of its functions.
30868
30869 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30870
30871         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
30872           Don't actually error out if we get another return value than
30873           -EINVAL. Opposite to what I first thought, drivers have random
30874           return values for this, although -EINVAL is the expected return
30875           value. Since this is not fatal, we shouldn't use
30876           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
30877
30878 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30879
30880         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
30881         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
30882         (dvdreadsrc_get_property), (_open), (_seek), (_read),
30883         (dvdreadsrc_get), (dvdreadsrc_open_file),
30884         (dvdreadsrc_change_state):
30885           Fix. Don't do one big huge loop around the whole DVD, that will
30886           cache all data and thus eat sizeof(dvd) (several GB) before we
30887           see something.
30888         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30889           Actually NULL'ify event after using it.
30890         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
30891         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
30892         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30893         (gst_ebml_read_seek), (gst_ebml_read_skip):
30894           Handle events.
30895         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
30896         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
30897         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
30898           Fix timing (this will probably break if I seek using menus, but
30899           I didn't get there yet). VOBs and normal DVDs should now work.
30900           Add a mpeg2-only pad with high rank so this get autoplugged for
30901           MPEG-2 movies.
30902         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
30903         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
30904         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
30905         (gst_mpeg_demux_get_audio_stream),
30906         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
30907         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
30908           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
30909           MPEG-1 but use dvddemux for MPEG-2.
30910         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30911         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
30912         (gst_mpeg_parse_parse_packhead):
30913           Timing. Only add pad template if it exists. Add sink template from
30914           class and not from ourselves. This means we will always use the
30915           correct sink template even if it is not the one defined in this
30916           file.
30917
30918 2004-09-29  Wim Taymans  <wim@fluendo.com>
30919
30920         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
30921         (gst_mpeg_demux_parse_pes):
30922         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30923         Fix playback of mpeg again, timestamps where screwed up by
30924         patch 1.61.
30925
30926 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30927
30928         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
30929           Only return true if we actually filled something in. Prevents
30930           player applications from showing a random length for flac files.
30931         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
30932         (gst_riff_read_use_event), (gst_riff_read_handle_event),
30933         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
30934         (gst_riff_read_strf_vids_with_data),
30935         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
30936           OK, ok, so I implemented event handling. Apparently it's normal
30937           that we receive random events at random points without asking
30938           for it.
30939         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30940         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30941         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
30942         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30943         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
30944         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
30945         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
30946         * gst/avi/gstavidemux.h:
30947           Implement non-lineair chunk handling and subchunk processing.
30948           The first solves playback of AVI files where the audio and video
30949           data of individual buffers that we read are not synchronized.
30950           This should not happen according to the wonderful AVI specs, but
30951           of course it does happen in reality. It is also a prerequisite for
30952           the second. Subchunk processing allows us to cut chunks in small
30953           pieces and process each of these pieces separately. This is
30954           required because I've seen several AVI files with incredibly large
30955           audio chunks, even some files with only one audio chunk for the
30956           whole file. This allows for proper playback including seeking.
30957           This patch is supposed to fix all AVI A/V sync issues.
30958         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
30959         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
30960           Work.
30961         * gst/modplug/gstmodplug.cc:
30962           Proper return value setting for the query() function.
30963         * gst/playback/gstplaybasebin.c: (setup_source):
30964           Being in non-playing state (after, e.g., EOS) is not necessarily
30965           a bad thing. Allow for that. This fixes playback of short files.
30966           They don't actually playback fully now, because the clock already
30967           runs. This means that small files (<500kB) with a small length
30968           (<2sec) will still not or barely play. Other files, such as mod
30969           or flx, will work correctly, however.
30970
30971 2004-09-28  Wim Taymans  <wim@fluendo.com>
30972
30973         * ext/speex/gstspeex.c: (plugin_init):
30974         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
30975         (gst_speex_dec_class_init), (speex_dec_get_formats),
30976         (speex_get_event_masks), (speex_get_query_types),
30977         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
30978         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
30979         (gst_speexdec_get_property), (gst_speexdec_set_property),
30980         (speex_dec_change_state):
30981         * ext/speex/gstspeexdec.h:
30982         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
30983         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
30984         (gst_speexenc_base_init), (gst_speexenc_class_init),
30985         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
30986         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
30987         (gst_speexenc_src_query), (gst_speexenc_init),
30988         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
30989         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
30990         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
30991         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
30992         (gst_speexenc_chain), (gst_speexenc_get_property),
30993         (gst_speexenc_set_property), (gst_speexenc_change_state):
30994         * ext/speex/gstspeexenc.h:
30995         Rewrote speex encoder, make sure it can be embedded in ogg.
30996         Implemented speex decoder.
30997
30998 2004-09-28  Christian Schaller <christian@fluendo.com>
30999
31000         * configure.ac:
31001         Remove kioslave plugin. Markey is brewing a new working one
31002         * ext/Makefile.am: Remove kioslave plugin
31003         * ext/kio: remove
31004         * gst-plugins.spec.in: remove kio plugin from spec
31005
31006 2004-09-27  Wim Taymans  <wim@fluendo.com>
31007
31008         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31009         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
31010         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
31011         (gst_multifdsink_new_client),
31012         (gst_multifdsink_handle_client_write),
31013         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31014         (gst_multifdsink_handle_clients):
31015         * gst/tcp/gstmultifdsink.h:
31016         Make syncing to keyframes actually work for new clients and lagging
31017         clients.
31018
31019 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31020
31021         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
31022         (gst_navigationtest_handle_src_event), (draw_box_planar411),
31023         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
31024         * gst/debug/gstnavigationtest.h:
31025           make navigationtest display button-press and button-release events
31026
31027 2004-09-26 Iain <iaingnome@gmail.com>
31028
31029         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
31030         the channels have received a new media event.
31031         (interleave_buffered_loop): Compresses a new media event on all
31032         channels into one.
31033
31034 2004-09-26 Iain <iaingnome@gmail.com>
31035
31036         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
31037         call the sinkpad's default event handler and not the srcpads. He also
31038         says this is confusing :)
31039         (gst_wavenc_stop_file): Company says that seek events only go upstream
31040         we should send a discontinuous downstream instead.
31041
31042 2004-09-25  Christian Schaller <christian@fluendo.com>
31043
31044         * Update SPEC file to be usable in conjunction with Fedora Core,
31045           Fedora.us and freshrpms packages
31046         * Fix typo in multifilesrc test Makefile
31047
31048 2004-09-24  Wim Taymans  <wim@fluendo.com>
31049
31050         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
31051         Only signal the no_more_pads signal when we have
31052         added the stream to our list.
31053
31054 2004-09-24  Wim Taymans  <wim@fluendo.com>
31055
31056         * gst/playback/gstplaybasebin.c: (remove_prerolls),
31057         (new_decoded_pad):
31058         * gst/playback/gstplaybasebin.h:
31059         * gst/playback/gstplaybin.c: (setup_sinks):
31060         Don't try to preroll or decode more than one audio/video
31061         track.
31062
31063 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31064
31065         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
31066           Throw error if we failed to find a suitable output. This should
31067           throw an error if we successfully set up a pipeline (e.g. because
31068           we recognized a media file) but found no decodable streams in it
31069           (e.g. because it contains only media stream types for which we
31070           have no decoders, or because it's not a media type).
31071
31072 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31073
31074         * ext/dirac/Makefile.am:
31075         * ext/dirac/gstdirac.cc:
31076         * ext/dirac/gstdiracdec.cc:
31077         * ext/dirac/gstdiracdec.h:
31078           Do something. Don't actually know if this works because I don't
31079           have a demuxer yet.
31080         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
31081           Add channels=1 to caps returned from _getcaps().
31082         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
31083         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
31084         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
31085         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
31086         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
31087         (gst_ogm_parse_change_state):
31088           Separate between audio/video so ogmaudioparse actually uses the
31089           audio pad templates. Both audio and video work now, including
31090           autoplugging. Also use sometimes-srcpad hack.
31091         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
31092           Handle events better. Don't hang on infinite loops.
31093         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
31094         (gst_avi_demux_init), (gst_avi_demux_reset),
31095         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
31096         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
31097         (gst_avi_demux_change_state):
31098         * gst/avi/gstavidemux.h:
31099           Improve A/V sync. Still not perfect.
31100         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
31101         (gst_ebml_read_skip):
31102           Handle events better.
31103         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
31104         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
31105         (qtdemux_audio_caps):
31106           Add IMA4. Improve event handling. Save offset after a seek when
31107           the headers are at the end of the file so that we don't end up in
31108           an infinite loop.
31109         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
31110           Add low-priority typefind support for files with no length.
31111
31112 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31113
31114         * testsuite/multifilesink/Makefile.am:
31115         fix typo
31116
31117 2004-09-22  Julien MOUTTE  <julien@moutte.net>
31118
31119         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
31120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
31121         mistakes from thaytan's patches.
31122
31123 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
31124
31125         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
31126           For completeness, XSync in the destroy function as xvimage does.
31127
31128 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
31129
31130         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
31131            Correct caps negotiation
31132         * gst/volume/gstvolume.c: (volume_chain_float),
31133         (volume_chain_int16):
31134            Modify debug output to be little more informative
31135         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
31136         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31137         (gst_xvimagesink_xvimage_destroy):
31138           Add XSync calls after detaching from the shared memory segment to
31139           avoid a crash.
31140
31141 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31142
31143         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31144         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
31145         * ext/vorbis/vorbis.c: (plugin_init):
31146         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
31147         (gst_vorbisenc_chain):
31148         * ext/vorbis/vorbisenc.h:
31149         remove explicit newmedia support from oggmux and vorbisenc
31150         add debug category to vorbisenc
31151         * gst/multifilesink/gstmultifilesink.c:
31152         (gst_multifilesink_class_init), (gst_multifilesink_init),
31153         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
31154         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
31155         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
31156         (plugin_init):
31157         * gst/multifilesink/gstmultifilesink.h:
31158         add support for streamheader in multifilesink
31159
31160 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31161
31162         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
31163         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
31164         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
31165           Prevent infinite loops. More correct error reporting.
31166         * gst/auparse/gstauparse.c: (gst_auparse_chain):
31167           Error out if negotiation fails.
31168         * gst/playback/gstplaybasebin.c: (setup_source),
31169         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
31170         (gst_play_base_bin_found_tag):
31171           Error/tag forwarding. Pre-roll fixes for source errors on state
31172           changes (e.g. "file does not exist") to prevent hangs.
31173
31174 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31175
31176         * testsuite/multifilesink/Makefile.am:
31177         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
31178         (gst_newmedia_class_init), (gst_newmedia_init),
31179         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
31180         (newfile_signal), (test_signal), (main):
31181         * testsuite/multifilesink/multifilesrc_test.c: (main):
31182         * testsuite/multifilesink/oggtheora_test.c:
31183         (gst_newmedia_base_init), (gst_newmedia_class_init),
31184         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
31185         (test_format), (newfile_signal), (test_signal), (main):
31186         * testsuite/multifilesink/oggvorbis_test.c:
31187         (gst_newmedia_base_init), (gst_newmedia_class_init),
31188         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
31189         (test_format), (newfile_signal), (test_signal), (main):
31190         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
31191         (gst_newmedia_class_init), (gst_newmedia_init),
31192         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
31193         (newfile_signal), (test_signal), (main):
31194         New media tests
31195
31196 2004-09-20  Christian Schaller <christian@fluendo.com>
31197
31198         * Fix mikmod license to LGPL as they have relicensed
31199         * Move Dirac and Effectv into LGPL section of README_license
31200
31201 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31202
31203         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
31204         (gst_mad_change_state):
31205           Allow for mp3 rate/channels changes. However, only very
31206           conservatively. Reason that we *have* to enable this is smiply
31207           because the mad find_sync() function is not good enough, it will
31208           regularly sync on random data as valid frames and therefore make
31209           us provide random caps as *final* caps of the stream. The best fix
31210           I could think of is to simply require several of the same stream
31211           changes in a row before we change caps.
31212           The actual testcase that works now is #
31213         * ext/ogg/Makefile.am:
31214         * ext/ogg/gstogg.c: (plugin_init):
31215         * ext/ogg/gstogmparse.c:
31216           OGM support (video only for now; I need an audio sample file).
31217         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
31218         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
31219         (gst_asf_demux_add_video_stream):
31220           WMV extradata.
31221         * gst/playback/gstplaybasebin.c: (unknown_type):
31222           Don't error out on single unknown-types after all. It's wrong.
31223           If we found type of video and audio but not of a subtitle stream,
31224           it will still error out (which is unwanted). Will find a better fix
31225           later on.
31226         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
31227         (ogmaudio_type_find), (plugin_init):
31228           OGM support.
31229
31230 2004-09-20  Johan Dahlin  <johan@gnome.org>
31231
31232         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
31233         after setting caps.
31234
31235 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31236
31237         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
31238         * gst/wavenc/gstwavenc.h:
31239         Added newmedia support to wavenc
31240
31241 2004-09-17  Wim Taymans  <wim@fluendo.com>
31242
31243         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
31244         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31245         (gst_fdset_fd_can_write), (gst_fdset_wait):
31246         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
31247         (gst_multifdsink_init), (gst_multifdsink_add),
31248         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
31249         (gst_multifdsink_remove_client_link),
31250         (gst_multifdsink_client_queue_buffer),
31251         (gst_multifdsink_handle_client_write),
31252         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
31253         (gst_multifdsink_close), (gst_multifdsink_change_state):
31254         * gst/tcp/gstmultifdsink.h:
31255         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31256         (gst_tcpserversink_removed):
31257         Small cleanups in fdset.c
31258         Use a hastable to map fd to the client structure for faster
31259         lookup in _remove and get_stats.
31260         Added virtual function to close the fds.
31261         Handle clients even when the select/poll call was unblocked because
31262         of a command.
31263         Implement syncing to keyframe in the recovery procedure.
31264
31265 2004-09-16 Iain <iaingnome@gmail.com>
31266
31267         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
31268         try caps.
31269
31270 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31271
31272         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
31273           Caps are only set if the type of the stream is unknown, but this
31274           is initialized in ->init_stream(), so set to UNKNOWN after calling
31275           ->init_stream() so that capsnego starts.
31276
31277 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31278
31279         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31280         (gst_avi_demux_stream_data):
31281           Just hardcode for raw audio then. AVI audio sucks.
31282
31283 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
31284
31285         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
31286         * gst/matroska/matroska-mux.c: (audiosink_templ),
31287         (gst_matroska_mux_audio_pad_link):
31288         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
31289         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
31290
31291 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31292
31293         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31294         (gst_avi_demux_stream_data):
31295           Try to fix a/v sync issues.
31296
31297 2004-09-15  David Schleef  <ds@schleef.org>
31298
31299         * configure.ac: remove NASM check, since we don't use it.  Update
31300         dirac check to 0.4
31301         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
31302         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31303         Initialized variables.
31304         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
31305         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
31306         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
31307         SVQ3 format
31308
31309 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31310
31311         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31312         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
31313         * gst/avi/gstavidemux.h:
31314           Fix for compressed audio (mp3) timestamp generation. How did this
31315           ever work?
31316
31317 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31318
31319         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
31320           Volume is a double not a float.
31321
31322 2004-09-15  Wim Taymans  <wim@fluendo.com>
31323
31324         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
31325         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
31326         Don't close the fd in multifdsink as we didn't open it in the
31327         first place. Some cleanups.
31328
31329 2004-09-15  Wim Taymans  <wim@fluendo.com>
31330
31331         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31332         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31333         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31334         Fix the case where the muxer would mark pages as delta
31335         frames when they are not (vorbis only ogg).
31336
31337 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31338
31339         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
31340         (gst_play_base_bin_change_state):
31341           Handle the case where we failed to setup a clear pipeline. This
31342           will throw an error (or EOS, another nice case) and if you don't
31343           catch that, the app will wait for the signal forever (and thus
31344           hang).
31345
31346 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31347
31348         * ext/gnomevfs/gstgnomevfssink.c:
31349         (gst_gnomevfssink_uri_get_protocols):
31350         * ext/gnomevfs/gstgnomevfssrc.c:
31351         (gst_gnomevfssrc_uri_get_protocols):
31352         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31353         * ext/gnomevfs/gstgnomevfsuri.h:
31354           Use _uri_new() instead of _open(), so it doesn't take as long and
31355           Christophe's computer won't hang.
31356         * gst/playback/gstplaybasebin.c: (unknown_type):
31357           Throw error on unknown media type, so apps actually display it.
31358
31359 2004-09-14  Brian Cameron  <brian.cameron@sun.com
31360
31361         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
31362           this script to work on Solaris since bash shell handles echo
31363           differenly than bash.
31364
31365 2004-09-17  Wim Taymans  <wim@fluendo.com>
31366
31367         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
31368         (setup_source), (gst_play_base_bin_set_property),
31369         (gst_play_base_bin_add_element):
31370         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
31371         Some more work on making sure seeking pauses the pipeline and
31372         that changing the uri actually does something.
31373
31374 2004-09-17  Wim Taymans  <wim@fluendo.com>
31375
31376         * gst/tcp/gstfdset.c: (gst_fdset_wait):
31377         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
31378         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
31379         (gst_tcpserversink_close):
31380         Be a bit more paranoid when freeing memory.
31381
31382 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31383
31384         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
31385         (qtdemux_parse_trak):
31386           Don't crash by dividing by zero (see sample movie in #126922).
31387
31388 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31389
31390         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
31391           Don't touch non-existing data (fixes crash on file in #140147).
31392
31393 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31394
31395         * gst/playback/gstplaybasebin.c:
31396         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
31397           Handle double disposals, and proper change of URIs.
31398
31399 2004-09-13  Martin Eikermann <meiker@upb.de>
31400
31401         * gst/mpegstream/gstmpegparse.c:
31402           fix synchronistation for streams recorded from digital PCR
31403           fixes bug #119376
31404
31405 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31406
31407         * ext/gnomevfs/Makefile.am:
31408         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
31409         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
31410         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
31411         (gst_gnomevfssink_uri_get_type),
31412         (gst_gnomevfssink_uri_get_protocols),
31413         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
31414         (gst_gnomevfssink_uri_handler_init),
31415         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
31416         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
31417         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
31418         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
31419         (gst_gnomevfssrc_uri_get_type),
31420         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
31421         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
31422         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
31423         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
31424         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31425         * ext/gnomevfs/gstgnomevfsuri.h:
31426           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
31427           of fake URIs to see which this version of Gnome-VFS likes, and
31428           uses that for the Gst-URI interface. Makes playbin support http://
31429           streams. Also fix up some stupid behaviour in gnomevfssrc.
31430
31431 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31432
31433         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
31434         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
31435         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
31436         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
31437           Update mixer (to sync with other sessions) if we try to obtain
31438           a new value. This makes alsamixer work accross applications.
31439         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
31440           Only call sync functions if we're running, else alsalib asserts.
31441         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
31442           Sometimes fails to compile. Possibly a gcc bug.
31443         * gst/playback/gstplaybin.c: (gen_video_element),
31444         (gen_audio_element):
31445           Add a reference to an application-provided object, because we lose
31446           this same reference if we add it to the bin. If we don't do this,
31447           we can only use this object once and thus crash if we go from
31448           ready to playing, back to ready and back to playing again.
31449           Also add an audioscale element because several cheap soundcards -
31450           like mine - don't support all samplerates.
31451         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
31452         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
31453           Fix wrong order or PAR calls. Makes automatically obtained PAR
31454           from the X server atually being used.
31455
31456 2004-09-12  David Schleef  <ds@schleef.org>
31457
31458         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
31459         #151887, #152102, #152247.
31460         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
31461         * examples/seeking/cdparanoia.c: same
31462         * examples/seeking/cdplayer.c: same
31463         * examples/seeking/seek.c: same
31464         * examples/seeking/spider_seek.c: same
31465         * examples/seeking/vorbisfile.c: same
31466         * examples/stats/mp2ogg.c: same
31467         * ext/esd/esdsink.c: (gst_esdsink_class_init),
31468         (gst_esdsink_dispose): Dispose of element properly.
31469         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
31470         fixes.
31471         * ext/nas/nassink.c: (gst_nassink_class_init),
31472         (gst_nassink_dispose): Dispose of element correctly.
31473         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
31474         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31475         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
31476         Fix 64-bit warning.
31477         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31478         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
31479         Fix 64-bit warning.
31480
31481 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
31482
31483         * configure.ac : change speex detection as 1.1.6 now uses
31484           .pc/pkg-config and they changed their headers location.
31485
31486 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
31487
31488         * gst/matroska/matroska-mux.h:
31489         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
31490         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31491         (gst_matroska_mux_write_data):
31492           Write multiple blocks/frames per cluster.
31493                 Write meta-seek information (seek heads).
31494
31495 2004-09-09  Scott Wheeler <wheeler@kde.org>
31496
31497         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
31498         (gst_play_bin_set_property), (gst_play_bin_get_property),
31499         (gen_audio_element), (gen_audio_element):
31500           Add a volume element / property to the pipeline.
31501
31502 2004-09-07  Wim Taymans  <wim@fluendo.com>
31503
31504         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
31505         Copy timestamps from the master pad to the output buffers.
31506
31507 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31508
31509         * ext/raw1394/gstdv1394src.c:
31510           throw errors when applicable
31511
31512 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
31513
31514         * gst/matroska/ebml-ids.h:
31515         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
31516         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
31517         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
31518           automatically convert unix time <-> ebml time when reading/writing
31519           a date, use gst_ebml_write_uint to write CUETIME,
31520           not gst_ebml_write_date.
31521         * gst/matroska/matroska-ids.h:
31522         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
31523         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
31524         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
31525         (gst_matroska_mux_write_data):
31526           Write track and segment UIDs, write muxing date, write
31527           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
31528           Create cues for audio only files.
31529
31530 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31531
31532         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
31533         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
31534           Re-commit ALSA switches.
31535         * gst/adder/gstadder.c: (gst_adder_loop):
31536           64-bit fix (#151416).
31537         * gst/debug/progressreport.c: (gst_progressreport_report):
31538           64-bit fix (#151419).
31539         * gst/matroska/matroska-demux.c:
31540         (gst_matroska_demux_parse_contents):
31541           64-bit fix (#151420).
31542         * gst/playback/test3.c: (update_scale):
31543           64-bit fix (#151421).
31544
31545 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31546
31547         * configure.ac:
31548           bump nano to cvs
31549
31550 === release 0.8.4 ===
31551
31552 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31553
31554         * configure.ac: releasing 0.8.4, "Alias"
31555
31556 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31557
31558         * ext/theora/Makefile.am:
31559           fix makefile.  Fixes #151462.
31560
31561 2004-08-30  Wim Taymans  <wim@fluendo.com>
31562
31563         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
31564         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31565         (gst_multifdsink_remove_client_link),
31566         (gst_multifdsink_client_queue_buffer),
31567         (gst_multifdsink_handle_client_write):
31568         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
31569         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
31570         Fix some memory leaks.
31571
31572 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31573
31574         Patch by: David Schleef
31575
31576         * configure.ac:
31577         * sys/Makefile.am:
31578           rename our detection macro for V4L2.  Fixes #151236.
31579
31580 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31581
31582         Patch by: David Schleef
31583
31584         * configure.ac:
31585           check to define LAMEPRESET.  Fixes #151232.
31586
31587 2004-08-27  David Schleef  <ds@schleef.org>
31588
31589         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
31590         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
31591         (gst_glimagesink_fixate):  Move local variable declarations to
31592         make gcc-2.95 happy.
31593
31594 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31595
31596         * configure.ac:
31597           bump nano for prerelease
31598
31599 2004-08-27  David Schleef  <ds@schleef.org>
31600
31601         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
31602         * sys/sunaudio/gstsunaudiosrc.c:
31603         * sys/sunaudio/gstsunaudiosrc.h:
31604
31605 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
31606
31607         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
31608         handle EOS correctly
31609         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
31610         * gst/matroska/matroska-mux.h:
31611         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
31612         VFW compatibility mode
31613
31614 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31615
31616         patch by: Zaheer Abbas Merali
31617
31618         * ext/ogg/gstoggmux.c:
31619         * ext/vorbis/vorbisenc.c:
31620         * ext/vorbis/vorbisenc.h:
31621           handle NEWMEDIA
31622
31623 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
31624
31625         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
31626         fix byte order reversion on little endian machines.
31627         * gst/matroska/matroska-mux.c: (audiosink_templ),
31628         (gst_matroska_mux_audio_pad_link):
31629         add TTA codec to the list of supported codecs.
31630         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
31631         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31632         (gst_matroska_mux_write_data):
31633         * gst/matroska/matroska-mux.h:
31634         write segment duration correctly, write muxing app string, fixes bugs
31635         #140897 and #140898.
31636         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
31637         wait for all pads to be negotiated before starting to mux.
31638
31639 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31640
31641         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
31642         * ext/lame/gstlame.h:
31643         Added new media support to lame
31644
31645 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
31646
31647         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
31648         send vorbis headers at the beginning of a stream, fixes bug #141554.
31649         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
31650         bug #148950.
31651         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
31652         (gst_matroska_demux_plugin_init):
31653         * gst/matroska/matroska-ids.h:
31654         enable demuxing of TTA audio streams, fixes bug #148951.
31655         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
31656         enable typefinding for TTA audio files, fixes bug #148711.
31657         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
31658         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
31659         fixes playback of packed bitstream and xvid with bframes, bug #135407.
31660
31661 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
31662
31663         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
31664         (gst_riff_read_element_data), (gst_riff_read_seek),
31665         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
31666         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
31667         <teuf@gnome.org>
31668
31669 2004-08-23 Iain <iaingnome@gmail.com>
31670
31671         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
31672         tags. They appear to be handled differently to normal.
31673         (tag_list_to_id3_tag_foreach): Ditto.
31674
31675 2004-08-22  Wim Taymans  <wim@fluendo.com>
31676
31677         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31678         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31679         Make sure we never send -1 granulepos.
31680
31681 2004-08-20  Wim Taymans  <wim@fluendo.com>
31682
31683         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31684         (gst_ogg_mux_loop):
31685         I will accept bitchslappings with non sharp objects.
31686
31687 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31688
31689         * configure.ac:
31690         Clean up the test for lame presets
31691
31692 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31693
31694         * configure.ac:
31695         * ext/lame/Makefile.am:
31696         * ext/lame/gstlame.c: (gst_lame_class_init),
31697         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31698         Only enable lame presets if version of lame has presets in API
31699
31700 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
31701         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
31702         * gst/udp/gstudpsrc.h:
31703           Don't call gst_pad_push in a get function. Fixes #150449
31704
31705 2004-08-18  Wim Taymans  <wim@fluendo.com>
31706
31707         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
31708         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
31709         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31710         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31711         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31712         (gst_fdset_wait):
31713         * gst/tcp/gstfdset.h:
31714         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31715         (gst_multifdsink_client_queue_buffer),
31716         (gst_multifdsink_handle_client_write):
31717         * gst/tcp/gstmultifdsink.h:
31718         Some extra checks in gstfdset.
31719         Only use send() when the fd is a socket. Don't try to
31720         read from write only fds.
31721
31722 2004-08-18  Wim Taymans  <wim@fluendo.com>
31723
31724         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
31725         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31726         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31727         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31728         (gst_fdset_wait):
31729         Add more locking and bounds checking.
31730
31731 2004-08-18  Wim Taymans  <wim@fluendo.com>
31732
31733         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
31734         Realloc test fdset in the lock and right before starting
31735         the poll call. Bump the limit to 4096.
31736
31737 2004-08-17  David Schleef  <ds@schleef.org>
31738
31739         * sys/sunaudio/Makefile.am:
31740         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
31741         of rates and channels.  Make debugging less obnoxious.
31742
31743         Patch from Balamurali Viswanathan implementing a mixer for
31744         Sun audio.  (bug #144091):
31745         * sys/sunaudio/gstsunelement.c:
31746         * sys/sunaudio/gstsunelement.h:
31747         * sys/sunaudio/gstsunmixer.c:
31748         * sys/sunaudio/gstsunmixer.h:
31749
31750 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31751
31752         * gst/audioscale/gstaudioscale.c:
31753         * gst/audioscale/gstaudioscale.h:
31754         made audioscale resample from any sample rate to any sample rate
31755
31756 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31757
31758         * ext/libpng/gstpngdec.c:
31759           error out on unsupported types
31760
31761 2004-08-17  Iain <iaingnome@gmail.com>
31762
31763         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
31764         mid_side and loose_mid_side properties if its a stereo stream.
31765
31766 2004-08-17  Wim Taymans  <wim@fluendo.com>
31767
31768         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31769         (theora_get_formats), (theora_dec_src_convert),
31770         (theora_dec_sink_convert), (theora_dec_src_query),
31771         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
31772         Add a debug line.
31773
31774 2004-08-17  Wim Taymans  <wim@fluendo.com>
31775
31776         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
31777         (gst_ogg_pad_push):
31778         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31779         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
31780         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
31781         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31782         Mark delta units in the muxer.
31783         Try to decode the packet after an out-of-sync error from
31784         libogg.
31785
31786 2004-08-17  Wim Taymans  <wim@fluendo.com>
31787
31788         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31789         (gst_multifdsink_init), (gst_multifdsink_add),
31790         (gst_multifdsink_client_queue_buffer),
31791         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
31792         * gst/tcp/gstmultifdsink.h:
31793         Added option to send a keyframe to clients as the first buffer.
31794         Make timeout property writable.
31795
31796 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31797
31798         patch by: Wim Taymans
31799
31800         * gst/tcp/gstfdset.c:
31801         * gst/tcp/gstmultifdsink.c:
31802           fix index comparison, should include 0
31803
31804 2004-08-16  Wim Taymans  <wim@fluendo.com>
31805
31806         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
31807         (gst_fdset_add_fd), (gst_fdset_remove_fd),
31808         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31809         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31810         (gst_fdset_wait):
31811           copy when reallocing for poll so the select arguments don't get
31812           changed during the call
31813
31814 2004-08-16  Wim Taymans  <wim@fluendo.com>
31815
31816         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31817         (gst_theora_enc_class_init), (theora_enc_sink_link),
31818         (theora_buffer_from_packet), (theora_enc_chain):
31819         Fix bug where buffers were not marked as keyframes
31820         correctly.
31821
31822 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31823
31824         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31825         (gst_lame_preset_get_type), (gst_lame_class_init):
31826         describe the enum values for vbr mode and presets more verbosely
31827
31828 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31829
31830         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
31831         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
31832         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
31833         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31834         * ext/lame/gstlame.h:
31835         add preset property to lame so it can use lame presets
31836
31837 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31838
31839         * ext/lame/gstlame.c: (gst_lame_get_property):
31840         whoops forgot break, thanks teuf
31841
31842 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31843
31844         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31845         (gst_lame_class_init), (gst_lame_src_getcaps),
31846         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
31847         (gst_lame_get_property), (gst_lame_setup):
31848         * ext/lame/gstlame.h:
31849         fix lame's broken vbr stuff, allow it to resample if need be, and also
31850         make xing header optional
31851
31852 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31853
31854         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
31855         added getcaps function so samplerate doesnt get fixated to silly values
31856
31857 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31858
31859         * ext/lame/gstlame.c: (gst_lame_src_link):
31860         revert previous fix
31861
31862 2004-08-12  Johan Dahlin  <johan@gnome.org>
31863
31864         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
31865         checks. Doesn't matter what state we are in. Interfaces are a
31866         compile time thing, not runtime. It also broke the python bindings.
31867
31868 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31869
31870         * ext/lame/gstlame.c: (gst_lame_src_link):
31871         made source pad link function check if sinkpad is ok..fixes the problem
31872         where core fixates the output rate of lame stupidly
31873
31874 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31875
31876         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
31877         * sys/v4l/v4l_calls.c:
31878         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
31879           fix fixate function to handle nonsimple caps.
31880           remove bogus check in _link
31881           cleanups
31882
31883 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31884
31885         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
31886         set default compression ratio parameter to 0.0 so bitrate parameter
31887         works :)
31888
31889 2004-08-11  David Schleef  <ds@schleef.org>
31890
31891         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
31892
31893 2004-08-11  David Schleef  <ds@schleef.org>
31894
31895         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
31896         before.
31897
31898 2004-08-11  David Schleef  <ds@schleef.org>
31899
31900         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
31901
31902 2004-08-11  David Schleef  <ds@schleef.org>
31903
31904         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
31905           license field
31906         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
31907         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
31908           LGPL.
31909         * gst/auparse/gstauparse.c: Fix plugin license field.
31910         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
31911         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
31912         * gst/rtp/gstrtp.c: Fix plugin license field.
31913
31914 2004-08-11  Wim Taymans  <wim@fluendo.com>
31915
31916         * gst/tcp/Makefile.am:
31917         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
31918         (ensure_size), (gst_fdset_new), (gst_fdset_free),
31919         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
31920         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
31921         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
31922         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31923         (gst_fdset_fd_can_write), (gst_fdset_wait):
31924         * gst/tcp/gstfdset.h:
31925         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31926         (gst_multifdsink_class_init), (gst_multifdsink_init),
31927         (gst_multifdsink_add), (gst_multifdsink_remove),
31928         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31929         (gst_multifdsink_remove_client_link),
31930         (gst_multifdsink_handle_client_read),
31931         (gst_multifdsink_client_queue_data),
31932         (gst_multifdsink_client_queue_caps),
31933         (gst_multifdsink_client_queue_buffer),
31934         (gst_multifdsink_handle_client_write),
31935         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31936         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31937         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
31938         (gst_multifdsink_close):
31939         * gst/tcp/gstmultifdsink.h:
31940         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31941         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
31942         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
31943         (gst_tcpserversink_close):
31944         * gst/tcp/gsttcpserversink.h:
31945         Abstracted away the select call, implemented poll (yes we ran into
31946         the 1024 limit in production).
31947
31948 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
31949
31950         * gst/tcp/gsttcp.c:
31951         * gst/tcp/gsttcpplugin.c:
31952           improve debuggging, remove assert
31953
31954 2004-08-10  Wim Taymans  <wim@fluendo.com>
31955
31956         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31957         (gst_client_status_get_type), (gst_multifdsink_class_init),
31958         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
31959         (gst_multifdsink_handle_client_read),
31960         (gst_multifdsink_handle_client_write),
31961         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31962         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31963         (gst_multifdsink_get_property):
31964         * gst/tcp/gstmultifdsink.h:
31965         * gst/tcp/gsttcp-marshal.list:
31966         Starting to prepare for specifying buffer time in other units
31967         than buffers. Expose remove reason in signal.
31968
31969 2004-08-10  Wim Taymans  <wim@fluendo.com>
31970
31971         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31972         (gst_multifdsink_remove), (gst_multifdsink_clear),
31973         (gst_multifdsink_remove_client_link),
31974         (gst_multifdsink_handle_client_read),
31975         (gst_multifdsink_client_queue_data),
31976         (gst_multifdsink_client_queue_buffer),
31977         (gst_multifdsink_handle_client_write),
31978         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
31979         (gst_multifdsink_chain), (gst_multifdsink_close):
31980         * gst/tcp/gstmultifdsink.h:
31981         Added more debugging info. Changed the way clients are
31982         removed from the lists. Fixed a bug where a bad file descriptor
31983         could cause many clients to be removed.
31984
31985 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31986
31987         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
31988           allow all pixel-aspect-ratios, not just 1:1
31989
31990 2004-08-09  David Schleef  <ds@schleef.org>
31991
31992         * sys/glsink/ARB_multitexture.h:  Remove old files.
31993         * sys/glsink/EXT_paletted_texture.h:
31994         * sys/glsink/NV_register_combiners.h:
31995         * sys/glsink/gstgl_nvimage.c:
31996         * sys/glsink/gstgl_pdrimage.c:
31997         * sys/glsink/gstgl_rgbimage.c:
31998         * sys/glsink/gstglsink.c:
31999         * sys/glsink/gstglsink.h:
32000         * sys/glsink/gstglxwindow.c:
32001         * sys/glsink/regcomb_yuvrgb.c:
32002
32003 2004-08-09  David Schleef  <ds@schleef.org>
32004
32005         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
32006         GL sink plugin.  (Bug #147302)
32007
32008         * configure.ac: Test for OpenGL
32009         * sys/Makefile.am: Use test for OpenGL
32010         * sys/glsink/Makefile.am:
32011         * sys/glsink/glimagesink.c: rewrite
32012         * sys/glsink/glimagesink.h: rewrite
32013
32014 2004-08-09  David Schleef  <ds@schleef.org>
32015
32016         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
32017         sane framerates.
32018         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
32019         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
32020         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
32021
32022 2004-08-09  Wim Taymans  <wim@fluendo.com>
32023
32024         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32025         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32026         (gst_multifdsink_client_remove),
32027         (gst_multifdsink_handle_client_read),
32028         (gst_multifdsink_handle_client_write),
32029         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32030         Do a bit more logging, make the client_read code more robust.
32031
32032 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32033
32034         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
32035         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
32036         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
32037         (gst_jpegdec_init), (gst_jpegdec_chain):
32038         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
32039         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
32040           cleanups, debugging fixes and memleak plugging
32041
32042 2004-08-09  Wim Taymans  <wim@fluendo.com>
32043
32044         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32045         (theora_get_formats), (theora_dec_src_convert),
32046         (theora_dec_sink_convert), (theora_dec_src_query),
32047         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
32048         (theora_dec_change_state):
32049         Don't crash on missing header packets.
32050
32051 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32052
32053         * po/LINGUAS:
32054         * po/sq.po:
32055           Added Albanian translation (Laurent Dhima)
32056         * po/cs.po:
32057           updated
32058
32059 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32060
32061         * ext/lame/gstlame.c:
32062           fix/add debugging
32063
32064 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32065
32066         * sys/ximage/ximagesink.c:
32067         * sys/xvimage/xvimagesink.c:
32068           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
32069
32070 2004-08-06  Wim Taymans  <wim@fluendo.com>
32071
32072         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32073         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32074         (gst_multifdsink_client_remove),
32075         (gst_multifdsink_handle_client_read),
32076         (gst_multifdsink_handle_client_write),
32077         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32078         Make sure we don't try to read more from a client that what
32079         ioctl says us or we deadlock.
32080
32081 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32082
32083         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
32084         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
32085         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
32086           decouple running_time and n_frames so it can handle changing
32087           framerate while running
32088
32089 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32090
32091         * po/nl.po:
32092         * po/sv.po:
32093           updated translations
32094
32095 2004-08-04  Benjamin Otte  <otte@gnome.org>
32096
32097         * gst/videotestsrc/gstvideotestsrc.c:
32098         (gst_videotestsrc_get_capslist), (generate_capslist),
32099         (plugin_init):
32100           generate the list of supported caps at startup and reuse it instead
32101           of always generating it
32102
32103 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32104
32105         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
32106           whoops, last checkin broke normal build
32107
32108 2004-08-03  Benjamin Otte  <otte@gnome.org>
32109
32110         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
32111         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
32112         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
32113         (gst_alsa_mixer_get_option):
32114         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
32115         (dvdnavsrc_print_event):
32116         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
32117         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
32118         (gst_ogg_mux_pad_unlink):
32119         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
32120         (gst_multipart_mux_pad_unlink):
32121         * gst/videofilter/gstvideobalance.c:
32122         (gst_videobalance_colorbalance_set_value):
32123         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
32124         (gst_videomixer_pad_unlink):
32125         * po/uk.po:
32126         * sys/oss/gstossmixer.c:
32127         * sys/v4l/gstv4lcolorbalance.c:
32128         * sys/v4l/gstv4ltuner.c:
32129         * sys/v4l/v4lsrc_calls.c:
32130         * sys/v4l2/gstv4l2colorbalance.c:
32131         * sys/v4l2/gstv4l2tuner.c:
32132           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
32133
32134 2004-08-03  Benjamin Otte  <otte@gnome.org>
32135
32136         * examples/dynparams/filter.c: (ui_control_create):
32137         * examples/gstplay/player.c: (print_tag):
32138         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
32139         * ext/gdk_pixbuf/gstgdkanimation.c:
32140         (gst_gdk_animation_iter_may_advance):
32141         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
32142         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
32143         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
32144         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
32145         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
32146         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
32147         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
32148         * gst/sine/demo-dparams.c: (main):
32149         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
32150         * testsuite/alsa/formats.c: (create_pipeline):
32151         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
32152           fixes for G_DISABLE_ASSERT and friends
32153         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
32154         (mp3_type_frame_length_from_header), (mp3_type_find),
32155         (plugin_init):
32156           require mp3 typefinding to have at least MIN_HEADERS valid headers
32157           add typefinding for AAC adts files
32158
32159 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
32160
32161         * sys/ximage/ximagesink.c:
32162         (gst_ximagesink_calculate_pixel_aspect_ratio):
32163         * sys/xvimage/xvimagesink.c:
32164         (gst_xvimagesink_calculate_pixel_aspect_ratio):
32165         Make sure we calculate pixel-aspect-ratio using floating point maths
32166
32167 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32168
32169         * po/uk.po:
32170           updated translation
32171
32172 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32173
32174         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32175         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
32176           add debugging for display PAR calculation
32177
32178 2004-08-02  David Schleef  <ds@schleef.org>
32179
32180         * configure.ac: Fix mikmod CFLAGS.
32181
32182 2004-07-27  Benjamin Otte  <otte@gnome.org>
32183
32184         * gst/audioscale/gstaudioscale.c:
32185         - fix templates to only support S16, it's the only format that works
32186         - make caps nego code use try_set_caps_nonfixed and fixation instead
32187         of try_set_caps twice, which is not nice for autopluggers
32188         - change rank to secondary, so autopluggers can pick it up after
32189         audioconvert
32190
32191 2004-08-02  Iain <iain@prettypeople.org>
32192
32193         * gst/interleave/interleave.c (interleave_init),
32194         (interleave_request_new_pad),
32195         (interleave_pad_removed),
32196         (interleave_buffered_loop): Use the real pad count, not the artificial
32197         one.
32198
32199 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32200
32201         * configure.ac: bump nano back to development
32202
32203 === release 0.8.3 ===
32204
32205 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32206
32207         * configure.ac: releasing 0.8.3, "Water"
32208
32209 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32210
32211         * sys/xvimage/xvimagesink.c:
32212         (gst_xvimagesink_calculate_pixel_aspect_ratio),
32213         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
32214         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
32215         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
32216         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
32217         * sys/xvimage/xvimagesink.h:
32218           apply similar PAR fixes as to ximagesink
32219
32220 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32221
32222         patch from: Benjamin Otte
32223
32224         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
32225           add link function to lame.  Fixes #148986.
32226
32227 2004-08-02  Johan Dahlin  <johan@gnome.org>
32228
32229         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
32230         fix debugging log
32231
32232 2004-07-30  David Schleef  <ds@schleef.org>
32233
32234         * gst/videomixer/Makefile.am: Fix things that should have been
32235         fixed in the last checkin.
32236
32237 2004-07-30  David Schleef  <ds@schleef.org>
32238
32239         * gst/multipart/Makefile.am: Fix things that should have been
32240         fixed in the last checkin.
32241
32242 2004-07-30  David Schleef  <ds@schleef.org>
32243
32244         * testsuite/multifilesink/Makefile.am: Fix unused variable.
32245
32246 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
32247
32248         * configure.ac:
32249           bump nano for prerelease
32250         * po/af.po:
32251         * po/az.po:
32252         * po/cs.po:
32253         * po/en_GB.po:
32254         * po/hu.po:
32255         * po/nl.po:
32256         * po/sr.po:
32257         * po/sv.po:
32258         * po/uk.po:
32259           updates
32260
32261 2004-07-30  Wim Taymans  <wim@fluendo.com>
32262
32263         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32264         (gst_multifdsink_add), (gst_multifdsink_remove),
32265         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
32266         (gst_multifdsink_client_remove),
32267         (gst_multifdsink_handle_client_write),
32268         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32269         * gst/tcp/gstmultifdsink.h:
32270         Recover from a select with a bad file descriptor by removing
32271         the client.
32272
32273 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
32274
32275         * configure.ac:
32276           fix requirement of core
32277         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
32278         (gst_play_pipeline_setup):
32279           don't use colorspace element.  do use hermescolorspace element.
32280           make macro to get a colorspace element.
32281           mark strings for translation.
32282         * po/POTFILES.in:
32283           add play.c
32284         * po/af.po:
32285         * po/az.po:
32286         * po/cs.po:
32287         * po/en_GB.po:
32288         * po/hu.po:
32289         * po/nl.po:
32290         * po/sr.po:
32291         * po/sv.po:
32292         * po/uk.po:
32293           update translations
32294
32295 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32296
32297         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
32298         fix default for newmedia flag
32299
32300 2004-07-30  Wim Taymans  <wim@fluendo.com>
32301
32302         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32303         (gst_theora_dec_init), (theora_get_formats),
32304         (theora_dec_src_convert), (theora_dec_sink_convert),
32305         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32306         (theora_dec_chain), (theora_dec_set_property),
32307         (theora_dec_get_property):
32308         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
32309         (gst_theora_enc_class_init), (gst_theora_enc_init),
32310         (theora_enc_sink_link), (theora_enc_chain),
32311         (theora_enc_set_property), (theora_enc_get_property):
32312         Added cropping option to theora decoder.
32313         Added border option to theora encoder.
32314
32315 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32316
32317         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32318         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32319         (gst_pngenc_set_property):
32320         * ext/libpng/gstpngenc.h:
32321         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
32322
32323 2004-07-30  Wim Taymans  <wim@fluendo.com>
32324
32325         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32326         (theora_enc_sink_link), (theora_enc_chain),
32327         (theora_enc_set_property), (theora_enc_get_property):
32328         Fix encoding of non-multiple-of-16 video.
32329
32330 2004-07-29  David Schleef  <ds@schleef.org>
32331
32332         * configure.ac: make test for audiofile more strict
32333
32334 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32335
32336         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32337           give different names to typefind functions
32338
32339 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32340
32341         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32342         (gst_ximagesink_calculate_pixel_aspect_ratio),
32343         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
32344         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
32345         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
32346         (gst_ximagesink_get_property), (gst_ximagesink_init):
32347         * sys/ximage/ximagesink.h:
32348           allocate PAR's dynamically.
32349           use autodetected PAR if no object-set PAR is given.
32350           add workaround for directfb's X not setting physical size.
32351           fix to xvimagesink will follow tomorrow.
32352
32353 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32354
32355         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
32356         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
32357         (gst_shout2send_get_type), (gst_shout2send_set_clock),
32358         (gst_shout2send_class_init), (gst_shout2send_init),
32359         (set_shout_metadata), (gst_shout2send_set_metadata),
32360         (gst_shout2send_chain), (gst_shout2send_set_property),
32361         (gst_shout2send_get_property), (gst_shout2send_connect),
32362         (gst_shout2send_change_state):
32363         * ext/shout2/gstshout2.h:
32364         - fix for sending mp3 audio to icecast2 server, if pad link function not
32365         called before PAUSED state
32366         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
32367         - added tagging support for mp3 audio broadcasted
32368         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
32369         debug info
32370
32371 2004-07-28  Wim Taymans  <wim@fluendo.com>
32372
32373         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
32374         (gst_ogg_demux_push):
32375         Return query failure when we don't know the length of
32376         an ogg stream insteda of returning TRUE with a bogus value.
32377
32378 2004-07-28  Wim Taymans  <wim@fluendo.com>
32379
32380         * ext/theora/theoradec.c: (theora_get_formats),
32381         (theora_dec_src_convert), (theora_dec_sink_convert),
32382         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32383         (theora_dec_chain):
32384         Don't screw up the 1 Chroma for 1 luma sample situation when we
32385         have an odd offset/width by adding a black border in those cases.
32386
32387 2004-07-28  Wim Taymans  <wim@fluendo.com>
32388
32389         * ext/theora/theoradec.c: (theora_get_formats),
32390         (theora_dec_src_convert), (theora_dec_sink_convert),
32391         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32392         (theora_dec_chain):
32393         * ext/theora/theoraenc.c: (theora_enc_sink_link):
32394         Added first attempt at cropping of the image as required by the
32395         theora spec. We need more properties in the caps (offset_x,
32396         offset_y,stride) to implement this correctly.
32397
32398 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
32399
32400         * ext/dvdnav/README:
32401           Update the README to use dvddemux
32402         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
32403           Ensure getcaps returns a subset of the template caps
32404         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
32405         (gst_mpeg2subt_init):
32406           Ensure getcaps returns a subset of the template caps
32407         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
32408         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
32409         (gst_dvd_demux_get_subpicture_stream),
32410         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
32411         * gst/mpegstream/gstdvddemux.h:
32412           Set the explicit caps on the current_video pad before pushing
32413           anything
32414         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32415         (gst_mpeg_demux_get_audio_stream):
32416           Free caps used to gst_pad_set_explicit_caps, which takes a const
32417           GstCaps *
32418
32419 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32420
32421         * configure.ac: update GStreamer requirement to 0.8.4 because of
32422           GstFraction.
32423
32424 2004-07-28  Wim Taymans  <wim@fluendo.com>
32425
32426         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
32427         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
32428         Add the pad to the element after setting up the caps. This
32429         makes it a lot easier to autoplug.
32430
32431 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32432
32433         * gst/median/gstmedian.c:
32434         * gst/mpeg2subt/gstmpeg2subt.c:
32435         * gst/mpegaudioparse/gstmpegaudioparse.c:
32436         * gst/mpegstream/gstdvddemux.c:
32437         * gst/mpegstream/gstmpegdemux.c:
32438         * gst/mpegstream/gstmpegpacketize.c:
32439         * gst/rtjpeg/gstrtjpeg.c:
32440         * gst/rtjpeg/gstrtjpegdec.c:
32441         * gst/rtjpeg/gstrtjpegenc.c:
32442         * gst/sine/gstsinesrc.c:
32443         * gst/smooth/gstsmooth.c:
32444         * gst/smpte/gstsmpte.c:
32445         * gst/smpte/gstsmpte.h:
32446         * gst/stereo/gststereo.c:
32447         * gst/videofilter/gstgamma.c:
32448         * gst/videofilter/gstvideobalance.c:
32449         * gst/videofilter/gstvideofilter.c:
32450         * gst/videofilter/gstvideoflip.c:
32451         * gst/videoscale/gstvideoscale.c:
32452         * gst/videoscale/videoscale.c:
32453         * gst/videotestsrc/gstvideotestsrc.c:
32454         * gst/videotestsrc/videotestsrc.c:
32455         * gst/wavenc/gstwavenc.c:
32456         * gst/wavparse/gstwavparse.c:
32457           fix local includes and 64 bits constants
32458
32459 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32460
32461         * win32/gst.sln:
32462         * gst-libs/gst/*/*.vcproj:
32463         * gst/*/*.vcproj:
32464           more working plugins
32465
32466 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32467
32468         * testsuite/alsa/Makefile.am:
32469         * testsuite/alsa/srcstate.c:
32470         add test for alsasrc changing state
32471
32472 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32473
32474         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
32475         (gst_silence_get):
32476         * gst/silence/gstsilence.h:
32477         fix silence generation for 16bit raw audio
32478
32479 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32480
32481         * gst/matroska/matroska-demux.c:
32482         (gst_matroska_demux_parse_metadata),
32483         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
32484         * gst/mpegaudio/common.c:
32485         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
32486         (gst_videoscale_getcaps), (gst_videoscale_link),
32487         (gst_videoscale_src_fixate), (gst_videoscale_init),
32488         (gst_videoscale_finalize):
32489         * gst/videoscale/gstvideoscale.h:
32490         * gst/videotestsrc/gstvideotestsrc.c:
32491         (gst_videotestsrc_get_capslist):
32492         * gst/wavenc/gstwavenc.c:
32493         * sys/oss/gstossmixer.c: (fill_labels):
32494         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32495         (gst_ximagesink_handle_xevents),
32496         (gst_ximagesink_calculate_pixel_aspect_ratio),
32497         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
32498         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
32499         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
32500         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
32501         (gst_ximagesink_init), (gst_ximagesink_class_init):
32502         * sys/ximage/ximagesink.h:
32503         * sys/xvimage/xvimagesink.c:
32504         (gst_xvimagesink_calculate_pixel_aspect_ratio),
32505         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
32506         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
32507         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
32508         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
32509         * sys/xvimage/xvimagesink.h:
32510           first batch of pixel aspect ratio commits.
32511
32512 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32513
32514         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32515         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
32516         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
32517           handle stride, needs work if we want to move stride handling
32518           upstream, but works correctly for our purposes.
32519
32520 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32521
32522         * gst/videoscale/README:
32523           add testing examples
32524         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
32525         (gst_videoscale_chain):
32526         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32527         (gst_videoscale_get_size):
32528           add get_size function that handles stride like videotestsrc.
32529           fixes conversion for YUV formats for as much as I can test them.
32530
32531 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32532
32533         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32534         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
32535         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32536         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32537         (gst_xvimagesink_xvimage_put):
32538           further cleanups, logging, error handling and synchronizing
32539
32540 2004-07-27  Wim Taymans  <wim@fluendo.com>
32541
32542         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
32543         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
32544         (gst_videomixer_pad_set_property),
32545         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
32546         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
32547         (gst_videomixer_class_init), (gst_videomixer_init),
32548         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
32549         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
32550         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
32551         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
32552         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
32553         (gst_videomixer_loop), (plugin_init):
32554         Be a nicer negotiation citizen and provide a getcaps function on
32555         the srcpad. This also fixes a crash when resizing.
32556
32557 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32558
32559         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32560         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
32561
32562 2004-07-27  Wim Taymans  <wim@fluendo.com>
32563
32564         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
32565         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32566         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32567         (gst_pngenc_set_property):
32568         * ext/libpng/gstpngenc.h:
32569         Added snapshot property to pngenc.
32570         removed g_print from pngdec
32571
32572 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32573
32574         * gst/ac3parse/ac3parse.vcproj
32575         * gst/adder/adder.vcproj
32576         * gst/alpha/alpha.vcproj
32577         * gst/alpha/alphacolor.vcproj
32578         * gst/asfdemux/asf.vcproj
32579         * gst/audioconvert/audioconvert.vcproj
32580         * gst/audiorate/audiorate.vcproj
32581         * gst/audioscale/audioscale.vcproj
32582         * gst/auparse/auparse.vcproj
32583         * gst/avi/avi.vcproj
32584         * gst/cdxaparse/cdxaparse.vcproj
32585         * gst/chart/chart.vcproj
32586         * gst/colorspace/colorspace.vcproj
32587         * gst/cutter/cutter.vcproj
32588         * gst/debug/debug.vcproj
32589         * gst/debug/efence.vcproj
32590         * gst/debug/navigationtest.vcproj
32591         * gst/deinterlace/deinterlace.vcproj
32592         * gst/effectv/effectv.vcproj
32593         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32594         * gst/filter/filter.vcproj
32595         * gst/flx/flxdec.vcproj
32596         * gst/goom/goom.vcproj
32597         * gst/interleave/interleave.vcproj
32598         * gst/law/alaw.vcproj
32599         * gst/law/mulaw.vcproj
32600         * gst/matroska/matroska.vcproj
32601         * gst/median/median.vcproj
32602         * gst/mixmatrix/mixmatrix.vcproj
32603         * gst/mpeg1sys/mpeg1systemencode.vcproj
32604         * gst/mpeg1videoparse/mp1videoparse.vcproj
32605         * gst/mpeg2sub/mpeg2subt.vcproj
32606         * gst/mpegaudio/mpegaudio.vcproj
32607         * gst/mpegaudioparse/mpegaudioparse.vcproj
32608         * gst/mpegstream/mpegstream.vcproj
32609         * gst/multifilesink/multifilesink.vcproj
32610         * gst/multipart/multipart.vcproj
32611         * gst/oneton/oneton.vcproj
32612         * gst/overlay/overlay.vcproj
32613         * gst/passthrough/passthrough.vcproj
32614         * gst/qtdemux/qtdemux.vcproj
32615         * gst/realmedia/rmdemux.vcproj
32616         * gst/rtjpeg/rtjpeg.vcproj
32617         * gst/rtp/rtp.vcproj
32618         * gst/silence/silence.vcproj
32619         * gst/sine/sinesrc.vcproj
32620         * gst/smooth/smooth.vcproj
32621         * gst/smpte/smpte.vcproj
32622         * gst/spectrum/spectrum.vcproj
32623         * gst/speed/speed.vcproj
32624         * gst/stereo/stereo.vcproj
32625         * gst/switch/switch.vcproj
32626         * gst/tags/tagedit.vcproj
32627         * gst/tcp/tcp.vcproj
32628         * gst/typefind/typefindfunctions.vcproj
32629         * gst/udp/udp.vcproj
32630         * gst/videobox/videobox.vcproj
32631         * gst/videocrop/videocrop.vcproj
32632         * gst/videodrop/videodrop.vcproj
32633         * gst/videofilter/gamma.vcproj
32634         * gst/videofilter/videobalance.vcproj
32635         * gst/videofilter/videofilter.vcproj
32636         * gst/videofilter/videoflip.vcproj
32637         * gst/videoflip/videoflip.vcproj
32638         * gst/videomixer/videomixer.vcproj
32639         * gst/videorate/videorate.vcproj
32640         * gst/videoscale/videoscale.vcproj
32641         * gst/videotestsrc/videotestsrc.vcproj
32642         * gst/virtualdub/virtualdub.vcproj
32643         * gst/volenv/volenv.vcproj
32644         * gst/volume/volume.vcproj
32645         * gst/wavenc/wavenc.vcproj
32646         * gst/wavparse/wavparse.vcproj
32647         * gst/y4m/y4menc.vcproj
32648         * gst-libs/gst/audio/audio.vcproj
32649         * gst-libs/gst/audio/audiofilter.vcproj
32650         * gst-libs/gst/colorbalance/colorbalance.vcproj
32651         * gst-libs/gst/idct/idtc.vcproj
32652         * gst-libs/gst/media-info/media-info.vcproj
32653         * gst-libs/gst/mixer/mixer.vcproj
32654         * gst-libs/gst/navigation/navigation.vcproj
32655         * gst-libs/gst/play/play.vcproj
32656         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
32657         * gst-libs/gst/resample/resample.vcproj
32658         * gst-libs/gst/riff/riff.vcproj
32659         * gst-libs/gst/tuner/tuner.vcproj
32660         * gst-libs/gst/video/video.vcproj
32661         * gst-libs/gst/xoverlay/xoverlay.vcproj
32662           avoid problems with math.h, fix release dependancy
32663           rename GStreamer-0.8.lib to libgstreamer.lib
32664
32665 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32666
32667         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32668         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
32669         the atom is not available we have to unlock the mutex. Fixes #148023
32670
32671 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32672
32673         * gst-libs/gst/media-info/media-info.h:
32674           issue for a vararg macro with MSVC
32675
32676 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32677
32678         * gst/effectv/effectv.vcproj
32679         * gst-libs/gst/idct/idct.vcproj:
32680         * gst-libs/gst/media-info/media-info.vcproj:
32681         * gst-libs/gst/navigation/navigation.vcproj:
32682         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32683         * gst-libs/gst/video/video.vcproj:
32684         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32685           fixes for build problems
32686
32687 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32688
32689         * gst-libs/gst/audio/audio.def:
32690         * gst-libs/gst/audio/riff.def:
32691           add some definitions needed by plugins
32692
32693 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32694
32695         * gst/asfdemux/gstasfmux.c
32696           Fix some 64 bits constants to be glib friendly
32697
32698 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32699
32700         * gst/ac3parse/gstac3parse.c
32701         * gst/audioscale/gstaudioscale.c
32702         * gst/auparse/gstauparse.c
32703         * gst/colorspace/gstcolorspace.c
32704         * gst/colorspace/yuv2rgb.h
32705           local include fixes
32706
32707 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32708
32709         * win32/gst.sln
32710           add more plugins to the build
32711
32712 2004-07-26  Julien MOUTTE  <julien@moutte.net>
32713
32714         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32715         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
32716
32717 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32718
32719         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
32720         (gst_level_set_property), (gst_level_get_property),
32721         (gst_level_base_init), (gst_level_class_init):
32722           add debugging categories.  cleanups.
32723
32724 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32725
32726         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32727         (gst_videoscale_planar411), (gst_videoscale_planar400),
32728         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
32729         (gst_videoscale_scale_nearest_str1),
32730         (gst_videoscale_scale_nearest_str2),
32731         (gst_videoscale_scale_nearest_str4),
32732         (gst_videoscale_scale_nearest_16bit),
32733         (gst_videoscale_scale_nearest_24bit):
32734           fixed stride issues
32735           tested with 320x240 -> 321, 322, 324 x240
32736           tested with YV12, I420, YUY2, UYVY
32737           fixed packed422rev (don't think it could have worked before)
32738           by testing with UYVY
32739
32740 2004-07-26  Benjamin Otte  <otte@gnome.org>
32741
32742         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
32743         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
32744         (plugin_init):
32745           add debugging category, add error checks like checking return values
32746           of setup calls, make sure it still works after
32747           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
32748
32749 2004-07-26  Wim Taymans  <wim@fluendo.com>
32750
32751         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32752         (gst_mpeg_demux_get_audio_stream),
32753         (gst_mpeg_demux_process_private):
32754         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
32755         Check for error codes from the negotiation functions. Make sure
32756         we really set the pad caps when a new pad is created.
32757
32758 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32759
32760         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
32761         (gst_ffmpeg_caps_to_pix_fmt):
32762         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
32763         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32764         (gst_ffmpegcolorspace_pad_link):
32765           don't make function do two things at the same time without reason.
32766
32767 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32768
32769         * gst/ac3parse/ac3parse.vcproj
32770         * gst/adder/adder.vcproj
32771         * gst/alpha/alpha.vcproj
32772         * gst/alpha/alphacolor.vcproj
32773         * gst/asfdemux/asf.vcproj
32774         * gst/audioconvert/audioconvert.vcproj
32775         * gst/audiorate/audiorate.vcproj
32776         * gst/audioscale/audioscale.vcproj
32777         * gst/auparse/auparse.vcproj
32778         * gst/avi/avi.vcproj
32779         * gst/cdxaparse/cdxaparse.vcproj
32780         * gst/chart/chart.vcproj
32781         * gst/colorspace/colorspace.vcproj
32782         * gst/cutter/cutter.vcproj
32783         * gst/debug/debug.vcproj
32784         * gst/debug/efence.vcproj
32785         * gst/debug/navigationtest.vcproj
32786         * gst/deinterlace/deinterlace.vcproj
32787         * gst/effectv/effectv.vcproj
32788         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32789         * gst/filter/filter.vcproj
32790         * gst/flx/flxdec.vcproj
32791         * gst/goom/goom.vcproj
32792         * gst/interleave/interleave.vcproj
32793         * gst/law/alaw.vcproj
32794         * gst/law/mulaw.vcproj
32795         * gst/matroska/matroska.vcproj
32796         * gst/median/median.vcproj
32797         * gst/mixmatrix/mixmatrix.vcproj
32798         * gst/mpeg1sys/mpeg1systemencode.vcproj
32799         * gst/mpeg1videoparse/mp1videoparse.vcproj
32800         * gst/mpeg2sub/mpeg2subt.vcproj
32801         * gst/mpegaudio/mpegaudio.vcproj
32802         * gst/mpegaudioparse/mpegaudioparse.vcproj
32803         * gst/mpegstream/mpegstream.vcproj
32804         * gst/multifilesink/multifilesink.vcproj
32805         * gst/multipart/multipart.vcproj
32806         * gst/oneton/oneton.vcproj
32807         * gst/overlay/overlay.vcproj
32808         * gst/passthrough/passthrough.vcproj
32809         * gst/qtdemux/qtdemux.vcproj
32810         * gst/realmedia/rmdemux.vcproj
32811         * gst/rtjpeg/rtjpeg.vcproj
32812         * gst/rtp/rtp.vcproj
32813         * gst/silence/silence.vcproj
32814         * gst/sine/sinesrc.vcproj
32815         * gst/smooth/smooth.vcproj
32816         * gst/smpte/smpte.vcproj
32817         * gst/spectrum/spectrum.vcproj
32818         * gst/speed/speed.vcproj
32819         * gst/stereo/stereo.vcproj
32820         * gst/switch/switch.vcproj
32821         * gst/tags/tagedit.vcproj
32822         * gst/tcp/tcp.vcproj
32823         * gst/typefind/typefindfunctions.vcproj
32824         * gst/udp/udp.vcproj
32825         * gst/videobox/videobox.vcproj
32826         * gst/videocrop/videocrop.vcproj
32827         * gst/videodrop/videodrop.vcproj
32828         * gst/videofilter/gamma.vcproj
32829         * gst/videofilter/videobalance.vcproj
32830         * gst/videofilter/videofilter.vcproj
32831         * gst/videofilter/videoflip.vcproj
32832         * gst/videoflip/videoflip.vcproj
32833         * gst/videomixer/videomixer.vcproj
32834         * gst/videorate/videorate.vcproj
32835         * gst/videoscale/videoscale.vcproj
32836         * gst/videotestsrc/videotestsrc.vcproj
32837         * gst/virtualdub/virtualdub.vcproj
32838         * gst/volenv/volenv.vcproj
32839         * gst/volume/volume.vcproj
32840         * gst/wavenc/wavenc.vcproj
32841         * gst/wavparse/wavparse.vcproj
32842         * gst/y4m/y4menc.vcproj
32843           more plugins supported under windows
32844
32845 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32846
32847         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32848         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
32849         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
32850         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32851         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
32852           Add debugging statements.  Use the sizes as returned by the
32853           *CreateImage calls.
32854
32855 2004-07-26  Johan Dahlin  <johan@gnome.org>
32856
32857         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
32858         the pad is negotiated.
32859
32860         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
32861
32862 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32863
32864         * gst-libs/gst/colorbalance/colorbalance.vcproj:
32865         * gst-libs/gst/idct/idct.vcproj:
32866         * gst-libs/gst/media-info/media-info.vcproj:
32867         * gst-libs/gst/mixer/mixer.vcproj:
32868         * gst-libs/gst/navigation/navigation.vcproj:
32869         * gst-libs/gst/play/play.vcproj:
32870         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32871         * gst-libs/gst/resample/resample.vcproj:
32872         * gst-libs/gst/tuner/tuner.vcproj:
32873         * gst-libs/gst/video/video.vcproj:
32874         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32875           more plugins supported under windows
32876
32877 2004-07-25 Iain <iain@prettypeople.org>
32878
32879         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
32880         pad now rather than when the pad is created because state changes wipe
32881         explicit caps (fixes #148043).
32882
32883 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
32884
32885         reviewed by Benjamin Otte  <otte@gnome.org>
32886
32887         * ext/mad/gstmad.c:
32888           fix mad plugin crashing on Sun (fixes #148289)
32889
32890 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32891
32892         * gst/avi/avi.def:
32893         * gst/avi/avi.vcproj:
32894         * gst/matroska/matroska.def:
32895         * gst/matroska/matroska.vcproj:
32896           remove unused .def files
32897
32898 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32899
32900         * gst-libs/gst/audio/gstaudiofilter.c:
32901           Clean the local include
32902
32903 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32904
32905         * win32/gst.sln:
32906         * gst-libs/gst/audio/audio.def:
32907         * gst-libs/gst/audio/audio.vcproj:
32908         * gst-libs/gst/audio/audiofilter.vcproj:
32909         * gst-libs/gst/audio/riff.def:
32910         * gst-libs/gst/audio/riff.vcproj:
32911         * gst-libs/gst/gst-libs.def:
32912         * gst-libs/gst/gst-libs.vcproj:
32913         * gst/avi/avi.vcproj:
32914         * gst/avi/avi.vcproj:
32915           Copy the files where needed after building, cleaner projects
32916
32917 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32918
32919         * gst/matroska/ebml-write.c:
32920           Fix some 64 bits constants to be glib friendly
32921
32922 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
32923
32924         * win32/gst.sln:
32925         * gst-libs/gst/gst-libs.def:
32926         * gst-libs/gst/gst-libs.vcproj:
32927         * gst/matroska/matroska.def:
32928         * gst/matroska/matroska.vcproj:
32929           Add the preliminary canvas to build plugins on Win32
32930
32931 2004-07-23  Benjamin Otte  <otte@gnome.org>
32932
32933         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
32934           don't enfore negotiation from source side, it breaks
32935           sinesrc ! audioconvert ! osssink
32936
32937 2004-07-22  David Schleef  <ds@schleef.org>
32938
32939         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
32940         for ELF files, since they can easily be recognized as audio/mpeg.
32941         (bug #147441)
32942
32943 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32944
32945         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32946         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
32947         (gst_videoscale_scale_nearest_24bit),
32948         (gst_videoscale_scale_nearest_16bit):
32949           fix 16bit and 24bit for stride (24bit might need testing)
32950           don't pretend we do more than one algorithm
32951
32952 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32953
32954         * configure.ac:
32955         * gst/Makefile.am:
32956         * gst/multifilesink/Makefile.am:
32957         * gst/multifilesink/gstmultifilesink.c:
32958         (gst_multifilesink_get_formats),
32959         (gst_multifilesink_get_query_types), (_do_init),
32960         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
32961         (gst_multifilesink_init), (gst_multifilesink_dispose),
32962         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
32963         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
32964         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
32965         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
32966         (gst_multifilesink_chain), (gst_multifilesink_change_state),
32967         (gst_multifilesink_uri_get_type),
32968         (gst_multifilesink_uri_get_protocols),
32969         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
32970         (gst_multifilesink_uri_handler_init), (plugin_init):
32971         * gst/multifilesink/gstmultifilesink.h:
32972         * testsuite/Makefile.am:
32973         * testsuite/multifilesink/Makefile.am:
32974         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
32975         (gst_newmedia_class_init), (gst_newmedia_init),
32976         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
32977         (newfile_signal), (test_signal), (main):
32978         multifilesink plugin for creating new files every time a new media
32979         discontinuity event occurs
32980
32981 2004-07-22  Wim Taymans  <wim@fluendo.com>
32982
32983         * gst/alpha/Makefile.am:
32984         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
32985         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
32986         (gst_alpha_color_init), (gst_alpha_color_set_property),
32987         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
32988         (transform), (gst_alpha_color_chain),
32989         (gst_alpha_color_change_state), (plugin_init):
32990         Stupid plugin to to RGBA to AYUV conversion because none of
32991         the colorspace plugins can handle that yet.
32992
32993 2004-07-22  Wim Taymans  <wim@fluendo.com>
32994
32995         * examples/seeking/seek.c: (update_scale), (main):
32996         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32997         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32998         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32999         (gst_decode_bin_init), (gst_decode_bin_dispose),
33000         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33001         (no_more_pads), (close_link), (type_found),
33002         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33003         (plugin_init):
33004         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33005         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33006         (gst_play_base_bin_dispose), (queue_overrun),
33007         (gen_preroll_element), (remove_prerolls), (unknown_type),
33008         (no_more_pads), (new_stream), (setup_source),
33009         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
33010         (play_base_eos), (gst_play_base_bin_change_state),
33011         (gst_play_base_bin_add_element),
33012         (gst_play_base_bin_remove_element),
33013         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33014         (gst_play_base_bin_unlink_stream),
33015         (gst_play_base_bin_get_streaminfo):
33016         * gst/playback/gstplaybin.c: (gen_video_element),
33017         (gen_audio_element):
33018         * gst/playback/gststreaminfo.h:
33019         More playback updates, attempt to fix things after the state change
33020         breakage.
33021
33022 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
33023
33024         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
33025         (gst_videoscale_scale_nearest_16bit):
33026           comment algorithm
33027
33028 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
33029
33030         * gst/videotestsrc/gstvideotestsrc.c:
33031         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
33032         (gst_videotestsrc_init), (gst_videotestsrc_get),
33033         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
33034         (gst_videotestsrc_get_property):
33035         * gst/videotestsrc/gstvideotestsrc.h:
33036         * gst/videotestsrc/videotestsrc.c:
33037         * gst/videotestsrc/videotestsrc.h:
33038           cleanup and commenting
33039
33040 2004-07-21  Wim Taymans  <wim@fluendo.com>
33041
33042         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
33043         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
33044         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
33045         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
33046         (_find_chain_get_unknown_part), (_find_streams_check),
33047         (gst_ogg_demux_push), (gst_ogg_pad_push):
33048         * ext/theora/theoradec.c: (theora_get_formats),
33049         (theora_dec_src_convert), (theora_dec_sink_convert),
33050         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
33051         (theora_dec_chain):
33052         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
33053         (vorbis_dec_convert), (vorbis_dec_src_query),
33054         (vorbis_dec_src_event), (vorbis_dec_event):
33055         More seeking fixes, oggdemux now supports seeking to time and
33056         uses the downstream element to convert granulepos to time.
33057         Seeking in theora-only ogg files now works.
33058
33059 2004-07-21  Wim Taymans  <wim@fluendo.com>
33060
33061         * ext/theora/theoradec.c: (gst_theora_dec_init),
33062         (theora_get_formats), (theora_get_event_masks),
33063         (theora_get_query_types), (theora_dec_src_convert),
33064         (theora_dec_sink_convert), (theora_dec_src_query),
33065         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
33066         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
33067         (vorbis_get_event_masks), (vorbis_get_query_types),
33068         (gst_vorbis_dec_init), (vorbis_dec_convert),
33069         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
33070         Added query/convert/formats functions to vorbis and theora decoders
33071         so that the outside world can use them too. Fixed seeking on an
33072         ogg/theora/vorbis file by disabling the seeking seeking on the
33073         theora srcpad.
33074
33075 2004-07-21  Julien MOUTTE  <julien@moutte.net>
33076
33077         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
33078         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
33079         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
33080         images creation for both elements. We don't create the image on caps
33081         nego or renego, we just destroy the internal one if present if it does
33082         not match the needs. The chain function takes care of creating a new
33083         image when needed.
33084         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
33085         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
33086         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
33087         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
33088         the image format information. The buffer pool checks for the context
33089         image format and discard images with different formats.
33090         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
33091
33092 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
33093
33094         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33095         (gst_ffmpegcolorspace_chain):
33096           no point in doing any chaining if the pad we want to push from
33097           isn't usable.
33098
33099 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33100
33101         * gst-libs/gst/riff/riff-media.c:
33102         (gst_riff_create_audio_caps_with_data):
33103           Fix double end-to-native symbol conversion (#148021).
33104
33105 2004-07-20  David Schleef  <ds@schleef.org>
33106
33107         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
33108         Don't use an Atom that doesn't exist.
33109
33110 2004-07-20  Wim Taymans  <wim@fluendo.com>
33111
33112         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33113         (gst_multifdsink_add), (gst_multifdsink_get_stats),
33114         (gst_multifdsink_client_remove),
33115         (gst_multifdsink_handle_client_write),
33116         (gst_multifdsink_queue_buffer):
33117         * gst/tcp/gstmultifdsink.h:
33118         More multifdsink stats. Avoid deadlock by releasing locks
33119         before sending out a signal.
33120
33121 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
33122
33123         * po/LINGUAS:
33124         * po/hu.po:
33125           added Hungarian translation (Laszlo Dvornik)
33126
33127 2004-07-20  Wim Taymans  <wim@fluendo.com>
33128
33129         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33130         (gst_multifdsink_add), (gst_multifdsink_client_remove),
33131         (gst_multifdsink_handle_client_write),
33132         (gst_multifdsink_queue_buffer):
33133         * gst/tcp/gsttcp-marshal.list:
33134         Fixed the stupid marshal definition.
33135
33136 2004-07-20  Wim Taymans  <wim@fluendo.com>
33137
33138         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33139         (gst_multifdsink_init), (gst_multifdsink_add),
33140         (gst_multifdsink_client_remove),
33141         (gst_multifdsink_handle_client_write),
33142         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
33143         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
33144         (gst_multifdsink_init_send):
33145         * gst/tcp/gstmultifdsink.h:
33146         Added more stats, added timeout for a client, fixed some typos
33147         and added some comments.
33148
33149 2004-07-20  Wim Taymans  <wim@fluendo.com>
33150
33151         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33152         (gst_multifdsink_add), (gst_multifdsink_get_stats),
33153         (gst_multifdsink_client_remove),
33154         (gst_multifdsink_handle_client_write):
33155         * gst/tcp/gstmultifdsink.h:
33156         * gst/tcp/gsttcp-marshal.list:
33157         Added get_stats method that returns a GValueArray of
33158         stats values.
33159
33160 2004-07-19  Benjamin Otte  <otte@gnome.org>
33161
33162         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
33163           make sure longname, description and author are valid UTF-8
33164
33165 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
33166
33167         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
33168         (gst_ximagesink_set_property):
33169         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
33170         (gst_xvimagesink_set_property):
33171           make sure SYNCHRONOUS is respected after getting the X context
33172
33173 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33174
33175         * gst/matroska/matroska-demux.c:
33176         (gst_matroska_demux_handle_src_event),
33177         (gst_matroska_demux_parse_blockgroup):
33178         * gst/matroska/matroska-ids.h:
33179           add BlockReference tag and ignore it to clear out log.
33180           ignore NAVIGATION events to clear out log.
33181
33182 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33183
33184         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
33185         (gst_matroska_demux_add_stream):
33186         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
33187           add debug categories
33188
33189 2004-07-16  Wim Taymans  <wim@fluendo.com>
33190
33191         * ext/libpng/Makefile.am:
33192         * ext/libpng/gstpng.c: (plugin_init):
33193         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
33194         (gst_pngdec_get_type), (gst_pngdec_base_init),
33195         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
33196         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
33197         * ext/libpng/gstpngdec.h:
33198         Added png decoder.
33199
33200 2004-07-16  Julien MOUTTE  <julien@moutte.net>
33201
33202         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
33203         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
33204         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
33205         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
33206         (gst_ximagesink_buffer_alloc):
33207         * sys/ximage/ximagesink.h:
33208         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
33209         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
33210         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
33211         (gst_xvimagesink_buffer_alloc):
33212         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
33213         again. Using internal data pointer of the x(v)image to store image's
33214         data to be coherent with the buffer alloc mechanism. Investigated the
33215         image destruction code to be sure that everything gets freed correctly.
33216
33217 2004-07-16  Wim Taymans  <wim@fluendo.com>
33218
33219         * gst-libs/gst/riff/riff-read.c:
33220         (gst_riff_read_strf_vids_with_data),
33221         (gst_riff_read_strf_auds_with_data):
33222         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
33223         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
33224         Make sure we don't create 0 sized subbuffers in riff-read.
33225         Signal the no more pads signal after reading the avi header.
33226
33227 2004-07-16  Wim Taymans  <wim@fluendo.com>
33228
33229         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33230         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
33231         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
33232         (gst_decode_bin_init), (gst_decode_bin_dispose),
33233         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33234         (no_more_pads), (close_link), (type_found),
33235         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33236         (gst_decode_bin_change_state), (plugin_init):
33237         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33238         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33239         (gst_play_base_bin_dispose), (queue_overrun),
33240         (gen_preroll_element), (remove_prerolls), (unknown_type),
33241         (no_more_pads), (new_stream), (setup_source),
33242         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
33243         (play_base_eos), (gst_play_base_bin_change_state),
33244         (gst_play_base_bin_add_element),
33245         (gst_play_base_bin_remove_element),
33246         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33247         (gst_play_base_bin_unlink_stream),
33248         (gst_play_base_bin_get_streaminfo):
33249         * gst/playback/gstplaybasebin.h:
33250         Better error recovery. Added configurable preroll queue size. Faster
33251         detection of no-more-pads.
33252
33253 2004-07-16  Wim Taymans  <wim@fluendo.com>
33254
33255         * gst-libs/gst/video/video.h:
33256         Added 32 bits RGBA. Not sure if we should use another mime-type
33257         for alpha rgb. Currently the presence of the alpha_mask property
33258         signals an alpha channel.
33259
33260 2004-07-16  Wim Taymans  <wim@fluendo.com>
33261
33262         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
33263         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
33264         FPS seems to be 0.0 to MAX everywhere else.
33265
33266 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33267
33268         * gst-libs/gst/riff/riff-media.c:
33269         (gst_riff_create_video_caps_with_data):
33270           mp42/mp43 (no caps) exist too.
33271         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
33272           Set pixel_width/height; we've got them in-caps.
33273         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
33274         * gst/wavparse/gstwavparse.c: (plugin_init):
33275           Both are valid primary.
33276         * sys/oss/gstossmixer.c:
33277           Remove i18n hack and enable translations.
33278
33279 2004-07-15  Benjamin Otte  <otte@gnome.org>
33280
33281         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
33282         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
33283           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
33284
33285 2004-07-15  Benjamin Otte  <otte@gnome.org>
33286
33287         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33288         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
33289         (gst_alsa_close_audio):
33290           disable some of the debugging code for now. Writing debugging to a
33291           buffer is broken in current alsalib releases.
33292
33293 2004-07-12  Benjamin Otte  <otte@gnome.org>
33294
33295         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
33296           use bufferpools
33297
33298 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33299
33300         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
33301         (theora_dec_src_query), (theora_dec_event):
33302         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
33303           add debugging categories.  Remove \n's.
33304
33305 2004-07-13  Johan Dahlin  <johan@gnome.org>
33306
33307         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
33308         (gst_play_bin_get_property): Impl.
33309
33310 2004-07-13  Wim Taymans  <wim@fluendo.com>
33311
33312         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
33313         When trying to find the stream length, seek back N pages
33314         instead of just one, where N is the number of streams in
33315         the current chain.
33316
33317 2004-07-13  Wim Taymans  <wim@fluendo.com>
33318
33319         * gst-libs/gst/riff/riff-media.c:
33320         (gst_riff_create_audio_caps_with_data),
33321         (gst_riff_create_audio_caps),
33322         (gst_riff_create_audio_template_caps):
33323         * gst-libs/gst/riff/riff-media.h:
33324         * gst-libs/gst/riff/riff-read.c:
33325         (gst_riff_read_strf_vids_with_data),
33326         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
33327         * gst-libs/gst/riff/riff-read.h:
33328         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
33329         (gst_avi_demux_add_stream):
33330         Set codec_data on caps for avidemuxer.
33331
33332 2004-07-12  David Schleef  <ds@schleef.org>
33333
33334         * configure.ac: Fix test for Objective C
33335
33336 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
33337         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
33338         (gst_gdk_pixbuf_chain):
33339           Add svg and pcx to template caps, and ensure that getcaps returns a
33340           subset of the template caps.
33341           Copy each row manually for output, as gdkpixbuf may pad the
33342           rowstride to a 32-bit word boundary.
33343
33344 2004-07-12  Wim Taymans  <wim@fluendo.com>
33345
33346         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
33347         (gst_riff_create_video_template_caps):
33348         Fix the template caps to include some more media types.
33349
33350 2004-07-12  Wim Taymans  <wim@fluendo.com>
33351
33352         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33353         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33354         (compare_ranks), (print_feature), (gst_decode_bin_init),
33355         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33356         (try_to_link_1), (new_pad), (close_link), (type_found),
33357         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33358         (gst_decode_bin_change_state), (plugin_init):
33359         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33360         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33361         (gst_play_base_bin_dispose), (queue_overrun),
33362         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33363         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33364         (gst_play_base_bin_get_property), (play_base_eos),
33365         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33366         (gst_play_base_bin_remove_element),
33367         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33368         (gst_play_base_bin_unlink_stream),
33369         (gst_play_base_bin_get_streaminfo):
33370         * gst/playback/gstplaybasebin.h:
33371         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33372         (gst_play_bin_class_init), (gst_play_bin_init),
33373         (gst_play_bin_dispose), (gst_play_bin_set_property),
33374         (gst_play_bin_get_property), (gen_video_element),
33375         (gen_audio_element), (remove_sinks), (setup_sinks),
33376         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33377         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33378         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33379         (gst_play_bin_query), (plugin_init):
33380         * gst/playback/test4.c: (main):
33381         More fixes on reusing of the element.
33382
33383 2004-07-11  Benjamin Otte  <otte@gnome.org>
33384
33385         * ext/mad/gstmad.c: (normal_seek):
33386           allow seeking for other methods than just SET
33387
33388 2004-07-11  Andy Wingo  <wingo@pobox.com>
33389
33390         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
33391         float, "any" caps -> buffer_frames=[0,MAX].
33392
33393         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
33394         doesn't intersect our caps with the template any more. Do it
33395         ourselves.
33396         (interleave_buffered_loop): Use g_newa instead of malloc/free.
33397
33398 2004-07-09  Wim Taymans  <wim@fluendo.com>
33399
33400         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33401         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33402         (compare_ranks), (print_feature), (gst_decode_bin_init),
33403         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33404         (try_to_link_1), (new_pad), (close_link), (type_found),
33405         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33406         (gst_decode_bin_change_state), (plugin_init):
33407         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33408         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33409         (gst_play_base_bin_dispose), (queue_overrun),
33410         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33411         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33412         (gst_play_base_bin_get_property), (play_base_eos),
33413         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33414         (gst_play_base_bin_remove_element),
33415         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33416         (gst_play_base_bin_unlink_stream),
33417         (gst_play_base_bin_get_streaminfo):
33418         * gst/playback/gstplaybasebin.h:
33419         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33420         (gst_play_bin_class_init), (gst_play_bin_init),
33421         (gst_play_bin_dispose), (gst_play_bin_set_property),
33422         (gst_play_bin_get_property), (gen_video_element),
33423         (gen_audio_element), (remove_sinks), (setup_sinks),
33424         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33425         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33426         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33427         (gst_play_bin_query), (plugin_init):
33428         * gst/playback/test4.c: (main):
33429         Work on object reuse and seeking.
33430
33431 2004-07-09  Wim Taymans  <wim@fluendo.com>
33432
33433         * examples/seeking/seek.c: (iterate):
33434         Don't consume all CPU in the idle loop.
33435
33436 2004-07-09  Wim Taymans  <wim@fluendo.com>
33437
33438         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
33439         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
33440         Add pad to element *after* setting the pad functions so that
33441         the scheduler can use the correct ones.
33442
33443 2004-07-09  Wim Taymans  <wim@fluendo.com>
33444
33445         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33446         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
33447         Sync to keyframe after seek
33448
33449 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33450
33451         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
33452         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
33453         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
33454         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
33455         * ext/libvisual/visual.c: (gst_visual_change_state):
33456         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
33457         * ext/theora/theoradec.c: (theora_dec_change_state):
33458         * ext/theora/theoraenc.c: (theora_enc_change_state):
33459         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
33460         * gst-libs/gst/navigation/navigation.c:
33461         * gst/adder/gstadder.c: (gst_adder_change_state):
33462         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
33463         (gst_audio_convert_get_buffer):
33464         * gst/multipart/multipartdemux.c:
33465         (gst_multipart_demux_change_state):
33466         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
33467         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
33468         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
33469         * gst/videoscale/gstvideoscale.c:
33470         (gst_videoscale_handle_src_event):
33471         * gst/volume/gstvolume.c: (volume_chain_int16):
33472           don't assert in state change, this should be done by the base
33473           GstElement class.
33474           various debugging fixes.
33475
33476 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33477
33478         * configure.ac:
33479         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33480         (gst_play_dispose), (gst_play_set_location),
33481         (gst_play_set_data_src), (gst_play_set_video_sink),
33482         (gst_play_set_audio_sink), (gst_play_set_visualization),
33483         (gst_play_connect_visualization), (gst_play_get_sink_element),
33484         (gst_play_get_all_by_interface):
33485         * gst-libs/gst/play/play.h:
33486           add new method to get elements implementing an interface.
33487           add various error logging
33488
33489 2004-07-08  Wim Taymans  <wim@fluendo.com>
33490
33491         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
33492         (make_mpeg_pipeline), (make_mpegnt_pipeline),
33493         (make_playerbin_pipeline), (query_durations_elems),
33494         (query_durations_pads), (query_positions_elems),
33495         (query_positions_pads), (update_scale), (iterate), (stop_seek),
33496         (main):
33497         Added playbin seeking example.
33498
33499 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33500
33501         * gst-libs/gst/play/play.c: (gst_play_set_location),
33502         (gst_play_set_data_src), (gst_play_set_video_sink),
33503         (gst_play_set_audio_sink), (gst_play_set_visualization),
33504         (gst_play_connect_visualization), (gst_play_get_framerate):
33505           use a macro to look up elements from hash table
33506
33507 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33508
33509         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33510         (gst_play_get_length_callback), (gst_play_set_location),
33511         (gst_play_seek_to_time), (gst_play_set_data_src),
33512         (gst_play_set_video_sink), (gst_play_set_audio_sink),
33513         (gst_play_set_visualization), (gst_play_connect_visualization),
33514         (gst_play_get_sink_element):
33515         - add debugging info
33516         - fix looking up sink elements by iterating over complete caps
33517         - put everything except for source and autoplugger in a complete bin
33518
33519 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33520
33521         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
33522         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
33523         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
33524         (gst_alsa_sink_write), (gst_alsa_sink_loop):
33525         * ext/alsa/gstalsasink.h:
33526         - add debugging info
33527         - clean up schizophrenia of data/buffer/event
33528         - fix double event unref error
33529
33530 2004-07-08  Wim Taymans  <wim@fluendo.com>
33531
33532         * gst/playback/Makefile.am:
33533         Add headers to noinst
33534
33535 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33536
33537         * tools/gst-launch-ext-m.m:
33538         * tools/gst-launch-ext.1.in:
33539           convert to the third millenium
33540
33541 2004-07-07  David Schleef  <ds@schleef.org>
33542
33543         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
33544
33545 2004-07-07  Wim Taymans  <wim@fluendo.com>
33546
33547         * gst/playback/Makefile.am:
33548         * gst/playback/README:
33549         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33550         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33551         (compare_ranks), (print_feature), (gst_decode_bin_init),
33552         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33553         (try_to_link_1), (new_pad), (close_link), (type_found),
33554         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33555         (plugin_init):
33556         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33557         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33558         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
33559         (gen_preroll_element), (no_more_pads), (new_stream),
33560         (setup_source), (gst_play_base_bin_set_property),
33561         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
33562         (gst_play_base_bin_add_element),
33563         (gst_play_base_bin_remove_element),
33564         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33565         (gst_play_base_bin_unlink_stream),
33566         (gst_play_base_bin_get_streaminfo):
33567         * gst/playback/gstplaybasebin.h:
33568         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33569         (gst_play_bin_class_init), (gst_play_bin_init),
33570         (gst_play_bin_dispose), (gst_play_bin_set_property),
33571         (gst_play_bin_get_property), (gen_video_element),
33572         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
33573         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
33574         (gst_play_bin_get_formats), (gst_play_bin_convert),
33575         (gst_play_bin_get_query_types), (gst_play_bin_query),
33576         (plugin_init):
33577         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
33578         (gst_stream_info_get_type), (gst_stream_info_class_init),
33579         (gst_stream_info_init), (gst_stream_info_new),
33580         (gst_stream_info_dispose), (gst_stream_info_set_property),
33581         (gst_stream_info_get_property):
33582         * gst/playback/gststreaminfo.h:
33583         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
33584         (main):
33585         * gst/playback/test2.c: (main):
33586         * gst/playback/test3.c: (update_scale), (main):
33587         More playbin fixes. Added README. Do better element filtering.
33588         Added base class to preroll media. Added test apps.
33589
33590 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33591
33592         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
33593         * ext/mpeg2dec/gstmpeg2dec.h:
33594           various debugging improvements.  Reset stream to next picture
33595           instead of sequence header, otherwise seeks cannot work.
33596
33597 2004-07-07  Wim Taymans  <wim@fluendo.com>
33598
33599         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
33600         (gst_video_box_class_init), (gst_video_box_set_property),
33601         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
33602         Use pad_alloc where possible.
33603
33604 2004-07-07  Wim Taymans  <wim@fluendo.com>
33605
33606         * sys/oss/gstosselement.c: (gst_osselement_reset),
33607         (gst_osselement_parse_caps):
33608         * sys/oss/gstosselement.h:
33609         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33610         Fix offset on osssrc.
33611
33612 2004-07-07  Wim Taymans  <wim@fluendo.com>
33613
33614         * ext/theora/theora.c: (plugin_init):
33615         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33616         (theora_dec_src_query), (theora_dec_chain):
33617         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33618         (theora_enc_sink_link), (theora_buffer_from_packet),
33619         (theora_push_packet), (theora_enc_chain):
33620         Fix theora granulepos calculation.
33621         Fix overflow in duration/position calculation.
33622         Bump rank to PRIMARY for theoradec.
33623         Use granulepos of last packet to calculate position.
33624         Set keyframe flag on buffers when needed.
33625
33626 2004-07-06  David Schleef  <ds@schleef.org>
33627
33628         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
33629         serious?  (Fixed, obviously.)
33630
33631 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
33632
33633         * po/LINGUAS:
33634         * po/cs.po:
33635           added Czech translation (Miloslav Trmac)
33636
33637 2004-07-05  Wim Taymans  <wim@fluendo.com>
33638
33639         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33640         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33641         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33642         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33643         (close_link), (type_found), (gst_decode_bin_set_property),
33644         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
33645         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
33646         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
33647         (gst_decode_bin_query), (plugin_init):
33648         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33649         (gst_play_bin_class_init), (gst_play_bin_init),
33650         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
33651         (get_video_element), (new_pad), (setup_source),
33652         (gst_play_bin_set_property), (gst_play_bin_get_property),
33653         (gst_play_bin_change_state), (gst_play_bin_add_element),
33654         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33655         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33656         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33657         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33658         * gst/playback/test.c: (main):
33659         More fixes, cleaned up playbin, make it use decodebin. Added
33660         threaded property to playbin.
33661
33662 2004-07-05  Wim Taymans  <wim@fluendo.com>
33663
33664         * configure.ac:
33665         * gst/playback/Makefile.am:
33666         * gst/playback/decodetest.c: (main):
33667         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33668         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33669         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33670         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33671         (close_link), (type_found), (gst_decode_bin_set_property),
33672         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
33673         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
33674         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
33675         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
33676         (plugin_init):
33677         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33678         (gst_play_bin_class_init), (gst_play_bin_init),
33679         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
33680         (collect_sink_pads), (find_compatibles), (close_pad_link),
33681         (try_to_link_1), (new_pad), (close_link), (type_found),
33682         (setup_source), (gst_play_bin_set_property),
33683         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
33684         (compare_ranks), (gst_play_bin_collect_factories),
33685         (gst_play_bin_change_state), (gst_play_bin_add_element),
33686         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33687         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33688         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33689         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33690         * gst/playback/test.c: (main):
33691         Added some playback helper elements and some test apps, very alpha
33692         still.
33693
33694 2004-07-04  Benjamin Otte  <otte@gnome.org>
33695
33696         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33697           only restart audio when we indeed have an xrun to fix repeated
33698           xruns. Fix suggested by Giuliano Pochini.
33699
33700 2004-07-03  David Schleef  <ds@schleef.org>
33701
33702         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
33703         call to gst_debug_log() if debugging is disabled (bug #145118)
33704
33705 2004-07-03  Benjamin Otte  <otte@gnome.org>
33706
33707         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33708           use our own functions for restarting the alsa device.
33709         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33710           I should apply patches myself - use MIN for the third argument, not
33711           the second, this fixes seeking
33712
33713 2004-07-02  David Schleef  <ds@schleef.org>
33714
33715         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
33716         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
33717         do with the logic.
33718
33719 2004-07-02  David Schleef  <ds@schleef.org>
33720
33721         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
33722         output buffers.  Fix logic mistake.  (bug #144866)
33723
33724 2004-07-02  David Schleef  <ds@schleef.org>
33725
33726         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
33727         on X.  (bug #144753)
33728
33729 2004-07-02  David Schleef  <ds@schleef.org>
33730
33731         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
33732         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
33733         (bug #144624)
33734         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
33735         (gst_osselement_rate_probe_check): Add another workaround for
33736         buggy drivers (bug #145336)
33737
33738 2004-07-02  David Schleef  <ds@schleef.org>
33739
33740         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
33741         Most systems don't have MSG_NOSIGNAL.
33742
33743 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33744
33745         * Makefile.am:
33746         * gst-libs/gst/colorbalance/Makefile.am:
33747         * gst-libs/gst/mixer/Makefile.am:
33748         * gst-libs/gst/play/Makefile.am:
33749         * gst-libs/gst/tuner/Makefile.am:
33750           (hopefully) fix both install and dist and make error message useful.
33751           needs testing across automakes.
33752
33753 2004-07-02  Benjamin Otte  <otte@gnome.org>
33754
33755         * ext/ogg/gstogg.c: (plugin_init):
33756           we require bytestream now
33757         * ext/ogg/gstoggdemux.c:
33758           huge diff to implement chain setup in a fast and generic way. This
33759           improves tag reading and startup of huge files (read: Theora videos)
33760           quite a bit. It probably contains bugs, too, so please test.
33761           Seeking is not improved to the fast method.
33762
33763 2004-06-29  Wim Taymans  <wim@fluendo.com>
33764
33765         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
33766         * ext/ogg/gstoggmux.c:
33767         Fix memleak in oggdemux when running unconnected pads.
33768         doc update in mux, start working on keyframe mode.
33769
33770 2004-06-29  Benjamin Otte  <otte@gnome.org>
33771
33772         * sys/oss/gstosssink.c:
33773         * sys/oss/gstosssrc.c:
33774           advertise correct template caps - we indeed do non-native endianness
33775           and 8bit audio has no endianness
33776         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
33777         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
33778           avoid (wrong) duplications in getcaps function and return
33779           template caps
33780
33781 2004-06-29  Wim Taymans  <wim@fluendo.com>
33782
33783         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33784         (gst_multifdsink_class_init), (gst_multifdsink_add),
33785         (gst_multifdsink_remove), (gst_multifdsink_clear),
33786         (gst_multifdsink_client_remove),
33787         (gst_multifdsink_handle_client_read),
33788         (gst_multifdsink_client_queue_data),
33789         (gst_multifdsink_client_queue_caps),
33790         (gst_multifdsink_client_queue_buffer),
33791         (gst_multifdsink_handle_client_write),
33792         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33793         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33794         (gst_multifdsink_init_send), (gst_multifdsink_close):
33795         Fix wrong GList iteration that could crash the server when
33796         more then 2 clients disconnect at the same time. Read all the
33797         pending commands in one batch to recover from command storms under
33798         very heavy load.
33799
33800 2004-06-28  Wim Taymans  <wim@fluendo.com>
33801
33802         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
33803         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
33804         (gst_videomixer_pad_set_property),
33805         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
33806         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
33807         (gst_videomixer_class_init), (gst_videomixer_init),
33808         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
33809         (pad_zorder_compare), (gst_videomixer_sort_pads),
33810         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
33811         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
33812         (gst_videomixer_update_queues), (gst_videomixer_loop),
33813         (plugin_init):
33814         Avoid divide by zero, choose masterpad as the pad with the highest
33815         framerate.
33816
33817 2004-06-27  Julien Moutte  <julien@moutte.net>
33818
33819         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33820         (gst_ximagesink_xwindow_new):
33821         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33822         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
33823         function directly. We might want to call it from somewhere else one day.
33824
33825 2004-06-27  Julien Moutte  <julien@moutte.net>
33826
33827         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33828         (gst_ximagesink_xwindow_new):
33829         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33830         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
33831         window decorations.
33832
33833 2004-06-27  Wim Taymans  <wim@fluendo.com>
33834
33835         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
33836         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
33837         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
33838         (gst_dvdec_set_property), (gst_dvdec_get_property):
33839         * ext/dv/gstdvdec.h:
33840         Implement drop_factor property to lower the framerate with
33841         a factor.
33842
33843 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
33844
33845         * gst-libs/gst/colorbalance/Makefile.am:
33846         * gst-libs/gst/mixer/Makefile.am:
33847         * gst-libs/gst/play/Makefile.am:
33848         * gst-libs/gst/tuner/Makefile.am:
33849           unbreak Company's fix that didn't install the -enum.h files
33850
33851 2004-06-27  Wim Taymans  <wim@fluendo.com>
33852
33853         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
33854         (gst_dvdec_change_state):
33855         * ext/dv/gstdvdec.h:
33856         Fix timestamp, duration and offset of the buffers.
33857
33858 2004-06-27  Wim Taymans  <wim@fluendo.com>
33859
33860         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33861         (gst_multifdsink_class_init), (gst_multifdsink_add),
33862         (gst_multifdsink_remove), (gst_multifdsink_clear),
33863         (gst_multifdsink_client_remove),
33864         (gst_multifdsink_handle_client_read),
33865         (gst_multifdsink_client_queue_data),
33866         (gst_multifdsink_client_queue_caps),
33867         (gst_multifdsink_client_queue_buffer),
33868         (gst_multifdsink_handle_client_write),
33869         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33870         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33871         (gst_multifdsink_init_send), (gst_multifdsink_close):
33872         * gst/tcp/gstmultifdsink.h:
33873         * gst/tcp/gsttcpserversink.c:
33874         (gst_tcpserversink_handle_server_read),
33875         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
33876         More multifdsink fixes, more recovery policy fixes.
33877         Removed stupid g_print
33878
33879 2004-06-26  Wim Taymans  <wim@fluendo.com>
33880
33881         * gst/tcp/Makefile.am:
33882         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33883         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
33884         (gst_multifdsink_class_init), (gst_multifdsink_init),
33885         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
33886         (gst_multifdsink_handle_client_read),
33887         (gst_multifdsink_client_queue_data),
33888         (gst_multifdsink_client_queue_caps),
33889         (gst_multifdsink_client_queue_buffer),
33890         (gst_multifdsink_handle_client_write),
33891         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33892         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33893         (gst_multifdsink_chain), (gst_multifdsink_set_property),
33894         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
33895         (gst_multifdsink_close), (gst_multifdsink_change_state):
33896         * gst/tcp/gstmultifdsink.h:
33897         * gst/tcp/gsttcpplugin.c: (plugin_init):
33898         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
33899         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
33900         (gst_tcpserversink_handle_server_read),
33901         (gst_tcpserversink_handle_select),
33902         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
33903         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33904         * gst/tcp/gsttcpserversink.h:
33905         Added multifdsink, made tcpserversink a subclass of fdsink, removed
33906         one of the locks, added recovery policy to multifdsink.
33907
33908 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33909
33910         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33911           fix decision for when getting frames with same timestamp
33912         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33913         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33914         (gst_v4lsrc_get_property):
33915         * sys/v4l/gstv4lsrc.h:
33916           add latency offset property
33917
33918 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33919
33920         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
33921         (plugin_init):
33922           fix debugging. add category.
33923
33924 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33925
33926         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
33927           fix wrong offsets
33928
33929 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33930
33931         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33932         (gst_alsa_src_get_time), (gst_alsa_src_loop),
33933         (gst_alsa_src_change_state):
33934           return a time that is in sync with the element's processing
33935
33936 2004-06-25  Wim Taymans  <wim@fluendo.com>
33937
33938         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
33939         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
33940         (gst_tcpserversink_client_remove),
33941         (gst_tcpserversink_handle_client_read),
33942         (gst_tcpserversink_client_queue_data),
33943         (gst_tcpserversink_client_queue_caps),
33944         (gst_tcpserversink_client_queue_buffer),
33945         (gst_tcpserversink_handle_client_write),
33946         (gst_tcpserversink_queue_buffer),
33947         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
33948         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
33949         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
33950         (gst_tcpserversink_close):
33951         * gst/tcp/gsttcpserversink.h:
33952         Serversink rewrite. Really do non blocking writes to clients and
33953         maintain an internal queue to handle slower clients while not
33954         disturbing fast clients.
33955
33956 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33957
33958         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33959           better debug, don't override OFFSET and OFFSET_END
33960
33961 2004-06-25  Iain <iain@prettypeople.org>
33962
33963         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
33964         name=source for the wavparse pipeline.
33965
33966 2004-06-24  Johan Dahlin  <johan@gnome.org>
33967
33968         * ext/theora/theoraenc.c (theora_enc_chain): Call
33969         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
33970         streamheader caps are set correctly.
33971
33972 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33973
33974         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33975         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
33976           respect minimum bitrate; same could be done for max bitrate
33977
33978 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33979
33980         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33981         (gst_vorbisenc_setup):
33982           fix sample rate range
33983
33984 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33985
33986         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
33987         (gst_oggvorbisenc_setup):
33988         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
33989         (gst_vorbisenc_setup):
33990           resolve ambiguities in code and description
33991
33992 2004-06-24  Wim Taymans  <wim@fluendo.com>
33993
33994         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
33995         * ext/alsa/gstalsa.h:
33996         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33997         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
33998         Use alsa trigger_tstamp to get the timestamp of the first
33999         sample in the buffer for more precise sync. Some cleanups.
34000
34001 2004-06-24  Wim Taymans  <wim@fluendo.com>
34002
34003         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
34004         (gst_audiorate_init), (gst_audiorate_chain),
34005         (gst_audiorate_set_property), (gst_audiorate_get_property):
34006         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34007         (gst_videorate_chain):
34008         Added some logging, fixed an overflow bug in videorate.
34009
34010 2004-06-24  Benjamin Otte  <otte@gnome.org>
34011
34012         * ext/kio/Makefile.am:
34013           fix for builddir != srcdir and distcheck
34014
34015 2004-06-24  Benjamin Otte  <otte@gnome.org>
34016
34017         * gst-libs/gst/colorbalance/Makefile.am:
34018         * gst-libs/gst/mixer/Makefile.am:
34019         * gst-libs/gst/play/Makefile.am:
34020         * gst-libs/gst/tuner/Makefile.am:
34021         * gst/tcp/Makefile.am:
34022         * sys/dxr3/Makefile.am:
34023           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
34024           tarball.
34025           Also add all *.list files that were missing.
34026         * Makefile.am:
34027           add a distcheck hook to ensure the above doesn't happen again.
34028
34029 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
34030
34031         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
34032
34033 2004-06-23  Colin Walters  <walters@redhat.com>
34034
34035         * m4/Makefile.am: Distribute gst-fionread.m4.
34036
34037 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34038
34039         * configure.ac: back to dev
34040
34041 2004-06-23  Wim Taymans  <wim@fluendo.com>
34042
34043         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
34044         (gst_alsa_xrun_recovery):
34045         * ext/alsa/gstalsa.h:
34046         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
34047         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
34048         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
34049         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
34050         (gst_alsa_src_loop):
34051         Add clock to alsasrc. Take new capture timestamp when
34052         restarting after an overrun. Split up some functions between
34053         alsasrc and alsasink.
34054
34055 === release 0.8.2 ===
34056
34057 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34058
34059         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
34060         (gst_alsa_change_state), (gst_alsa_update_avail),
34061         (gst_alsa_xrun_recovery):
34062         * ext/alsa/gstalsa.h:
34063         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34064           merge back changes from release
34065
34066 2004-06-23  Wim Taymans  <wim@fluendo.com>
34067
34068         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
34069         (gst_audiorate_init), (gst_audiorate_chain),
34070         (gst_audiorate_set_property), (gst_audiorate_get_property):
34071         Implement sample dropping and notify
34072
34073 2004-06-22  Wim Taymans  <wim@fluendo.com>
34074
34075         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34076         (theora_enc_sink_link), (theora_buffer_from_packet),
34077         (theora_push_packet), (theora_enc_chain):
34078         Some cleanups, make sure the timestamps are correct.
34079
34080 2004-06-22  Wim Taymans  <wim@fluendo.com>
34081
34082         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
34083         (gst_alsa_change_state), (gst_alsa_update_avail),
34084         (gst_alsa_xrun_recovery):
34085         * ext/alsa/gstalsa.h:
34086         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34087         Cleanups, take queued samples into account when reporting
34088         the time.
34089
34090 2004-06-22  Wim Taymans  <wim@fluendo.com>
34091
34092         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34093         (gst_videorate_init):
34094         Initialize the property as well.
34095
34096 2004-06-22  Wim Taymans  <wim@fluendo.com>
34097
34098         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34099         (gst_videorate_init), (gst_videorate_chain),
34100         (gst_videorate_set_property), (gst_videorate_get_property):
34101         Add property to make videorate silent.
34102         Add property to prefer new frames over old ones.
34103
34104 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34105
34106         * sys/osxvideo/Makefile.am:
34107         Workaround so that the osxvideo .so file gets linked with the
34108         Cocoa, OpenGL and QuickTime frameworks
34109
34110 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34111
34112         * sys/osxaudio/Makefile.am:
34113         Workaround so that the osxaudio .so file gets linked with the
34114         CoreAudio framework
34115
34116 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34117
34118         * configure.ac:
34119         Whoops, my fault...fixed build issues
34120
34121 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34122
34123         * configure.ac:
34124         Add objective-c support if running in Darwin/Mac OS X
34125         * sys/Makefile.am:
34126         * sys/osxvideo:
34127         * sys/osxvideo/Makefile.am:
34128         * sys/osxvideo/osxvideosink.h:
34129         * sys/osxvideo/osxvideosink.m:
34130         * sys/osxvideo/cocoawindow.h:
34131         * sys/osxvideo/cocoawindow.m:
34132         Add osxvideosink, a cocoa-based osx video sink
34133
34134
34135 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
34136         * ext/dvdnav/gst-dvd:
34137         Grab the gconf key from the right spot
34138         * gst/debug/gstnavseek.c: (gst_navseek_init),
34139         (gst_navseek_segseek), (gst_navseek_handle_src_event),
34140         (gst_navseek_chain):
34141         * gst/debug/gstnavseek.h:
34142           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
34143           and loop parameters of a segment seek.
34144         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
34145         (gst_videotestsrc_get_event_masks),
34146         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
34147         * gst/videotestsrc/gstvideotestsrc.h:
34148           Add seeking support to videotestsrc
34149           Initialise the timestamp_offset variable.
34150
34151 2004-06-18  Wim Taymans  <wim@fluendo.com>
34152
34153         * ext/sidplay/gstsiddec.cc:
34154         Fix negotiation and set correct end offset.
34155
34156 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
34157
34158         * configure.ac: branch and prerelease
34159
34160 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34161
34162         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
34163         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
34164         (gst_tcpclientsrc_init_receive):
34165         * gst/tcp/gsttcpclientsrc.h:
34166           read caps when connecting to server for GDP so we set them correctly
34167
34168 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34169
34170         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
34171           notify drops and duplicates
34172         * gst/videoscale/videoscale.c: (videoscale_get_structure):
34173           no good reason to limit ourselves to 100x100
34174
34175 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34176
34177         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
34178         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
34179         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34180         (gst_v4lsrc_get_property):
34181         * sys/v4l/gstv4lsrc.h:
34182         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34183         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
34184         (gst_v4l_set_audio):
34185         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
34186         (gst_v4lsrc_try_capture):
34187         * sys/v4l/v4lsrc_calls.h:
34188           change try_palette to more general try_capture
34189           add autoprobe option so we can turn off autoprobing
34190           various fixes
34191
34192 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34193
34194         * configure.ac:
34195           add videorate
34196         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
34197         (gst_ximagesink_class_init):
34198         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
34199         (gst_xvimagesink_class_init):
34200           run them as finalize, not dispose, since dispose can be invoked
34201           multiple times
34202
34203 2004-06-17  Wim Taymans  <wim@fluendo.com>
34204
34205         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
34206         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
34207         * ext/alsa/gstalsa.h:
34208         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34209         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
34210         (gst_alsa_src_change_state):
34211         * ext/alsa/gstalsasrc.h:
34212         Make the xrun code timestamp and offset the buffers correctly.
34213         moved the clock to the base class, use alsa methods to get time.
34214         Do correct timestamping on outgoing buffers.
34215
34216 2004-06-17  Wim Taymans  <wim@fluendo.com>
34217
34218         * gst/audiorate/Makefile.am:
34219         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
34220         (gst_audiorate_base_init), (gst_audiorate_class_init),
34221         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
34222         (gst_audiorate_set_property), (gst_audiorate_get_property),
34223         (gst_audiorate_change_state), (plugin_init):
34224         Added an audiorate converter that fills in gaps.
34225
34226 2004-06-17  Johan Dahlin  <johan@gnome.org>
34227
34228         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
34229
34230 2004-06-16  Wim Taymans  <wim@fluendo.com>
34231
34232         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
34233         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
34234         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
34235         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34236         (gst_v4lsrc_get_property):
34237         * sys/v4l/gstv4lsrc.h:
34238         Added a copy mode to v4lsrc where it will output a copied version
34239         of its internal hardware buffer.
34240         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
34241         can't | them.
34242
34243 2004-06-16  Wim Taymans  <wim@fluendo.com>
34244
34245         * sys/oss/gstosssrc.c: (gst_osssrc_get):
34246         Timestamp fixes.
34247
34248 2004-06-16  Wim Taymans  <wim@fluendo.com>
34249
34250         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
34251         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
34252         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34253         (gst_v4lsrc_get_property):
34254         * sys/v4l/gstv4lsrc.h:
34255         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34256         Added a sync mode enum property to control v4lsrc timestamp method
34257         Removed the use-fixed-fps property and moved functionality in
34258         the enum.
34259         Don't error on an error value from v4l-conf, it might not always
34260         be a real error.
34261
34262 2004-06-16  Wim Taymans  <wim@fluendo.com>
34263
34264         * gst/videorate/Makefile.am:
34265         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
34266         (gst_videorate_base_init), (gst_videorate_class_init),
34267         (gst_videorate_getcaps), (gst_videorate_link),
34268         (gst_videorate_init), (gst_videorate_chain),
34269         (gst_videorate_set_property), (gst_videorate_get_property),
34270         (gst_videorate_change_state), (plugin_init):
34271         Added a video timestamp corrector.
34272
34273 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34274
34275         fixed a potential leak with previous commit
34276
34277         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34278
34279 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34280
34281         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34282         Added missing refcount, fixes bug #144425
34283         Cheers Tim for finding the bug
34284
34285 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
34286
34287         * sys/v4l/gstv4l.c: (plugin_init):
34288         * sys/v4l/gstv4lcolorbalance.c:
34289         * sys/v4l/gstv4lcolorbalance.h:
34290         * sys/v4l/gstv4lelement.c:
34291         * sys/v4l/gstv4lelement.h:
34292         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
34293         * sys/v4l/gstv4lmjpegsink.h:
34294         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
34295         * sys/v4l/gstv4lmjpegsrc.h:
34296         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34297         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34298         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
34299         * sys/v4l/gstv4lsrc.h:
34300         * sys/v4l/gstv4ltuner.c:
34301         * sys/v4l/gstv4ltuner.h:
34302         * sys/v4l/gstv4lxoverlay.c:
34303         * sys/v4l/gstv4lxoverlay.h:
34304         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
34305         (gst_v4l_set_window), (gst_v4l_enable_overlay):
34306         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34307         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
34308         (gst_v4l_set_audio):
34309         * sys/v4l/v4l_calls.h:
34310         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
34311         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
34312         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
34313         (gst_v4lmjpegsink_playback_init),
34314         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
34315         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
34316         (gst_v4lmjpegsink_playback_stop),
34317         (gst_v4lmjpegsink_playback_deinit):
34318         * sys/v4l/v4lmjpegsink_calls.h:
34319         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
34320         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
34321         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
34322         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
34323         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
34324         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
34325         * sys/v4l/v4lmjpegsrc_calls.h:
34326         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
34327         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
34328         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
34329         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
34330         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
34331         (gst_v4lsrc_try_palette):
34332         * sys/v4l/v4lsrc_calls.h:
34333           bunch of paranoia cleanups
34334
34335 2004-06-14  David Schleef  <ds@schleef.org>
34336
34337         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
34338         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
34339         Send discont events and change timestamps appropriately when
34340         we get a seek event.  (bug #144240)
34341         * ext/cdparanoia/gstcdparanoia.h:
34342
34343 2004-06-14  Benjamin Otte  <otte@gnome.org>
34344
34345         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
34346           snd_pcm_hw_params_set_rate  since the latter fails for no good
34347           reason on some setups.
34348
34349 2004-06-14  David Schleef  <ds@schleef.org>
34350
34351         * gst/volume/demo.c: (value_changed_callback): exp10() is not
34352         standard.  Thank you for playing.
34353
34354 2004-06-14  Wim Taymans  <wim@fluendo.com>
34355
34356         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
34357         Patch 1.3 broke the ordering of the colorspace info and
34358         made the plugin basically work by coincidence, reordered
34359         the info.
34360
34361 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34362
34363         * ext/lame/gstlame.c:
34364         * ext/mad/gstmad.c:
34365           sync caps.  Make sure mad can only output a list of rates, not
34366           a full range.  In the future, have three caps lists for each of the
34367           mpeg versions.  Change mpegversion to a double as well.
34368
34369 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34370
34371         * gst/volume/.cvsignore:
34372         * gst/volume/Makefile.am:
34373         * gst/volume/demo.c: (value_changed_callback), (idler),
34374         (setup_gui), (main):
34375           added small demo app
34376
34377 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
34378         * ext/esd/esdsink.c: (gst_esdsink_change_state):
34379         * ext/esd/esdsink.h:
34380         Close the esd connection on pause, because esd will just wait -
34381         blocking all other esd clients indefinitely.
34382
34383 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
34384
34385         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
34386           previous commit with GST_DEBUG
34387
34388 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
34389
34390         * configure.ac:
34391           add a header check for a dvdread header in dvdnav.  Fixes #133002
34392
34393 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34394
34395         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
34396         * gst/tcp/gsttcpclientsink.h:
34397         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
34398         * gst/tcp/gsttcpclientsrc.h:
34399         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
34400         (gst_tcpserversink_handle_server_read),
34401         (gst_tcpserversink_init_send):
34402         * gst/tcp/gsttcpserversink.h:
34403         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
34404         * gst/tcp/gsttcpserversrc.h:
34405         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
34406         version of IP)
34407
34408 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34409
34410         * configure.ac:
34411         Added ogg library so that OSX detects libtheora properly
34412
34413 2004-06-11  Wim Taymans  <wim@fluendo.com>
34414
34415         * ext/theora/theoradec.c: (theora_dec_chain),
34416         (theora_dec_change_state):
34417         Don't try to decode frames before we received a keyframe.
34418
34419 2004-06-11  Wim Taymans  <wim@fluendo.com>
34420
34421         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34422         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34423         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34424         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34425         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34426         Added property to set the maximum delay of a page.
34427
34428 2004-06-10  Wim Taymans  <wim@fluendo.com>
34429
34430         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34431         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34432         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34433         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34434         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34435         Added max-delay property to control the maximum amount
34436         of data to put in one page.
34437
34438 2004-06-10  Wim Taymans  <wim@fluendo.com>
34439
34440         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34441         (gst_theora_enc_init), (theora_enc_sink_link),
34442         (theora_buffer_from_packet), (theora_enc_set_property),
34443         (theora_enc_get_property):
34444         Set duration on encoded buffer, added some more properties
34445
34446 2004-06-10  Wim Taymans  <wim@fluendo.com>
34447
34448         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
34449         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34450         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
34451         * ext/theora/theoraenc.c: (theora_enc_chain):
34452         Fix refcounting bugs
34453
34454 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34455
34456         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
34457         (gst_asf_demux_loop), (gst_asf_demux_process_file),
34458         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
34459         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
34460         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
34461         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
34462         (gst_asf_demux_change_state):
34463         * gst/asfdemux/gstasfdemux.h:
34464           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
34465           feels like. I think we should set a new requirement for demuxers
34466           from now on to implement sane loop functions, data loops, query
34467           and seek functions before first commit into CVS. And this commit
34468           fixes all of the above.
34469
34470 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
34471
34472         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
34473           vorbis comments are properly encoded in UTF-8 before adding them
34474           to a GstTagList
34475
34476 2004-06-09  Benjamin Otte  <otte@gnome.org>
34477
34478         * ext/alsa/gstalsa.c: (add_channels):
34479           handle min <= max correctly
34480         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
34481         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
34482           add fixation functions so we fixate correctly. No preferring of alaw
34483           anymore because it's the first structure.
34484         * ext/alsa/gstalsa.h:
34485         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
34486         (gst_alsa_hw_params_dump):
34487           add functions to ease debugging in alsalib
34488         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34489         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34490         (gst_alsa_start_audio):
34491           only specify hw params if we really setup a format (fixes #134007 -
34492           or at least works around it)
34493
34494 2004-06-09  Wim Taymans  <wim@fluendo.com>
34495
34496         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
34497         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
34498         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
34499         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
34500         (gst_ogg_mux_loop):
34501         Use stream caps to setup the initial pages in the ogg stream.
34502         Correctly set the streamheader caps on the srcpad.
34503
34504 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34505
34506         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34507         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34508         (gst_v4lsrc_getcaps):
34509         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34510         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
34511           add querying of fps lists for webcams.  Negotiating to a framerate
34512           now works.
34513
34514 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34515
34516         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
34517         (theora_push_buffer), (theora_push_packet),
34518         (theora_set_header_on_caps), (theora_enc_chain):
34519           mark buffers and put on streamheader, raw theora streaming
34520           now works too, whee
34521
34522 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34523
34524         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34525         (gst_tcp_gdp_read_caps):
34526           do a looping read for caps and GDP headers too
34527
34528 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34529
34530         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34531         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
34532           return EOS instead of NULL in _get
34533
34534 2004-06-08  Wim Taymans  <wim@fluendo.com>
34535
34536         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34537         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
34538         (gst_tcp_gdp_write_caps):
34539         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34540         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34541         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
34542         Memory leak fixes
34543
34544 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34545
34546         * ext/vorbis/Makefile.am:
34547         * ext/vorbis/vorbis.c: (plugin_init):
34548         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
34549         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
34550         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
34551         (vorbis_parse_change_state):
34552         * ext/vorbis/vorbisparse.h:
34553           adding a vorbisparse element that marks the buffers, streaming
34554           raw vorbis using GDP now works, whee
34555
34556 2004-06-08  Wim Taymans  <wim@fluendo.com>
34557
34558         * ext/jpeg/Makefile.am:
34559         * ext/jpeg/README:
34560         * ext/jpeg/gstjpeg.c: (plugin_init):
34561         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
34562         (gst_smokedec_base_init), (gst_smokedec_class_init),
34563         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
34564         * ext/jpeg/gstsmokedec.h:
34565         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
34566         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
34567         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
34568         (gst_smokeenc_resync), (gst_smokeenc_chain),
34569         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
34570         * ext/jpeg/gstsmokeenc.h:
34571         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
34572         (smokecodec_flush_destination), (smokecodec_term_destination),
34573         (smokecodec_init_source), (smokecodec_fill_input_buffer),
34574         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
34575         (smokecodec_term_source), (smokecodec_encode_new),
34576         (smokecodec_decode_new), (smokecodec_info_free),
34577         (smokecodec_set_quality), (smokecodec_get_quality),
34578         (smokecodec_set_threshold), (smokecodec_get_threshold),
34579         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
34580         (find_best_size), (abs_diff), (put), (smokecodec_encode),
34581         (smokecodec_parse_header), (smokecodec_decode):
34582         * ext/jpeg/smokecodec.h:
34583         Added a new simple jpeg based codec
34584
34585 2004-06-08  Wim Taymans  <wim@fluendo.com>
34586
34587         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34588         (gst_multipart_mux_loop):
34589         Fix memory leak
34590
34591 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34592
34593         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34594         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
34595         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
34596         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
34597         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
34598         * gst/tcp/gsttcpserversink.h:
34599           take streamheader into account
34600
34601 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34602
34603         * gst/level/Makefile.am:
34604         * gst/level/gstlevel.c: (gst_level_class_init):
34605           clean up marshal generation
34606
34607 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34608
34609         * gst/tcp/Makefile.am:
34610         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
34611         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
34612         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
34613         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
34614         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
34615         (gst_tcpclientsrc_get_property):
34616         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
34617         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
34618         (gst_tcpserversink_handle_client_read),
34619         (gst_tcpserversink_handle_client_write),
34620         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
34621         * gst/tcp/gsttcpserversink.h:
34622           add signals client-added and client-removed
34623         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
34624         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
34625         (gst_tcpserversrc_get_property):
34626         uniformized, change default protocol to NONE
34627         * gst/tcp/gsttcp-marshal.list: added
34628 2004-06-07  Benjamin Otte  <otte@gnome.org>
34629
34630         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34631           handle discont events if they happen before caps nego
34632
34633 2004-06-07  Wim Taymans  <wim@fluendo.com>
34634
34635         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34636         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34637         (gst_multipart_demux_plugin_init):
34638         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34639         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34640         (gst_multipart_mux_change_state):
34641         Small updates, fix a memleak
34642
34643 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34644
34645         * configure.ac: OSS portability
34646         * ext/arts/gst_arts.c: idem
34647         * sys/oss/gstosselement.c: idem
34648         * sys/oss/gstossmixer.c: idem
34649         * sys/oss/gstosssink.c: idem
34650         * sys/oss/gstosssrc.c: idem
34651         * sys/oss/oss_probe.c: idem
34652           - check for soundcard.h in different places for some BSD
34653
34654 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
34655
34656         * AUTHORS:
34657         Add me to the authors file
34658         * configure.ac:
34659         Increase the libdv requirement to >= version 0.100
34660         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
34661         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
34662         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
34663         * ext/dv/gstdvdec.h:
34664         Add support for the new_media flag when sending DISCONT events
34665         Make the querying work when video pad is not linked
34666
34667 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34668
34669         reviewed by Benjamin Otte  <otte@gnome.org>
34670
34671         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
34672           create a NULL-initialized array of pads, so we don't think they
34673           exist already. (fixes #143130)
34674
34675 2004-06-07  Benjamin Otte  <otte@gnome.org>
34676
34677         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
34678         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
34679         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
34680           don't use // coments
34681
34682 2004-06-07  Benjamin Otte  <otte@gnome.org>
34683
34684         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
34685           cast to GstClockTime to get higher granularity
34686         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34687           use gst_element_set_time_delay to get the exact time
34688         * ext/mad/gstmad.c: (gst_mad_chain):
34689           use the negotiated rate instead of the current frame's rate which
34690           might be wrong because of bit errors. This avoids emitting totally
34691           bogus timestamps and screwing sync.
34692         (fixes #143454)
34693
34694 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34695
34696         reviewed by Benjamin Otte  <otte@gnome.org>
34697
34698         * gst/adder/gstadder.c: (gst_adder_loop):
34699           properly error out when no negotiation has happened yet. (fixes
34700           #143032)
34701
34702 2004-06-06  Benjamin Otte  <otte@gnome.org>
34703
34704         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
34705           forward correctly transformed offset in discont events. Based on
34706           patch by Arwed v. Merkatz. (fixes #142851)
34707
34708 2004-06-06  David Schleef  <ds@schleef.org>
34709
34710         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
34711         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
34712         problems on several systems.
34713
34714 2004-06-06  Benjamin Otte  <otte@gnome.org>
34715
34716         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
34717           use explicit caps on the srcpad
34718         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34719           properly error out if caps couldn't be set (fixes #142764)
34720
34721 2004-06-06  Benjamin Otte  <otte@gnome.org>
34722
34723         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34724         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34725         (gst_alsa_start_audio):
34726           - don't call set_periods_integer anymore, it breaks the
34727           configuration randomly
34728           - call snd_pcm_hw_params_set_access directly instead of using masks
34729           - don't fail if the sw_params can't be set, just use the default
34730           params and hope it works. Alsalib has weird issues when you touch
34731           sw_params and does no proper error reporting about what failed.
34732         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
34733         (gst_alsa_close_audio):
34734           make our alsa debugging go via gst debugging and not conditionally
34735           defined
34736         * ext/alsa/gstalsa.h:
34737           add ALSA_DEBUG_FLUSH macro
34738         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
34739         (plugin_init):
34740           wrap alsa errors to be printed via the gst debugging system and not
34741           spammed to stderr
34742
34743 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34744
34745         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
34746         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
34747         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
34748         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
34749         (qtdemux_parse_trak):
34750         * gst/qtdemux/qtdemux.h:
34751           Bitch. Also known as seeking, querying & co.
34752         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
34753         (gst_osssink_change_state):
34754         * sys/oss/gstosssink.h:
34755           Resyncing is for weenies, this hack is no longer needed and was
34756           broken anyway (since it - unintendedly - always leaves resync to
34757           TRUE).
34758
34759 2004-06-05  Andrew Turner <zxombie@hotpop.com>
34760
34761         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
34762         * gst/tcp/gsttcpclientsrc.h: idem
34763           - define MSG_NOSIGNAL if not done
34764           - include unistd.h for off_t
34765           (fixes #143749)
34766
34767 2004-06-05  Benjamin Otte  <otte@gnome.org>
34768
34769         * configure.ac:
34770         * ext/kio/Makefile.am:
34771           check for qt's moc preprocessor explicitly and use it
34772
34773 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34774
34775         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
34776           don't get a signal for EPIPE on socket writes
34777           (somebody check if this works on other platforms)
34778
34779 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34780
34781         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34782         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34783           check error condition on available samples correctly
34784
34785 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34786
34787         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
34788           avoid a segfault
34789         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
34790         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
34791         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34792         (gst_tcpserversrc_gdp_read_header):
34793          use ssize_t over size_t since the former is signed and thus the
34794          check for error codes can work
34795
34796 2004-06-02  Wim Taymans  <wim@fluendo.com>
34797
34798         reviewed by: Johan
34799
34800         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34801         (gst_multipart_mux_loop):
34802         Oops
34803
34804 2004-06-02  Wim Taymans  <wim@fluendo.com>
34805
34806         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34807         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34808         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34809         (gst_multipart_mux_change_state):
34810         Added configurable boundary specifier, added the value as a
34811         caps field as well.
34812
34813 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34814
34815         * gst/tcp/gsttcp.c:
34816         * gst/tcp/gsttcpclientsrc.c:
34817         * gst/tcp/gsttcpclientsrc.h:
34818         * gst/tcp/gsttcpserversrc.c:
34819           - portability fix, to compile on OSX
34820             (fixes #143146)
34821
34822         * sys/osxaudio/gstosxaudioelement.c:
34823         * sys/osxaudio/gstosxaudiosink.c:
34824         * sys/osxaudio/gstosxaudiosrc.c:
34825           - compilation warnings on OSX
34826             (fixes #143153)
34827
34828 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34829
34830         * ext/vorbis/vorbisdec.c : sign warning fixes
34831
34832         * gst-libs/gst/mixer/mixertrack.c :
34833           do no use defines which are glib 2.4 specific
34834
34835 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
34836
34837         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
34838           buffer since libflac doesn't expect it (reports a sync error when
34839           it encounters that)
34840
34841
34842 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
34843
34844         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
34845         * gst-libs/gst/mixer/mixertrack.c:
34846         (gst_mixer_track_get_property), (get_mixer_track_init),
34847         (get_mixer_track_get_property): Added property accessors
34848         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
34849         * gst-libs/gst/mixer/mixeroptions.c:
34850         (gst_mixer_options_get_values): Added
34851         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
34852         * gst-libs/gst/mixer/mixer.c: Fixed comment
34853
34854
34855 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34856
34857         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
34858           improve error messages on open
34859
34860
34861 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34862
34863         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34864           check if v4l-conf is in path
34865
34866 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34867
34868         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
34869           change assert to a more readable error message
34870
34871 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34872
34873         * gst-libs/gst/tuner/tunerchannel.h:
34874           - add a freq_multiplicator field to make the conversion
34875             between internal frequency unit and Hz
34876         * sys/v4l/gstv4lelement.c:
34877         * sys/v4l2/gstv4l2element.c:
34878           - change default video device to /dev/video0
34879         * sys/v4l/v4l_calls.c:
34880         * sys/v4l2/v4l2_calls.c:
34881           - we only expose frequency to the user in Hz instead of
34882             bastard v4lX unit (either 62.5kHz or 62.5Hz)
34883
34884 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
34885         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34886           Initialise b_o_s and e_o_s variables
34887         * gst-libs/gst/riff/riff-media.c:
34888         (gst_riff_create_video_caps_with_data):
34889           Add some unusual fourcc's from mplayer avi's
34890         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
34891           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
34892           autoplugging.
34893
34894 2004-05-28  Wim Taymans  <wim@fluendo.com>
34895
34896         * configure.ac:
34897         * gst/alpha/Makefile.am:
34898         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
34899         (gst_alpha_get_type), (gst_alpha_base_init),
34900         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
34901         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
34902         (gst_alpha_chroma_key), (gst_alpha_chain),
34903         (gst_alpha_change_state), (plugin_init):
34904         A plugin to add an alpha channel to I420 video. Can optionally do
34905         chroma keying.
34906         * gst/multipart/Makefile.am:
34907         * gst/multipart/multipart.c: (plugin_init):
34908         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34909         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
34910         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
34911         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34912         (gst_multipart_demux_change_state),
34913         (gst_multipart_demux_plugin_init):
34914         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
34915         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
34916         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
34917         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
34918         (gst_multipart_mux_pad_unlink),
34919         (gst_multipart_mux_request_new_pad),
34920         (gst_multipart_mux_handle_src_event),
34921         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
34922         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
34923         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34924         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
34925         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
34926         send multipart jpeg images to a browser.
34927         * gst/videobox/Makefile.am:
34928         * gst/videobox/README:
34929         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
34930         (gst_video_box_get_type), (gst_video_box_base_init),
34931         (gst_video_box_class_init), (gst_video_box_init),
34932         (gst_video_box_set_property), (gst_video_box_get_property),
34933         (gst_video_box_sink_link), (gst_video_box_i420),
34934         (gst_video_box_ayuv), (gst_video_box_chain),
34935         (gst_video_box_change_state), (plugin_init):
34936         Crops or adds borders around an image. can do alpha channel
34937         borders as well.
34938         * gst/videomixer/Makefile.am:
34939         * gst/videomixer/README:
34940         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
34941         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
34942         (gst_videomixer_pad_get_sink_event_masks),
34943         (gst_videomixer_pad_get_property),
34944         (gst_videomixer_pad_set_property),
34945         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
34946         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
34947         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
34948         (gst_videomixer_base_init), (gst_videomixer_class_init),
34949         (gst_videomixer_init), (gst_videomixer_request_new_pad),
34950         (gst_videomixer_handle_src_event),
34951         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
34952         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
34953         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
34954         (gst_videomixer_loop), (gst_videomixer_get_property),
34955         (gst_videomixer_set_property), (gst_videomixer_change_state),
34956         (plugin_init):
34957         Generic video mixer plugin, can handle multiple inputs all with
34958         different framerates and video sizes. Is fully alpha channel
34959         aware.
34960
34961 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34962
34963         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
34964           Select first track as master track. Not sure how else to handle
34965           that...
34966         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
34967           Discard discont events. Should fix #142962.
34968
34969 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34970
34971         * ext/alsa/Makefile.am:
34972         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
34973         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
34974         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
34975         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
34976         (gst_alsa_mixer_get_option):
34977         * ext/alsa/gstalsamixer.h:
34978         * ext/alsa/gstalsamixeroptions.c:
34979         (gst_alsa_mixer_options_get_type),
34980         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
34981         (gst_alsa_mixer_options_new):
34982         * ext/alsa/gstalsamixeroptions.h:
34983         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
34984         * ext/alsa/gstalsamixertrack.h:
34985           Add enumerations (as GstMixerOptions). Make correct distinction
34986           between input/output tracks. Add capture/playback private flag.
34987           Use flag to decide on whether to set capture or playback volumes
34988           or switches. Use playback and record switches.
34989         * gst-libs/gst/mixer/Makefile.am:
34990         * gst-libs/gst/mixer/mixer-marshal.list:
34991         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
34992         (gst_mixer_set_option), (gst_mixer_get_option),
34993         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
34994         (gst_mixer_volume_changed), (gst_mixer_option_changed):
34995         * gst-libs/gst/mixer/mixer.h:
34996         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
34997         (gst_mixer_options_class_init), (gst_mixer_options_init),
34998         (gst_mixer_options_dispose):
34999         * gst-libs/gst/mixer/mixeroptions.h:
35000           Add GstMixerOptions.
35001         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
35002           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
35003           broken device detection on computers with multiple OSS sound
35004           cards.
35005
35006 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35007
35008         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
35009           fixate nicely even when the peer is not negotiating
35010
35011 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35012
35013         * gst/audioconvert/gstaudioconvert.c:
35014         (gst_audio_convert_parse_caps):
35015           make sure we don't allow depth > width
35016         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
35017           fixate endianness to G_BYTE_ORDER as default
35018         * gst/audioscale/gstaudioscale.c:
35019           we don't handle another endianness as host-endianness
35020
35021 2004-05-25  David Schleef  <ds@schleef.org>
35022
35023         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
35024
35025 2004-05-24  Benjamin Otte  <otte@gnome.org>
35026
35027         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
35028         (gst_oggvorbisenc_setup):
35029           properly fail when we can't setup the vorbis encoder due to
35030           unsupported settings
35031         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
35032         (gst_vorbisenc_setup):
35033           same
35034         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
35035           fix case where warnings occured when one pad was unlinked while the
35036           other's link function was called
35037
35038 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
35039
35040         * gst/tcp/Makefile.am:
35041           use GST_ENABLE_NEW
35042
35043 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35044
35045         * gst-libs/gst/resample/private.h:
35046           don't use optimizations that are #if 0'ed
35047
35048 2004-05-24  Wim Taymans  <wim@fluendo.com>
35049
35050         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
35051         Fix potential division by zero error and hopefully get
35052         the position query right to get correct timestamps on avi
35053         audio.
35054
35055 2004-05-24  Wim Taymans  <wim@fluendo.com>
35056
35057         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
35058         (gst_videoscale_scale_nearest_str2),
35059         (gst_videoscale_scale_nearest_str4),
35060         (gst_videoscale_scale_nearest_32bit),
35061         (gst_videoscale_scale_nearest_24bit),
35062         (gst_videoscale_scale_nearest_16bit):
35063         Fix the scaling algorithm and avoid a buffer overflow.
35064         removed the while loop in the scaling function as it
35065         was used for point sampling only.
35066
35067 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35068
35069         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
35070         (gst_id3_tag_class_init), (gst_id3_tag_init),
35071         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
35072         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
35073         (gst_id3_tag_send_tag_event):
35074           lots of fixes to make id3mux work and id3demux work correctly
35075
35076 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35077
35078         * ext/Makefile.am:
35079           add rules to build shout2send (was removed by accident
35080           when this module was no more marked experimental/broken)
35081
35082 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
35083
35084         * ext/shout2/gstshout2.c:
35085         * ext/shout2/gstshout2.h:
35086           adding a "connection problem" signal to shout2send
35087           (fixes #142954)
35088
35089 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
35090
35091         * ext/kio/kioreceiver.cpp:
35092         * ext/kio/kioreceiver.h:
35093           fix sign comparison issues
35094
35095 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35096
35097         * gst/cdxaparse/gstcdxaparse.c:
35098         * gst/cdxaparse/gstcdxaparse.h:
35099           some renaming
35100           add some checks/sanity
35101           prepare for seek addition
35102
35103         * sys/sunaudio/gstsunaudio.c:
35104           remove exported dupe init function
35105
35106 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
35107
35108         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
35109         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
35110           Fix format conversion and position querying.
35111         * gst/debug/progressreport.c: (gst_progressreport_report):
35112           Don't output a bogus total value that we didn't query.
35113         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
35114           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
35115           only a blank window after xine has been used.
35116
35117 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
35118
35119         * m4/as-arts.m4:
35120           sync with upstream version to fix test on FC2
35121           readd with -ko to preserve Id header
35122
35123 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35124
35125         * configure.ac:
35126           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
35127         * gst/tcp/gsttcpclientsrc.c: idem
35128         * gst/tcp/gsttcpserversink.c: idem
35129         * gst/tcp/gsttcpserversrc.c: idem
35130         * m4/gst-fionread.m4: idem
35131
35132         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
35133
35134         * configure.ac: enable speex plugin for speex 1.1.5+
35135         * ext/speex/gstspeexenc.c: fix cast warning
35136
35137         * ext/esd/README: fix typo
35138
35139 2004-05-20  David Schleef  <ds@schleef.org>
35140
35141         * configure.ac: Minor cosmetic change to convince the buildbot to
35142         reautogen.
35143         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
35144         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
35145         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
35146         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
35147         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
35148         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
35149         More hacking.  Plays audio now.
35150
35151 2004-05-20  David Schleef  <ds@schleef.org>
35152
35153         * configure.ac:
35154         * sys/Makefile.am:
35155
35156 2004-05-20  David Schleef  <ds@schleef.org>
35157
35158         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
35159         * sys/osxaudio/gstosxaudio.c:
35160         * sys/osxaudio/gstosxaudioelement.c:
35161         * sys/osxaudio/gstosxaudioelement.h:
35162         * sys/osxaudio/gstosxaudiosink.c:
35163         * sys/osxaudio/gstosxaudiosink.h:
35164         * sys/osxaudio/gstosxaudiosrc.c:
35165         * sys/osxaudio/gstosxaudiosrc.h:
35166
35167 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35168
35169         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
35170         (gst_vorbisenc_chain):
35171           put the codec headers on the caps as streamheader as well as
35172           pushing them out
35173
35174 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35175
35176         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
35177         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
35178         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
35179         split up push_packet into two functions
35180
35181 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35182
35183         * gst/tcp/.cvsignore:
35184           ignore enums
35185         * gst/tcp/Makefile.am:
35186         * gst/tcp/README:
35187         * gst/tcp/gsttcp.c:
35188         * gst/tcp/gsttcp.h:
35189         * gst/tcp/gsttcpclientsink.c:
35190         * gst/tcp/gsttcpclientsink.h:
35191         * gst/tcp/gsttcpclientsrc.c:
35192         * gst/tcp/gsttcpclientsrc.h:
35193         * gst/tcp/gsttcpplugin.c:
35194         * gst/tcp/gsttcpserversink.c:
35195         * gst/tcp/gsttcpserversink.h:
35196         * gst/tcp/gsttcpserversrc.c:
35197         * gst/tcp/gsttcpserversrc.h:
35198           add new tcp elements
35199
35200 2004-05-19  Wim Taymans  <wim@fluendo.com>
35201
35202         * gst/law/mulaw-conversion.c: (mulaw_encode):
35203         Fix overflow bug in ulaw encoding.
35204
35205 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35206
35207         * ext/mad/gstmad.c: (gst_mad_handle_event):
35208           don't unref the event twice
35209
35210 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35211
35212         * configure.ac:
35213           remove -Wno-sign-compare
35214
35215 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35216
35217         * configure.ac:
35218           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
35219           if you want to work against glib 2.2 and 2.4
35220
35221 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
35222
35223         * gst/tcp/Makefile.am:
35224         * gst/tcp/gsttcp.c:
35225         * gst/tcp/gsttcp.h:
35226         * gst/tcp/gsttcpsink.h:
35227         * gst/tcp/gsttcpsrc.h:
35228           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
35229
35230 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35231
35232         * gst/debug/tests.c: (md5_get_value):
35233           fix segfault on gst-inspect
35234
35235 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35236
35237         * gst/debug/testplugin.c:
35238         * gst/debug/tests.c:
35239         * gst/debug/tests.h:
35240           add new extensible and configurable testing element. Current tests
35241           include buffer count, stream length, timestamp/duration matching and
35242           md5.
35243         * gst/debug/Makefile.am:
35244         * gst/debug/gstdebug.c: (plugin_init):
35245           add infrastructure for new element
35246
35247 2004-05-19  Johan Dahlin  <johan@gnome.org>
35248
35249         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
35250         ending of the array. Fixes gst-inspect segfault on ppc.
35251
35252 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35253
35254         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
35255
35256         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
35257
35258 2004-05-18  David Schleef  <ds@schleef.org>
35259
35260         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
35261         warnings (bugs, actually) noticed by gcc but not forte.
35262
35263 2004-05-18  David Schleef  <ds@schleef.org>
35264
35265         * sys/sunaudio/Makefile.am:
35266         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
35267
35268 2004-05-18  David Schleef  <ds@schleef.org>
35269
35270         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
35271         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
35272         to allow qtdemux to use non-seekable streams. (bug #142272)
35273
35274 2004-05-18  David Schleef  <ds@schleef.org>
35275
35276         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
35277         (gst_resample_sinc_ft_float): Remove use of static temporary
35278         buffer.  This code was obviously not supposed to last long, but
35279         it's stuck in our ABI, so it required a little hack to make it
35280         ABI-compatible.  Fixes #142585.
35281         * gst-libs/gst/resample/resample.h: same.
35282
35283 2004-05-18  David Schleef  <ds@schleef.org>
35284
35285         * configure.ac: Add sunaudio
35286         * examples/Makefile.am: make gstplay depend on gconf
35287         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
35288         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
35289         (convert_table_lookup), (img_convert): remove c99-isms
35290         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
35291           unsigned, to fix a warning on Solaris
35292         * gst/mpeg1sys/systems.c: bcopy->memcpy
35293         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
35294         * sys/Makefile.am: Add sunaudio
35295
35296 2004-05-18  Wim Taymans  <wim@fluendo.com>
35297
35298         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
35299         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
35300         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
35301         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
35302         (gst_ogg_mux_loop):
35303         Fix an ugly memleak where the muxer didn't flush enough ogg
35304         pages. This also resulted in badly muxed ogg files.
35305
35306 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35307
35308         * gst/asfdemux/asfheaders.c :
35309         * gst/asfdemux/asfheaders.h :
35310         * gst/asfdemux/gstasfdemux.c :
35311           - fix ASF_OBJ_PADDING guid
35312           - add 3 new object guids (language list, metadata,
35313             extended stream properties)
35314           - add a function to parse extended header objects
35315
35316 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35317
35318         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
35319           remove leftover debugging g_print
35320
35321 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35322
35323         * ext/mad/gstmad.c: (gst_mad_handle_event):
35324           Fix for when the first format in a discont event is not a
35325           byte-based one. Should fix #137710.
35326
35327 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35328
35329         * m4/a52.m4 : fix compilation with -Wall -Werror
35330         * m4/libfame.m4 : idem
35331         * m4/libmikmod.m4 : idem
35332
35333 2004-05-17  Benjamin Otte  <otte@gnome.org>
35334
35335         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35336           signal the new tags before giving up the reference
35337
35338 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35339
35340         * ext/shout2/gstshout2.c:
35341           use application/ogg instead of application/x-ogg (patch by Patrick
35342           Guimond, fixes #142432)
35343         * sys/oss/gstosselement.c: (gst_osselement_reset),
35344         (gst_osselement_sync_parms):
35345           don't set fragment size unless specified (fixes #142493)
35346
35347 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35348
35349         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
35350           fixes #142664
35351
35352 2004-05-17  Benjamin Otte  <otte@gnome.org>
35353
35354         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
35355           compute offsets correctly for internal buffers so timestamps are set
35356           correctly when we can't seek. Also handle cases where there are no
35357           offsets. (based on a patch by David Moore, fixes #142507)
35358
35359 2004-05-17  Benjamin Otte  <otte@gnome.org>
35360
35361         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35362           use correct variable when determining amount of data to skip so we
35363           don't skip into the void and segfault
35364
35365 2004-05-16  Benjamin Otte  <otte@gnome.org>
35366
35367         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35368           Hi, I'm a memleak
35369
35370 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35371
35372         * gst/asfdemux/gstasfdemux.c:
35373           - fix a mem leak and always propagate tags
35374           - add WMV3 to known video codecs (but no decoder yet)
35375           - replace "surplus data" at end of audio header for what
35376             it is : codec specific data
35377           - fix a typo
35378
35379 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
35380
35381         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
35382
35383         * gst-libs/gst/audio/audioclock.c:
35384           Fix wrong return type (#142205).
35385
35386 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35387
35388         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
35389           Ignore CRCs by default (fixes #142566).
35390
35391 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35392
35393         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
35394         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
35395         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
35396         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
35397         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
35398         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
35399           Fix for cases where we fail to attach to a mixer.
35400
35401 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35402
35403         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
35404           Don't touch events after not owning them anymore.
35405         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
35406         (gst_wavparse_fmt), (gst_wavparse_other),
35407         (gst_wavparse_handle_seek), (gst_wavparse_loop),
35408         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
35409         (gst_wavparse_srcpad_event):
35410         * gst/wavparse/gstwavparse.h:
35411           Add seeking, fix querying.
35412
35413 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35414
35415         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35416           - process comments even if they don't end with \0\0
35417             g_convert would ignore them if present and works well without them
35418
35419 2004-05-16  Benjamin Otte  <otte@gnome.org>
35420
35421         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
35422           simplify caps
35423
35424 2004-05-16  Benjamin Otte  <otte@gnome.org>
35425
35426         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35427           don't write to memory we might not write to - g_convert does that
35428           for us anyway (fixes #142613)
35429         (gst_asf_demux_audio_caps):
35430           comment out gst_util_dump_mem
35431
35432 2004-05-16  Benjamin Otte  <otte@gnome.org>
35433
35434         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35435           compute correct expected timestamps after seek (broken since
35436           last commit)
35437         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
35438           rename element and debugging category to gdkpixbufscale
35439
35440 2004-05-16  Benjamin Otte  <otte@gnome.org>
35441
35442         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35443           add error checking to snd_pcm_delay and remove duplicate call to
35444           snd_pcm_delay that caused issues (see inline code comments)
35445         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
35446           make more readable and fix return value when snd_pcm_delay fails
35447         (fixes #142586)
35448
35449 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
35450         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
35451         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
35452         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
35453         (gst_pixbufscale_link), (gst_pixbufscale_init),
35454         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
35455         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
35456         (gst_pixbufscale_get_property), (pixbufscale_init):
35457         * ext/gdk_pixbuf/pixbufscale.h:
35458         Add these files I forgot earlier
35459
35460 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
35461         * ext/gdk_pixbuf/Makefile.am:
35462         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
35463         * ext/gdk_pixbuf/gstgdkpixbuf.h:
35464         Add new pixbufscale element to scale RGB video
35465         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
35466         and HYPER interpolation correctly.
35467         * ext/theora/theoraenc.c: (theora_enc_chain),
35468         Discard buffer and return if explicit caps could not be set
35469         (theora_enc_get_property):
35470         Make _get return kbps for the bitrate consistent with
35471         the _set function.
35472
35473
35474 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35475
35476         * ext/libvisual/visual.c: (gst_visual_chain):
35477           add missing visual_audio_analyze
35478
35479 2004-05-14  David Schleef  <ds@schleef.org>
35480
35481         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
35482         is killed while we're playing.
35483         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
35484         gst_element_no_more_pads().
35485
35486 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35487
35488         * gst-libs/gst/riff/riff-read.c :
35489           - fix INFO tag extraction in RIFF/AVI files
35490             because gst_event_unref (event) also freed taglist
35491           - avoid a mem leak
35492
35493 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35494
35495         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
35496         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
35497
35498         * gst/auparse/gstauparse.c :
35499           - add code (commented for now) to support audio/x-adpcm on src pad
35500             (we have no decoder for those layout yet)
35501
35502         * gst/cdxaparse/gstcdxaparse.c :
35503         * gst/cdxaparse/gstcdxaparse.h :
35504           - partial rewrite using RiffRead (ripped iain's wavparse code)
35505
35506         * gst/rtp/gstrtpL16enc.c : typo
35507         * gst/rtp/gstrtpgsmenc.c : typo
35508
35509 2004-05-13  Benjamin Otte  <otte@gnome.org>
35510
35511         * configure.ac:
35512           check for exact version of libvisual, it's not supposed to be
35513           API/ABI stable yet
35514
35515 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35516
35517         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
35518           signal no-more-pads
35519
35520 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35521
35522         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
35523         Report which format was used for GST_FORMAT_DEFAULT
35524         * gst/debug/Makefile.am:
35525         * gst/debug/gstdebug.c: (plugin_init):
35526         * gst/debug/progressreport.c: (gst_progressreport_base_init),
35527         (gst_progressreport_class_init), (gst_progressreport_init),
35528         (gst_progressreport_report), (gst_progressreport_set_property),
35529         (gst_progressreport_get_property), (gst_progressreport_chain),
35530         (gst_progressreport_plugin_init):
35531         Add progressreport element for testing.
35532
35533 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35534
35535         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
35536         * sys/v4l/gstv4lsrc.h:
35537         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
35538         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
35539         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
35540         (gst_v4lsrc_grab_frame):
35541           add more debugging
35542           send a discont at start
35543
35544 2004-05-12  Colin Walters  <walters@redhat.com>
35545
35546         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
35547         inflooping if we can't find a chunk.  Or in other words, don't blow
35548         chunks if we don't have a chunk to blow.
35549
35550 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35551         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
35552         Remove old debug output
35553         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
35554         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
35555         (gst_dvdec_set_property), (gst_dvdec_get_property):
35556         Change the quality setting to an enum, so it works from gst-launch
35557         Don't renegotiate a non-linked pad. Allows audio only decoding.
35558         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
35559         (gst_deinterlace_link), (gst_deinterlace_init):
35560         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
35561         (gst_videodrop_link):
35562         Some caps negotiation fixes
35563
35564 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35565
35566         * ext/tarkin/gsttarkin.c :
35567           - Change RANK from NONE to PRIMARY
35568         * ext/gdk_pixbuf/gstgdkpixbuf.c :
35569           - Change RANK from NONE to MARGINAL
35570         * ext/divx/gstdivxenc.c :
35571           - Change RANK from PRIMARY to NONE (encoder/spider issue)
35572
35573 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35574
35575         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
35576         (gst_vorbisenc_push_packet):
35577           copy a function that was added between 1.0 and 1.0.1 until we
35578           depend on worthwhile features of post-1.0
35579
35580 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35581
35582         * configure.ac:
35583           enable shout2 by default
35584         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
35585         (gst_shout2send_base_init), (gst_shout2send_init),
35586         (gst_shout2send_connect), (gst_shout2send_change_state):
35587         * ext/shout2/gstshout2.h:
35588           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
35589           #142262)
35590         * ext/theora/theora.c: (plugin_init):
35591           don't set rank on encoders
35592
35593 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
35594
35595         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35596           Use codec_data property instead of flag1 and flag2 for wma
35597
35598 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35599
35600         * gst/cdxaparse/gstcdxaparse.c :
35601           - Add mpegversion to CAPS to make it link
35602           - Rank is as GST_RANK_SECONDARY instead of NONE
35603         * gst/auparse/gstauparse.c :
35604           - Document all audio encoding we can encounter from Solaris 9
35605             headers and libsndfile information.
35606           - Increase max. rate from 48000 to 192000 (to match other elements)
35607           - Don't try to play junk data between header and samples
35608
35609 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35610
35611         * ext/libvisual/visual.c: (gst_visual_getcaps):
35612           use the right caps depending on endianness (I hope)
35613         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
35614           use GST_RANK_NONE for all non-decoding elements or spider gets
35615           mighty confused
35616
35617 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35618
35619         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35620           Fix some odd cases and fix BE metadata parsing of unicode16 text.
35621
35622 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35623
35624         * gst/switch/gstswitch.c: (gst_switch_release_pad),
35625         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
35626         (gst_switch_loop), (gst_switch_get_type):
35627           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
35628           HEADERS. Had to be said.
35629
35630 2004-05-10  David Schleef  <ds@schleef.org>
35631
35632         * configure.ac: Add prototype Dirac support.
35633         * ext/Makefile.am:
35634         * ext/dirac/Makefile.am:
35635         * ext/dirac/gstdirac.cc:
35636         * ext/dirac/gstdiracdec.cc:
35637
35638 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35639
35640         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
35641         (gst_auparse_init), (gst_auparse_chain),
35642         (gst_auparse_change_state):
35643           Hack around spider. Remove me some day please.
35644
35645 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35646
35647         * gst/auparse/gstauparse.c: (gst_auparse_chain):
35648           Fix for some uninitialized variables in previous patch, also
35649           makes it work. Fixes #142286 while we're at it.
35650
35651 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35652
35653         * gst/auparse/gstauparse.c:
35654                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
35655                 only unsupported formats are ADPCM/CCITT G.72x
35656                 reviewed by Ronald
35657         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
35658
35659 2004-05-10  Wim Taymans  <wim@fluendo.com>
35660
35661         * ext/vorbis/Makefile.am:
35662         * ext/vorbis/README:
35663         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
35664         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
35665         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
35666         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
35667         (gst_oggvorbisenc_convert_sink),
35668         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
35669         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
35670         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
35671         (get_constraints_string), (update_start_message),
35672         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
35673         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
35674         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
35675         * ext/vorbis/oggvorbisenc.h:
35676         * ext/vorbis/vorbis.c: (plugin_init):
35677         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
35678         (raw_caps_factory), (gst_vorbisenc_class_init),
35679         (gst_vorbisenc_init), (gst_vorbisenc_setup),
35680         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
35681         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
35682         * ext/vorbis/vorbisenc.h:
35683         Added a raw vorbis encoder to be used with the oggmuxer.
35684         We still need the old encoder for some gnome applications,
35685         read the README to find out how that works.
35686         The raw encoder is called "rawvorbisenc" until 0.9.
35687
35688 2004-05-10  Wim Taymans  <wim@fluendo.com>
35689
35690         * ext/ogg/gstogg.c: (plugin_init):
35691         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
35692         (gst_ogg_print):
35693         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
35694         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
35695         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
35696         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
35697         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
35698         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
35699         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
35700         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
35701         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
35702         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
35703         Added an ogg muxer.
35704         Small typo fixes in the demuxer.
35705
35706 2004-05-10  Wim Taymans  <wim@fluendo.com>
35707
35708         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35709         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35710         (theora_enc_change_state), (theora_enc_set_property),
35711         (theora_enc_get_property):
35712         Mark the last packet with an EOS flag which is not really needed
35713         in gstreamer.
35714         Do some better video framerate initialisation.
35715         Update the buffer timestamp.
35716
35717 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
35718
35719         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
35720         Return the result of the parent state change call
35721
35722 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35723
35724         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
35725         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
35726         * gst/law/alaw-encode.c : (idem)
35727         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
35728         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
35729         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
35730
35731 2004-05-09  Benjamin Otte  <otte@gnome.org>
35732
35733         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
35734           don't use a fixed buffer size when writing variable length data to
35735           it. Fixes memory corruption and makes alsasrc work
35736
35737 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35738
35739         * ext/gnomevfs/gstgnomevfssink.c:
35740         (_gst_boolean_allow_overwrite_accumulator),
35741         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
35742           Run glib's default signal handler (??) in RUN_CLEANUP rather than
35743           RUN_LAST, and don't use that to set the accumulator value because
35744           then it's always FALSE.
35745
35746 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35747
35748         * gst-libs/gst/riff/riff-media.c:
35749         (gst_riff_create_video_caps_with_data),
35750         (gst_riff_create_audio_caps),
35751         (gst_riff_create_audio_template_caps):
35752         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
35753           Fix for unaligned RIFF files (i.e. where all the chunks together
35754           in a LIST chunk are not of the same size as the size given in
35755           the LIST chunk header). Fixes several odd WAVE files. Also fix
35756           ADPCM (block_align property) in audio, so that wavparse based
35757           on this works now as it used to stand-alone.
35758
35759 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
35760
35761         reviewed by Benjamin Otte  <otte@gnome.org>
35762
35763         * ext/a52dec/gsta52dec.c:
35764         * ext/divx/gstdivxdec.c:
35765         * ext/divx/gstdivxenc.c:
35766         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
35767         * ext/faac/gstfaac.c: (gst_faac_base_init):
35768         * ext/faad/gstfaad.c: (gst_faad_base_init):
35769         * ext/ivorbis/vorbisfile.c:
35770         * ext/lame/gstlame.c:
35771         * ext/libfame/gstlibfame.c:
35772         * ext/mpeg2enc/gstmpeg2enc.cc:
35773         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
35774         * ext/sidplay/gstsiddec.cc:
35775         * ext/speex/gstspeexdec.c:
35776         * ext/speex/gstspeexenc.c:
35777         * ext/xvid/gstxviddec.c:
35778         * ext/xvid/gstxvidenc.c:
35779           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
35780           (fixes #142193)
35781
35782 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35783
35784         * ext/alsa/gstalsa.c: (device_list),
35785         (gst_alsa_class_probe_devices):
35786         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
35787           Fix alsa oddness in mixer after the combination of using mixer
35788           in source/sink elements and using hw:x,y instead of just hw:x.
35789
35790 2004-05-09  Benjamin Otte  <otte@gnome.org>
35791
35792         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
35793         (gst_wavparse_create_sourcepad):
35794           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
35795           sourcepads
35796
35797 2004-05-09  Benjamin Otte  <otte@gnome.org>
35798
35799         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35800           allow discont events before caps nego
35801
35802 2004-05-08  Benjamin Otte  <otte@gnome.org>
35803
35804         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35805           don't leak events
35806
35807 2004-05-08  Benjamin Otte  <otte@gnome.org>
35808
35809         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
35810         (gst_level_change_state), (gst_level_init):
35811         * gst/level/gstlevel.h:
35812           figure out if we're initialized directly instead of keeping a
35813           variable that's wrong in 90% of cases
35814           don't initialize pads and then leak them and use a new unitialized
35815           pad. (fixes #142084)
35816           these were bugs so n00bish I didn't find them for an hour :/
35817
35818 2004-05-08 Iain <iain@prettypeople.org>
35819
35820         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
35821         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
35822         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
35823         return the length that was read.
35824         (gst_riff_read_strf_auds): Allow fmt tags as well.
35825
35826 2004-05-07  David Schleef  <ds@schleef.org>
35827
35828         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
35829         signed char assumption in faad.h.
35830
35831 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35832
35833         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
35834           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
35835
35836 2004-05-07  Colin Walters  <walters@redhat.com>
35837
35838         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
35839         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
35840         function.
35841         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
35842         Add dispose function.
35843
35844 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
35845         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
35846           Fix caps nego and pad templates. RGB mode caps should
35847           work now.
35848         * ext/dvdnav/gst-dvd:
35849           Move mpeg2dec inside the thread because otherwise the
35850           queue rejects cap changes mid-stream
35851         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
35852         (gst_mpeg2dec_flush_decoder):
35853           For mpeg2dec > 0.4.0, call the flush function instead of
35854           manually extracting all in-flight frames.
35855         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
35856         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
35857           Change mime type video/dv go video/x-dv to match the
35858           rest of gst-plugins
35859
35860 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35861
35862         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
35863         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
35864         (gst_alsa_sink_class_init):
35865         * ext/alsa/gstalsasink.h:
35866         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
35867         (gst_alsa_src_class_init):
35868         * ext/alsa/gstalsasrc.h:
35869           Make alsasink/src a subclass of alsamixer so that mixer stuff
35870           shows up in gst-rec. Needs some finetuning.
35871
35872 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35873
35874         * ext/lame/gstlame.c: (gst_lame_chain):
35875           simplify
35876         * ext/mad/gstmad.c: (gst_mad_handle_event):
35877           fix event leak
35878         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
35879           be able to detect mp3 files < 4096 bytes
35880
35881 2004-05-06  Wim Taymans  <wim@fluendo.com>
35882
35883         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35884         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35885         (theora_enc_set_property), (theora_enc_get_property):
35886         Also encode the first frame, cleanup some code.
35887
35888 2004-05-06  Wim Taymans  <wim@fluendo.com>
35889
35890         * ext/mpeg2enc/gstmpeg2enc.cc:
35891         Forward events first before deciding that negotiation was
35892         not performed.
35893
35894 2004-05-06  Wim Taymans  <wim@fluendo.com>
35895
35896         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
35897         First process the events before deciding that negotiation
35898         was not performed.
35899
35900 2004-05-06  Wim Taymans  <wim@fluendo.com>
35901
35902         * ext/theora/Makefile.am:
35903         * ext/theora/theora.c: (plugin_init):
35904         * ext/theora/theoradec.c: (theora_dec_change_state):
35905         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
35906         (gst_theora_enc_class_init), (gst_theora_enc_init),
35907         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
35908         (theora_enc_chain), (theora_enc_change_state),
35909         (theora_enc_set_property), (theora_enc_get_property):
35910         Added a theora encoder, grouped the encoder and decoder into the
35911         same plugin.
35912
35913 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35914
35915         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35916         (gst_jpegenc_chain):
35917         fix DURATION on outgoing buffers
35918         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
35919         debug using time formats
35920         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
35921         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35922         (gst_xvimagesink_sink_link):
35923         windows with width/height 0 generate X errors, so don't allow them
35924
35925 2004-05-05  Wim Taymans  <wim@fluendo.com>
35926
35927         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
35928         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
35929         (gst_mpeg2dec_negotiate_format):
35930         * ext/mpeg2dec/gstmpeg2dec.h:
35931           removed the static pad template so that we can add the
35932           more accurate framerate value to the caps.
35933
35934
35935 2004-05-04  Benjamin Otte  <otte@gnome.org>
35936
35937         * configure.ac:
35938           check for kdemacros.h, too (should fix #141821)
35939         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
35940           don't crash if no header was sent, but nicely error out (fixes part
35941           of #141554)
35942
35943 2004-05-04  Wim Taymans  <wim@fluendo.com>
35944
35945         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
35946         parent dispose function to avoid segfault on destroy.
35947
35948 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
35949
35950         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
35951         (plugin_init):
35952         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35953         (gst_xvimagesink_sink_link):
35954         clean up debugging caps
35955         also recreate xvimage when format has changed
35956
35957 2004-05-04  Benjamin Otte  <otte@gnome.org>
35958
35959         * ext/libvisual/Makefile.am:
35960         * ext/libvisual/visual.c: (gst_visual_class_init),
35961         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
35962         (gst_visual_srclink), (gst_visual_chain),
35963         (gst_visual_change_state), (plugin_init):
35964           use a GstAdapter to correctly adapt buffer sizes - allows using a
35965           framerate
35966
35967 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35968
35969         * sys/v4l/gstv4lelement.h:
35970         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
35971         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
35972         (gst_v4lsrc_buffer_free):
35973         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
35974         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
35975         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
35976         (gst_v4lsrc_requeue_frame):
35977         move some debugging categories around
35978         query for fps index and set accordingly if found
35979
35980 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35981
35982         * ext/lame/gstlame.c:
35983         correct defaults that lame_init puts out of range
35984
35985 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35986
35987         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
35988         (gst_divxenc_class_init):
35989         fix range since -1 is the default
35990         * gst/mpeg1sys/gstmpeg1systemencode.c:
35991         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
35992         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
35993         (gst_rtjpegdec_chain):
35994         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
35995         (gst_rtjpegenc_chain):
35996         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
35997         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
35998         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
35999         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
36000         * sys/v4l/gstv4lsrc.c:
36001         * sys/v4l/v4l_calls.c: (gst_v4l_open):
36002         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
36003         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
36004         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
36005         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
36006           remove gst_info calls
36007
36008 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36009
36010         * Makefile.am:
36011         * po/af.po:
36012         * po/az.po:
36013         * po/en_GB.po:
36014         * po/nl.po:
36015         * po/sr.po:
36016         * po/sv.po:
36017           Updated translations
36018
36019 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36020
36021         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36022           refactor/comment code
36023
36024 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36025
36026         * gst/asfdemux/Makefile.am:
36027         * gst/asfdemux/asfheaders.c:
36028         * gst/asfdemux/asfheaders.h:
36029         * gst/asfdemux/gstasf.c: (plugin_init):
36030         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
36031         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
36032         (gst_asf_demux_setup_pad):
36033         * gst/asfdemux/gstasfdemux.h:
36034         * gst/asfdemux/gstasfmux.c:
36035         * gst/asfdemux/gstasfmux.h:
36036           Add tagging support to demuxer, split out registration in its own
36037           file instead of in demux (hacky), and prevent having some tables
36038           in our memory multiple times (in asfheaders.h).
36039
36040 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36041
36042         * gst/matroska/matroska-demux.c:
36043         (gst_matroska_demux_parse_metadata):
36044         * gst/matroska/matroska-ids.h:
36045           Basic tag reading support.
36046
36047 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36048
36049         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
36050           Really detect ac-3 audio.
36051         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
36052           really detect matroska files (off-by-1).
36053
36054 2004-04-30  David Schleef  <ds@schleef.org>
36055
36056         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
36057         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
36058         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
36059         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
36060         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
36061         hackage -- parse a lot more atoms, extract a few tags.  One might even
36062         mistake this for tag support.  Maybe it is.
36063         * gst/qtdemux/qtdemux.h:
36064
36065 2004-04-30  Colin Walters  <walters@verbum.org>
36066
36067         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
36068
36069 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
36070
36071         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36072         (gst_ffmpegcolorspace_getcaps):
36073           remove broken nego fix
36074
36075 2004-04-30  Benjamin Otte  <otte@gnome.org>
36076
36077         * configure.ac:
36078         * ext/Makefile.am:
36079         * ext/libvisual/Makefile.am:
36080         * ext/libvisual/visual.c:
36081           add initial support for libvisual (http://libvisual.sourceforge.net)
36082           libvisual is still quite alpha, so expect crashes in there :)
36083
36084 2004-04-29  David Schleef  <ds@schleef.org>
36085
36086         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
36087         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
36088         up qtdemux to make it spit out codec_data.  Do _not_ look at this
36089         code; you will no longer respect me.
36090
36091 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
36092
36093         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
36094         * ext/alsa/gstalsa.h :
36095         change alsa pcm device discovery to find more than 1 device
36096         per card. code review by Ronald.
36097
36098 2004-04-29  David Schleef  <ds@schleef.org>
36099
36100         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
36101         Add a check for a driver bug on FreeBSD.  (bug #140565)
36102
36103 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36104
36105         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
36106         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
36107         (gst_jpegenc_getcaps):
36108           move format setting to inner loop
36109         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36110         (gst_ffmpegcolorspace_getcaps):
36111           use GST_PAD_CAPS if available so that we use already negotiated
36112           caps
36113         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
36114         (qtdemux_parse_moov), (qtdemux_parse):
36115           extra debugging
36116         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
36117         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
36118           move hardcoded path to DEFINE
36119
36120 2004-04-28  David Schleef  <ds@schleef.org>
36121
36122         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
36123         (bug #140064)
36124
36125 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36126
36127         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36128           Don't probe for playback device if we're a source element. Fixes
36129           #139658.
36130
36131 2004-04-29  Benjamin Otte  <otte@gnome.org>
36132
36133         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
36134         (gst_id3_tag_chain):
36135           rewrite buffer offset
36136
36137 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36138
36139         * configure.ac:
36140         * ext/Makefile.am:
36141         * ext/dts/Makefile.am:
36142         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
36143         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
36144         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
36145         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
36146         (gst_dtsdec_loop), (gst_dtsdec_change_state),
36147         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
36148         (plugin_init):
36149         * ext/dts/gstdtsdec.h:
36150           New DTS decoder.
36151         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
36152         (gst_faad_srcconnect):
36153           Add ESDS atom handling (.m4a).
36154
36155 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36156
36157         * ext/divx/gstdivxdec.c: (plugin_init):
36158           Remove comment that makes no sense.
36159         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
36160           Fix for obvious typo that resulted in warnings during gst-register.
36161         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
36162         (gst_xviddec_sink_link):
36163           Fix caps negotiation a bit better.
36164         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
36165           We call this 'codec_data', not 'esds'.
36166
36167 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36168
36169         * gst/monoscope/gstmonoscope.c:
36170           make sure we only provide 256x128
36171         * gst/monoscope/monoscope.c: (monoscope_init):
36172           assert size of 256x128
36173
36174 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36175
36176         * Makefile.am:
36177         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
36178         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
36179           fixate to max width and height of device
36180
36181 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36182
36183         * Makefile.am:
36184         * sys/v4l/gstv4l.c:
36185         * sys/v4l/gstv4lsrc.c:
36186         * sys/v4l/v4l_calls.c:
36187         * sys/v4l/v4lsrc_calls.c:
36188           fix for qc-usb driver which fakes having more than one buffer
36189           by handing the same buffer twice, which confused GStreamer's/v4lsrc
36190           buffer_free override
36191           add debugging
36192
36193 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36194
36195         * Makefile.am:
36196         * gst/videotestsrc/gstvideotestsrc.c:
36197         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
36198         (gst_videotestsrc_init), (gst_videotestsrc_get),
36199         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
36200         * gst/videotestsrc/gstvideotestsrc.h:
36201           add num-buffers property
36202
36203         2004-04-26  Benjamin Otte  <otte@gnome.org>
36204
36205         * ext/mad/gstid3tag.c: (plugin_init):
36206           set id3mux rank to NONE so it doesn't confuse spider
36207           require audio/mpeg,mpegversion=1 in id3mux
36208
36209 2004-04-26  Benjamin Otte  <otte@gnome.org>
36210
36211         * configure.ac:
36212           detect faad correctly as non-working if it's indeed non-working
36213
36214 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
36215
36216         * Makefile.am:
36217         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
36218         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
36219         fix _getcaps so it only negotiates to its supported format
36220
36221 2004-04-25  Benjamin Otte  <otte@gnome.org>
36222
36223         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36224           fix memleak
36225
36226 2004-04-23  Benjamin Otte  <otte@gnome.org>
36227
36228         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
36229           audio/x-raw-int with height rules! not. Now it's depth.
36230
36231 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36232
36233         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
36234         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
36235         (gst_wavparse_loop):
36236           Missing variable initialization. Add handling of DVI ADPCM. Fix
36237           mis-parsing of LIST chunks. This works around a bug where we mis-
36238           parse non-aligning LIST chunks (so LIST chunks where the contents
36239           don't align with the actual LIST size). The correct fix is to use
36240           rifflib, I'm not going to fix wavparse - too much work. All this
36241           fixes #104878.
36242
36243 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
36244
36245         reviewed by Benjamin Otte  <otte@gnome.org>
36246
36247         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
36248           fix shoutcast not working (fixes #140844)
36249
36250 2004-04-22  Benjamin Otte  <otte@gnome.org>
36251
36252         * ext/hermes/gsthermescolorspace.c:
36253         (gst_hermes_colorspace_caps_remove_format_info):
36254         * gst/colorspace/gstcolorspace.c:
36255         (gst_colorspace_caps_remove_format_info):
36256         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36257         (gst_ffmpegcolorspace_caps_remove_format_info):
36258           s/gst_caps_simplify/gst_caps_do_simplify/
36259
36260 2004-04-22  Benjamin Otte  <otte@gnome.org>
36261
36262         * gst-libs/gst/riff/riff-media.c:
36263         (gst_riff_create_video_caps_with_data):
36264           mpegversion is an int
36265         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
36266           don't try to create pad templates with NULL caps, use any caps
36267           instead.
36268
36269 2004-04-20  David Schleef  <ds@schleef.org>
36270
36271         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
36272         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
36273         (bug #140384)
36274
36275 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36276
36277         reviewed by David Schleef
36278
36279         * ext/mad/gstid3tag.c: Add stdlib.h
36280         * gst/rtp/gstrtpgsmenc.c: same
36281         * gst/tags/gstid3tag.c: same
36282         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
36283         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
36284         GST_DISABLE_LOADSAVE use.
36285         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
36286         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
36287         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
36288         atol(3)).
36289         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
36290         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
36291         strtoul(3)).
36292         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
36293         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
36294         $(ID3_CFLAGS).
36295         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
36296         $(LIBFAME_CFLAGS).
36297
36298 2004-04-20  David Schleef  <ds@schleef.org>
36299
36300         * gst/realmedia/rmdemux.c:  This was supposed to part of the
36301         last checkin.  Same idea.
36302
36303 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36304
36305         reviewed by David Schleef
36306
36307         * configure.ac: bump required gstreamer version to 0.8.1.1
36308         because of following changes [--ds]
36309
36310         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
36311         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
36312         (gst_riff_read_header):  Use GST_READ_UINT*
36313         macros to access possibly unaligned memory.
36314
36315         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
36316         (mp3_type_find):  Use GST_READ_UINT*
36317         macros to access possibly unaligned memory.
36318         (mp3_type_find, mpeg1_parse_header, qt_type_find)
36319         (speex_type_find): Likewise
36320
36321         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
36322
36323         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
36324         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
36325         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
36326         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
36327         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
36328         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
36329         macros to access possibly unaligned memory.
36330
36331         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
36332         Likewise.
36333
36334         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
36335         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
36336
36337         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36338         Likewise.
36339
36340         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
36341         (gst_mpeg2subt_chain_subtitle): Likewise.
36342
36343         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
36344         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
36345         Likewise.
36346
36347         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
36348         Likewise.
36349
36350         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
36351         Likewise.
36352
36353         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
36354         Likewise.
36355
36356 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36357
36358         * configure.ac:
36359           update required version of GStreamer because of GST_TIME_FORMAT
36360
36361 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36362
36363         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
36364           remove leftover g_print
36365         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
36366           don't try setting only a subset of the caps. We don't want to kill
36367           autoplugging on purpose
36368
36369 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36370
36371         * sys/ximage/ximagesink.c: (plugin_init):
36372         * sys/xvimage/xvimagesink.c: (plugin_init):
36373           add debugging categories
36374
36375 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36376
36377         * po/en_GB.po:
36378         * po/LINGUAS:
36379           Adding en_GB translation (Gareth Owen)
36380
36381 2004-04-20  David Schleef  <ds@schleef.org>
36382
36383         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36384         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
36385         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
36386         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
36387         A number of new features and hacks to extract the esds atom and
36388         put it into the caps.  (bug #137724)
36389
36390 2004-04-19  David Schleef  <ds@schleef.org>
36391
36392         * gconf/Makefile.am: Fix for non-GNU make
36393         * gst-libs/gst/Makefile.am: Change directory order to handle
36394         GstPlay linking with gstinterfaces
36395         * gst-libs/gst/audio/make_filter: make use of tr portable
36396         * gst-libs/gst/play/Makefile.am: Add intended \
36397         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
36398         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
36399         function prototype instead of void *.
36400         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
36401         macro.
36402         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36403         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
36404         * gst/videofilter/make_filter: make use of tr portable
36405         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
36406
36407 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36408
36409         * po/LINGUAS:
36410         * po/uk.po:
36411           Added Ukrainian translation (Maxim V. Dziumanenko)
36412
36413 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36414
36415         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
36416         (gst_gsmdec_link), (gst_gsmdec_chain):
36417           Fix capsnego, simplify chain function slightly.
36418         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
36419           Add GSM.
36420
36421 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36422
36423         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
36424         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
36425         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
36426           Hack to make wavparse work with spider (always -> sometimes pad).
36427           Fixes #135862 && #140411.
36428
36429 2004-04-18  Benjamin Otte  <otte@gnome.org>
36430
36431         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
36432         (gst_osselement_rate_probe_check),
36433         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
36434           get rid of \n in debug output
36435
36436 2004-04-17  Iain <iain@prettypeople.org>
36437
36438         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
36439         not just EOS.
36440
36441 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36442
36443         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
36444         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
36445         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
36446         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
36447         (gst_id3_tag_src_link), (gst_id3_tag_chain),
36448         (gst_id3_tag_change_state), (plugin_init):
36449           deprecate id3tag element and replace with id3demux/id3mux.
36450           great side effect: this ugly file is now even uglier, yay!
36451         * ext/mad/gstmad.h:
36452           remove non-available function
36453           update for new get_type
36454
36455 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36456
36457         * configure.ac:
36458           require mpeg2dec >= 0.4.0
36459
36460 2004-04-17  Benjamin Otte  <otte@gnome.org>
36461
36462         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
36463         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
36464         (gst_xvimagesink_set_xwindow_id):
36465           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
36466           assorted cleanup fixes.
36467
36468 2004-04-16  David Schleef  <ds@schleef.org>
36469
36470         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
36471         * sys/xvimage/xvimagesink.h: same
36472
36473 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36474
36475         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36476           Fix GST_ELEMENT_ERROR with (NULL)
36477
36478 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36479
36480         * gst-libs/gst/riff/riff-media.c:
36481         (gst_riff_create_video_caps_with_data):
36482           Add div[3456] as fourccs for DivX 3 (fixes #140137).
36483
36484 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36485
36486         * gst-libs/gst/riff/riff-media.c:
36487         (gst_riff_create_video_caps_with_data),
36488         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
36489         (gst_riff_create_video_template_caps),
36490         (gst_riff_create_audio_template_caps):
36491         * gst-libs/gst/riff/riff-media.h:
36492         * gst-libs/gst/riff/riff-read.c:
36493         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
36494         * gst-libs/gst/riff/riff-read.h:
36495         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
36496           Add MS RLE support. I added some functions to read out strf chunks
36497           into strf chunks and the data behind it. This is usually color
36498           palettes (as in RLE, but also in 8-bit RGB). Also use those during
36499           caps creation. Lastly, add ADPCM (similar to wavparse - which
36500           should eventually be rifflib based).
36501         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
36502         (gst_matroska_demux_init), (gst_matroska_demux_reset):
36503         * gst/matroska/matroska-demux.h:
36504           Remove placeholders for some prehistoric tagging system. Didn't add
36505           support for any tag system really anyway.
36506         * gst/qtdemux/qtdemux.c:
36507           Add support for audio/x-m4a (MPEG-4) through spider.
36508         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
36509         (gst_wavparse_loop):
36510           ADPCM support (#135862). Increase max. buffer size because we
36511           cannot split buffers for ADPCM (screws references) and I've seen
36512           files with 2048 byte chunks. 4096 seems safe for now.
36513
36514 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36515
36516         * configure.ac: bump nano to 1
36517
36518 === release 0.8.1 ===
36519
36520 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36521
36522         * configure.ac: releasing 0.8.1, "Comforting Sounds"
36523
36524 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36525
36526         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36527           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
36528           Fixes #140058
36529
36530 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36531
36532         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
36533           lower rank of dvddemux so that it's not used for mpeg playback.
36534
36535 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36536
36537         * configure.ac:
36538           save libs correctly when checking mad
36539
36540 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36541
36542         * ext/mad/gstid3tag.c: (plugin_init):
36543           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
36544
36545 2004-04-13  David Schleef  <ds@schleef.org>
36546
36547         * common/m4/gst-feature.m4: Call -config scripts with
36548         --plugin-libs if it is supported.
36549         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
36550         JPEG images are image/jpeg.
36551         * gst/debug/Makefile.am:
36552         * gst/debug/negotiation.c: (gst_negotiation_class_init),
36553         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
36554         (gst_negotiation_update_caps), (gst_negotiation_get_property),
36555         (gst_negotiation_plugin_init): Add a property that acts like
36556         filter caps.
36557         * testsuite/gst-lint:  Move license checking to be a standard
36558         test.
36559
36560 2004-04-13  David Schleef  <ds@schleef.org>
36561
36562         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
36563         patch from Sebastien Cote (bug #139958)
36564
36565 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36566
36567         * examples/gstplay/Makefile.am:
36568         * examples/gstplay/player.c: (main):
36569           make the commandline player example use gconf settings
36570
36571 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36572
36573         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
36574         (gst_cacasink_sinkconnect), (gst_cacasink_init),
36575         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
36576           init/end library during state transition, not object
36577           creation/disposal.  get rid of custom dispose handler.
36578
36579
36580 2004-04-12  Christian Schaller <Uraeus@gnome.org>
36581
36582         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
36583         be a symlink
36584
36585 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36586
36587         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
36588           Handle JUNK chunks inside data section. Prevents warnings.
36589
36590 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36591
36592         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
36593         (gst_riff_create_video_template_caps):
36594           Add MS video v1.
36595         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
36596         (gst_avi_demux_stream_data):
36597           Add support for "rec-list" chunks.
36598
36599 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36600
36601         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
36602           Fix another codecname mismatch.
36603
36604 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36605
36606         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36607           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
36608           so that MJPEG plays back.
36609
36610 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36611
36612         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
36613         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
36614         * gst/mpeg1videoparse/gstmp1videoparse.h:
36615           Fix for some slight mis-cuts in buffer parsing, and for some
36616           potential overflows or faults-causers. Adds disconts. Also fixes
36617           #139105 while we're at it.
36618
36619 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36620
36621         * configure.ac:
36622         * sys/v4l2/gstv4l2element.h:
36623           Workaround for missing struct v4l2_buffer declaration in Suse 9
36624           and Mandrake 10 linux/videodev2.h header file (#135919).
36625
36626 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36627
36628         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36629           Bail out if no filename was given.
36630
36631 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36632
36633         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
36634         (gst_v4l2_fourcc_from_structure):
36635           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
36636           Y41B somewhere).
36637
36638 2004-04-09  Benjamin Otte  <otte@gnome.org>
36639
36640         * ext/gnomevfs/gstgnomevfssink.c:
36641         (_gst_boolean_allow_overwrite_accumulator),
36642         (gst_gnomevfssink_class_init):
36643           fix erase signal - if any handler returns false the file will not be
36644           overwritten. If no handler is connected, the file will not be
36645           overwritten either.
36646           renamed signal to "allow-overwrite"
36647         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
36648           free string when adding it to ID3 failed
36649         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
36650           unref event when done
36651         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36652           free caps
36653         * gst/typefind/gsttypefindfunctions.c:
36654         (mpeg_video_stream_type_find):
36655           fix invalid read
36656
36657 2004-04-08  David Schleef  <ds@schleef.org>
36658
36659         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36660         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
36661
36662 2004-04-08  David Schleef  <ds@schleef.org>
36663
36664         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
36665         we don't support (bug #139532)
36666
36667 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36668
36669         * ext/mad/gstmad.c: (gst_mad_handle_event),
36670         (gst_mad_check_caps_reset), (gst_mad_chain),
36671         (gst_mad_change_state):
36672           only set explicit caps if they haven't been set before for
36673           this stream.  MPEG-audio sample rate/channels aren't allowed
36674           to change in-stream.
36675           Fixes #139382
36676
36677 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36678
36679         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
36680         (_gst_boolean_did_something_accumulator),
36681         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
36682         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
36683         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
36684         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
36685         (gst_gnomevfssink_change_state):
36686           Fix erase signal. Don't erase by default. Remove handoff signal.
36687           Remove erase property. Don't segfault. General cleanup.
36688
36689 2004-04-07  Benjamin Otte  <otte@gnome.org>
36690
36691         * gst-libs/gst/gconf/test-gconf.c: (main):
36692           add missing gst_init
36693
36694 2004-04-07  Benjamin Otte  <otte@gnome.org>
36695
36696         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36697           free the mutexes, too
36698
36699 2004-04-07  Benjamin Otte  <otte@gnome.org>
36700
36701         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36702           actually free the URI string
36703         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
36704           compute offset correctly when passing discont events
36705         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36706           don't leak discont events
36707         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
36708           add some missing breaks so caps aren't copied randomly
36709         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
36710           if we realloc memory, we better use it
36711
36712 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36713
36714         * ext/mad/gstmad.c: (normal_seek):
36715           fix GST_FORMAT_TIME usage
36716
36717 2004-04-05  David Schleef  <ds@schleef.org>
36718
36719         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
36720         a deprecated function (hack!)
36721
36722 2004-04-05  Benjamin Otte  <otte@gnome.org>
36723
36724         * ext/esd/esdmon.c: (gst_esdmon_get):
36725           fix nonterminated vararg and memleak
36726
36727 2004-04-05  Benjamin Otte  <otte@gnome.org>
36728
36729         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
36730         (gst_ladspa_init), (gst_ladspa_force_src_caps),
36731         (gst_ladspa_set_property), (gst_ladspa_get_property),
36732         (gst_ladspa_instantiate), (gst_ladspa_activate),
36733         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
36734           clean up debugging
36735
36736 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
36737
36738         reviewed by Benjamin Otte  <otte@gnome.org>
36739
36740         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
36741           check for broken LADSPA parameters (fixes #138635)
36742
36743 2004-04-05  Benjamin Otte  <otte@gnome.org>
36744
36745         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
36746           advertise buffer-frames correctly on sinkpads
36747
36748 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36749
36750         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
36751         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
36752         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
36753         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
36754         (gst_mad_check_caps_reset), (gst_mad_chain):
36755         add more debugging, only reset caps when we're not in error state
36756
36757 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36758
36759         * ext/mad/gstmad.c: add debugging category, comment + cleanups
36760
36761 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36762
36763         reviewed by Benjamin Otte  <otte@gnome.org>
36764
36765         * configure.ac:
36766           fix == in test(1) operator
36767
36768 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36769
36770         reviewed by Benjamin Otte  <otte@gnome.org>
36771
36772         * configure.ac:
36773           fix --export-symblos-regex to a working regex.
36774
36775 2004-04-04  Benjamin Otte  <otte@gnome.org>
36776
36777         * sys/oss/.cvsignore:
36778           add for oss_probe
36779
36780 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
36781
36782         reviewed by Benjamin Otte  <otte@gnome.org>
36783
36784         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36785           add missing 'new_media' argument (fixes #138168)
36786         * gst/matroska/matroska-demux.c:
36787         (gst_matroska_demux_handle_seek_event):
36788           add vararg terminator (fixes #138169)
36789
36790 2004-04-02  David Schleef  <ds@schleef.org>
36791
36792         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
36793         disted (bug #138914)
36794
36795 2004-04-01  Benjamin Otte  <otte@gnome.org>
36796
36797         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
36798         (gst_alsa_close_audio):
36799           handle case better where a soundcard can't pause
36800         * ext/ogg/gstoggdemux.c:
36801           don't crash when we get events but don't have pads yet
36802
36803 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36804
36805         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
36806           throw an error if we couldn't probe any caps.
36807
36808 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36809
36810         * ext/dvdnav/gst-dvd:
36811         Add a really simple sample DVD player
36812
36813 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36814
36815         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
36816         (gst_a52dec_push), (gst_a52dec_handle_event),
36817         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
36818         (gst_a52dec_change_state):
36819         * ext/a52dec/gsta52dec.h:
36820           Use a debug category, Output timestamps correctly
36821           Emit tag info, Handle events, tell liba52dec about cpu
36822           capabilities so it can use MMX etc.
36823         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
36824           Fix a crasher accessing invalid memory
36825         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
36826         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
36827         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
36828         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
36829         (dvdnavsrc_query):
36830           Some support for byte-format seeking.
36831           Small fixes for still frames and menu button overlays
36832         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
36833         (gst_mpeg2dec_alloc_buffer):
36834           Use a debug category. Adjust the report level of several items to
36835           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
36836           so it doesn't lose the GstBuffer pointer
36837         * gst/debug/Makefile.am:
36838         * gst/debug/gstdebug.c: (plugin_init):
36839         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
36840         (gst_navseek_base_init), (gst_navseek_class_init),
36841         (gst_navseek_init), (gst_navseek_seek),
36842         (gst_navseek_handle_src_event), (gst_navseek_set_property),
36843         (gst_navseek_get_property), (gst_navseek_chain),
36844         (gst_navseek_plugin_init):
36845         * gst/debug/gstnavseek.h:
36846           Add the navseek debug element for seeking back and forth in a
36847           video stream using arrow keys.
36848         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
36849         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
36850         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
36851         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
36852         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
36853         (gst_mpeg2subt_parse_header), (gst_get_nibble),
36854         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
36855         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
36856         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
36857         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
36858         * gst/mpeg2sub/gstmpeg2subt.h:
36859           Pretty much a complete rewrite. Now a loopbased element. May still
36860           require work to properly synchronise subtitle buffers.
36861         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
36862         (gst_dvd_demux_send_subbuffer):
36863         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
36864           Don't attempt to create subbuffers of size 0
36865           Reduce a couple of error outputs to warnings.
36866         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
36867         (gst_y4mencode_chain):
36868         Output the y4m frame header correctly.
36869
36870 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36871
36872         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36873           throw errors instead of allowing SIGFPE
36874
36875 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36876
36877         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
36878         (gst_gconf_render_bin_from_key):
36879           leak plugging and style fixing
36880
36881 2004-03-31  David Schleef  <ds@schleef.org>
36882
36883         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
36884         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
36885         (bug #138225)
36886         * gst/debug/Makefile.am:
36887         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
36888         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
36889         plugin.
36890         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
36891         (gst_negotiation_base_init), (gst_negotiation_class_init),
36892         (gst_negotiation_init), (gst_negotiation_getcaps),
36893         (gst_negotiation_pad_link), (gst_negotiation_chain),
36894         (gst_negotiation_set_property), (gst_negotiation_get_property),
36895         (gst_negotiation_plugin_init):  New element to talk about random
36896         negotiation things happening in a pipeline.
36897
36898 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36899
36900         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36901           fix integer addition with help of Stefan Kost
36902
36903 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36904
36905         * po/nl.po: updated Dutch translation (Elros Cyriatan)
36906
36907 2004-03-30  David Schleef  <ds@schleef.org>
36908
36909         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
36910         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
36911         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
36912         (bug #137504)
36913         * ext/mpeg2dec/gstmpeg2dec.h:
36914
36915 2004-03-30  David Schleef  <ds@schleef.org>
36916
36917         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
36918
36919 2004-03-30  David Schleef  <ds@schleef.org>
36920
36921         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
36922         Michael Petullo) to handle .mov
36923
36924 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36925
36926         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
36927         (gst_osselement_rate_check_rate):
36928           probe caps correctly for sound cards that only support one format
36929
36930 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36931
36932         * ext/kio/kiosrc.cpp: (process_events):
36933           update handling event processing if inside KDE - untested
36934
36935 2004-03-29  David Schleef  <ds@schleef.org>
36936
36937         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
36938         by 2 to not interfere with other colorspaces.
36939         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
36940         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
36941         one to not interfere with ffmpeg_colorspace.
36942
36943 2004-03-29  David Schleef  <ds@schleef.org>
36944
36945         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
36946         aren't in the caps.
36947         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
36948         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
36949
36950 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36951
36952         * gst-libs/gst/riff/riff-media.c:
36953           fail on error, don't try to set stuff on NULL caps
36954
36955 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36956
36957         * configure.ac:
36958         * ext/Makefile.am:
36959         * ext/kio/Makefile.am:
36960         * ext/kio/kioreceiver.cpp:
36961         * ext/kio/kioreceiver.h:
36962         * ext/kio/kiosrc.cpp:
36963         * ext/kio/kiosrc.h:
36964           add experimental kiosrc plugin
36965         * ext/alsa/gstalsaplugin.c: (plugin_init):
36966           initialize debugging category only when we're sure registering the
36967           plugins worked.
36968
36969 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36970
36971         * examples/gstplay/player.c: (main):
36972         * gst-libs/gst/play/play.c: (gst_play_class_init),
36973         (gst_play_set_location), (gst_play_set_data_src),
36974         (gst_play_set_video_sink), (gst_play_set_audio_sink),
36975         (gst_play_set_visualization), (gst_play_connect_visualization):
36976           check return values of element_set_state and return FALSE where
36977           failed
36978
36979 2004-03-29  Benjamin Otte  <otte@gnome.org>
36980
36981         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36982           try harder to check if an event is really a discont
36983
36984 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36985
36986         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
36987         * po/az.po:
36988
36989 2004-03-28  Benjamin Otte  <otte@gnome.org>
36990
36991         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
36992         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
36993         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
36994           get rid of non-standard "..." ranges in case statements.
36995
36996 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
36997
36998         * gst/mpegstream/gstmpegdemux.c:
36999         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
37000         specific functionality split to the new dvddemux element.
37001         * gst/mpegstream/gstdvddemux.c:
37002         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
37003         streams, derived from mpegdemux.
37004         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
37005         up. SCR based timestamp rewriting can be turned off (will probably
37006         completely disappear soon).
37007         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
37008         hacking. General cleanup. All printf statements replaced by
37009         debugging messages. Almost complete libdvdnav support.
37010         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
37011         by events. New properties for audio and subpicture languages.
37012         (dvdnavsrc_update_highlight): Now uses events.
37013         (dvdnavsrc_user_op): Cleaned up.
37014         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
37015         based). Lots of cleanup, and propper support for most libdvdnav
37016         events.
37017         (dvdnavsrc_make_dvd_event): New function.
37018         (dvdnavsrc_make_dvd_nav_packet_event): New function.
37019         (dvdnavsrc_make_clut_change_event): New function.
37020
37021 2004-03-26  Benjamin Otte  <otte@gnome.org>
37022
37023         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
37024           fix bug where typefinding would claim it's theora whenever less then
37025           7 bytes of data were available
37026
37027 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37028
37029         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
37030         (gst_alawdec_base_init), (gst_alawdec_class_init),
37031         (gst_alawdec_init), (gst_alawdec_chain):
37032         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
37033         (gst_alawenc_base_init), (gst_alawenc_class_init),
37034         (gst_alawenc_init), (gst_alawenc_chain):
37035         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
37036         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
37037         (gst_mulawdec_init), (gst_mulawdec_chain):
37038         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
37039         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
37040         (gst_mulawenc_init), (gst_mulawenc_chain):
37041           Fix capsnego in all four, remove the unused property functions and
37042           simplify the chain functions slightly. I guess we could use macros
37043           or something similar for those, since the code is so similar, but
37044           I'm currently too lazy...
37045
37046 2004-03-24  David Schleef  <ds@schleef.org>
37047
37048         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
37049         (gst_osselement_close_audio), (gst_osselement_probe_caps),
37050         (gst_osselement_get_format_structure),
37051         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
37052         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
37053         (gst_osselement_rate_int_compare): Add code to handle rate probing
37054         (bug #120883)
37055         * sys/oss/gstosselement.h: same
37056         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
37057         Use rate probing provided by osselement.
37058         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
37059
37060 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37061
37062         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
37063         (gst_xvidenc_get_property):
37064           ulong/int mess-up.
37065
37066 2004-03-24  David Schleef  <ds@schleef.org>
37067
37068         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
37069         (gst_speexdec_init):
37070         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
37071         (gst_speexenc_init):  Create the pad template correctly (from
37072         the static pad template, not a NULL pointer.)
37073
37074 2004-03-25  Benjamin Otte  <otte@gnome.org>
37075
37076         * gst/debug/Makefile.am:
37077         * gst/debug/breakmydata.c:
37078           add element that quasi-randomly changes bytes in the stream.
37079           Intended use is robustness checking of demuxers and decoders in
37080           media tests.
37081
37082 2004-03-24  Benjamin Otte  <otte@gnome.org>
37083
37084         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
37085         (gst_alsa_probe_hw_params):
37086         * ext/alsa/gstalsa.h:
37087           debugging output fixes
37088
37089 2004-03-24  Benjamin Otte  <otte@gnome.org>
37090
37091         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
37092           don't g_return_if_fail if element is PLAYING, fail silently as every
37093           other element.
37094         * gst/effectv/gstquark.c: (gst_quarktv_chain):
37095           only fix needed for cast lvalue issues in gst-plugins
37096         * gst/volenv/gstvolenv.c: (gst_volenv_init):
37097           add proxy_getcaps
37098
37099 2004-03-24  Benjamin Otte  <otte@gnome.org>
37100
37101         * gst/level/gstlevel.c: (gst_level_init):
37102           add proxying getcaps function, so level doesn't advertise impossible
37103           caps
37104
37105 2004-03-24  David Schleef  <ds@schleef.org>
37106
37107         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
37108         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
37109         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
37110         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
37111         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
37112         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
37113         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
37114         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
37115         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
37116         messages.  Divide the chunk size by the compression ratio
37117         (needed for MACE audio)
37118
37119 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37120
37121         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
37122           Fix buffer overflow read error.
37123
37124 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37125
37126         * ext/alsa/gstalsa.h:
37127           Remove unused entry.
37128         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
37129           Add cinepak.
37130         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
37131         (gst_videodrop_link), (gst_videodrop_chain):
37132           Fix, sort of. Was horribly broken with new capsnego. Bah...
37133
37134 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
37135
37136         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
37137         (plugin_init):
37138         Add a monkeysaudio typefind function
37139
37140 2004-03-23  Johan Dahlin  <johan@gnome.org>
37141
37142         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
37143         (gst_play_video_fixate): Check so the structure has the field
37144         before trying to fixate them, this makes it possible to have
37145         fakesinks for video and audio output without printing errors on
37146         the output console.
37147
37148 2004-03-22  David Schleef  <ds@schleef.org>
37149
37150         * sys/oss/Makefile.am:
37151         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
37152         (check_rate), (add_rate):  Rate probing test app.
37153
37154 2004-03-21  Benjamin Otte  <otte@gnome.org>
37155
37156         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
37157         (_fixate_caps_to_int), (gst_audio_convert_fixate):
37158           add a fixation function that pretty much does the right thing (fixes
37159           #137556)
37160
37161 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
37162
37163         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
37164
37165 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
37166
37167         reviewed by: Benjamin Otte  <otte@gnome.org>
37168
37169         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
37170           terminate gst_event_new_discontinuous correctly (fixes parts of
37171           #137711)
37172
37173 2004-03-19  David Schleef  <ds@schleef.org>
37174
37175         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
37176         since it doesn't depend on X, and it's part of our ABI.
37177
37178 2004-03-19  Iain <iain@prettypeople.org>
37179
37180         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
37181         is_int in the structure, not the local variable.
37182
37183 2004-03-19  David Schleef  <ds@schleef.org>
37184
37185         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
37186         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
37187         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
37188         Improvements in caps negotiation.
37189
37190 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37191
37192         * po/LINGUAS:
37193         * po/af.po:
37194           adding Afrikaans (Petri Jooste)
37195
37196 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37197
37198         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
37199         (gst_ffmpegcolorspace_chain):
37200         throw error instead of g_critical (#137588)
37201
37202 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37203
37204         * Makefile.am:
37205         * configure.ac:
37206           dist common and m4 correctly
37207         * po/sv.po:
37208
37209 2004-03-17  David Schleef  <ds@schleef.org>
37210
37211         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
37212         (bug #137348)
37213
37214 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37215
37216         * po/LINGUAS:
37217         * po/sv.po:
37218           adding Swedish translation (Christian Rose)
37219
37220 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37221
37222         * Makefile.am: use release.mak
37223
37224 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37225
37226         * common/ChangeLog:
37227         * common/gst-autogen.sh:
37228           add some explanation about the version detection
37229         * configure.ac:
37230           fix X check
37231
37232 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37233
37234         * configure.ac: bump nano to 1
37235
37236 === release 0.8.0 ===
37237
37238 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37239
37240         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
37241
37242 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37243
37244         * configure.ac:
37245           update libtool version
37246         * gst-libs/gst/media-info/Makefile.am:
37247           actually use libtool version
37248
37249 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37250
37251         * configure.ac: fix speex detection to work with 1.0 but not 1.1
37252
37253 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37254
37255         * configure.ac:
37256         * gst-plugins.spec.in:
37257         * pkgconfig/Makefile.am:
37258         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
37259         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37260         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37261         * pkgconfig/gstreamer-libs.pc.in:
37262         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
37263         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37264         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
37265         * pkgconfig/gstreamer-plugins.pc.in:
37266           remove @VERSION@ from some of the pc files since core and plugins
37267           are decoupled.
37268           created gstreamer-plugins.pc as it's a better name, but keeping
37269           -libs around for now to get fixes upstream done first.
37270
37271 2004-03-15  Julien MOUTTE <julien@moutte.net>
37272
37273         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
37274         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
37275         * gst-libs/gst/play/play.h:
37276
37277 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37278
37279         * *.c, *.cc: don't mix tabs and spaces
37280
37281 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37282
37283         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
37284           use the new ffmpegcolorspace
37285         * gst-plugins.spec.in:
37286           package new colorspace and media-info
37287         * configure.ac:
37288         * pkgconfig/Makefile.am:
37289           fix some more disting issues
37290         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
37291         * pkgconfig/gstreamer-media-info.pc.in:
37292           generate media-info pc files
37293
37294 2004-03-15  Johan Dahlin  <johan@gnome.org>
37295
37296         * *.h: Revert indenting
37297
37298 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37299
37300         * configure.ac:
37301           adding ffmpegcolorspace element
37302         * gst/ffmpegcolorspace/Makefile.am:
37303         * gst/ffmpegcolorspace/avcodec.h:
37304         * gst/ffmpegcolorspace/common.h:
37305         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
37306         * gst/ffmpegcolorspace/dsputil.h:
37307         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
37308         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
37309         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
37310         (gst_ffmpeg_caps_to_pix_fmt):
37311         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
37312         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
37313         (gst_ffmpegcolorspace_caps_remove_format_info),
37314         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
37315         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
37316         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
37317         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
37318         (gst_ffmpegcolorspace_set_property),
37319         (gst_ffmpegcolorspace_get_property),
37320         (gst_ffmpegcolorspace_register):
37321         * gst/ffmpegcolorspace/imgconvert.c:
37322         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
37323         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
37324         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
37325         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
37326         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
37327         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
37328         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
37329         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
37330         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
37331         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
37332         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
37333         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
37334         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
37335         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
37336         (img_get_alpha_info), (deinterlace_line),
37337         (deinterlace_line_inplace), (deinterlace_bottom_field),
37338         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
37339         * gst/ffmpegcolorspace/imgconvert_template.h:
37340         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
37341         * gst/ffmpegcolorspace/mmx.h:
37342         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
37343           adding ffmpegcolorspace element supplied by Ronald after cleaning
37344           up and pulling in the right bits of upstream source.
37345           I'm sure a better C/compiler wizard could do some cleaning up (for
37346           example use GLIB's malloc stuff), but as a first pass this
37347           works very well
37348
37349 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37350
37351         * ext/alsa/gstalsa.h:
37352           I assume Ronald forgot to commit the change to have cardname
37353           as a struct member.  Expect some public spanking at the next
37354           opportunity.
37355
37356 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37357
37358         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
37359         (gst_alsa_open_audio), (gst_alsa_close_audio):
37360         * ext/alsa/gstalsa.c:
37361           Don't open the device if we're a mixer (= padless).
37362         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
37363         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
37364         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
37365           Open mixer during state change rather than during object
37366           initialization. Also, get a device name. Currently in a somewhat
37367           hackish fashion, but I didn't really find something better.
37368
37369 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
37370
37371         * *.c, *.h: run gst-indent
37372
37373 2004-03-14  Benjamin Otte  <otte@gnome.org>
37374
37375         * gst/modplug/gstmodplug.cc:
37376         * gst/modplug/gstmodplug.h:
37377           set correct timestamps on outgoing buffers
37378
37379 2004-03-14  Benjamin Otte  <otte@gnome.org>
37380
37381         * gst/modplug/gstmodplug.cc:
37382           handle events - don't do crap when a discont arrives that's not
37383           necessary
37384           This allows correct loading and playback of mods in Rhythmbox
37385
37386 2004-03-14  Benjamin Otte  <otte@gnome.org>
37387
37388         * configure.ac:
37389         * gst-libs/gst/gconf/Makefile.am:
37390         * pkgconfig/Makefile.am:
37391           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
37392           they get rebuilt properly
37393         * configure.ac:
37394           when checking for vorbis, try pkgconfig first.
37395         * gst/modplug/gstmodplug.cc:
37396           add fixate function
37397
37398 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37399
37400         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
37401           Fix for obvious mistake, where we first shift the offset and then
37402           read a samplesize element assuming the old offset. Note that this
37403           part still has something weird, i.e. my movies containing those
37404           don't actually play well, but at least there's something that looks
37405           like sound now.
37406
37407 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
37408         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
37409         (plugin_init):
37410         Add a typefind function for speex format
37411
37412 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37413
37414         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
37415         (gst_asf_demux_setup_pad):
37416           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
37417           instead of 0. Reason is simple: some elements have a fps range
37418           of 1-max instead of 0-max. So now ASF video actually works.
37419
37420 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37421
37422         * po/LINGUAS:
37423         * po/sr.po:
37424           adding serbian as a language
37425
37426 2004-03-13  Benjamin Otte  <otte@gnome.org>
37427
37428         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
37429           return taglist correctly from _get function, don't gst_pad_push it.
37430           (fixes #137042)
37431
37432 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37433         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37434
37435 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37436
37437         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
37438         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
37439         (gst_alsa_mixer_track_new):
37440         * ext/alsa/gstalsamixertrack.h:
37441           Fix ancient leftovers... MixerTrack is a GObject.
37442
37443 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37444
37445         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37446         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
37447           Don't block during probing...
37448
37449 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37450
37451         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
37452         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
37453         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
37454         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
37455         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
37456         (gst_alsa_open_audio), (gst_alsa_close_audio):
37457         * ext/alsa/gstalsa.h:
37458           Add propertyprobe interface implementation, add some device-name
37459           property, all this so that it looks good in gnome-volume-control.
37460
37461 2004-03-12  David Schleef  <ds@schleef.org>
37462
37463         * configure.ac: the Hermes library controls hermescolorspace, not
37464         colorspace.
37465         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37466         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
37467         not /* */
37468         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
37469         * ext/sdl/sdlvideosink.h: ditto.
37470         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
37471
37472 2004-03-12  Benjamin Otte  <otte@gnome.org>
37473
37474         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
37475         (gst_x_overlay_got_xwindow_id):
37476         * gst-libs/gst/xoverlay/xoverlay.h:
37477           replace XID with unsigned long to get rid of the xlibs dependency in
37478           XOverlay (fixes #137004)
37479
37480 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37481         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
37482         (gst_agingtv_setup):
37483         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
37484         (gst_dicetv_base_init), (gst_dicetv_class_init),
37485         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
37486         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
37487         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
37488         (gst_edgetv_setup), (gst_edgetv_rgb32):
37489         * gst/effectv/gsteffectv.c:
37490         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
37491         (gst_quarktv_set_property):
37492         * gst/effectv/gstrev.c: (gst_revtv_get_type),
37493         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
37494         (gst_revtv_setup), (gst_revtv_rgb32):
37495         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
37496         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
37497         (gst_shagadelictv_init), (gst_shagadelictv_setup),
37498         (gst_shagadelictv_rgb32):
37499         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
37500         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
37501         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
37502         * gst/effectv/gstwarp.c:
37503         Port everything that can be ported to videofilter and fix up the caps.
37504         Can someone with a big-endian machine please check these?
37505
37506 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37507
37508         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
37509         (gst_osssink_chain), (gst_osssink_change_state):
37510           Latest fixes for A/V sync, audio playback and such. This is about
37511           all... MPEG playback issues are mostly related to the async build-
37512           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
37513
37514 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37515
37516         patch from: Stephane Loeuillet
37517
37518         * configure.ac:
37519           use pkg-config for some libraries, falling back to the old .m4 way
37520           (fixes #131270)
37521         * m4/libdv.m4:
37522           removed
37523
37524 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37525
37526         * configure.ac:
37527         * tools/Makefile.am:
37528         * tools/Makefile.in:
37529         * tools/gst-launch-ext-m.m:
37530         * tools/gst-launch-ext.1.in:
37531         * tools/gst-visualise-m.m:
37532         * tools/gst-visualise.1:
37533         * tools/gst-visualise.1.in:
37534           reorganizing generation of script tools
37535
37536 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37537
37538         * ext/divx/gstdivxdec.c:
37539           Downgrade priority. We prefer ffdec_mpeg4.
37540         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
37541         (gst_faad_chain), (gst_faad_change_state):
37542           Fix capsnego. Doesn't work for some sounds because we don't have
37543           a 5:1 to stereo element.
37544         * ext/xvid/gstxvid.c: (plugin_init):
37545           Add priority.
37546         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
37547         (gst_osssink_change_state):
37548           Add discont handling.
37549
37550 2004-03-09  Colin Walters  <walters@verbum.org>
37551
37552         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
37553         conversion.
37554
37555 2004-03-09  Benjamin Otte  <otte@gnome.org>
37556
37557         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37558           the signals take 2 arguments
37559
37560 2004-03-09  David Schleef  <ds@schleef.org>
37561
37562         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
37563         (gst_alsa_fixate): Add fixate function.  (bug #136686)
37564         * ext/alsa/gstalsa.h:
37565         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
37566
37567 2004-03-09  Benjamin Otte  <otte@gnome.org>
37568
37569         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
37570         (gst_mikmod_change_state):
37571         * ext/mikmod/gstmikmod.h:
37572           make mikmod's loop function not loop infinitely and call
37573           gst_element_yield anymore
37574         * gst/modplug/gstmodplug.cc:
37575           fix pad negotiation (fixes #136590)
37576
37577 2004-03-09  David Schleef  <ds@schleef.org>
37578
37579         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
37580         doesn't conflict with the internal colorspace plugin.
37581         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
37582         satisfy the crappy-ass shell shipped by a certain vendor.
37583         * gst/videofilter/make_filter: same (bug #135299)
37584
37585 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37586
37587         * configure.ac: bump nano to 1
37588
37589 === release 0.7.6 ===
37590
37591 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37592
37593         * configure.in: releasing 0.7.6, "There"
37594
37595 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37596
37597         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37598         * pkgconfig/gstreamer-play.pc.in:
37599           synchronize the two
37600
37601 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37602
37603         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
37604         (cdparanoia_open), (cdparanoia_event):
37605           fix/add error handling
37606         * po/POTFILES.in:
37607           add cdparanoia source
37608         * tools/Makefile.am:
37609           make scripts executable
37610
37611 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37612
37613         * configure.ac:
37614         * ext/vorbis/Makefile.am:
37615         * sys/Makefile.am:
37616           remove id3types, vorbisfile and xvideosink from the build (#133783)
37617
37618 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37619
37620         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
37621           Fix metadata read crash (#136537).
37622
37623 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37624
37625         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
37626         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
37627           adding mime types, fixing the one-stop function
37628
37629 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37630
37631         * ext/nas/nassink.c and /ext/nas/nassink.h:
37632         More NAS love from Arwed von Merkatz
37633         So lets all sing 'Can you feel the NAS tonight'
37634
37635 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37636
37637         * tools/gst-launch-ext.in:
37638         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
37639
37640 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37641
37642         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37643         (gst_mpeg2dec_init):
37644         remove the user_data pad for now, because it is being used in
37645         fixating causing MPEG playback to fixate on 1000 Hz for playback.
37646         If someone knows how to fix this properly, please do.
37647
37648 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37649
37650         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37651         (gst_osssink_get_time):
37652         add a warning, IMO this won't get triggered anymore, remove later
37653
37654 2004-03-07  David Schleef  <ds@schleef.org>
37655
37656         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
37657         format (bug #136470)
37658
37659 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
37660
37661         * gst-libs/Makefile.am:
37662         * gst-libs/gst/media-info/Makefile.am:
37663         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
37664         (error_callback), (gst_media_info_error_create),
37665         (gst_media_info_error_element), (gmip_init), (gmip_reset),
37666         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
37667         * gst-libs/gst/media-info/media-info-priv.h:
37668         * gst-libs/gst/media-info/media-info-test.c: (main):
37669         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
37670         (gst_media_info_class_init), (gst_media_info_instance_init),
37671         (gst_media_info_set_source), (gst_media_info_read_with_idler),
37672         (gst_media_info_read_idler), (gst_media_info_read):
37673         * gst-libs/gst/media-info/media-info.h:
37674         fixed, should work now
37675
37676 2004-03-07  Christian Schaller <Uraeus@gnome.org>
37677
37678         * ext/nas/nassink.c:
37679         A bunch of NAS fixes from Arwed von Merkatz
37680
37681 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37682
37683         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
37684         (qtdemux_parse_trak):
37685           Fix crash (j might be greater than n_samples, in which case we're
37686           writing outside the allocated space for the array) and memleak.
37687
37688 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37689
37690         * sys/oss/gstosssink.c: (gst_osssink_chain):
37691           And another caller that couldn't handle delay < 0 (unsigned
37692           integer overflow). Video now continues playing on an audio
37693           buffer underrun, and the clock continues working. Audio still
37694           stalls.
37695
37696 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37697
37698         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37699         (gst_osssink_get_time):
37700           get_delay() may return values lower than 0. In those cases, we
37701           should not actually cast to *unsigned* int64, that will break
37702           stuff horribly. In my case, it screwed up A/V sync in movies
37703           in totem rather badly.
37704
37705 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37706
37707         * ext/faac/gstfaac.c: (gst_faac_chain):
37708         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37709         * ext/libpng/gstpngenc.c: (user_write_data):
37710         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
37711         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
37712         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
37713         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37714         Fix several misuse of gst_buffer_merge (it doesn't take ownership
37715         of any buffer), should fix some leaks. I hope I didn't unref buffers
37716         that shouldn't be...
37717
37718 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37719
37720         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
37721         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
37722         (error_callback), (gmi_reset), (gmi_seek_to_track),
37723         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
37724         (gmip_find_type_post), (gmip_find_stream_post),
37725         (gmip_find_track_streaminfo_post):
37726         * gst-libs/gst/media-info/media-info-priv.h:
37727         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
37728         (info_print), (main):
37729         * gst-libs/gst/media-info/media-info.c:
37730         (gst_media_info_error_create), (gst_media_info_error_element),
37731         (gst_media_info_instance_init), (gst_media_info_get_property),
37732         (gst_media_info_new), (gst_media_info_set_source),
37733         (gst_media_info_read_idler), (gst_media_info_read):
37734         * gst-libs/gst/media-info/media-info.h:
37735           first pass at making this work again.  This seems to work on
37736           tagged ogg/vorbis and mp3 files.
37737
37738 2004-03-06  Benjamin Otte  <otte@gnome.org>
37739
37740         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37741           fix huge leak: gst_buffer_merge doesn't unref the first argument
37742           itself.
37743
37744 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37745
37746         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
37747           report layer/mode/emphasis
37748
37749 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37750
37751         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
37752
37753 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37754
37755         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
37756           signal serial
37757
37758 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37759
37760         * ext/vorbis/vorbis.c: (plugin_init):
37761         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
37762         (gst_vorbis_dec_init), (vorbis_dec_event):
37763         add debug category
37764         make vorbisdec handle _BYTE and _TIME queries
37765
37766 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37767
37768         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
37769           from the xing header
37770
37771 2004-03-06  Benjamin Otte  <otte@gnome.org>
37772
37773         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
37774         (gst_audio_convert_link), (gst_audio_convert_change_state),
37775         (gst_audio_convert_buffer_from_default_format):
37776           do conversions from/to float correctly, fix some caps nego errors,
37777           export correct supported caps in template and getcaps, use correct
37778           caps in try_set_caps functions
37779
37780 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37781
37782         For some reason, I only committed a ChangeLog entry yesterday and
37783         not the corresponding code...
37784         * ext/mad/gstmad.c: Fix detection of Xing headers
37785         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37786
37787 2004-03-06  Benjamin Otte  <otte@gnome.org>
37788
37789         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
37790         (gst_ogg_demux_src_query):
37791           make sure to handle the case where there's no current chain
37792           gracefully.
37793
37794 2004-03-05  David Schleef  <ds@schleef.org>
37795
37796         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
37797         Add fixate function. (bug #131128)
37798         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
37799         (gst_sdlvideosink_fixate):  Add fixate function.
37800         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
37801         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
37802         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
37803         Fix missing break that was causing ulaw to be interpreted as
37804         raw int.
37805
37806 2004-03-05  David Schleef  <ds@schleef.org>
37807
37808         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37809         Fix code that ignores return value of gst_buffer_merge().
37810         (bug #114560)
37811         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
37812         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
37813         * testsuite/gst-lint:  Check for above.
37814
37815 2004-03-05  David Schleef  <ds@schleef.org>
37816
37817         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
37818         caps and throw an element error.  (bug #136334)
37819
37820 2004-03-05  David Schleef  <ds@schleef.org>
37821
37822         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
37823         (gst_faad_chain): Fix negotiation.
37824         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
37825         key and button events.
37826         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
37827         dung heap of code.
37828         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
37829         depends on gconf
37830         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
37831         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
37832         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
37833         function to encourage better negotiation, particularly between
37834         audioconvert and osssink.
37835         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37836         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
37837         more important.
37838         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
37839         typefinding.
37840         * gst/vbidec/vbiscreen.c:  Add glib header
37841         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
37842
37843 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
37844
37845         * ext/mad/gstmad.c: Fix detection of Xing headers
37846         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37847
37848 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37849
37850         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
37851         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
37852           debug updates
37853
37854 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37855
37856         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37857         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
37858         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
37859         files, and report the parsed length as a GST_TAG_DURATION tag.
37860         * gst/tags/gstid3tag.c: support TLEN (duration) tag
37861
37862 2004-03-05  Benjamin Otte  <otte@gnome.org>
37863
37864         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
37865           convert channels correctly. convert correctly to unsigned.
37866
37867 2004-03-05  Julien MOUTTE <julien@moutte.net>
37868
37869         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
37870         we have a window before clearing it.
37871
37872 2004-03-05  Julien MOUTTE <julien@moutte.net>
37873
37874         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
37875         have a window before clearing it.
37876
37877 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
37878
37879         * gconf/gstreamer.schemas.in:
37880         * gst-libs/gst/gconf/Makefile.am:
37881           version installation path the same way as for 0.6
37882         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37883         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37884         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37885           remove comment that was fixed
37886
37887 2004-03-05  David Schleef  <ds@schleef.org>
37888
37889         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
37890         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
37891         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
37892         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
37893         Add prototype code for handling seeking and querying.
37894
37895 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37896
37897         * examples/gstplay/player.c: (main):
37898           Initialize variables to NULL. Prevents a segfault because the
37899           (uninitialized) variable is not NULL, resulting in a crash on
37900           trying to reach error->message.
37901
37902 2004-03-05  Benjamin Otte  <otte@gnome.org>
37903
37904         * gst/audioconvert/gstaudioconvert.c:
37905         (gst_audio_convert_buffer_to_default_format):
37906         make float=>int conversion work correctly even in cornercases.
37907
37908 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
37909
37910         * debian/README.Debian:
37911         * debian/build-deps:
37912         * debian/changelog:
37913         * debian/control:
37914         * debian/control.in:
37915         * debian/copyright:
37916         * debian/gstreamer-a52dec.files:
37917         * debian/gstreamer-aa.files:
37918         * debian/gstreamer-alsa.files:
37919         * debian/gstreamer-alsa.manpages:
37920         * debian/gstreamer-arts.files:
37921         * debian/gstreamer-artsd.files:
37922         * debian/gstreamer-audiofile.files:
37923         * debian/gstreamer-avifile.files:
37924         * debian/gstreamer-cdparanoia.files:
37925         * debian/gstreamer-colorspace.files:
37926         * debian/gstreamer-doc.files:
37927         * debian/gstreamer-dv.files:
37928         * debian/gstreamer-dvd.files:
37929         * debian/gstreamer-esd.files:
37930         * debian/gstreamer-festival.files:
37931         * debian/gstreamer-flac.files:
37932         * debian/gstreamer-gconf.conffiles:
37933         * debian/gstreamer-gconf.files:
37934         * debian/gstreamer-gconf.postinst:
37935         * debian/gstreamer-gnomevfs.files:
37936         * debian/gstreamer-gsm.files:
37937         * debian/gstreamer-http.files:
37938         * debian/gstreamer-jack.files:
37939         * debian/gstreamer-jpeg.files:
37940         * debian/gstreamer-mad.files:
37941         * debian/gstreamer-mikmod.files:
37942         * debian/gstreamer-misc.files:
37943         * debian/gstreamer-mpeg2dec.files:
37944         * debian/gstreamer-oss.files:
37945         * debian/gstreamer-plugin-apps.files:
37946         * debian/gstreamer-plugin-apps.manpages:
37947         * debian/gstreamer-plugin-libs-dev.files:
37948         * debian/gstreamer-plugin-libs.files:
37949         * debian/gstreamer-plugin-template.postinst:
37950         * debian/gstreamer-plugin-template.postrm:
37951         * debian/gstreamer-sdl.files:
37952         * debian/gstreamer-sid.files:
37953         * debian/gstreamer-vorbis.files:
37954         * debian/gstreamer-x.files:
37955         * debian/mk.control:
37956         * debian/rules:
37957         Debian package info not maintained here.
37958
37959 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
37960
37961         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
37962         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
37963         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
37964         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
37965         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
37966         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
37967         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
37968         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
37969         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
37970         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
37971         * gst-libs/gst/colorbalance/colorbalance.c:
37972         (gst_color_balance_class_init):
37973         * gst-libs/gst/colorbalance/colorbalancechannel.c:
37974         (gst_color_balance_channel_class_init):
37975         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37976         * gst-libs/gst/play/play.c: (gst_play_class_init):
37977         * gst-libs/gst/propertyprobe/propertyprobe.c:
37978         (gst_property_probe_iface_init):
37979         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
37980         * gst-libs/gst/tuner/tunerchannel.c:
37981         (gst_tuner_channel_class_init):
37982         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
37983         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
37984         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
37985         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
37986         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
37987         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
37988         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
37989         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
37990         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
37991           fix signals to use - instead of _
37992         * ext/libcaca/gstcacasink.h:
37993         * ext/sdl/sdlvideosink.h:
37994           fix header rename
37995
37996 2004-03-04  David Schleef  <ds@schleef.org>
37997
37998         * testsuite/gst-lint:  Add a check for bad signal names.
37999
38000 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
38001
38002         reviewed by David Schleef
38003
38004         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
38005         modified the alpha channel and caused a warning. (bug #136192)
38006
38007 2004-04-03  Christian Schaller <Uraeus@gnome.org>
38008
38009         * gst-plugins.spec.in:
38010         Change names of plugins to actually be correct. Try to keep things
38011         alphabetical to avoid getting beat up by Thomas
38012
38013 2004-03-03  Julien MOUTTE <julien@moutte.net>
38014
38015         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
38016         Using ximagesink as a default if no gconf key found. We should
38017         probably consider using alsasink instead of osssink for the audio
38018         part.
38019
38020 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38021
38022         * configure.ac:
38023           fix --with-plugins, don't think it ever worked before
38024         * gst-plugins.spec.in:
38025           even more updates
38026
38027 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38028
38029         * ext/sdl/sdlvideosink.h:
38030         * sys/ximage/ximagesink.h:
38031         * sys/xvideo/xvideosink.h:
38032         * sys/xvimage/xvimagesink.h:
38033           Fix for move of gstvideosink.h -> videosink.h.
38034
38035 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38036
38037         * gst-libs/gst/xwindowlistener/Makefile.am:
38038           this is a plugin library, not a library
38039
38040 2004-03-01  David Schleef  <ds@schleef.org>
38041
38042         * AUTHORS:  Added some names.  Add yourself if you're still
38043         missing.
38044
38045 2004-03-01  David Schleef  <ds@schleef.org>
38046
38047         * MAINTAINERS: Add
38048
38049 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38050
38051         * gst-plugins.spec.in: clean up spec file
38052
38053 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38054
38055         * gst-libs/gst/video/Makefile.am:
38056         * gst-libs/gst/video/gstvideosink.c:
38057         * gst-libs/gst/video/gstvideosink.h:
38058           rename gstvideosink.h to videosink.h to match other headers
38059         * gst/mixmatrix/Makefile.am:
38060           fix plugin filename
38061         * gst/tags/Makefile.am: fix plugin filename
38062
38063 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38064
38065         * gst/tags/Makefile.am: fix plugin filename
38066
38067 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38068
38069         * examples/gstplay/player.c: (got_time_tick), (main):
38070           add error handler
38071           display time_tick more readably
38072         * gst/mixmatrix/Makefile.am:
38073           fix plugin file name
38074
38075 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
38076
38077         * sys/oss/gstosselement.c: (gst_osselement_probe),
38078         (device_combination_append), (gst_osselement_class_probe_devices):
38079         * sys/oss/gstosselement.h:
38080           Reworked enumeration of oss dsps and mixers so that gst-mixer works
38081           on my system using alsa oss emulation, fixes bug #135597
38082
38083 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38084
38085         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
38086         (gst_videodrop_chain), (gst_videodrop_change_state):
38087         * gst/videodrop/gstvideodrop.h:
38088           Work based on timestamp of input data, not based on the expected
38089           framerate from the input. The consequence is that this element now
38090           not only scales framerates, but also functions as a framerate
38091           corrector or framerate stabilizer/constantizer.
38092
38093 2004-02-27  David Schleef  <ds@schleef.org>
38094
38095         patches from jmmv@menta.net (Julio M. Merino Vidal)
38096
38097         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
38098         GST_ELEMENT_ERROR call (bug #135634)
38099         * gst/interleave/interleave.c: (interleave_buffered_loop),
38100         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
38101         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
38102         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
38103         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
38104         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
38105         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
38106         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
38107         Fix GST_ELEMENT_ERROR call.
38108         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
38109         GST_ELEMENT_ERROR call.
38110
38111 2004-02-27  Benjamin Otte  <otte@gnome.org>
38112
38113         * gst-libs/gst/audio/audio.h:
38114           add macro to make sure header isn't included twice
38115         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
38116           don't use gst_buffer_free
38117         * gst/playondemand/filter.func:
38118           don't use gst_data_free. Free data only once.
38119
38120 2004-02-26  David Schleef  <ds@schleef.org>
38121
38122         * gst-libs/gst/colorbalance/Makefile.am:
38123         * gst-libs/gst/mixer/Makefile.am:
38124         * gst-libs/gst/tuner/Makefile.am:
38125         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
38126         should not be disted, -marshal.h files should not be installed,
38127         and -enum.h files _should_ be installed.  Fix to make this the
38128         case.
38129
38130 === release 0.7.5 ===
38131
38132 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
38133
38134         * configure.ac: release 0.7.5, "Under The Sea"
38135
38136 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38137
38138         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
38139         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
38140         * gst/videoscale/gstvideoscale.c:
38141         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
38142           assorted debug/warning fixes
38143
38144 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38145
38146         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
38147         (gst_videoscale_init), (gst_videoscale_chain),
38148         (gst_videoscale_set_property), (plugin_init):
38149         * gst/videoscale/gstvideoscale.h:
38150         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
38151         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
38152         (gst_videoscale_planar400), (gst_videoscale_packed422),
38153         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
38154         (gst_videoscale_24bit), (gst_videoscale_16bit),
38155         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
38156         (gst_videoscale_scale_plane_slow),
38157         (gst_videoscale_scale_point_sample),
38158         (gst_videoscale_scale_nearest),
38159         (gst_videoscale_scale_nearest_str2),
38160         (gst_videoscale_scale_nearest_str4),
38161         (gst_videoscale_scale_nearest_32bit),
38162         (gst_videoscale_scale_nearest_24bit),
38163         (gst_videoscale_scale_nearest_16bit):
38164         add debugging category and use it properly
38165         fix use of GST_PTR_FORMAT
38166
38167 2004-02-25  Andy Wingo  <wingo@pobox.com>
38168
38169         * gst/interleave/interleave.c (interleave_buffered_loop): Always
38170         push only when channel->buffer is NULL. Prevents segfaults doing
38171         the state change after a nonlocal exit, like a scheme exception.
38172
38173         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
38174         Handle the case where the intersected caps is empty.
38175
38176 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38177
38178         * gst/law/mulaw-decode.c: (mulawdec_link):
38179         * gst/law/mulaw.c: (plugin_init):
38180           fix mulawdec so it actually works again
38181
38182 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
38183
38184         reviewed by: David Schleef  <ds@schleef.org>
38185
38186         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
38187         (gst_gamma_init), (gst_gamma_set_property),
38188         (gst_gamma_get_property), (gst_gamma_calculate_tables),
38189         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
38190         for RGB, with separate r g and b correction factors. (#131167)
38191
38192 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
38193
38194         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
38195           only signal tags for bitrate if they're > 0 (#134894)
38196
38197 2004-02-24  David Schleef  <ds@schleef.org>
38198
38199         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
38200         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
38201         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
38202         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
38203         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
38204         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
38205         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
38206         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
38207         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
38208         category.  Attempt to fix timestamp calculation.
38209
38210 2004-02-24  Johan Dahlin  <johan@gnome.org>
38211
38212         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
38213
38214 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
38215
38216         * configure.ac:
38217         * gconf/Makefile.am:
38218         * gconf/gstreamer.schemas:
38219         * gst-libs/gst/gconf/Makefile.am:
38220         * gst-libs/gst/gconf/gconf.c:
38221           version gconf schemas and install locations
38222
38223 2004-02-23  Benjamin Otte  <otte@gnome.org>
38224
38225         * ext/xine/xineinput.c: (gst_xine_input_dispose):
38226         (gst_xine_input_subclass_init):
38227           call parent dispose.
38228           change pad template for CD reader correctly
38229         * ext/xine/Makefile.am:
38230         * ext/xine/gstxine.h:
38231         * ext/xine/xine.c: (plugin_init):
38232         * ext/xine/xineaudiosink.c:
38233           wrap audio sinks, too
38234         * gst-libs/gst/resample/private.h:
38235         * gst-libs/gst/resample/resample.c: (gst_resample_init),
38236         (gst_resample_reinit), (gst_resample_scale),
38237         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
38238         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
38239         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
38240         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
38241         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
38242         * gst-libs/gst/resample/resample.h:
38243         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
38244         (gst_audioscale_class_init), (gst_audioscale_link),
38245         (gst_audioscale_get_buffer), (gst_audioscale_init),
38246         (gst_audioscale_chain), (gst_audioscale_set_property),
38247         (gst_audioscale_get_property):
38248         * gst/audioscale/gstaudioscale.h:
38249           s/resample_*/gst_resample_*/i to not clobber namespaces
38250
38251 2004-02-23  Julien MOUTTE  <julien@moutte.net>
38252
38253         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
38254         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
38255         (gst_riff_create_video_template_caps),
38256         (gst_riff_create_audio_template_caps),
38257         (gst_riff_create_iavs_template_caps):
38258         * gst-libs/gst/riff/riff-media.h:
38259         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
38260         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
38261         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
38262         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
38263         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
38264         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
38265         (gst_matroska_demux_plugin_init): First batch implementing audio and
38266         video codec tags in demuxers.
38267
38268 2004-02-22  Benjamin Otte  <otte@gnome.org>
38269
38270         * ext/xine/Makefile.am:
38271         * ext/xine/gstxine.h:
38272         * ext/xine/xine.c: (plugin_init):
38273         * ext/xine/xineinput.c:
38274           add input plugin wrapper. Playback from files, http, mms and cdda
38275           works.
38276         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
38277           remove leftover G_GNUC_UNUSED
38278         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
38279         (gst_asf_demux_identify_guid):
38280           improve debugging output
38281
38282 2004-02-22  Benjamin Otte  <otte@gnome.org>
38283
38284         reported by: Padraig O'Briain <padraig.obriain@sun.com>
38285
38286         * autogen.sh:
38287           replace test -e with test -x for mkinstalldirs to be more portable.
38288           (fixes #134816)
38289
38290 2004-02-22  Benjamin Otte  <otte@gnome.org>
38291
38292         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
38293
38294         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
38295           set rank to PRIMARY
38296         * gst/volume/gstvolume.c: (plugin_init):
38297           set rank to NONE
38298         fixes #134960
38299
38300 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
38301
38302         reviewed by Benjamin Otte  <otte@gnome.org>
38303
38304         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38305           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
38306
38307 2004-02-22  Benjamin Otte  <otte@gnome.org>
38308
38309         * configure.ac:
38310           export [_]*{gst,Gst,GST}.* symbols from plugins
38311
38312 2004-02-22  Christophe Fergeau <teuf@gnome.org>
38313
38314         reviewed by: Benjamin Otte  <otte@gnome.org>
38315
38316         * ext/lame/gstlame.c: (add_one_tag):
38317         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38318         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
38319         (gst_vorbisenc_metadata_set1):
38320         * gst/tags/gstid3tag.c:
38321         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
38322           apply fixes from bugs #135042 (lame can't write tags) and #133817
38323           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
38324
38325 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
38326
38327         * configure.ac: Export only gst_plugin_desc from plugins.
38328          Note that this change only makes any effect with Linux using libtool
38329          1.5.2 or higher. Otherwise it is silently ignored, but it would build
38330          fine. And don't try to have several versions of libtool in different
38331          directories.
38332
38333 2004-02-20  Andy Wingo  <wingo@pobox.com>
38334
38335         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
38336         interleave respectively.
38337
38338         * gst/interleave/deinterleave.c: New plugin: deinterleave
38339         (replaces on oneton).
38340         * gst/interleave/interleave.c: New plugin: interleave.
38341         * gst/interleave/plugin.h: Support file.
38342         * gst/interleave/plugin.c: Support file.
38343
38344         * configure.ac: Remove intfloat and oneton, add interleave.
38345
38346         * ext/sndfile/gstsf.c: Handle events better.
38347
38348         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
38349         and float2int operation. int2float has scheduling problems as
38350         noted in in2float_chain.
38351
38352 2004-02-20  Benjamin Otte  <otte@gnome.org>
38353
38354         * ext/xine/Makefile.am:
38355         * ext/xine/gstxine.h:
38356         * ext/xine/xine.c:
38357         * ext/xine/xineaudiodec.c:
38358         * ext/xine/xinecaps.c:
38359           add first version of xine plugin wrapper. Currently only wraps the
38360           QDM2 win32 DLL, and even that only in proof-of-concept quality.
38361         * configure.ac:
38362         * ext/Makefile.am:
38363           add xine plugin wrapper, disabled by default. Use --enable-xine to
38364           build. Note that it'll segfault on gst-register if you don't remove
38365           the goom and tvtime post plugins from xine.
38366         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
38367         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
38368           add extradata parsing for QDM2.
38369           change around debugging prints.
38370
38371 2004-02-19  Benjamin Otte  <otte@gnome.org>
38372
38373         * ext/lame/gstlame.c: (gst_lame_chain):
38374         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38375           use gst_tag_list_insert when you want to insert tags
38376
38377 2004-02-18  David Schleef  <ds@schleef.org>
38378
38379         * configure.ac:  Move massink to gst-rotten
38380         * ext/Makefile.am:
38381         * ext/mas/Makefile.am:
38382         * ext/mas/massink.c:
38383         * ext/mas/massink.h:
38384
38385 2004-02-18  David Schleef  <ds@schleef.org>
38386
38387         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
38388         typefinding, since it seems to be worse than nothing.
38389         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
38390         atom to recognize .mp4 and .m4a files as video/quicktime.
38391
38392 2004-02-18  David Schleef  <ds@schleef.org>
38393
38394         * gst/sine/demo-dparams.c: (quit_live),
38395         (dynparm_log_value_changed), (dynparm_value_changed), (main):
38396         Use double dparams, not float.
38397         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38398         (gst_sinesrc_init): Change sync default to FALSE, since multiple
38399         sync'd elements don't really work correctly.
38400         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
38401         (volume_update_volume), (volume_get_property):  Change dparam
38402         to double.
38403
38404 2004-02-18  Julien MOUTTE  <julien@moutte.net>
38405
38406         * sys/ximage/ximagesink.c:
38407         (gst_ximagesink_xwindow_update_geometry),
38408         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38409         (gst_ximagesink_change_state), (gst_ximagesink_expose),
38410         (gst_ximagesink_init): Rework the way software video scaling works. So
38411         now we check on each chain call if the video frames are feeling the
38412         window. If not we try to renegotiate caps. On failure we memorize that
38413         and we won't try again for that PLAYING sessions.
38414         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
38415         failure.
38416         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
38417         synchronous flag.
38418
38419 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38420
38421         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
38422           break up _link so we can give a better debug message for errors
38423
38424 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38425
38426         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38427           set up debug category
38428
38429 2004-02-18  Julien MOUTTE <julien@moutte.net>
38430
38431         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38432         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
38433         the way renegotiation work. The event handling function is not taking
38434         care of external windows and renegotiate method check for pad flags
38435         NEGOTIATING. Should fix : #133209
38436
38437 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38438
38439         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
38440         pad is negotiating before trying renegotiation.
38441
38442 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
38443
38444         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38445           pass on all possible mime types as typefind hints
38446
38447 2004-02-17  Julien MOUTTE <julien@moutte.net>
38448
38449         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
38450         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
38451         possible SHM leak if we crash. All other apps using XShm are doing
38452         that.
38453
38454 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38455
38456         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38457         (gst_ximagesink_expose): Renegotiate size on expose.
38458         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
38459         size on expose.
38460
38461 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38462
38463         * testsuite/alsa/sinesrc.c:
38464           cosmetic fix to fix compile issue with gcc 2.95.4
38465
38466 2004-02-16  Julien MOUTTE <julien@moutte.net>
38467
38468         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
38469         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
38470         failed opening the audio device.
38471         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
38472         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
38473         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
38474         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
38475         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38476         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
38477         (gst_ximagesink_change_state), (gst_ximagesink_chain),
38478         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
38479         Removing some useless g_return_if_fail like wingo suggested.
38480         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
38481         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
38482         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
38483         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
38484         (gst_xvimagesink_update_colorbalance),
38485         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
38486         (gst_xvimagesink_xcontext_clear),
38487         (gst_xvimagesink_get_fourcc_from_caps),
38488         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
38489         (gst_xvimagesink_set_xwindow_id),
38490         (gst_xvimagesink_colorbalance_list_channels),
38491         (gst_xvimagesink_colorbalance_set_value),
38492         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
38493         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
38494
38495 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
38496
38497         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
38498           throw error when not negotiated instead of asserting
38499
38500 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38501
38502         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
38503         correct data refcounting.
38504
38505 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38506
38507         * gst/switch/gstswitch.c: (gst_switch_change_state),
38508         (gst_switch_class_init): Cleaning the sinkpads correctly on state
38509         change, mostly the EOS flag.
38510
38511 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38512
38513         * examples/gstplay/player.c: (got_eos), (main): Adding some
38514         output for debugging.
38515         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
38516         timeouts if we go to any state different from PLAYING.
38517         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
38518         more EOS bugs in riff lib.
38519
38520 2004-02-14  Julien MOUTTE  <julien@moutte.net>
38521
38522         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
38523         visualization until i find a way to fix switch correctly.
38524         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
38525         EOS arrives.
38526         * gst/switch/gstswitch.c: (gst_switch_release_pad),
38527         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
38528         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
38529         Reworked switch to get a more correct behaviour with events and refing
38530         of data stored in sinkpads.
38531         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
38532         we don't pull from a pad in EOS.
38533
38534 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38535
38536         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38537           remove v1 tag even if we can't read it (makes sure we don't detect
38538           it again)
38539
38540 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38541
38542         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
38543         (gst_alsa_xrun_recovery):
38544         * ext/alsa/gstalsa.h:
38545           try xrun recovery when wait failed. Make xrun recovery function
38546           return TRUE/FALSE to indicate success. (might fix #134354)
38547
38548 2004-02-13  David Schleef  <ds@schleef.org>
38549
38550         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
38551         (dynparm_value_changed), (main): Convert from float to double.
38552         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
38553
38554 2004-02-13  David Schleef  <ds@schleef.org>
38555
38556         * gst/silence/gstsilence.c: (gst_silence_class_init),
38557         (gst_silence_set_clock), (gst_silence_get),
38558         (gst_silence_set_property), (gst_silence_get_property):
38559         * gst/silence/gstsilence.h: Add sync property.
38560         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38561         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
38562         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
38563         * gst/sine/gstsinesrc.h: Add sync property.
38564
38565 2004-02-13  David Schleef  <ds@schleef.org>
38566
38567         * gst/intfloat/gstint2float.c: (conv_f32_s16),
38568         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
38569
38570 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38571
38572         * configure.ac:
38573         * ext/Makefile.am:
38574         * gst-libs/ext/Makefile.am:
38575           move ffmpeg plugin to gst-ffmpeg module
38576
38577 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38578
38579         * configure.ac: use GST_ARCH to detect architecture
38580
38581 2004-02-12  Julien MOUTTE  <julien@moutte.net>
38582
38583         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
38584
38585 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
38586
38587         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
38588           classify LADSPA plugins based on number of src/sink pads
38589           (#133663, Stefan Kost)
38590         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
38591           fix dparams registration
38592           (#133528, Stefan Kost)
38593         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
38594           fix use of isprint and use g_ascii_isprint instead
38595           (#133316, Stefan Kost)
38596
38597 2004-02-11  David Schleef  <ds@schleef.org>
38598
38599         Convert a few inner loops to use liboil.  This is currently
38600         optional, and is only enabled if liboil is present (duh!).
38601         * configure.ac: Check for liboil-0.1
38602         * gst/intfloat/Makefile.am:
38603         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
38604         (gst_int2float_chain_gint16):
38605         * gst/videofilter/Makefile.am:
38606         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
38607         (tablelookup_u8), (gst_videobalance_planar411):
38608         * gst/videotestsrc/Makefile.am:
38609         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
38610         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
38611         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
38612         (paint_hline_RGB565), (paint_hline_xRGB1555):
38613
38614 2004-02-11  David Schleef  <ds@schleef.org>
38615
38616         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
38617         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
38618         (gst_colorspace_getcaps), (gst_colorspace_link),
38619         (gst_colorspace_base_init), (gst_colorspace_init),
38620         (gst_colorspace_chain), (gst_colorspace_change_state),
38621         (plugin_init): Merge Ronald's patch (bug #117897) and update
38622         for new caps and negotiation.  Seems to work, although it
38623         shows off bugs in lcs.
38624
38625 2004-02-11  David Schleef  <ds@schleef.org>
38626
38627         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
38628         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
38629
38630 2004-02-11  David Schleef  <ds@schleef.org>
38631
38632         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
38633         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
38634         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
38635         Add server and port properties
38636
38637 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38638
38639         * m4/a52.m4:
38640         * m4/aalib.m4:
38641         * m4/as-ffmpeg.m4:
38642         * m4/as-liblame.m4:
38643         * m4/as-slurp-ffmpeg.m4:
38644         * m4/check-libheader.m4:
38645         * m4/esd.m4:
38646         * m4/freetype2.m4:
38647         * m4/gconf-2.m4:
38648         * m4/glib.m4:
38649         * m4/gst-alsa.m4:
38650         * m4/gst-artsc.m4:
38651         * m4/gst-ivorbis.m4:
38652         * m4/gst-matroska.m4:
38653         * m4/gst-sdl.m4:
38654         * m4/gst-shout2.m4:
38655         * m4/gst-sid.m4:
38656         * m4/gtk.m4:
38657         * m4/libdv.m4:
38658         * m4/libfame.m4:
38659         * m4/libmikmod.m4:
38660         * m4/ogg.m4:
38661         * m4/vorbis.m4:
38662           fix underquotedness of macros (#133800)
38663         * m4/as-avifile.m4:
38664         * m4/xmms.m4:
38665           removed because no longer used
38666
38667 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38668
38669         * configure.ac:
38670           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
38671           by autopoint (fixes #132996)
38672
38673 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38674
38675         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
38676         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
38677         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
38678         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
38679           fix memleaks
38680
38681 2004-02-11  David Schleef  <ds@schleef.org>
38682
38683         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
38684         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
38685         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
38686         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
38687         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
38688         (gst_jpegenc_class_init), (gst_jpegenc_init),
38689         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
38690         (gst_jpegenc_chain), (gst_jpegenc_set_property),
38691         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
38692         * ext/jpeg/gstjpegenc.h: Fix negotiation.
38693
38694 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38695
38696         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
38697         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
38698         * ext/mikmod/gstmikmod.h:
38699           fix caps negotiation in mikmod
38700         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
38701           output debug information
38702
38703 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38704
38705         * gst-libs/gst/colorbalance/Makefile.am:
38706         * gst-libs/gst/navigation/Makefile.am:
38707         * gst-libs/gst/xoverlay/Makefile.am:
38708           remove unused GST_OPT_CFLAGS from Makefiles
38709           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
38710
38711 2004-02-07  David Schleef  <ds@schleef.org>
38712
38713         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
38714         push events to pads that haven't been created (#133508)
38715
38716 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
38717
38718         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
38719         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
38720         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
38721         (gst_dvdec_loop), (gst_dvdec_change_state):
38722         Second attempt at committing a working dvdec element.
38723
38724 2004-02-06  David Schleef  <ds@schleef.org>
38725
38726         Build fixes for OS X: (see #129600)
38727         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
38728         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
38729         (gst_riff_read_strf_iavs):
38730         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38731         (gst_avi_demux_stream_odml):
38732         * gst/playondemand/Makefile.am:
38733         * gst/rtp/rtp-packet.c:
38734
38735 2004-02-05  David Schleef  <ds@schleef.org>
38736
38737         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
38738         last change, because it Just Doesn't Compile.
38739
38740 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38741
38742         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38743           skip undecodable id3v2 tag instead of keeping it
38744
38745 2004-02-05  David Schleef  <ds@schleef.org>
38746
38747         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
38748         Unref leaked buffer.  (Noticed by Ronald)
38749
38750 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
38751
38752         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38753         Sync requires with other checks.  >= vs =.
38754
38755 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
38756
38757         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
38758         (gst_dvdec_video_link), (gst_dvdec_loop):
38759         * ext/dv/gstdvdec.h:
38760           rework the caps negotiation so that dvdec works again instead
38761           of just segfaulting.
38762
38763 === release 0.7.4 ===
38764
38765 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
38766
38767         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
38768         * configure.ac: changed for release
38769
38770 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
38771
38772         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
38773         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
38774         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38775         * pkgconfig/gstreamer-play-uninstalled.pc.in:
38776           reworked patch by David Lehn to fix libdir and includedir for
38777           uninstalled libraries
38778           removed play and gconf from gstreamer-libs since they have their
38779           own pkgconfig files
38780
38781 2004-02-04  David Schleef  <ds@schleef.org>
38782
38783         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
38784         memleak.
38785
38786 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38787
38788         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38789           use correct GST_TAG_ENCODER tag
38790
38791 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38792
38793         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
38794           be sure to stop the clock when going to paused
38795         * sys/oss/gstosssink.c: (gst_osssink_change_state):
38796           reset number of transmitted when going to ready.
38797         fixes #132935
38798
38799 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
38800
38801         reviewed by Benjamin Otte
38802
38803         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38804           extract track count (fixes #133410)
38805
38806 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38807
38808         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
38809           that should be !=, not == (fixes #132519)
38810
38811 2004-02-04  David Schleef  <ds@schleef.org>
38812
38813         Make sure set_explicit_caps() is called before adding pad.
38814         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38815         * gst/id3/gstid3types.c: (gst_id3types_loop):
38816         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38817         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38818
38819 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38820
38821         * configure.ac:
38822           bump nano to 2, first prerelease
38823           put back AM_PROG_LIBTOOL
38824
38825 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38826
38827         * testsuite/alsa/Makefile.am:
38828           these are user test apps, not automatic testsuite tests
38829
38830 2004-02-04  David Schleef  <ds@schleef.org>
38831
38832         Convert GST_DEBUG_CAPS() to GST_DEBUG():
38833         * gst/mpeg1videoparse/gstmp1videoparse.c:
38834         (mp1videoparse_parse_seq):
38835         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38836         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
38837         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
38838         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
38839         (gst_xvideosink_getcaps):
38840         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
38841         * testsuite/gst-lint: more tests
38842
38843 2004-02-04  David Schleef  <ds@schleef.org>
38844
38845         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
38846         with the code that they would expand to.
38847         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
38848         (gst_flacdec_get_src_query_types),
38849         (gst_flacdec_get_src_event_masks):
38850         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
38851         (gst_gnomevfssrc_get_query_types),
38852         (gst_gnomevfssrc_get_event_mask):
38853
38854 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38855
38856         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38857         (gst_sinesrc_dispose):
38858           fix memleak by properly disposing sinesrc
38859
38860 2004-02-04  Julien MOUTTE  <julien@moutte.net>
38861
38862         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
38863         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
38864         an overlay to redraw the image because it has been exposed.
38865         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
38866         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
38867         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
38868         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
38869         interface
38870         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
38871         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
38872         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
38873         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
38874         interface
38875
38876 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38877
38878         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38879           more memleak fixage
38880
38881 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38882
38883         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38884         * gst/typefind/gsttypefindfunctions.c:
38885           fix memleaks shown by gst-typefind
38886
38887 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38888
38889         * common/glib-gen.mak:
38890           add hack rule to touch .Plo files
38891         * gst-libs/gst/colorbalance/Makefile.am:
38892         * gst-libs/gst/mixer/Makefile.am:
38893         * gst-libs/gst/play/Makefile.am:
38894         * gst-libs/gst/tuner/Makefile.am:
38895           remove glib_root variable
38896
38897 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38898
38899         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
38900           set explicit caps before adding the element, so the autopluggers can
38901           plug correctly.
38902         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
38903         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
38904         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38905         (dv_type_find):
38906           fix memleaks in typefind functions. gst_type_find_suggest takes a const
38907           argument.
38908
38909 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38910
38911         * gst-libs/gst/colorbalance/Makefile.am:
38912         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
38913         * gst-libs/gst/colorbalance/colorbalance.c:
38914         * gst-libs/gst/colorbalance/colorbalance.h:
38915         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
38916         * gst-libs/gst/mixer/Makefile.am:
38917         * gst-libs/gst/mixer/mixer-marshal.list:
38918         * gst-libs/gst/mixer/mixer.c:
38919         * gst-libs/gst/mixer/mixer.h:
38920         * gst-libs/gst/mixer/mixermarshal.list:
38921         * gst-libs/gst/play/Makefile.am:
38922         * gst-libs/gst/play/play.h:
38923         * gst-libs/gst/tuner/Makefile.am:
38924         * gst-libs/gst/tuner/tuner-marshal.list:
38925         * gst-libs/gst/tuner/tuner.c:
38926         * gst-libs/gst/tuner/tuner.h:
38927         * gst-libs/gst/tuner/tunermarshal.list:
38928           use new glib-gen.mak snippet to clean up Makefile.am
38929           fix various bugs in Makefile.am's
38930
38931 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38932
38933         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38934           handle chain parsing correctly in the multichain case
38935         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
38936         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
38937         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
38938         (theora_dec_chain):
38939           handle events and queries correctly
38940
38941 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38942
38943         * .cvsignore:
38944         Ignore generated file _stdint.h.
38945
38946 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38947
38948         * gst-libs/gst/colorbalance/Makefile.am:
38949         * gst-libs/gst/colorbalance/colorbalance.h:
38950         * gst-libs/gst/mixer/Makefile.am:
38951         * gst-libs/gst/mixer/mixer.h:
38952         * gst-libs/gst/play/Makefile.am:
38953         * gst-libs/gst/play/play.h:
38954         * gst-libs/gst/tuner/Makefile.am:
38955         * gst-libs/gst/tuner/tuner.h:
38956         Generate enum type code with glib-mkenums.
38957         * gst-libs/gst/colorbalance/.cvsignore:
38958         * gst-libs/gst/mixer/.cvsignore:
38959         * gst-libs/gst/play/.cvsignore:
38960         * gst-libs/gst/tuner/.cvsignore:
38961         Ignore generated files.
38962
38963 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38964
38965         * gst-libs/gst/audio/.cvsignore:
38966         Ignore generated file.
38967         * gst-libs/gst/audio/Makefile.am:
38968         Do not install example filter.
38969
38970 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38971
38972         * examples/switch/.cvsignore:
38973         Ignore generated file.
38974
38975 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38976
38977         * common/m4/ax_create_stdint_h.m4:
38978         * configure.ac:
38979           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
38980           _stdint.h.
38981         * Makefile.am:
38982           remove generated _stdint.h in DISTCLEANFILES
38983         * ext/a52dec/gsta52dec.c:
38984           include _stdint.h for a52dec. (should fix #133064)
38985
38986 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38987
38988         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
38989         (gst_tag_to_vorbis_comments):
38990         Add replaygain support to vorbistag
38991
38992 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38993         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
38994         (gst_ffmpeg_caps_to_extradata):
38995           Fix SVQ3 caps flag properties
38996           Use glib macro for bytes swap
38997
38998 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38999
39000         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39001         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39002         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39003         * ext/sndfile/gstsf.c: (plugin_init):
39004         * gst/avi/gstavi.c: (plugin_init):
39005         * sys/dxr3/dxr3init.c: (plugin_init):
39006         * sys/oss/gstossaudio.c: (plugin_init):
39007         * sys/v4l/gstv4l.c: (plugin_init):
39008         * sys/v4l2/gstv4l2.c: (plugin_init):
39009           remove textdomain calls
39010         * po/nl.po:
39011           update Dutch translation
39012
39013 2004-02-02  Julien MOUTTE  <julien@moutte.net>
39014
39015         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
39016         (gst_play_set_audio_sink): Moving volume in the audio thread for
39017         instantaneous volume change. Maybe i will add another volume in front
39018         of visualization later, not sure yet though.
39019
39020 2004-02-02  Julien MOUTTE  <julien@moutte.net>
39021
39022         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
39023         (gst_ximagesink_handle_xevents): Better X events handling, only take
39024         the latest events for configure and motion.
39025         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
39026
39027 2004-02-02  Jon Trowbridge  <trow@gnu.org>
39028
39029         reviewed by: David Schleef  <ds@schleef.org>
39030
39031         Fix memory leaks:
39032         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
39033         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
39034
39035 2004-02-02  David Schleef  <ds@schleef.org>
39036
39037         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
39038         of lines.
39039         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
39040         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39041         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
39042         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
39043         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
39044         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
39045         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
39046         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
39047         (gst_float2_2_int_link):
39048         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
39049         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
39050         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
39051         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
39052         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
39053         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
39054         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
39055         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
39056         * testsuite/gst-lint: Add tests for bzero and ;;
39057
39058 2004-02-02  David Schleef  <ds@schleef.org>
39059
39060         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
39061
39062 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39063
39064         * ext/aalib/gstaasink.c: (gst_aasink_open):
39065         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
39066         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39067         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
39068         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
39069         (gst_afsink_close_file):
39070         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
39071         (gst_afsrc_close_file):
39072         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39073         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39074         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39075         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
39076         * ext/esd/esdmon.c: (gst_esdmon_get):
39077         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
39078         * ext/faac/gstfaac.c: (gst_faac_chain):
39079         * ext/faad/gstfaad.c: (gst_faad_chain):
39080         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
39081         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
39082         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
39083         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
39084         (gst_flacdec_loop):
39085         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
39086         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39087         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
39088         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39089         (gst_gnomevfssink_close_file):
39090         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
39091         (gst_gnomevfssrc_open_file):
39092         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
39093         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
39094         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
39095         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
39096         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
39097         * ext/mad/gstmad.c: (gst_mad_chain):
39098         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
39099         * ext/mpeg2dec/gstmpeg2dec.c:
39100         * ext/mpeg2enc/gstmpeg2enc.cc:
39101         * ext/mplex/gstmplex.cc:
39102         * ext/mplex/gstmplexibitstream.cc:
39103         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
39104         (gst_ogg_demux_push):
39105         * ext/raw1394/gstdv1394src.c:
39106         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
39107         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
39108         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
39109         (gst_sf_loop):
39110         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
39111         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
39112         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
39113         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
39114         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
39115         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
39116         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
39117         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
39118         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39119         (gst_riff_read_element_data), (gst_riff_read_seek),
39120         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
39121         * gst/adder/gstadder.c: (gst_adder_loop):
39122         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
39123         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
39124         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
39125         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
39126         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
39127         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
39128         * gst/goom/gstgoom.c: (gst_goom_chain):
39129         * gst/id3/gstid3types.c: (gst_id3types_loop):
39130         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
39131         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
39132         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
39133         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39134         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
39135         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
39136         (gst_ebml_read_float), (gst_ebml_read_header):
39137         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
39138         (gst_matroska_demux_parse_blockgroup):
39139         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
39140         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
39141         * gst/oneton/gstoneton.c: (gst_oneton_chain):
39142         * gst/silence/gstsilence.c: (gst_silence_get):
39143         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39144         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
39145         * gst/speed/gstspeed.c: (speed_loop):
39146         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
39147         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39148         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
39149         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
39150         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
39151         (gst_wavparse_loop):
39152         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
39153         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
39154         (dxr3audiosink_close):
39155         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
39156         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
39157         (dxr3videosink_close), (dxr3videosink_write_data):
39158         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39159         * sys/oss/gstosssink.c: (gst_osssink_chain):
39160         * sys/oss/gstosssrc.c: (gst_osssrc_get):
39161         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39162         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
39163         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
39164         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
39165         (gst_v4l_set_window), (gst_v4l_enable_overlay):
39166         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
39167         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
39168         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
39169         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
39170         (gst_v4l_set_audio):
39171         * sys/v4l/v4l_calls.h:
39172         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
39173         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
39174         (gst_v4lmjpegsink_playback_init),
39175         (gst_v4lmjpegsink_playback_start):
39176         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
39177         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
39178         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
39179         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
39180         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
39181         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39182         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39183         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39184         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
39185         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
39186         (gst_v4l2_get_output), (gst_v4l2_set_output),
39187         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
39188         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
39189         (gst_v4l2_set_attribute):
39190         * sys/v4l2/v4l2_calls.h:
39191         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
39192         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
39193         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
39194         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
39195         (gst_v4l2src_capture_stop):
39196         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
39197         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39198         (gst_ximagesink_chain):
39199         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
39200         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
39201         (gst_xvideosink_xwindow_new):
39202         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39203         (gst_xvimagesink_chain):
39204
39205 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39206
39207         * gst/volume/gstvolume.c: (gst_volume_set_volume),
39208         (gst_volume_get_volume), (volume_class_init), (volume_init),
39209         (volume_chain_int16), (volume_update_volume):
39210         * gst/volume/gstvolume.h:
39211           make code more readable by removing magic numbers
39212           make mixer interface export 0-100 range
39213           make it internally map to 0.0-1.0 range so users don't distort
39214           output by putting the sliders at full volume
39215
39216 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39217
39218         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
39219         (gst_play_state_change), (gst_play_seek_to_time):
39220         block the tick callback for 0.5 secs after doing a seek
39221
39222 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39223
39224         * gst-libs/gst/play/play.c: (gst_play_new):
39225           check for GError
39226
39227 2004-02-01  Julien MOUTTE  <julien@moutte.net>
39228
39229         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
39230         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
39231         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
39232         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
39233         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
39234         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
39235
39236 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
39237
39238         * configure.ac:
39239         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39240           check for a function added in vorbis 1.1
39241
39242 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39243
39244         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
39245         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
39246           really start/stop clock only on PLAYING <=> PAUSED
39247         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39248           remove \n from debugging lines
39249         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
39250           make it work when seeking does not
39251         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39252           reset on DISCONT
39253
39254 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39255
39256         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
39257           start clock on PAUSED=>PLAYING, not later
39258         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39259           extract correct time for different discont formats
39260         (gst_alsa_sink_get_time):
39261           don't segfault when no format is negotiated yet, just return 0
39262         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
39263         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
39264         (gst_ogg_pad_push):
39265           handle flush and discont events correctly
39266         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
39267           handle discont events correctly
39268
39269 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
39270
39271         * gst-libs/gst/play/play.c: (gst_play_error_quark),
39272         (gst_play_error_create), (gst_play_error_plugin),
39273         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
39274         * gst-libs/gst/play/play.h:
39275           add error handling during creation
39276         * examples/gstplay/player.c: (main):
39277           use new gst_play_new
39278
39279
39280 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39281
39282         * ext/theora/theoradec.c: (theora_dec_chain):
39283           make comments work
39284         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
39285         (vorbis_dec_src_event), (vorbis_dec_chain):
39286           add encoder tag, fix tag reading to be more error tolerant, change
39287           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
39288           gst_pad_event_default.
39289         * gst/tags/gstvorbistag.c:
39290         (gst_tag_list_from_vorbiscomment_buffer):
39291           undefine function specific define at end of function
39292
39293 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
39294
39295         * ext/flac/gstflac.c: (plugin_init):
39296         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
39297         * ext/flac/gstflacdec.h:
39298         * ext/flac/gstflacenc.h:
39299           Fix typos
39300
39301 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
39302
39303         * examples/gstplay/player.c: s/gstplay.h/play.h/
39304
39305 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39306
39307         * gst-libs/gst/play/Makefile.am:
39308         * gst-libs/gst/play/gstplay.c:
39309         * gst-libs/gst/play/gstplay.h:
39310         * gst-libs/gst/play/play.c:
39311           more surgery, operation complete
39312
39313 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39314
39315         * gst-libs/gst/play/play.old.c:
39316         * gst-libs/gst/play/play.old.h:
39317           after CVS surgery by moving, remove
39318         * gst-libs/gst/play/playpipelines.c:
39319           remove
39320
39321         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
39322           add negotiation error
39323
39324 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39325
39326         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
39327         (gst_ogg_demux_push):
39328           add some seeking debug info
39329           send a flush when seeking
39330
39331 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39332
39333         * configure.ac:
39334           use AC_C_INLINE
39335         * configure.ac:
39336         * ext/Makefile.am:
39337         * ext/theora/Makefile.am:
39338         * ext/theora/theoradec.c:
39339           add theora video decoder. Does just do simple decoding for now and
39340           has been tested against Theora cvs only. It only works when theora
39341           is compiled with --enable-static.
39342         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39343           always reset packetno on DISCONT
39344
39345 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39346
39347         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
39348           Fix audio.
39349
39350 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39351
39352         * gst/mpegaudioparse/gstmpegaudioparse.c:
39353         (mp3_type_frame_length_from_header):
39354           Fix header parsing - stolen from ffmpeg (thank you! :) ).
39355
39356 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39357
39358         * ext/esd/esdsink.c: (gst_esdsink_init):
39359           Since we have static pad template caps, we don't need to negotiate;
39360           either the core errors out or we know the format.
39361
39362 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39363
39364         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39365         (gst_riff_read_seek):
39366         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39367         (gst_ebml_read_seek):
39368           Fix event handling.
39369
39370 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39371
39372         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
39373           removee video/x-theora from vp3 decoder, it doesn't handle raw
39374           theora streams
39375         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
39376           fix bug with finalizing element that never went to PAUSED
39377         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
39378           length and position queries were swapped
39379         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
39380         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
39381         (vorbis_dec_src_event):
39382           implement querying time and bytes
39383
39384 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39385
39386         * just about every source file:
39387           gst_element_error -> GST_ELEMENT_ERROR
39388
39389 2004-01-29  Julien MOUTTE  <julien@moutte.net>
39390
39391         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
39392         emiting FLUSH and even before DISCONT.
39393         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
39394         get the best instant seeking as possible yay!
39395
39396 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39397
39398         * gst/mpeg1videoparse/gstmp1videoparse.c:
39399         (gst_mp1videoparse_real_chain):
39400           Committed wrong version last week... Grr... Didn't notice until now.
39401
39402 2004-01-29  Julien MOUTTE <julien@moutte.net>
39403
39404         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
39405         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
39406         have_xwindow_id signal in xwindow_create.
39407
39408 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39409
39410         * ext/ogg/gstoggdemux.c:
39411           lots of changes - mainly support for chained bitstreams, seeking,
39412           querying and bugfixes of course
39413         * ext/vorbis/Makefile.am:
39414         * ext/vorbis/vorbisdec.c:
39415         * ext/vorbis/vorbisdec.h:
39416           add vorbisdec raw vorbis decoder
39417         * ext/vorbis/vorbis.c: (plugin_init):
39418           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
39419         * gst/intfloat/Makefile.am:
39420         * gst/intfloat/float22int.c:
39421         * gst/intfloat/float22int.h:
39422         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
39423           add float2intnew plugin. It converts multichannel interleaved float to
39424           multichannel interleaved int. The name should probably be changed.
39425         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
39426         (plugin_init):
39427           add typefinding for raw theora video so oggdemux can detect it.
39428
39429 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39430
39431         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
39432         sink element first.
39433         * gst/videoscale/gstvideoscale.c:
39434         (gst_videoscale_handle_src_event): Fixing src event handler.
39435
39436 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39437
39438         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
39439         (gst_v4lsrc_open), (gst_v4lsrc_close),
39440         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
39441         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
39442         * sys/v4l/gstv4lsrc.h:
39443         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
39444         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
39445           Implement resizing... Hack. But that's why v4l is b0rked...
39446
39447 2004-01-28  Julien MOUTTE <julien@moutte.net>
39448
39449         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
39450         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
39451         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
39452         (gst_ximagesink_xwindow_destroy):
39453         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
39454         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
39455         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
39456         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
39457         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
39458         correctly cleaning the image created to check xshm calls on succes,
39459         added a lot of XSync calls in X11 functions, and fixed a segfault when
39460         no image format was defined before negotiation happened.
39461
39462 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39463
39464         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
39465           use gst_element_get_time to get correct time
39466
39467 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39468
39469         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
39470         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
39471         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
39472         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
39473         (gst_xvimagesink_check_xshm_calls),
39474         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
39475         X plugins are now able to detect that XShm calls will fail even if the
39476         server claims that it has XShm support (remote displays most of the
39477         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
39478         so that we use non XShm functions. This feature is almost useless for
39479         xvimagesink as Xv is not supported on remote displays anyway, but
39480         it might happen than even on the local display XShm calls fail.
39481
39482 2004-01-27  David Schleef  <ds@schleef.org>
39483
39484         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
39485         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
39486         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
39487         changed esdsink to only use 44100,16,2, since esd sucks at rate
39488         conversion and esdsink has had difficulty negotiating.
39489
39490 2004-01-27  Julien MOUTTE <julien@moutte.net>
39491
39492         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
39493         (gst_play_seek_to_time): Fixing the way to get current position.
39494
39495 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39496
39497         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
39498           use gst_element_get_time to get correct time
39499
39500 2004-01-27  Julien MOUTTE <julien@moutte.net>
39501
39502         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
39503         fix ever... Inverting 2 lines of code make spider autoplug correctly
39504         tagged mp3 !
39505
39506 2004-01-27  David Schleef  <ds@schleef.org>
39507
39508         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
39509         Use gst_pad_try_set_caps_nonfixed().
39510
39511 2004-01-27  David Schleef  <ds@schleef.org>
39512
39513         * gst/ac3parse/gstac3parse.c: update to checklist 5
39514         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
39515         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
39516         * gst/audioscale/gstaudioscale.c: same
39517         * gst/auparse/gstauparse.c: same
39518         * gst/avi/gstavidemux.c: same
39519
39520 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39521
39522         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
39523           stop processing after EOS
39524
39525 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39526
39527         * gst/asfdemux/asfheaders.h:
39528         * gst/asfdemux/gstasfdemux.c:
39529         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
39530         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
39531         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
39532           lot's of fixes to make data extraction simpler and get the code
39533           architecture and compiler independant. Add debugging category
39534         * gst/goom/gstgoom.c: (gst_goom_change_state):
39535           reset channel count on PAUSED=>READY, not READY=>PAUSED
39536
39537 2004-01-26  Colin Walters  <walters@verbum.org>
39538
39539         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
39540         code to pull a bigger buffer in iradio mode.  This as a side effect
39541         makes typefinding work.
39542
39543 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39544
39545         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39546         Fix SVQ3 decoding on PPC
39547
39548 2004-01-26  Julien MOUTTE <julien@moutte.net>
39549
39550         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
39551         that one managed to stay there... Fixed.
39552
39553 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39554
39555         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
39556         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
39557         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
39558         (qtdemux_video_caps):
39559         * gst/qtdemux/qtdemux.h:
39560         Add SVQ3 specific flags to qtdemux and ffmpeg
39561
39562 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39563
39564         * gst-libs/gst/audio/audio.h:
39565           remove buffer-frames from audio caps
39566         * gst/audioconvert/gstaudioconvert.c:
39567           fix plugin to really work.
39568
39569 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39570
39571         * gst-libs/gst/mixer/mixer.c:
39572         * gst-libs/gst/propertyprobe/propertyprobe.c:
39573         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
39574         (gst_tuner_find_channel_by_name):
39575         * gst-libs/gst/tuner/tuner.h:
39576           Add gtk-doc style comments. Also fix a function name.
39577
39578 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39579
39580         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
39581         (gst_divxdec_negotiate):
39582           Fix for new capsnego - also fixes gst-player with divxdec.
39583
39584 2004-01-25  Julien MOUTTE  <julien@moutte.net>
39585
39586         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39587         (gst_play_identity_handoff), (gst_play_set_location),
39588         (gst_play_set_visualization), (gst_play_connect_visualization): Another
39589         try in visualization implementation. Still have an issue with switch
39590         blocking when pulling from video_queue and only audio comes out of
39591         spider.
39592         * gst/switch/gstswitch.c: (gst_switch_release_pad),
39593         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
39594         release method. And check if the pad is usable before pulling.
39595
39596 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39597
39598         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
39599         (gst_videobalance_init),
39600         (gst_videobalance_colorbalance_list_channels),
39601         (gst_videobalance_colorbalance_set_value),
39602         (gst_videobalance_colorbalance_get_value),
39603         (gst_videobalance_update_properties),
39604         (gst_videobalance_update_tables_planar411),
39605         (gst_videobalance_planar411):
39606         * gst/videofilter/gstvideobalance.h:
39607           Implement lookup-tables. +/- 10x faster.
39608
39609 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39610
39611         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39612         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39613           The index reading was broken. The rest worked fine, but the whole
39614           goal of my rewrite was to make avidemux readable, and this was
39615           not at all readable. Please use typed variables.
39616
39617 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39618
39619         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39620           Additional pad usability check.
39621         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
39622         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
39623         (gst_mp1videoparse_real_chain):
39624           Fix MPEG video stream parsing. The original plugin had several
39625           issues, including not timestamping streams where the source was
39626           not timestamped (this happens with PTS values in mpeg system
39627           streams, but MPEG video is also a valid stream on its own so
39628           that needs timestamps too). We use the display time code for that
39629           for now. Also, if one incoming buffer contains multiple valid
39630           frames, we push them all on correctly now, including proper EOS
39631           handling. Lastly, several potential segfaults were fixed, and we
39632           properly sync on new sequence/gop headers to include them in next,
39633           not previous frames (since they're header for the next frame, not
39634           the previous). Also see #119206.
39635         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
39636         (bpf_from_header):
39637           Move caps setting so we only do it after finding several valid
39638           MPEG-1 fraes sequentially, not right after the first one (which
39639           might be coincidental).
39640         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
39641         (mpeg_video_type_find), (mpeg_video_stream_type_find),
39642         (plugin_init):
39643           Add unsynced MPEG video stream typefinding, and change some
39644           probability values so we detect streams rightly. The idea is as
39645           follows: I can have an unsynced system stream which contains
39646           video. In the current code, I would randomly get a type for either
39647           system or video stream type found, because the probabilities are
39648           being calculated rather randomly. I now use fixed values, so we
39649           always prefer system stream if that was found (and that is how it
39650           should be). If no system stream was found, we can still identity                the stream as video-only.
39651
39652 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39653
39654         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39655         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39656           don't write to buffer. Extract data without the need of
39657           __attribute__ ((packed))
39658
39659 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39660
39661         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
39662         (mpeg1_sys_type_find):
39663           Fix MPEG-1 stream typefinding.
39664
39665 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39666
39667         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
39668           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
39669
39670 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39671
39672         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
39673         * ext/esd/gstesd.c: (plugin_init):
39674           private debugging, better error reporting
39675
39676 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39677
39678         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
39679         (gst_riff_read_init), (gst_riff_read_change_state):
39680         * gst-libs/gst/riff/riff-read.h:
39681           Remove stuff fromold metadata system.
39682
39683 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39684
39685         * ext/ogg/gstoggdemux.c:
39686           Fix wrong file comment.
39687         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39688         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
39689           Add metadata reading properly.
39690
39691 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39692
39693         * ext/Makefile.am:
39694           Fix nas DIST_SUBDIRS
39695           Uraeus:
39696           Fix bug where make distcheck doesn't get run on adding stuff to
39697           the build.
39698
39699 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39700
39701         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
39702         * ext/divx/gstdivxdec.h:
39703           Fix divx3 ("msmpeg4") playback using divxdec.
39704
39705 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39706
39707         * gst/typefind/gsttypefindfunctions.c:
39708         (mp3_type_frame_length_from_header): fix bug in length computation
39709         (mp3_type_find): improve debugging output
39710
39711 2004-01-23  Julien MOUTTE  <julien@moutte.net>
39712
39713         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39714         (gst_play_set_location), (gst_play_seek_to_time),
39715         (gst_play_set_audio_sink), (gst_play_set_visualization),
39716         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
39717         the pipeline from scratch. Visualization is back and switch went out as
39718         i realized it was not possible to use the way i wanted.
39719         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
39720         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
39721         clearing in state change from READY to NULL. So that one can clean the
39722         X ressources keeping the element.
39723         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39724         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
39725         (gst_xvimagesink_colorbalance_set_value),
39726         (gst_xvimagesink_colorbalance_get_value),
39727         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
39728         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
39729         change from READY to NULL and fixed some stupid bugs in colorbalance
39730         get/set values. Also added the following feature : when nobody tries to
39731         set some values to the colorbalance levels before the xcontext is
39732         grabbed, then when creating channels list from Xv attributes we set the
39733         internal values to the Xv defaults. This way we handle buggy Xv drivers
39734         that set default hue values far from the middle of the range (Thanks
39735         to Jon Trowbridge for pointing that issue).
39736         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
39737         colorbalance levels have been set before xcontext is grabbed.
39738
39739 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39740
39741         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
39742           Fix the ossmixer case where we shouldn't open /dev/dsp* because
39743           it might block operations (which is bad for a mixer).
39744
39745 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39746
39747         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
39748         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
39749         (gmip_find_type_pre):
39750         * gst-libs/gst/media-info/media-info-priv.h:
39751         * gst-libs/gst/media-info/media-info.c:
39752         (gst_media_info_instance_init), (gst_media_info_read_idler):
39753         add fakesink to get caps on decoder src pad again
39754         fix callback prototype to match new have_type signal signature
39755
39756 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39757
39758         * gst/adder/gstadder.c: (gst_adder_link):
39759           fix non-compile and cut-n-paste code
39760
39761 2004-01-21  David Schleef  <ds@schleef.org>
39762
39763         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
39764         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
39765         (gst_swfdec_init), (gst_swfdec_change_state):
39766         * ext/swfdec/gstswfdec.h:
39767         Fix negotiation.
39768         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
39769         (gst_adder_request_new_pad): Fix negotiation.
39770         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
39771         Add a fixate function.
39772         * gst/intfloat/gstfloat2int.c:
39773         * gst/intfloat/gstfloat2int.h:
39774         * gst/intfloat/gstint2float.c:
39775         * gst/intfloat/gstint2float.h:
39776         Completely rewrite the negotiation.  Doesn't quite work yet,
39777         due to some buffer-frames problem.
39778
39779 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
39780
39781         * ext/gnomevfs/gstgnomevfssrc.c:
39782         * sys/v4l2/v4l2_calls.h:
39783           fix includes for distcheck
39784
39785 2004-01-21  Christian Schaller <uraeus@gnome.org>
39786
39787         * ext/nas/
39788         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
39789         based on earlier patch from Laurent Vivier
39790
39791 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
39792
39793         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39794         Fix wma caps property
39795         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
39796         Fix typo (flags1 and flags2)
39797
39798 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39799
39800         * gst-libs/gst/media-info/media-info-priv.c:
39801         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
39802         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
39803         (gmip_find_stream), (gmip_find_track_metadata),
39804         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
39805         (gmip_find_track_format):
39806         * gst-libs/gst/media-info/media-info-priv.h:
39807         * gst-libs/gst/media-info/media-info-test.c: (main):
39808         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
39809         (gst_media_info_read_idler), (gst_media_info_read):
39810         * gst-libs/gst/media-info/media-info.h:
39811           register debugging category and use it for debugging
39812
39813 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39814
39815         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
39816         (gst_vorbisfile_new_link):
39817           signal streaminfo through tags
39818
39819 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39820
39821         * ext/mplex/gstmplex.cc:
39822         * ext/mplex/gstmplexibitstream.cc:
39823           g++ doesn't like NULL in our i18n/error macros, should be
39824           either (NULL) or ("").
39825
39826 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39827
39828         * sys/dxr3/dxr3audiosink.c:
39829         * sys/dxr3/dxr3init.c:
39830         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
39831         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
39832           Fix more error error error errors (missing includes here).
39833
39834 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39835
39836         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39837           fix thomas' error errors.
39838
39839 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39840
39841         * ext/mpeg2enc/gstmpeg2enc.cc:
39842           fix error errors.
39843
39844 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39845
39846         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39847         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39848           Fix for new error system.
39849
39850 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39851
39852         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39853           fix for new error reporting
39854
39855 2004-01-20  David Schleef  <ds@schleef.org>
39856
39857         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
39858         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
39859         (gst_ximagesink_set_xwindow_id): Change to using a framerate
39860         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
39861         and neither is 100+, most likely.
39862         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
39863         (gst_xvimagesink_getcaps): same
39864
39865 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39866
39867         * configure.ac:
39868           Up version requirement to 2.0.3 (not yet released) to avoid symbol
39869           clashes with ffmpeg.
39870
39871 2004-01-20  Julien MOUTTE  <julien@moutte.net>
39872
39873         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
39874         (gst_switch_init): Fixed switch element : proxying link and setting
39875         caps from src to sink on request.
39876
39877 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39878
39879         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
39880         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39881         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39882         fix element_error
39883
39884 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39885
39886         * sys/v4l/v4l_calls.h:
39887         * sys/v4l2/v4l2_calls.h:
39888           element_error fixes
39889
39890 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39891
39892         * gst-libs/gst/gst-i18n-plugin.h:
39893           add locale.h
39894           remove config.h inclusion
39895
39896 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39897
39898         * autogen.sh:
39899           adding autopoint invocation
39900         * Makefile.am:
39901         * configure.ac:
39902         * gst-libs/gst/gettext.h:
39903           adding gettext bits
39904         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39905         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39906         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39907         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39908         (gst_gnomevfssink_close_file):
39909         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
39910         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
39911         * gst-libs/gst/gst-i18n-plugin.h:
39912         * gst/avi/gstavi.c: (plugin_init):
39913         * sys/dxr3/dxr3init.c: (plugin_init):
39914         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
39915         * sys/oss/gstossaudio.c: (plugin_init):
39916         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39917         * sys/v4l/gstv4l.c: (plugin_init):
39918         * sys/v4l/v4l_calls.c: (gst_v4l_open):
39919         * sys/v4l2/gstv4l2.c: (plugin_init):
39920         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39921         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
39922         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
39923         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
39924         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
39925         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
39926           make sure locale and translation domain are set
39927           fix translated strings
39928         * po/.cvsignore:
39929         * po/LINGUAS:
39930         * po/Makevars:
39931         * po/POTFILES.in:
39932         * po/nl.po:
39933           put translation files into place
39934         * sys/xvideo/imagetest.c: (main):
39935         * ext/dv/demo-play.c: (main):
39936           fix unnecessary translations
39937
39938 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
39939
39940         * ext/sndfile/gstsf.c:
39941         * gst/avi/gstavimux.c:
39942         * ext/audiofile/gstafsink.c:
39943         * ext/audiofile/gstafsrc.c:
39944         * ext/gnomevfs/gstgnomevfssink.c:
39945         * ext/gnomevfs/gstgnomevfssrc.c:
39946         * sys/oss/gstosselement.c:
39947         * sys/v4l/v4l_calls.h:
39948           fix i18n include
39949
39950 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39951
39952         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39953         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
39954         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
39955         (gst_v4l2_get_output), (gst_v4l2_set_output),
39956         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
39957         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
39958         (gst_v4l2_set_attribute):
39959         update to new error handling
39960
39961 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39962
39963         * ext/sidplay/gstsiddec.cc:
39964         * gst/modplug/gstmodplug.cc:
39965           parenthese NULL because C++ seems angry about it
39966
39967 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39968
39969         * gst-libs/gst/gst-i18n-plugin.h:
39970           add skeleton i18n stuff, but needs to be further implemented
39971
39972 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
39973
39974         * examples/gstplay/player.c: (main):
39975         * ext/aalib/gstaasink.c: (gst_aasink_open):
39976         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
39977         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39978         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
39979         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
39980         (gst_afsink_close_file):
39981         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
39982         (gst_afsrc_close_file):
39983         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39984         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39985         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
39986         * ext/esd/esdmon.c: (gst_esdmon_get):
39987         * ext/esd/esdsink.c: (gst_esdsink_chain):
39988         * ext/faac/gstfaac.c: (gst_faac_chain):
39989         * ext/faad/gstfaad.c: (gst_faad_chain):
39990         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
39991         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
39992         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
39993         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
39994         (gst_flacdec_loop):
39995         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
39996         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39997         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
39998         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39999         (gst_gnomevfssink_close_file):
40000         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
40001         (gst_gnomevfssrc_open_file):
40002         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
40003         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
40004         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
40005         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
40006         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
40007         * ext/mad/gstmad.c: (gst_mad_chain):
40008         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
40009         * ext/mpeg2dec/gstmpeg2dec.c:
40010         * ext/mpeg2enc/gstmpeg2enc.cc:
40011         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40012         * ext/mplex/gstmplex.cc:
40013         * ext/mplex/gstmplexibitstream.cc:
40014         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
40015         (gst_ogg_demux_push), (gst_ogg_pad_push):
40016         * ext/raw1394/gstdv1394src.c:
40017         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
40018         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
40019         * ext/sidplay/gstsiddec.cc:
40020         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
40021         (gst_sf_loop):
40022         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
40023         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
40024         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
40025         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
40026         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
40027         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
40028         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
40029         * gst-libs/gst/Makefile.am:
40030         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
40031         (gst_riff_read_element_data), (gst_riff_read_seek),
40032         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
40033         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
40034         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
40035         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
40036         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
40037         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
40038         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
40039         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40040         * gst/goom/gstgoom.c: (gst_goom_chain):
40041         * gst/id3/gstid3types.c: (gst_id3types_loop):
40042         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
40043         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
40044         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
40045         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
40046         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
40047         (gst_ebml_read_float), (gst_ebml_read_header):
40048         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
40049         (gst_matroska_demux_parse_blockgroup):
40050         * gst/modplug/gstmodplug.cc:
40051         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
40052         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
40053         * gst/oneton/gstoneton.c: (gst_oneton_chain):
40054         * gst/silence/gstsilence.c: (gst_silence_get):
40055         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
40056         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
40057         * gst/speed/gstspeed.c: (speed_loop):
40058         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
40059         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40060         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
40061         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
40062         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
40063         (gst_wavparse_loop):
40064         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
40065         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
40066         (dxr3audiosink_close):
40067         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
40068         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
40069         (dxr3videosink_close), (dxr3videosink_write_data):
40070         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
40071         * sys/oss/gstosselement.h:
40072         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
40073         (gst_osssink_chain):
40074         * sys/oss/gstosssrc.c: (gst_osssrc_get):
40075         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
40076         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
40077         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
40078         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
40079         (gst_v4l_enable_overlay):
40080         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
40081         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
40082         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
40083         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
40084         (gst_v4l_set_audio):
40085         * sys/v4l/v4l_calls.h:
40086         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
40087         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
40088         (gst_v4lmjpegsink_playback_init),
40089         (gst_v4lmjpegsink_playback_start):
40090         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
40091         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
40092         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
40093         (gst_v4lmjpegsrc_requeue_frame):
40094         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
40095         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
40096         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
40097         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
40098         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
40099         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
40100         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
40101         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
40102         (gst_v4l2src_capture_stop):
40103         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
40104         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
40105         (gst_ximagesink_chain):
40106         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
40107         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
40108         (gst_xvideosink_xwindow_new):
40109         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40110         (gst_xvimagesink_chain):
40111         use new error signal, function and categories
40112
40113 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
40114
40115         * configure.ac:
40116         * ext/Makefile.am:
40117         * ext/musicbrainz/gsttrm.c:
40118         * ext/musicbrainz/gsttrm.h:
40119         * ext/musicbrainz/Makefile.am:
40120         Add a trm plugin
40121
40122 2004-01-18  Julien MOUTTE  <julien@moutte.net>
40123
40124         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
40125         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
40126         synchronous property for debugging.
40127         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
40128         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40129         (gst_xvimagesink_set_property): Moving a pointer declaration to a
40130         smaller block, fixing indent.
40131
40132 2004-01-16  David Schleef  <ds@schleef.org>
40133
40134         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
40135         property affects the video stream.
40136         * sys/xvimage/xvimagesink.c:
40137         * sys/xvimage/xvimagesink.h:
40138         Add synchronous property for debugging.  Should probably be
40139         disabled in non-CVS builds.  Make sure that the Xv attribute
40140         exists before we set it (crash!).  Fix a silly float bug that
40141         caused colorbalance to just not work.
40142
40143 2004-01-17  Christian Schaller <Uraeus@gnome.org>
40144
40145         * tools/gst-launch-ext.in - update for new plugins
40146
40147 2004-01-16  David Schleef  <ds@schleef.org>
40148
40149         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
40150         already-freed caps.
40151
40152 2994-01-16  Christian Schaller <Uraeus@gnome.org>
40153
40154         * Update spec for new colorspace plugin and libcaca plugin
40155         * Fix compilation of libcaca plugin (clock -> id)
40156
40157 2004-01-16  Julien MOUTTE <julien@moutte.net>
40158
40159         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
40160         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
40161         (gst_xvimagesink_set_xwindow_id),
40162         (gst_xvimagesink_colorbalance_set_value),
40163         (gst_xvimagesink_colorbalance_get_value),
40164         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
40165         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
40166         correct colorbalance properties. They can now be set when the element
40167         is still in NULL state. The values will be committed to the Xv Port
40168         when xcontext is initialized.
40169         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
40170         brightness int values in the GstXvImagesink structure.
40171
40172 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40173
40174         * gst-libs/gst/Makefile.am:
40175           restructure so having local patches works easier.
40176
40177 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40178
40179         * ext/mpeg2enc/Makefile.am:
40180         * ext/mpeg2enc/gstmpeg2enc.cc:
40181         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40182           Bugfix with respect to EOS handling.
40183
40184 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40185
40186         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40187           Link with right caps (else, it segfaults).
40188         * ext/mplex/gstmplexjob.cc:
40189           Fix for slight API change in 1.6.1.93 release of mjpegtools.
40190
40191 2004-01-15  David Schleef  <ds@schleef.org>
40192
40193         * gst-libs/gst/audio/Makefile.am:
40194         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
40195         from the template.
40196         * gst-libs/gst/audio/gstaudiofilter.c:
40197         * gst-libs/gst/audio/gstaudiofilter.h:
40198         Add bytes_per_sample and size and n_samples calculation.
40199         * gst-libs/gst/audio/gstaudiofilterexample.c:
40200         Remove, now autogenerated.
40201         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
40202         Moved from gstaudiofilterexample, object name changed, code added
40203         so that it actually works.
40204         * gst-libs/gst/audio/make_filter:
40205         Script to build an audiofilter subclass from the template.
40206         * gst/colorspace/Makefile.am:
40207         * gst/colorspace/yuv2yuv.c:
40208         Remove file, since it's GPL, and we don't use it.
40209
40210 2004-01-15  Julien MOUTTE  <julien@moutte.net>
40211
40212         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40213         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
40214         them use the buffer free function to test how the buffer was allocated.
40215
40216 2004-01-15  David Schleef  <ds@schleef.org>
40217
40218         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
40219         that handles osssink fallback.
40220         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
40221         (gst_audio_convert_getcaps):
40222         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
40223         Add audio/x-qdm2 for QDM2 audio.
40224         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
40225         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
40226         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
40227         Decrease minimum size to 16x16.
40228         * gst/wavparse/gstwavparse.c:
40229         Convert disabled pad template caps to new caps.
40230         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
40231         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40232         (gst_xvimagesink_chain): Throw element error when display cannot
40233         be opened.  Increase minimum framerate to 1.0.  Check the data
40234         free function on a buffer to make sure it is the type we expect
40235         before manipulating it.
40236
40237 2004-01-15  Julien MOUTTE <julien@moutte.net>
40238
40239         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
40240         (gst_videobalance_colorbalance_set_value): Implement passthru if
40241         settings are in the middle.
40242         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
40243
40244 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40245
40246         * gst/videofilter/Makefile.am:
40247         * gst/volume/Makefile.am:
40248           Since we use videofilter symbols, link to it.
40249
40250 2004-01-15  Julien MOUTTE <julien@moutte.net>
40251
40252         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
40253         mixer interface type to HARDWARE.
40254         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
40255         type to SOFTWARE.
40256         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
40257         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
40258         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
40259         (gst_volume_interface_init), (gst_volume_list_tracks),
40260         (gst_volume_set_volume), (gst_volume_get_volume),
40261         (gst_volume_set_mute), (gst_volume_mixer_init),
40262         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
40263         (volume_init): Implementing mixer interface.
40264         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
40265         * sys/oss/gstosselement.c: (gst_osselement_get_type),
40266         (gst_osselement_change_state): Removing some trailing commas in
40267         structures.
40268         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
40269         interface type to HARDWARE.
40270         * sys/v4l/gstv4lcolorbalance.c:
40271         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
40272         type to HARDWARE.
40273         * sys/v4l2/gstv4l2colorbalance.c:
40274         (gst_v4l2_color_balance_interface_init): Setting colorbalance
40275         interface type to HARDWARE.
40276         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
40277         same code than ximagesink for event handling.
40278
40279 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40280
40281         * ext/snapshot/Makefile.am:
40282         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
40283         (gst_snapshot_chain):
40284         * ext/snapshot/gstsnapshot.h:
40285           This has to be a joke... Snapshot should be connected to a tee,
40286           colorspace element before it and EOS after that, where the other
40287           src of the tee receives normal data.
40288           The current way is *wrong*.
40289
40290 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40291
40292         * ext/hermes/gsthermescolorspace.c:
40293           Fix another compile error. Same as below.
40294
40295 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40296
40297         * gst/colorspace/gstcolorspace.c:
40298         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
40299         (gst_colorspace_i420_to_yv12):
40300           Fix compiling... Didn't test if it actually works.
40301
40302 2004-01-15  David Schleef  <ds@schleef.org>
40303
40304         * configure.ac:
40305         * gst/colorspace/Makefile.am:
40306         * gst/colorspace/gstcolorspace.c:
40307         * gst/colorspace/gstcolorspace.h:
40308         * gst/colorspace/yuv2rgb.c:
40309         * gst/colorspace/yuv2rgb.h:
40310         Duplicate the ext/hermes colorspace plugin, and remove Hermes
40311         code and GPL code.  Fix for new caps negotiation.  Rewrite
40312         much of the format handling code, and some of the conversion
40313         code.  Basically, rewrote almost everything.  This element
40314         handles I420, YV12 to RGB conversions.
40315         * ext/hermes/Makefile.am:
40316         * ext/hermes/gsthermescolorspace.c:
40317         Rename colorspace to hermescolorspace.  Fix negotiation issues.
40318         Remove non-Hermes related code.  This element handles lots of
40319         RGB to RGB conversions, but no YUV.
40320         * ext/hermes/gstcolorspace.c:
40321         * ext/hermes/gstcolorspace.h:
40322         * ext/hermes/rgb2yuv.c:
40323         * ext/hermes/yuv2rgb.c:
40324         * ext/hermes/yuv2rgb.h:
40325         * ext/hermes/yuv2rgb_mmx16.s:
40326         * ext/hermes/yuv2yuv.c:
40327         * ext/hermes/yuv2yuv.h:
40328         Remove old code.
40329
40330 2004-01-14  Colin Walters  <walters@verbum.org>
40331
40332         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
40333         they've already been.
40334
40335 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40336
40337         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
40338           assume tag mode when pad is not connected
40339
40340 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40341
40342         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40343           Don't update the time of the clock
40344         (gst_alsa_sink_loop):
40345           sync to the clock given to alsasink, not the own clock
40346         * sys/oss/gstosssink.c: (gst_osssink_chain):
40347           sync to the clock
40348         (gst_osssink_change_state):
40349           activate the clock
40350         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40351         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40352           remove bogus code that made DISCONT events unhandled
40353         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
40354           explicitly case to double in _set_simple. (fixes 2nd warning in bug
40355           #131502)
40356         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
40357         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
40358         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
40359           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
40360           2nd warning in bug #131502)
40361
40362 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40363
40364         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
40365         (gst_videobalance_colorbalance_set_value),
40366         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
40367         for colorbalance interface implementation.
40368         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
40369         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
40370         (gst_ximagesink_dispose), (gst_ximagesink_init),
40371         (gst_ximagesink_class_init): Adding DISPLAY property.
40372         * sys/ximage/ximagesink.h: Adding display_name to store display.
40373         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40374         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
40375         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
40376         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
40377         properties (they still need polishing though for gst-launch use : no
40378         xcontext yet, i ll do that tomorrow).
40379         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
40380
40381 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40382
40383         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
40384         (gst_play_set_location), (gst_play_set_visualization): Preparing
40385         switch integration, adding videobalance in the pipeline.
40386
40387 2004-01-14  Julien MOUTTE <julien@moutte.net>
40388
40389         * gst-libs/gst/colorbalance/colorbalance.c:
40390         (gst_color_balance_class_init): Adding a default type.
40391         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
40392         the type.
40393         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
40394         (gst_videobalance_dispose), (gst_videobalance_class_init),
40395         (gst_videobalance_init), (gst_videobalance_interface_supported),
40396         (gst_videobalance_interface_init),
40397         (gst_videobalance_colorbalance_list_channels),
40398         (gst_videobalance_colorbalance_set_value),
40399         (gst_videobalance_colorbalance_get_value),
40400         (gst_videobalance_colorbalance_init): Implementing colorbalance
40401         interface.
40402         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
40403         list.
40404         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
40405         bug which was triggering a BadAccess X error when setting an overlay
40406         before pad was really negotiated.
40407         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
40408         Using the colorbalance type macro.
40409
40410 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40411
40412         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
40413         (gst_flacenc_chain):
40414           handle tags correctly
40415         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
40416           extract ID3v1 tags correctly
40417
40418 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40419
40420         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
40421         (plugin_init):
40422           Improve matroska typefinding for odd-typed headers...
40423
40424 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40425
40426         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
40427           Fix for using incremental number on padnames.
40428
40429 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40430
40431         * ext/divx/gstdivxdec.c:
40432         * ext/divx/gstdivxenc.c:
40433           Set category to divx4linux instead of divx (too generic).
40434         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40435         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
40436         (gst_wavparse_loop), (gst_wavparse_change_state):
40437         * gst/wavparse/gstwavparse.h:
40438           fix parsing of WAV files with non-standard fmt-tag size and fix
40439           skipping of unrecognized chunks... Someone please fix this thing
40440           to use rifflib so all this is automated.
40441         * sys/v4l/Makefile.am:
40442         * sys/v4l2/Makefile.am:
40443           Add X_CFLAGS because we depend on X (for overlay).
40444
40445 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
40446
40447         * ext/mpeg2dec/gstmpeg2dec.c:
40448           Don't issue a timestamp unless we tagged the frame
40449           with a PTS.
40450
40451 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40452
40453         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
40454           Query the audio element to get the time, not the clock. We're
40455           interested in the element's time here.
40456
40457 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40458
40459         * ext/aalib/gstaasink.c: (gst_aasink_chain):
40460         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40461         * ext/esd/esdsink.c: (gst_esdsink_chain):
40462         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
40463         * ext/mas/massink.c: (gst_massink_chain):
40464         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
40465         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
40466         (gst_matroska_demux_parse_metadata):
40467         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
40468         (gst_mpeg_parse_release_locks):
40469         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
40470         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
40471         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40472         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
40473         (gst_osssink_change_state):
40474         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
40475         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40476         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
40477         (gst_xvideosink_release_locks):
40478         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40479           use element time.
40480         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
40481         (gst_alsa_clock_stop):
40482         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
40483         (gst_audio_clock_get_internal_time):
40484           simplify for use with new clocking code.
40485         * testsuite/alsa/Makefile.am:
40486         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
40487           fix testsuite for new caps system
40488
40489 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40490
40491         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
40492         * ext/flac/gstflacenc.c: (add_one_tag):
40493           length is already host endian, no need to convert. Fixes playback of
40494           tagged files on PPC. (bug #128384)
40495
40496 2004-01-13  Julien MOUTTE <julien@moutte.net>
40497
40498         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
40499         colorbalance interface stating if it is hardware based or software
40500         based.
40501         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
40502         Removing a trailing comma.
40503         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40504         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
40505         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
40506         the documentation seems to be wrong on the -1000 to 1000 interval.
40507
40508 2004-01-12  David Schleef  <ds@schleef.org>
40509
40510         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
40511         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
40512         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
40513         Fix negotiation.  Add a bufferalloc function for the sink pad,
40514         and generally clean up some of the code.
40515
40516 2004-01-12  Julien MOUTTE <julien@moutte.net>
40517
40518         * gst-libs/gst/colorbalance/colorbalancechannel.c:
40519         (gst_color_balance_channel_dispose): Adding safety check in dispose
40520         method.
40521         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40522         (gst_xvimagesink_xcontext_clear),
40523         (gst_xvimagesink_interface_supported),
40524         (gst_xvimagesink_colorbalance_list_channels),
40525         (gst_xvimagesink_colorbalance_set_value),
40526         (gst_xvimagesink_colorbalance_get_value),
40527         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
40528         Adding colorbalance interface support to set XV parameters such as
40529         HUE, BRIGHTNESS, CONTRAST, SATURATION.
40530         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
40531         interface.
40532
40533 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40534
40535         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
40536         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
40537         (gst_audio_convert_init), (gst_audio_convert_set_property),
40538         (gst_audio_convert_get_property), (gst_audio_convert_chain),
40539         (gst_audio_convert_link),
40540         (gst_audio_convert_buffer_to_default_format),
40541         (gst_audio_convert_buffer_from_default_format), (plugin_init):
40542           - implement _getcaps and use it
40543           - improve linking
40544           - remove float caps since no float conversion is actually done
40545           - remove properties and arguments that were to be used for rate
40546             conversion
40547
40548 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40549
40550         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
40551         (gst_audio_structure_set_int):
40552         * gst-libs/gst/audio/audio.h:
40553           add helper functions for _getcaps matching the standard audio
40554           templates
40555
40556 2004-01-12  David Schleef  <ds@schleef.org>
40557
40558         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
40559         Test that pad is negotiated before getting its caps.
40560
40561 2004-01-12  Julien MOUTTE <julien@moutte.net>
40562
40563         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
40564         analyzing the pads of an element the bin is mostly in READY state so
40565         no caps were negotiated. This helper function needs to work with
40566         _get_caps directly then. I was not freeing them though, added that to
40567         fix the mem leak.
40568
40569 2004-01-12  Julien MOUTTE <julien@moutte.net>
40570
40571         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
40573         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
40574         than the free_func.
40575
40576 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40577
40578         * sys/oss/gstossaudio.c: (plugin_init):
40579         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
40580         * sys/oss/gstosselement.h:
40581           make an oss debugging category
40582           make failure more descriptive
40583
40584 2004-01-11  David Schleef  <ds@schleef.org>
40585
40586         * ext/ffmpeg/gstffmpeg.c:
40587         * ext/ffmpeg/gstffmpegcodecmap.c:
40588         * ext/ffmpeg/gstffmpegdec.c:
40589         * ext/ffmpeg/gstffmpegenc.c:
40590         * ext/ffmpeg/gstffmpegprotocol.c:
40591         * ext/gdk_pixbuf/gstgdkanimation.c:
40592         * ext/jpeg/gstjpeg.c:
40593         * ext/libpng/gstpng.c:
40594         * ext/mpeg2dec/perftest.c:
40595         * ext/speex/gstspeex.c:
40596         * gst-libs/gst/resample/dtos.c:
40597         * gst/intfloat/gstintfloatconvert.c:
40598         * gst/oneton/gstoneton.c:
40599         * gst/rtjpeg/RTjpeg.c:
40600         * gst/rtp/gstrtp.c:
40601         * sys/dxr3/dxr3init.c:
40602         * sys/glsink/gstgl_nvimage.c:
40603         * sys/glsink/gstgl_pdrimage.c:
40604         * sys/glsink/gstglsink.c:
40605         * testsuite/gst-lint:
40606         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
40607
40608 2004-01-11  David Schleef  <ds@schleef.org>
40609
40610         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
40611         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
40612         * ext/gdk_pixbuf/gstgdkanimation.c:
40613         (gst_gdk_animation_iter_create_pixbuf):
40614         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40615         (gst_gdk_pixbuf_chain):
40616         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40617         * ext/jack/gstjack.c: (gst_jack_change_state):
40618         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
40619         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
40620         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
40621         * gst/videofilter/gstvideofilter.c:
40622         (gst_videofilter_set_output_size):
40623         Remove all usage of gst_pad_get_caps(), and replace it with
40624         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
40625
40626 2004-01-11  David Schleef  <ds@schleef.org>
40627
40628         * configure.ac:
40629         * ext/Makefile.am: Fixes to make ext/libcaca compile.
40630         * ext/divx/gstdivxdec.c:
40631         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40632         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
40633         handle images that span multiple buffers.  Now work with both
40634         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
40635         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40636         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
40637         video/video.h changes
40638         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
40639         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40640         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
40641         of GstData free function.
40642         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40643         same.
40644
40645 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40646
40647         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
40648         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
40649         (gst_v4l2element_get_property):
40650         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
40651           add norm, channel and frequency properties.
40652         * sys/v4l2/gstv4l2tuner.c:
40653           fixes for tuner interface changes
40654         * sys/v4l2/gstv4l2element.h:
40655         * sys/v4l2/gstv4l2src.c:
40656         * sys/v4l2/gstv4l2src.h:
40657         * sys/v4l2/v4l2src_calls.c:
40658         * sys/v4l2/v4l2src_calls.h:
40659           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
40660
40661 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40662
40663         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
40664         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
40665         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
40666         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
40667         * gst-libs/gst/tuner/tuner.h:
40668           GObjects aren't const.
40669           Add find_by_name functions.
40670           Add checks to _changed functions.
40671         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
40672         (gst_v4l_tuner_get_norm):
40673           Fixes for above.
40674
40675 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40676
40677         * gst-libs/gst/video/video.h:
40678           Fix caps template names to be understandable.
40679           Prefix everything with GST_VIDEO.
40680         * ext/aalib/gstaasink.c:
40681         * ext/divx/gstdivxdec.c:
40682         * ext/divx/gstdivxenc.c:
40683         * ext/gdk_pixbuf/gstgdkpixbuf.c:
40684         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
40685         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
40686         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
40687         * ext/libcaca/gstcacasink.c:
40688         * ext/libpng/gstpngenc.c: (raw_caps_factory):
40689         * ext/snapshot/gstsnapshot.c:
40690         * ext/swfdec/gstswfdec.c:
40691         * ext/xvid/gstxviddec.c:
40692         * ext/xvid/gstxvidenc.c:
40693         * gst/chart/gstchart.c:
40694         * gst/deinterlace/gstdeinterlace.c:
40695         * gst/effectv/gsteffectv.c:
40696         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40697         * gst/goom/gstgoom.c:
40698         * gst/median/gstmedian.c:
40699         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
40700         (gst_monoscope_srcconnect), (gst_monoscope_chain):
40701         * gst/overlay/gstoverlay.c:
40702         * gst/smooth/gstsmooth.c:
40703         * gst/smpte/gstsmpte.c:
40704         * gst/synaesthesia/gstsynaesthesia.c:
40705         * gst/videocrop/gstvideocrop.c:
40706         * gst/videodrop/gstvideodrop.c:
40707         * gst/y4m/gsty4mencode.c:
40708         * sys/qcam/gstqcamsrc.c:
40709         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
40710           Make them work with new video.h file.
40711         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40712         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40713         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40714         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40715           Make it work with new buffer allocation system.
40716
40717 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40718
40719         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
40720         pad_alloc_buffer implementation to use ->srcpad
40721         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
40722         pad_alloc_buffer implementation to use ->srcpad
40723         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
40724         pad_alloc_buffer implementation to use ->srcpad
40725         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
40726         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
40727         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40728         a reference to everything we need.
40729         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
40730         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
40731         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
40732         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40733         a reference to everything we need.
40734         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
40735
40736 2004-01-11  David Schleef  <ds@schleef.org>
40737
40738         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
40739         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
40740         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
40741         structure members.
40742         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
40743         value during a resize/renegotiation.
40744         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
40745         gst_pad_alloc_buffer();
40746         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40747         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
40748         structure members.
40749         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40750         Fix for rename of buffer private structure members.
40751         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40752         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40753         Fix for rename of buffer private structure members.
40754         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40755         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40756         Fix for rename of buffer private structure members.
40757
40758 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
40759
40760         reviewed by: David Schleef <ds@schleef.org>
40761
40762         * gst/videofilter/Makefile.am:
40763         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
40764         from the patch by ds to fit in with recent make_filter changes.
40765
40766 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40767
40768         * configure.ac: Adding examples/switch/Makefile
40769         * examples/Makefile.am: Adding examples/switch
40770         * examples/switch/Makefile.am: Adding switcher example.
40771         * examples/switch/switcher.c: (got_eos), (idle_iterate),
40772         (switch_timer), (main): Adding an example demonstrating switch usage
40773         with 2 videotestsrc showing different patterns.
40774         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
40775         (gst_switch_init): Fixing switch with the new caps system.
40776
40777 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40778
40779         * gst-libs/gst/video/video.h:
40780           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
40781           They should probably be like
40782           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
40783
40784 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40785
40786         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40787         (qtdemux_parse_trak):
40788           fix audio chunk size/timestamp calculation
40789
40790 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40791
40792         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
40793           fix SVQ3 caps
40794
40795 2004-01-11  Steve Baker  <steve@stevebaker.org>
40796
40797         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
40798         (gst_agingtv_base_init), (gst_agingtv_class_init),
40799         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
40800         (gst_agingtv_set_property), (gst_agingtv_get_property):
40801         Port agingTV to videofilter
40802
40803 2004-01-09  Julien MOUTTE <julien@moutte.net>
40804
40805         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
40806         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40807
40808 2004-01-09  Julien MOUTTE <julien@moutte.net>
40809
40810         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
40811         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40812         * gst-libs/gst/xoverlay/xoverlay.c:
40813         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
40814         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
40815         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40816         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40817         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40818         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40819         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
40820         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
40821         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40822         interface implementation to handle xid being 0 and fix some bugs
40823         triggered by Benjamin's testcase.
40824         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40825         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
40826         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
40827         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40828         interface implementation to handle xid being 0 and fix some bugs
40829         triggered by Benjamin's testcase.
40830
40831 2004-01-09  David Schleef  <ds@schleef.org>
40832
40833         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
40834         mouse pointer events.  It works.
40835
40836 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40837
40838         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
40839           Use explicit caps - fix capsnego.
40840         * ext/xvid/gstxviddec.c:
40841         * ext/xvid/gstxvidenc.c:
40842           Remove macro-inside-macro which caused compile errors.
40843         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
40844           Error out if it's not a RIFF file. Else we error out without
40845           gst_element_error() which is not good...
40846
40847 2004-01-08  David Schleef  <ds@schleef.org>
40848
40849         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40850         Fix pad_link function to handle formats that ffmpeg returns
40851         as multiple caps structures.
40852         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
40853         Only complain if source buffer is _smaller_ than expected.
40854         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
40855         (gst_videoscale_handle_src_event): Resize navigation events
40856         when passing them upstream.
40857         * gst/videotestsrc/gstvideotestsrc.c:
40858         * gst/videotestsrc/gstvideotestsrc.h:
40859         * gst/videotestsrc/videotestsrc.c:
40860         * gst/videotestsrc/videotestsrc.h:
40861         Rewrite many of the buffer painting functions to handle odd
40862         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
40863         been verified to work with my video card.
40864         * testsuite/gst-lint:  Add check for elements calling
40865         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
40866
40867 2004-01-08  David Schleef  <ds@schleef.org>
40868
40869         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
40870         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
40871
40872 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40873
40874         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
40875         configure event is not emiting the desired size signal. That fixes
40876         aspect ratio issues with gst-player.
40877
40878 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40879
40880         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
40881           Fix capsnego.
40882
40883 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40884
40885         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
40886         public method to fire size signal.
40887
40888 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40889
40890         * examples/gstplay/Makefile.am: Adding the interface library.
40891         * gst-libs/gst/play/Makefile.am: Adding the interface library.
40892         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
40893         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
40894         GST_IS_X_OVERLAY before signal connect.
40895         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
40896         Removing the have_video_size signal.
40897         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
40898         and associated public method.
40899         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40900         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
40901         signal.
40902         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
40903         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
40904         signal.
40905         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
40906         Using XOverlay public method to fire size signal.
40907
40908 2004-01-07  David Schleef  <ds@schleef.org>
40909
40910         * gst/videofilter/Makefile.am:
40911         * gst/videofilter/gstvideotemplate.c:
40912         * gst/videofilter/make_filter:
40913         Create gstvideoexample.c in a srcdir!=builddir friendly way.
40914         Convert make_filter to /bin/sh script.
40915
40916 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
40917
40918         * gst/modplug/gstmodplug.cc: fix element description
40919
40920 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40921
40922         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40923         (got_video_size): Adding some new lines in g_print calls.
40924         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40925         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
40926         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
40927         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
40928         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
40929         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
40930         Complete code review, reverting some stuff i disagree with, adding
40931         some fixes : time synchronization on invalid timestamps, renegotiation
40932         of private window.
40933         * sys/ximage/ximagesink.h:
40934         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
40935         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
40936         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
40937         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
40938         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
40939         (gst_xvimagesink_buffer_new),
40940         (gst_xvimagesink_navigation_send_event),
40941         (gst_xvimagesink_set_xwindow_id),
40942         (gst_xvimagesink_get_desired_size),
40943         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
40944         stuff i disagree with, adding some fixes : Renegotiation of private
40945         window, implementing get_desired_size.
40946
40947 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40948
40949         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
40950         (gst_afsink_handle_event):
40951         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
40952         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
40953         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
40954         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
40955         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
40956           Fix for instantiate-test (see core). Also remove dead code from
40957           jpegenc (which still needs fixing, but that's lower on my TODO
40958           list...).
40959         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
40960           Never return NULL as caps.
40961
40962 2004-01-07  David Schleef  <ds@schleef.org>
40963
40964         * configure.ac:
40965         * ext/Makefile.am:
40966         * ext/librfb/Makefile.am:
40967         * ext/librfb/gstrfbsrc.c:
40968         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
40969         is the protocol used by VNC.
40970
40971 2004-01-07  David Schleef  <ds@schleef.org>
40972
40973         * gst/videofilter/gstvideotemplate.c:
40974         * gst/videofilter/gstvideotemplate.h:
40975         * gst/videofilter/make_filter:
40976         Merge videotemplate header into source file.
40977         * gst/effectv/Makefile.am:
40978         * gst/effectv/gsteffectv.c: (plugin_init):
40979         * gst/effectv/gstwarp.c:
40980         Make warpTV a subclass of videofilter.
40981
40982 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40983
40984         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
40985           Add guard against invalid utf-8 conversions in mad. Just in case.
40986
40987 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40988
40989         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
40990           Fix for bug shown by poisoning
40991
40992 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40993
40994         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40995         (gst_v4lmjpegsrc_buffer_free):
40996         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
40997         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
40998         (gst_v4lsrc_buffer_free):
40999           Fix for removed bufferpools.
41000
41001 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
41002
41003         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
41004         Fix caps negotiation.
41005
41006         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
41007         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
41008         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
41009         (dvdnavsrc_event):
41010         * ext/mpeg2dec/gstmpeg2dec.c:
41011         * gst-libs/gst/navigation/navigation.c:
41012         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
41013         * gst-libs/gst/navigation/navigation.h:
41014         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
41015         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
41016         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
41017         Super-simple first version of mouse and keyboard events. Clicking
41018         on a DVD menu now works, although it may not take you where you
41019         expected.
41020
41021         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
41022         * gst/videotestsrc/gstvideotestsrc.c:
41023         (gst_videotestsrc_src_fixate):
41024         These fixate functions were broken - they never actually
41025         fixated :)
41026
41027 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41028
41029         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
41030         (gst_icecastsend_init):
41031           fix for new caps system.
41032         * gst-libs/gst/mixer/mixertrack.h:
41033         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
41034           Add 'master track' flag (for tools like ACME that only want to
41035           change the main volume).
41036
41037 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
41038
41039         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
41040         (gst_xvid_csp_to_caps):
41041         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
41042         * ext/xvid/gstxvidenc.c:
41043         ifdef out ARGB type when it isn't available
41044         in xvidcore 1.0.0beta2
41045
41046 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41047
41048         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
41049           When we have received a new SCR right in the first buffer after
41050           a seek (so in the same cycle that handles the discont), we should
41051           handle the buffer instead of unreffing it, else we lose data.
41052
41053 2004-01-06  Iain <iain@prettypeople.org>
41054
41055         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
41056           buffer-frames caps too.
41057
41058         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
41059           caps that we need, don't destroy them all and rebuild them. And when
41060           creating src pads, use the src pad template rather than the sink...
41061
41062 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41063
41064         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
41065           Add pad to element *after* setting functions such as event handler.
41066           Without this, the scheduler (opt) will link pads, set the event
41067           handler from the default event function (dispatcher in gstpad.c)
41068           and *after* that, we will set our own event function, which will
41069           thus never be used (and thus mpegdemux doesn't handle events).
41070
41071 2004-01-04  David Schleef  <ds@schleef.org>
41072
41073         Fix the fixate functions to handle new prototype:
41074         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
41075         * gst/videotestsrc/gstvideotestsrc.c:
41076         (gst_videotestsrc_src_fixate):
41077         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
41078         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
41079         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
41080
41081 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41082
41083         * sys/ximage/ximagesink.h:
41084         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
41085         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
41086         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
41087         (gst_ximagesink_xoverlay_init):
41088           assorted fixes to make (re)embedding work
41089         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
41090         (gst_ximagesink_get_desired_size):
41091           implement desired size additions to XOverlay
41092
41093 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41094
41095         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
41096         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
41097         (gst_x_overlay_got_desired_size):
41098         * gst-libs/gst/xoverlay/xoverlay.h:
41099           Add optional "desired size" signal and querying.
41100
41101 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41102
41103         * gst/matroska/matroska-demux.c:
41104         (gst_matroska_demux_parse_blockgroup):
41105           Fix EBML-laced block parsing. Diffs are relative to previous
41106           lace, not the first lace. Thanks to Mosu from the Matroska
41107           team for detecting this.
41108         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
41109         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
41110         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
41111         (gst_wavparse_change_state):
41112         * gst/wavparse/gstwavparse.h:
41113           Quickfix for capsnego.
41114
41115 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41116
41117         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
41118           Fix indenting, fix pad creation.
41119
41120 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41121
41122         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
41123         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
41124         (gst_xviddec_sink_link):
41125           Implement src_getcaps() so proper size caps is negotiated.
41126
41127 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41128
41129         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
41130           Finish flac decoder on EOS. See #116178.
41131
41132 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41133
41134         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
41135         (gst_matroska_demux_add_stream):
41136         * gst/matroska/matroska-ids.h:
41137           Add getcaps() function to fix capsnego...
41138
41139 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41140
41141         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
41142         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
41143         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
41144           Fix more integer overflows. Again, see #126967.
41145
41146 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41147
41148         * ext/mpeg2dec/gstmpeg2dec.c:
41149           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
41150           #130416.
41151
41152 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41153
41154         * configure.ac:
41155         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
41156         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
41157         * ext/xvid/gstxvid.h:
41158         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
41159         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
41160         (gst_xviddec_src_link), (gst_xviddec_sink_link),
41161         (gst_xviddec_change_state):
41162         * ext/xvid/gstxviddec.h:
41163         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
41164         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
41165         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
41166         (gst_xvidenc_link), (gst_xvidenc_set_property),
41167         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
41168         * ext/xvid/gstxvidenc.h:
41169           Update xvid plugin to latest xvid (1.0.0-beta3) API.
41170
41171 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41172
41173         * gst/rtp/rtp-packet.c:
41174           Add sys/types.h include, since OS X doesn't define in_addr_t
41175           in netinet/in.h, like it does on Linux (see #129600).
41176
41177 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
41178
41179         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
41180
41181         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
41182           Correct logic of dispose function (see #129306).
41183
41184 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41185
41186         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
41187         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
41188         (gst_mpeg_parse_init):
41189         * gst/mpegstream/gstmpegparse.h:
41190           Remove clock (which was never provided, i.e. dead code), and
41191           also fix integer overflows at high PTS values (see #126967).
41192
41193 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41194
41195         * ext/flac/gstflacdec.c:
41196         * ext/libpng/gstpngenc.h:
41197         * ext/mikmod/gstmikmod.h:
41198           OS X fixes (see #126628).
41199
41200 2004-01-02  David Schleef  <ds@schleef.org>
41201
41202         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
41203         (gst_alsa_src_base_init): Remove bogus "src" request pad.
41204         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
41205         (gst_mpeg_parse_class_init): Move pad template registration
41206         to class_init, since the derived class (mpegdemux) doesn't
41207         want them.
41208
41209 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41210
41211         * sys/ximage/Makefile.am:
41212         * sys/xvideo/Makefile.am:
41213         * sys/xvimage/Makefile.am:
41214           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
41215           after installation (see #127664).
41216
41217 2004-01-02  David Schleef  <ds@schleef.org>
41218
41219         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
41220         (gst_ffmpegenc_connect):  Negotiation fixes.
41221         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
41222         Remove inappropriate gst_caps_free().
41223         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41224         Reenable Ronald's internal resize code, since the core handles
41225         it correctly now.
41226
41227 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41228
41229         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
41230         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
41231         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
41232           Fix pad template stuff.
41233
41234 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41235
41236         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
41237         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
41238           fix signed integer reading/writing.
41239
41240 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41241
41242         * ext/alsa/README:
41243           Remove outdated document
41244
41245 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
41246
41247         * gst/cutter/gstcutter.c: (gst_cutter_init):
41248           src pad was being created twice - oops.
41249
41250 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41251
41252         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41253           Comment out internal resize. It doesn't handle the resulting
41254           XEvent internally, does another try_set_caps() which leads to
41255           a really nice loop.
41256           Real fix will come when Julien and Dave are awake. ;).
41257
41258 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41259
41260         * ext/mpeg2enc/gstmpeg2enc.cc:
41261           fix const/nonconst compile issue.
41262
41263 2004-01-02  David Schleef  <ds@schleef.org>
41264
41265         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
41266         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
41267         Add fixate function and a check for bad formats.
41268
41269 2004-01-01  David Schleef  <ds@schleef.org>
41270
41271         Negotiation fixes:
41272         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
41273         (gst_audiofilter_init):
41274         * gst/debug/efence.c: (gst_efence_init):
41275         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
41276         (gst_deinterlace_init):
41277         * gst/volume/gstvolume.c: (volume_connect):
41278
41279 2004-01-01  David Schleef  <ds@schleef.org>
41280
41281         Convert elements to use gst_pad_use_explicit_caps() where
41282         appropriate:
41283         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
41284         * ext/audiofile/gstafparse.c: (gst_afparse_init),
41285         (gst_afparse_open_file):
41286         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
41287         (gst_afsrc_open_file):
41288         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
41289         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
41290         (gst_ffmpegdec_chain):
41291         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
41292         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
41293         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
41294         (gst_gdk_pixbuf_chain):
41295         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
41296         (gst_jpegdec_chain):
41297         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
41298         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
41299         (gst_mikmod_negotiate):
41300         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
41301         (gst_mpeg2dec_negotiate_format):
41302         * ext/mpeg2enc/gstmpeg2enc.cc:
41303         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
41304         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
41305         (gst_speexdec_sinkconnect):
41306         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
41307         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
41308         (gst_vorbisfile_new_link):
41309         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
41310         (gst_ac3parse_chain):
41311         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
41312         (gst_asf_demux_setup_pad):
41313         * gst/auparse/gstauparse.c: (gst_auparse_init),
41314         (gst_auparse_chain):
41315         * gst/id3/gstid3types.c: (gst_id3types_loop):
41316         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
41317         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
41318         (mp1videoparse_parse_seq):
41319         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
41320         (bpf_from_header):
41321         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
41322         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
41323         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
41324         (gst_mpeg_parse_send_data):
41325         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
41326         (gst_qtdemux_add_stream):
41327         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
41328         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
41329         (gst_wavparse_parse_fmt):
41330
41331 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41332
41333         * configure.ac:
41334           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
41335           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
41336           it therefore uses the wrong include paths. Too bad... Note
41337           that 1.6.1.93 is not release yet. ;).
41338           Also add a check for mplex, which is now using the lib'ified
41339           mplex from mjpegtools, too.
41340         * ext/ffmpeg/gstffmpegcodecmap.c:
41341           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
41342           issues. I don't think ffmpeg handles 3ivx correctly, so this
41343           probably won't work. But it won't hurt either.
41344         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
41345         (gst_ffmpegdec_chain):
41346         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
41347         (gst_ffmpegenc_chain_audio):
41348           Fix memleak in audio encoding. Close codec if open fails, this
41349           calls the cleanup routines so we can re-use the context.
41350         * ext/mpeg2enc/gstmpeg2enc.cc:
41351           Fix pad template names/types, fix memory issue with getcaps().
41352         * ext/mpeg2enc/gstmpeg2encoder.cc:
41353         * ext/mpeg2enc/gstmpeg2encoder.hh:
41354           Fix compile issue with new caps system (const thingy).
41355         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41356         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
41357           We read a first frame right on initing, so that we have a caps
41358           when we init the output. This caps is cached in padprivate and
41359           read as first frame.
41360         * ext/mplex/Makefile.am:
41361         * ext/mplex/gstmplex.cc:
41362         * ext/mplex/gstmplex.h:
41363         * ext/mplex/gstmplex.hh:
41364         * ext/mplex/gstmplexibitstream.cc:
41365         * ext/mplex/gstmplexibitstream.hh:
41366         * ext/mplex/gstmplexjob.cc:
41367         * ext/mplex/gstmplexjob.hh:
41368         * ext/mplex/gstmplexoutputstream.cc:
41369         * ext/mplex/gstmplexoutputstream.hh:
41370           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
41371           had issues, didn't do capsnego, supported only a subset of the
41372           mplex features and required a mplex fork in our local CVS. Plus
41373           that it worked agaist a very old mplex version. Rewriting was
41374           faster than updating it.
41375         * gst-libs/ext/Makefile.am:
41376         * gst-libs/ext/mplex/INSTRUCT:
41377         * gst-libs/ext/mplex/Makefile.am:
41378         * gst-libs/ext/mplex/README:
41379         * gst-libs/ext/mplex/TODO:
41380         * gst-libs/ext/mplex/ac3strm_in.cc:
41381         * gst-libs/ext/mplex/audiostrm.hh:
41382         * gst-libs/ext/mplex/audiostrm_out.cc:
41383         * gst-libs/ext/mplex/aunit.hh:
41384         * gst-libs/ext/mplex/bits.cc:
41385         * gst-libs/ext/mplex/bits.hh:
41386         * gst-libs/ext/mplex/buffer.cc:
41387         * gst-libs/ext/mplex/buffer.hh:
41388         * gst-libs/ext/mplex/fastintfns.h:
41389         * gst-libs/ext/mplex/format_codes.h:
41390         * gst-libs/ext/mplex/inputstrm.cc:
41391         * gst-libs/ext/mplex/inputstrm.hh:
41392         * gst-libs/ext/mplex/lpcmstrm_in.cc:
41393         * gst-libs/ext/mplex/mjpeg_logging.cc:
41394         * gst-libs/ext/mplex/mjpeg_logging.h:
41395         * gst-libs/ext/mplex/mjpeg_types.h:
41396         * gst-libs/ext/mplex/mpastrm_in.cc:
41397         * gst-libs/ext/mplex/mpegconsts.cc:
41398         * gst-libs/ext/mplex/mpegconsts.h:
41399         * gst-libs/ext/mplex/mplexconsts.hh:
41400         * gst-libs/ext/mplex/multplex.cc:
41401         * gst-libs/ext/mplex/outputstream.hh:
41402         * gst-libs/ext/mplex/padstrm.cc:
41403         * gst-libs/ext/mplex/padstrm.hh:
41404         * gst-libs/ext/mplex/stillsstream.cc:
41405         * gst-libs/ext/mplex/stillsstream.hh:
41406         * gst-libs/ext/mplex/systems.cc:
41407         * gst-libs/ext/mplex/systems.hh:
41408         * gst-libs/ext/mplex/vector.cc:
41409         * gst-libs/ext/mplex/vector.hh:
41410         * gst-libs/ext/mplex/videostrm.hh:
41411         * gst-libs/ext/mplex/videostrm_in.cc:
41412         * gst-libs/ext/mplex/videostrm_out.cc:
41413         * gst-libs/ext/mplex/yuv4mpeg.cc:
41414         * gst-libs/ext/mplex/yuv4mpeg.h:
41415         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
41416         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
41417           We don't fork mjpegtools' mplex in our CVS anymore.
41418         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
41419         (gst_avi_demux_add_stream):
41420         * gst/avi/gstavidemux.h:
41421           Add getcaps() function for proper caps nego. This makes some
41422           parts of AVI playback/reading work.
41423         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41424           Resize window on new capsnego. This is probably wrong, but
41425           I'm still committing it because with current capsnego, the
41426           first successfull capsnego is auto-fixated, therefore rounded
41427           down to the lowest values in the caps. this results in a 16x16
41428           XWindow that is not reized when real capsnego finishes.
41429           Dave, I see more cases of this, do you know a proper solution?
41430         * tools/gst-launch-ext.in:
41431           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
41432
41433 2003-12-31  David Schleef  <ds@schleef.org>
41434
41435         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
41436         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
41437           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
41438
41439 2003-12-30  David Schleef  <ds@schleef.org>
41440
41441         * ext/ffmpeg/gstffmpegcolorspace.c:
41442         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
41443         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
41444         (gst_ffmpegcsp_chain): Negotiation fixes
41445         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
41446         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
41447         (gst_audio_convert_link), (gst_audio_convert_channels):
41448         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
41449         (gst_audioscale_link), (gst_audioscale_get_buffer),
41450         (gst_audioscale_chain): Negotiation fixes
41451         * gst/audioscale/gstaudioscale.h:
41452         * gst/videofilter/gstvideofilter.c:
41453         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
41454         (gst_videofilter_link), (gst_videofilter_init),
41455         (gst_videofilter_set_output_size), (gst_videofilter_setup),
41456         (gst_videofilter_find_format_by_structure):
41457         * gst/videofilter/gstvideofilter.h: Negotiation fixes
41458         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
41459         (gst_videoscale_link):
41460         * gst/videoscale/videoscale.c: (videoscale_get_structure),
41461         (videoscale_find_by_structure), (gst_videoscale_setup):
41462         * gst/videoscale/videoscale.h: Negotiation fixes
41463         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
41464         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
41465         function, restrict resizing to a multiple of 4 (hack until
41466         everyone supports odd sizes correctly).
41467
41468 2003-12-29  Colin Walters  <walters@verbum.org>
41469
41470         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
41471         signed.
41472
41473 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
41474
41475         * ext/sndfile/gstsf.c: (gst_sf_loop):
41476           Fix warning about discarding const qualifier
41477
41478 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
41479
41480         * gst/cutter/gstcutter.c:
41481         * gst/videoscale/gstvideoscale.c:
41482         * gst/volenv/gstvolenv.c:
41483         * gst-libs/gst/audio/audio.c:
41484         * gst-libs/gst/video/video.c:
41485           Fix warnings
41486
41487 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41488
41489         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
41490           Don't send ALSA debugging to stderr.
41491         * ext/alsa/gstalsa.h:
41492           Use GST_WARNING instead of g_warning when ALSA functions fail.
41493
41494 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41495
41496         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
41497           Free XVAdapterInfo correctly.
41498
41499 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41500
41501         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
41502         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
41503           Make id3tag use correct caps nego.
41504
41505 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
41506
41507         * ext/ivorbis/vorbis.c:
41508         * ext/ivorbis/vorbisenc.h:
41509         * ext/ivorbis/vorbisfile.c:
41510           Modify so that it uses the new caps things
41511
41512 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41513
41514         * testsuite/spider/spider1.c: (main):
41515         * testsuite/spider/spider2.c: (main):
41516         * testsuite/spider/spider3.c: (main):
41517           Make tests compile again. They probably don't work.
41518
41519 2003-12-24  Colin Walters  <walters@verbum.org>
41520
41521         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
41522         we can't fixate the caps anymore.
41523
41524 2003-12-23  David Schleef  <ds@schleef.org>
41525
41526         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
41527         * sys/oss/gstosssink.c: (gst_osssink_init),
41528         (gst_osssink_sink_fixate): Add fixate function.
41529
41530 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41531
41532         * ext/ffmpeg/gstffmpegcodecmap.c:
41533         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
41534         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
41535         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
41536         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
41537         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
41538         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
41539         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
41540           fix typo in RGB masks, and move back to "old" colorspace
41541           capsnego code until whoever wrote this new crap has actually
41542           tested it so that it works.
41543           And yes, this works, keep it that way please.
41544
41545 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41546
41547         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
41548         (gst_divxdec_init), (gst_divxdec_negotiate):
41549         * ext/divx/gstdivxdec.h:
41550         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
41551         (gst_divxenc_init):
41552         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
41553         (gst_faac_sinkconnect), (gst_faac_srcconnect):
41554         * ext/mpeg2enc/gstmpeg2enc.cc:
41555         * ext/mpeg2enc/gstmpeg2encoder.cc:
41556         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41557         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
41558         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
41559         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
41560         (dxr3spusink_init):
41561         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
41562         (dxr3videosink_init):
41563           Fix caps breakage after Dave's caps branch merge.
41564
41565 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41566
41567         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
41568           Fix for 24bpp display.
41569
41570 2003-12-23  Colin Walters  <walters@verbum.org>
41571
41572         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
41573         a GnomeVFSHandle directly.
41574
41575 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41576
41577         * gst/volume/Makefile.am:
41578         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
41579         (volume_base_init), (volume_init):
41580           Reenable volume element and fix to work with new caps stuff.
41581           Rhythmbox needs this.
41582
41583 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41584
41585         * gst/qtdemux/qtdemux.c: (plugin_init):
41586           qtdemux requires bytestream
41587
41588 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41589
41590         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
41591           Fix remaining caps handling errors due to CAPS merge.
41592
41593 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41594
41595         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
41596         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
41597         (gst_faad_srcconnect):
41598           Port to new caps system.
41599
41600 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41601
41602         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
41603         (got_video_size), (main): using g_print instead of g_message.
41604         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
41605         signal which was not emitted because of "switch" element added to the
41606         bin but not connected. (Removing from the bin temporarily)
41607
41608 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41609
41610         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
41611         find X development files. I don't understand the previous tests and
41612         they fail on my debian/ppc unstable. This one works.
41613         * examples/gstplay/player.c: (main): Set the pipeline to READY before
41614         exiting.
41615         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
41616         (gst_play_set_video_sink), (gst_play_set_audio_sink),
41617         (gst_play_set_visualization): Add some safety checks in set_ methods
41618         and state_change. This was throwing some ugly CRITICAL messages when
41619         pipeline was getting disposed and casts were failing.
41620
41621 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41622
41623         * configure.ac:
41624           Improve mpeg2enc detection. This is for distributions that do
41625           ship mjpegtools, but without mpeg2enc. Also does object check
41626           for might there ever be ABI incompatibility.
41627         * ext/mpeg2enc/gstmpeg2enc.cc:
41628           Add Andrew as second maintainer (he's helping me), and also add
41629           an error if no caps was set. This happens if I pull before capsnego
41630           and that's something I should solve sometime else.
41631         * gst/matroska/matroska-demux.c:
41632         (gst_matroska_demux_parse_blockgroup):
41633           Fix time parsing.
41634         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
41635         (gst_matroska_mux_track_header):
41636           Add caps to templates.
41637         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
41638           Add mpegversion=1 to prevent confusion with MPEG/AAC.
41639         * gst/mpegstream/gstmpegdemux.c:
41640           Remove layer since it causes warnings about unfixed caps.
41641         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
41642           Fix obvious typo (we error out if caps were set, we should of
41643           course error out if *no* caps were set).
41644         * sys/oss/gstosselement.c: (gst_osselement_convert):
41645           Fix format conversion, we confused bits/bytes.
41646         * sys/oss/gstosselement.h:
41647           Improve documentation for 'bps'.
41648         * sys/v4l/TODO:
41649           Remove stuff about plugins that need removing - this was done
41650           ages ago.
41651         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
41652         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
41653         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
41654         (gst_v4lsrc_src_query):
41655         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
41656         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
41657           Add get_query_types(), get_formats() and query() functions.
41658
41659 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
41660
41661         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
41662           * moved CVS to freedesktop.org