gst-libs/gst/audio/gstaudioclock.c: Fix clock name.
[platform/upstream/gstreamer.git] / ChangeLog
1 2007-02-28  Wim Taymans  <wim@fluendo.com>
2
3         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
4         (gst_audio_clock_new):
5         Fix clock name.
6
7         * gst-libs/gst/audio/gstbaseaudiosink.c:
8         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
9         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
10         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
11         (gst_base_audio_src_create):
12         Improve latency query code.
13         Use proper clock names.
14
15 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16
17         * tests/check/generic/states.c: (GST_START_TEST):
18           Copy the states.c test from core again
19         * tests/check/Makefile.am:
20           ignore cdio and cdparanoiasrc
21
22 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
23
24         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
25         (double_hq), (audio_convert_get_func_index), (check_default),
26         (audio_convert_prepare_context), (audio_convert_convert):
27           Also make valgrind happy and avoid copying data in some cases.
28
29 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
30
31         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
32         (double_hq), (audio_convert_get_func_index),
33         (audio_convert_prepare_context), (audio_convert_convert):
34         * gst/audioconvert/gstaudioconvert.c:
35         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
36         (gst_audio_convert_transform_caps):
37         * tests/check/elements/audioconvert.c: (GST_START_TEST),
38         (audioconvert_suite):
39           Don't run inplace if that overwrites source data as we go. Add more
40           tests. Fixes #339837 even more.
41
42 2007-02-27  Julien MOUTTE  <julien@moutte.net>
43
44         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
45         (msg_segment_done): Fix various seeking bugs (Slider was not
46         updating when doing a non flushing seek, Reverse playback 
47         on segment seek was wrong).
48
49 2007-02-26  Wim Taymans  <wim@fluendo.com>
50
51         * tests/examples/seek/seek.c: (stop_seek):
52         When we stop scrubbing, don't leave the pipeline PLAYING when we
53         requested a PAUSED state.
54
55 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
56
57         Patch by: René Stadler <mail at renestadler de>
58
59         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
60           Parse date strings in vorbis comments that have an invalid (zero)
61           month or day (#410396).
62
63         * tests/check/libs/tag.c: (GST_START_TEST):
64           Test case for the above.
65
66 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
67
68         Patch by: Loïc Minier <lool+gnome at via ecp fr>
69
70         * configure.ac:
71         * ext/alsa/Makefile.am:
72         * gst/audiotestsrc/Makefile.am:
73           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
74
75 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
76
77         * gst/playback/gstplaybin.c:
78           Improve docs: point out that the application needs to assist playbin
79           with buffering.
80
81 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
82
83         * gst-libs/gst/utils/install-plugins.c:
84         * gst-libs/gst/utils/missing-plugins.c:
85         * tests/check/libs/utils.c: (missing_msg_check_getters):
86           Change GStreamer marker prefix in detail string from 'gstreamer.net'
87           to just 'gstreamer'. Document the caps string component of the
88           decoder/encoder detail a bit better, since not everyone will be
89           familiar with the GStreamer media type/caps system (but they better
90           enjoy nested itemized lists).
91
92 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
93
94         * gst-libs/gst/netbuffer/gstnetbuffer.c:
95         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
96           Fix copying of GstNetBuffer (would crash before, or at least lead to
97           invalid memory access, #410772), for now by copying the GstBuffer copy
98           code from the core over here so we can copy the GstBuffer fields on a
99           provided buffer instance (of type GstNetBuffer in this case). Would be
100           better to fix this with some support by the core though (and in the long
101           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
102
103         * tests/check/Makefile.am:
104           Enable unit test for GstNetBuffer.
105
106 2007-02-22  Andy Wingo  <wingo@pobox.com>
107
108         * gst-libs/gst/audio/gstbaseaudiosink.c
109         (gst_base_audio_sink_init): Disable pull-mode activation until we
110         figure out how to make audio sinks go to PLAYING.
111
112 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
113
114         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
115         (double_hq), (audio_convert_get_func_index),
116         (audio_convert_prepare_context), (audio_convert_convert):
117         * gst/audioconvert/audioconvert.h:
118         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
119         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
120         * gst/audioconvert/gstchannelmix.h:
121         * tests/check/elements/audioconvert.c: (GST_START_TEST):
122           Add float as an intermediate format, as well as float mixing. Enable
123           test that was failing before. Fixes #339837
124
125 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
126
127         * tests/examples/seek/seek.c: (do_seek):
128         Undo the previous commit: -1 as a stop time implies that the stop
129         time is the end of file, clearing any previously configured segment.
130
131 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
132
133         * tests/examples/seek/seek.c: (do_seek):
134         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
135
136 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
137
138         * gst/volume/gstvolume.c: (volume_process_int16),
139         (volume_process_int16_clamp), (volume_set_caps):
140           Unbreak volume, value remains gint.
141
142 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
143
144         * gst/volume/gstvolume.c: (volume_choose_func),
145         (volume_update_real_volume), (gst_volume_set_volume),
146         (gst_volume_init), (volume_process_double), (volume_process_float),
147         (volume_process_int16), (volume_process_int16_clamp),
148         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
149         * gst/volume/gstvolume.h:
150           Extend float audio support (double) and some int->uint cleanups.
151
152 2007-02-20  Edward Hervey  <edward@fluendo.com>
153
154         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
155         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
156         (sort_end_pads), (gst_decode_group_expose),
157         (gst_decode_group_hide):
158         Don't free groups from the streaming threads. Just put them aside and
159         free them in dispose.
160
161 2007-02-20  Edward Hervey  <edward@fluendo.com>
162
163         * gst/playback/gstdecodebin2.c: (connect_element),
164         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
165         (sort_end_pads), (gst_decode_group_expose):
166         Handle dynamic pads within groups.
167         Sort pads before exposing them in order to make playbin happy.
168         There still is a race with the multiqueue filling up. This should be
169         solved separately.
170         Fixes #398721
171
172 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
173
174         * gst-libs/gst/utils/base-utils.c:
175         * gst-libs/gst/utils/descriptions.c:
176         * gst-libs/gst/utils/install-plugins.c:
177         * gst-libs/gst/utils/missing-plugins.c:
178           Some more docs (and descriptions for two subtitle formats).
179
180 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
181
182         * gst-libs/gst/audio/audio.c:
183           Fix documentation.
184
185 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
186
187         Patch by: Yves Lefebvre  <ivanohe abacom com>
188
189         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
190           Don't leak caps. Fixes #408278.
191
192 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
193
194         * ext/cdparanoia/gstcdparanoiasrc.h:
195         * ext/ogg/gstoggdemux.h:
196         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
197         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
198         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
199         * gst-libs/gst/audio/audio.h:
200         * gst-libs/gst/audio/gstaudiofilter.h:
201         * gst-libs/gst/interfaces/videoorientation.h:
202         * gst/adder/gstadder.h:
203           More docs coverage and some ChangeLog surgery (add missing names)
204
205 2007-02-15  Wim Taymans  <wim@fluendo.com>
206
207         * sys/ximage/ximagesink.c:
208         (gst_ximagesink_calculate_pixel_aspect_ratio):
209         * sys/xvimage/xvimagesink.c:
210         (gst_xvimagesink_calculate_pixel_aspect_ratio):
211         Small constifications.
212
213 2007-02-15  Wim Taymans  <wim@fluendo.com>
214
215         * gst-libs/gst/audio/gstbaseaudiosink.c:
216         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
217         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
218         (gst_base_audio_sink_async_play),
219         (gst_base_audio_sink_change_state):
220         Answer latency query.
221         Use configured latency when syncing.
222         Fix clock slaving.
223
224         * gst-libs/gst/audio/gstbaseaudiosrc.c:
225         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
226         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
227         Fix possible memleak.
228         Implement latency query.
229         Small cleanups.
230
231 2007-02-15  Wim Taymans  <wim@fluendo.com>
232
233         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
234         Ignore errors in reset, these are not fatal. They also grab the element
235         lock which is already taking when this function is called. Fixes
236         #405451.
237
238 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
239
240         * configure.ac:
241           Remove 'tests/examples/xerror/Makefile' from output files again.
242
243 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
244
245         * configure.ac:
246         * docs/plugins/Makefile.am:
247           Also crossref against gst-plugins-base-libs.
248
249 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
250
251         * configure.ac:
252         * docs/libs/Makefile.am:
253         * docs/plugins/Makefile.am:
254           Add crossreferences to glib/gobject/gstream docs.
255
256         * gst-libs/gst/audio/audio.h:
257           Source formatting.
258
259         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
260           Add own debug category.
261
262 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
263
264         Patch by: René Stadler <mail at renestadler de>
265
266         * gst-libs/gst/tag/gstvorbistag.c:
267           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
268           (#403597).
269
270 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
271
272         * gst/playback/gstplaybasebin.c: (setup_source):
273           When we have external subtitles and wait for the subtitle decodebin
274           to get up and running, we set up a (sync) bus handler for the
275           subtitle decodebin, so we can stop waiting when it posts an error
276           message. However, we should do that before we set the subtitle
277           decodebin's state to playing, otherwise things are racy and we might
278           miss error messages posted before we had a chance to set up the bus.
279           This should finally fix totem hanging on .txt pseudo-subtitle files.
280           
281 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
282
283         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
284           Use gst_gdouble_to_guint64 for conversions.
285         * win32/common/config.h.in:
286           Add a define for GST_INSTALL_PLUGINS_HELPER
287         * win32/common/libgstaudio.def:
288         * win32/common/libgstcdda.def:
289         * win32/common/libgstnetbuffer.def:
290         * win32/common/libgstrtp.def:
291         * win32/common/libgutils.def:
292           Add new exported functions.
293         * win32/vs6/gst_plugins_base.dsw:
294         * win32/vs6/libgstdecodebin.dsp:
295         * win32/vs6/libgstnetbuffer.dsp:
296         * win32/vs6/libgstplaybin.dsp:
297         * win32/vs6/libgstrtp.dsp:
298         * win32/vs6/libgstvorbis.dsp:
299         * win32/vs6/libgstcdda.dsp:
300         * win32/vs6/libgstgdp.dsp:
301         * win32/vs6/libgstutils.dsp:
302           Update and add new project files.
303
304 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
305
306         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
307         (subrip_remove_unhandled_tags), (parse_subrip):
308           For SubRip (.srt) subtitles, ignore all markup tags we don't
309           handle (like font tags, for example).
310
311         * tests/check/elements/subparse.c:
312           Add test for this.
313
314 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
315
316         * gst/playback/gstdecodebin.c: (add_fakesink),
317         (gst_decode_bin_change_state):
318         * gst/playback/gstdecodebin2.c: (add_fakesink),
319         (gst_decode_bin_change_state):
320           Don't error out if there is no fakesink in the NULL to READY state
321           change, since when decodebin is re-used, we're only adding the
322           fakesink element in READY to PAUSED.
323
324         * tests/check/elements/decodebin.c:
325         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
326         (decodebin_suite):
327           Minimal unit test to make sure we can use the same decodebin
328           instance twice (at least with audiotestsrc input).
329
330 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
331
332         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
333           Try to get devic-name from device string first, and from handle only
334           as fallback (seems to yield better results and is more robust
335           against buggy probing code on the application side).
336
337 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
338
339         Based on patch by: Julien Puydt <julien.puydt at laposte net>
340
341         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
342         (gst_alsa_find_device_name):
343         * ext/alsa/gstalsa.h:
344         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
345         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
346           Improve device-name detection a bit, especially in the case where
347           the device is not actually open (#405020, #405024). Move common code
348           into gstalsa.c instead of duplicating it.
349
350 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
351
352         * gst/audioconvert/gstaudioconvert.c:
353           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
354
355 2007-02-06  Julien MOUTTE  <julien@moutte.net>
356
357         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
358         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
359         (gst_xvimagesink_interface_supported),
360         (gst_xvimagesink_probe_get_properties),
361         (gst_xvimagesink_probe_probe_property),
362         (gst_xvimagesink_probe_needs_probe),
363         (gst_xvimagesink_probe_get_values),
364         (gst_xvimagesink_property_probe_interface_init),
365         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
366         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
367         (gst_xvimagesink_get_type):
368         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
369         for XVAdaptors so that one can choose the adaptor to use with 
370         gstreamer-properties.
371
372 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
373
374         * gst/audioconvert/gstaudioconvert.c:
375           Also mention that a conversion from double to float is suboptimal still.
376
377 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
378
379         * gst-libs/gst/audio/gstaudiofilter.c:
380         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
381           Clear our formats structure and free the caps contained in it when
382           shutting down.
383
384 2007-02-05  Andy Wingo  <wingo@pobox.com>
385
386         * gst-libs/gst/audio/gstbaseaudiosink.c
387         (gst_base_audio_sink_callback): Update basesink->offset so that we
388         pull monotonically increasing offsets instead of, um, seeking back
389         to 0 each time. Fixes alsasrc ! alsasink!
390
391 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
392
393         * gst/videoscale/gstvideoscale.c:
394           A width and height of 1 makes us crash, so increase minimum size to
395           2x2 pixels until someone feels like fixing this (#404512).
396
397 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
398
399         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
400           Add small test to make sure request pads are cleaned up properly
401           even if oggmux never changes state out of NULL.
402
403 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
404
405         * tests/check/libs/utils.c: (GST_START_TEST):
406           Fix unit test. Turns out things work much better when you
407           NULL-terminate string arrays. Should make p5 build bot happy again.
408
409 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
410
411         * gst-libs/gst/audio/Makefile.am:
412         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
413         (gst_audio_filter_template_base_init),
414         (gst_audio_filter_template_class_init),
415         (gst_audio_filter_template_init),
416         (gst_audio_filter_template_set_property),
417         (gst_audio_filter_template_get_property),
418         (gst_audio_filter_template_setup),
419         (gst_audio_filter_template_filter),
420         (gst_audio_filter_template_filter_inplace), (plugin_init):
421           Oops, forgot to commit fixed-up example.
422
423 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
424
425         * docs/libs/gst-plugins-base-libs-sections.txt:
426         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
427         (gst_audio_filter_class_init), (gst_audio_filter_init),
428         (gst_audio_filter_set_caps),
429         (gst_audio_filter_class_add_pad_templates):
430         * gst-libs/gst/audio/gstaudiofilter.h:
431           Port GstAudioFilter to 0.10. This change technically breaks
432           API and ABI (and thus also every library developer's heart),
433           but seems justifiable on the grounds that the base class was
434           completely unusable before (ie. would crash immediately when
435           actually used). Fixes #403963 (and eventually also #403572).
436           Also document all of this a bit.
437
438 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
439
440         * gst-libs/gst/utils/install-plugins.c:
441         (gst_install_plugins_spawn_child):
442         * tests/check/libs/utils.c:
443         (test_base_utils_install_plugins_do_callout):
444           Lowering log level to see why things fail on the p5 build bot;
445           fix some typos in unit test messages.
446
447 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
448
449         * tests/check/libs/utils.c:
450         (test_base_utils_install_plugins_do_callout):
451           Don't hard-code temp directory for test helper; use GLib functions
452           to write out file and do error checking etc.
453
454 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
455
456         * gst-libs/gst/utils/Makefile.am:
457         * gst-libs/gst/utils/base-utils.h:
458         * gst-libs/gst/utils/install-plugins.c:
459         (gst_install_plugins_context_set_xid),
460         (gst_install_plugins_context_new),
461         (gst_install_plugins_context_free),
462         (gst_install_plugins_get_helper),
463         (gst_install_plugins_spawn_child),
464         (gst_install_plugins_return_from_status),
465         (gst_install_plugins_installer_exited),
466         (gst_install_plugins_async), (gst_install_plugins_sync),
467         (gst_install_plugins_return_get_name),
468         (gst_install_plugins_installation_in_progress):
469         * gst-libs/gst/utils/install-plugins.h:
470           API: add API for applications to initiate installation of missing
471           plugins, ie. gst_install_plugins_async() primarily.
472           Based on libgimme-codec by Ryan Lortie.
473
474         * configure.ac:
475           Add --with-install-plugins-helper configure option so distros can specify
476           the path of the helper script or program to call when plugin installation
477           is requested (distros: please do any argument munging in this helper
478           script instead of patching GStreamer to pass arguments differently
479           to another program directly).
480
481         * docs/libs/gst-plugins-base-libs-docs.sgml:
482         * docs/libs/gst-plugins-base-libs-sections.txt:
483           Build and document new API.
484
485         * tests/check/libs/utils.c: (result_cb),
486         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
487         (libgstbaseutils_suite):
488           Some simple checks for the new API.
489
490 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
491
492         * tests/check/elements/audioconvert.c: (test_float_conversion):
493           Add small test for 32bit float <=> 64bit float conversion (works
494           only one way so far, 32=>64 produces structured noise).
495
496 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
497
498         * gst/audioconvert/gstaudioconvert.c:
499         (set_structure_widths_32_and_64), (make_lossless_changes):
500           We don't support floats with a width of 40, 48 or 56 bits.
501
502 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
503
504         * gst/audioconvert/audioconvert.c: (float), (double),
505         (audio_convert_get_func_index):
506         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
507         (make_lossless_changes):
508           Support for 64-bit float audio in audioconvert (#339837)
509
510 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
511
512         Patch by: Holger Wansing  <linux wansing-online de>
513
514         * po/LINGUAS:
515         * po/de.po:
516           Add German translation (#352069).
517
518 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
519
520         reviewed by: Wim Taymans <wim@fluendo.com>
521
522         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
523         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
524         Use newly added GstCollectPads API to free the allocated resources in
525         the GstOggPad structures (#402393).
526
527 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
528
529         * gst/playback/gstplaybin.c: (gen_vis_element):
530           Add audioresample+audioconvert in front of the visualisation
531           element, so that elements like libvisual 0.4 that don't support all
532           samplerates can work.
533
534           Fixes: #402505
535
536 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
537
538         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
539         (gst_play_base_bin_get_streaminfo_value_array):
540           Take some locks and make a copy of the streaminfo value array we
541           maintain while holding the lock, so that the application can
542           retrieve the stream-info as a value array in a thread-safe way.
543
544 2007-01-30  Wim Taymans  <wim@fluendo.com>
545
546         * gst/audioconvert/gstaudioconvert.c:
547         Don't fail on 0 sized buffers. Fixes #396835.
548
549 2007-01-29  David Schleef  <ds@schleef.org>
550
551         * gst/typefind/gsttypefindfunctions.c:
552           Detect BBCD as video/x-dirac, so we can play raw dirac
553           streams.
554
555 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
556
557         * ext/theora/theoraenc.c: (theora_enc_chain):
558           Check return value of theora_encode_header(), or we might try to
559           allocate a random number of bytes. theora_encode_header() can fail
560           if libtheora has been compiled with encoding support disabled.
561           Fixes #398110.
562
563 2007-01-29  Wim Taymans  <wim@fluendo.com>
564
565         * tests/check/gst/.cvsignore:
566         Do as buildbot says.
567
568 2007-01-29  Wim Taymans  <wim@fluendo.com>
569
570         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
571         Fix strides in libvisual. Gst uses X strides.
572         Inspired by: <ed at catmur dot co dot uk> and 
573         <tim at centricular dot net>
574         Fixes #401118.
575
576 2007-01-27  Wim Taymans  <wim@fluendo.com>
577
578         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
579         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
580         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
581         (gst_ogg_demux_perform_seek),
582         (gst_ogg_demux_bisect_forward_serialno),
583         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
584         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
585         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
586         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
587         * ext/ogg/gstoggdemux.h:
588         Properly propagate streaming errors when we are scanning the file for
589         chains so that we don't crash when shut down. Might fix some crashers
590         when quickly switching oggs in RB such as #332503 and #378436.
591
592 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
593
594         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
595           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
596           error code as well.
597
598 2007-01-25  Wim Taymans  <wim@fluendo.com>
599
600         * gst/playback/gstplaybasebin.c: (remove_source):
601         Don't try to disconnect a signal from a finalized object.
602
603 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
604
605         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
606           Cast lock macro parameters to make sure we're actually accessing the
607           lock member at the right class level. Free list itself in _dispose()
608           as well and NULL it in case dispose gets called multiple times.
609
610 2007-01-25  Edward Hervey  <edward@fluendo.com>
611
612         * gst/playback/gstdecodebin2.c:
613         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
614         Free GstDecodeGroups no longer used.
615         (gst_decode_group_expose):
616         Don't unlock too many times !
617         (deactivate_free_recursive):
618         Free iterator once we're done with it.
619         Fix for recursively deactivating elements (stop at ghostpads).
620
621 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
622
623         * gst/playback/gstplaybin.c: (handoff):
624           Fix up caps on the frame buffer before we save it and potentially
625           make it accessible to other threads via g_object_get; also use
626           gst_buffer_replace() instead of gst_mini_object_replace().
627
628 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
629
630         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
631           Make getting the current frame thread-safe.
632
633 2007-01-25  Edward Hervey  <edward@fluendo.com>
634
635         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
636         (gst_decode_group_new), (gst_decode_group_free):
637         Set queues to bigger sizes to cope with HD contents.
638         Fix some mutex freeing and add comment about MT safe methods.
639
640 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
641
642         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
643         (gst_text_overlay_text_event):
644           Don't unnecessarily ref (and then leak) upstream events if the text
645           pad is not linked. Fixes #399948.
646
647         * tests/check/gst-plugins-base.supp:
648           Add suppression for pango on edgy/x86 for textoverlay test.
649
650 2007-01-24  Wim Taymans  <wim@fluendo.com>
651
652         * gst-libs/gst/rtp/gstrtpbuffer.h:
653         Add some more fixed payloads.
654
655 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
656
657         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
658           Error out properly if we get an error from libogg while reading the
659           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
660
661 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
662
663         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
664           Don't leak mutex.
665
666         * tests/check/elements/playbin.c:
667         (test_sink_usage_video_only_stream),
668         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
669         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
670         (test_missing_suburisource_handler),
671         (test_missing_primary_decoder), (playbin_suite):
672           Run all tests once with decodebin and once with decodebin2.
673           One test does not pass yet with decodebin2.
674
675 2007-01-23  Edward Hervey  <edward@fluendo.com>
676
677         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
678         Fix the cases where oggmux doesn't properly figure out that all
679         sinkpads have gone EOS, and therefore doesn't push out the remaining
680         buffers and the final EOS event.
681         Fixes #363379
682
683 2007-01-23  Julien MOUTTE  <julien@moutte.net>
684
685         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
686         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
687         Don't lock on navigation event push, just on keysym to string.
688         Fixes #397673 again.
689
690 2007-01-22  Edward Hervey  <edward@fluendo.com>
691
692         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
693         (get_current_group), (group_demuxer_event_probe),
694         (gst_decode_group_expose), (deactivate_free_recursive),
695         (gst_decode_group_free):
696         Cleanups.
697         Don't forget to emit 'no-more-pads' once a group is exposed.
698         Cleanup elements from a DecodeGroup once we remove it.
699         Protect call to gst_decode_group_expose() with the decodebin lock.
700
701 2007-01-22  Julien MOUTTE  <julien@moutte.net>
702
703         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
704         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
705         Looking at Xorg code i can't figure out if that XKeysymToString
706         function is thread sensible or not. Lock it just in case as
707         recommended by Radek Doulik <rodo at ximian dot com>.
708
709 2007-01-22  Julien MOUTTE  <julien@moutte.net>
710
711         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
712         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
713         Lock that X Call as well. Fixes #397673.
714
715 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
716
717         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
718           Don't go into an endless loop if the file starts with 00 00 01 2X,
719           like quicktime redirect files might. Fixes #396042.
720
721         * tests/check/Makefile.am:
722         * tests/check/gst/.cvsignore:
723         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
724         (typefindfunctions_suite):
725           Add unit test for the above.
726
727 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
728
729         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
730           On second thought, use "depth" field rather than "bpp" field.
731
732 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
733
734         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
735           Camtasia caps apparently need a bpp field (#398875).
736
737 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
738
739         * gst/playback/gstplaybasebin.c: (setup_subtitle),
740         (gen_source_element), (gst_play_base_bin_change_state):
741           Attempt at a better error message in case we don't have the required
742           URI handler installed; post missing-plugin message also when we're
743           missing an URI handler for the subtitle URI; clean up properly also
744           when an error occurs and we never made it to PAUSED state.
745
746         * tests/check/elements/playbin.c: (GST_START_TEST),
747         (playbin_suite):
748           Check that we're also getting a missing-plugin messsage for a
749           missing subtitle URI handler (and clean up properly).
750
751 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
752
753         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
754           Plug a few reference leaks.
755
756 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
757
758         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
759           Lower probability a bit if the marker isn't right at the start,
760           to decrease the chance of false positives.
761
762 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
763
764         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
765           Small mpeg2 system stream typefinding improvement: make typefinder
766           probe a bit into the stream instead of just looking for a marker
767           at the beginning. Fixes #397810.
768
769 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
770
771         * gst/audioconvert/gstchannelmix.c:
772           Remove compatibility cruft for prehistoric GLib versions.
773
774 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
775
776         * gst/playback/Makefile.am:
777         * gst/playback/gstdecodebin.c: (close_pad_link):
778         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
779         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
780         (gst_play_base_bin_handle_message_func), (unknown_type):
781           Let decodebin be the element to post missing-plugin messages for
782           missing decoders (rather than playbin); make playbin implement
783           GstBin::handle_message so we can suppress missing-plugin messages
784           for types we're not handling on purpose (don't want to bring up an
785           installer in those cases).
786
787 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
788
789         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
790         * gst-libs/gst/tag/gstvorbistag.c:
791         (gst_tag_list_to_vorbiscomment_buffer):
792         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
793           Fix potentially unaligned access (#397207).
794
795 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
796
797         * tests/examples/seek/seek.c: (set_scale), (update_scale),
798         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
799         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
800         (main):
801           Allow to toggle looping while it plays. Fix callback prototype. Clean
802           up code a bit more. Add copyright header.
803
804 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
805
806         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
807           Red and blue mask was swapped (spotted by Dan Williams).
808
809 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
810
811         * gst-libs/gst/tag/gstid3tag.c:
812         * gst-libs/gst/tag/gstvorbistag.c:
813           Use new beats-per-minute tag from core.
814
815 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
816
817         * po/POTFILES.in:
818           Add new files with translatable strings, so they actually make it
819           into the template file one day.
820
821 2007-01-12  Andy Wingo  <wingo@pobox.com>
822
823         * gst-libs/gst/audio/gstbaseaudiosink.c
824         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
825         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
826         stuff, as the base class handles this now. Actually tell the ring
827         buffer to start.
828         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
829         How did this work before? Maybe I'm not as awesome a programmer as
830         I think.
831
832         * gst-libs/gst/audio/gstbaseaudiosrc.c
833         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
834         of a pad function.
835
836 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
837
838         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
839           Remove more fields so that the application can better blacklist
840           formats that have been tried before.
841
842 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
843
844         * gst-libs/gst/audio/mixerutils.h:
845           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
846           used when compiling with c++ compilers as well.
847
848 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
849
850         * gst/typefind/gsttypefindfunctions.c:
851           Fix comment.
852
853 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
854
855         * gst/playback/gstplaybin.c: (post_missing_element_message),
856         (gen_video_element), (gen_text_element), (gen_audio_element),
857         (gen_vis_element):
858           Post missing-plugin messages also when we error out because
859           converters, textoverlay or auto*sinks are missing (#161922).
860
861 2007-01-10  Wim Taymans  <wim@fluendo.com>
862
863         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
864         (is_demuxer_element), (new_caps):
865         * gst/playback/gstplaybasebin.c: (source_new_pad):
866         Fix the case where we try to ref a NULL element when we delay a link
867         because of unfixed caps.
868         Set the state of autoplugged decodebins to PAUSED.
869         RTSP now works in playbin, we can remove it from the blacklist.
870
871 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
872
873         * gst/playback/Makefile.am:
874         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
875         (unknown_type), (setup_subtitle), (gen_source_element):
876         * gst/playback/gstplaybin.c: (plugin_init):
877           Post missing-plugin messages on the bus for missing sources and
878           missing decoders/demuxers/depayloaders; fix error code used when
879           we're missing an URI handler source; for media types that we are not
880           handling on purpose at the moment, don't print "don't know how to
881           handle xyz" messages to the terminal or post missing-plugin
882           messages on the bus.
883
884         * tests/check/elements/playbin.c: (create_playbin),
885         (GST_START_TEST), (gst_codec_src_uri_get_type),
886         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
887         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
888         (gst_codec_src_init_type), (gst_codec_src_base_init),
889         (gst_codec_src_create), (gst_codec_src_class_init),
890         (gst_codec_src_init), (plugin_init), (playbin_suite):
891           Add some tests for the missing-plugin stuff.
892
893 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
894
895         * configure.ac:
896         * gst-libs/gst/Makefile.am:
897         * gst-libs/gst/utils/Makefile.am:
898         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
899         * gst-libs/gst/utils/base-utils.h:
900         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
901         (find_format_info), (caps_are_rtp_caps),
902         (gst_base_utils_get_source_description),
903         (gst_base_utils_get_sink_description),
904         (gst_base_utils_get_decoder_description),
905         (gst_base_utils_get_encoder_description),
906         (gst_base_utils_get_element_description),
907         (gst_base_utils_add_codec_description_to_tag_list),
908         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
909         * gst-libs/gst/utils/descriptions.h:
910         * gst-libs/gst/utils/missing-plugins.c:
911         (missing_structure_get_type), (copy_and_clean_caps),
912         (gst_missing_uri_source_message_new),
913         (gst_missing_uri_sink_message_new),
914         (gst_missing_element_message_new),
915         (gst_missing_decoder_message_new),
916         (gst_missing_encoder_message_new),
917         (missing_structure_get_string_detail),
918         (missing_structure_get_caps_detail),
919         (gst_missing_plugin_message_get_installer_detail),
920         (gst_missing_plugin_message_get_description),
921         (gst_is_missing_plugin_message):
922         * gst-libs/gst/utils/missing-plugins.h:
923           API: add new libgstbaseutils library with functions
924           - to create and parse missing-plugins messages
925           - that provide (translated) descriptions for caps/decoders/sources/etc.
926           Closes #392393.
927
928         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
929         * pkgconfig/gstreamer-plugins-base.pc.in:
930           Add new lib.
931
932         * docs/libs/gst-plugins-base-libs-docs.sgml:
933         * docs/libs/gst-plugins-base-libs-sections.txt:
934           Generate docs for new lib and API.
935
936         * tests/check/Makefile.am:
937         * tests/check/libs/.cvsignore:
938         * tests/check/libs/utils.c: (missing_msg_check_getters),
939         (GST_START_TEST), (libgstbaseutils_suite):
940           Add some basic unit tests.
941
942 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
943
944         * ext/ogg/Makefile.am:
945           Dist gstoggdemux.h to fix 'make distcheck'.
946
947         * sys/v4l/Makefile.am:
948           Fix 'make distcheck' even more.
949
950 2007-01-09  Wim Taymans  <wim@fluendo.com>
951
952         * docs/plugins/Makefile.am:
953         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
954         * docs/plugins/gst-plugins-base-plugins-sections.txt:
955         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
956         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
957         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
958         (gst_ogg_demux_perform_seek):
959         * ext/ogg/gstoggdemux.h:
960         Added docs.
961         Add some more comments.
962         Small cleanups.
963
964 2007-01-09  Wim Taymans  <wim@fluendo.com>
965
966         * ext/theora/theoradec.c:
967         * ext/vorbis/vorbisdec.c:
968         * gst-libs/gst/audio/gstringbuffer.c:
969         (gst_ring_buffer_commit_full):
970         * gst-libs/gst/audio/gstringbuffer.h:
971         * gst-libs/gst/rtp/gstrtpbuffer.c:
972         * gst-libs/gst/tag/gstvorbistag.c:
973         Small documentation updates/fixes
974
975 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
976
977         * configure.ac:
978           Require core CVS HEAD for Andy's basesrc/sink API additions.
979
980 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
981
982         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
983
984         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
985         (plugin_init):
986           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
987           on flac.sf.net (there appear to be other versions of the first
988           ogg page in the wild) (#391365).
989
990 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
991
992         * configure.ac:
993           Check if localtime_r() is available.
994
995         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
996           If localtime_r() is not available, fall back to localtime(). Should
997           fix build on MingW (#393310).
998
999 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1000
1001         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1002         * gst/subparse/gstsubparse.h:
1003           Remove spurious 1000 subtrahend when calculating the timestamp from
1004           the frame number and the frame rate . Also, use the frames/second
1005           value specified in the first line of the file, if one is specified
1006           there. Should fix #357503.
1007
1008         * tests/check/elements/subparse.c: (do_test),
1009         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1010         (subparse_suite):
1011           Add some basic unit tests for the microdvd subtitle format.
1012
1013 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1014
1015         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1016         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1017         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1018         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1019         (gst_xvimagesink_set_xwindow_id),
1020         (gst_xvimagesink_set_event_handling),
1021         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1022         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1023         Patch by : Young-Ho Cha <ganadist at chollian dot net>
1024         Fixes : #390076.
1025         Add an adaptor property to select a specific XV adaptor.
1026         * sys/xvimage/xvimagesink.h:
1027
1028 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1029
1030         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1031         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1032         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1033         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1034         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1035         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1036         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1037         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1038         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1039         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1040         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1041         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1042         Use flow_lock much more to protect every access to xwindow.
1043         Try to catch erros while creating images in case some drivers are
1044         just generating an XError when the requested image is too big.
1045         Should fix : #354698, #384008, #384060.
1046         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1047         Implement some stress testing of setting window xid.
1048
1049 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
1050
1051         * win32/common/libgsaudio.def:
1052           Add new exported function.
1053         * win32/common/libgstogg.dsp:
1054           Add gstoggaviparse.c to the build.
1055         * win32/common/libgstvideoscale.dsp:
1056           Add vs_4tap.c to the build.
1057         * win32/common/libgstvorbis.dsp:
1058           Add vorbistag.c to the build.
1059         
1060 2007-01-06  Andy Wingo  <wingo@pobox.com>
1061
1062         * gst-libs/gst/audio/gstbaseaudiosink.c
1063         (gst_base_audio_sink_class_init)
1064         (gst_base_audio_sink_init): 
1065         (gst_base_audio_sink_activate_pull): Add an activate_pull function
1066         to baseaudiosink, and tell basesink that we can work in pull mode.
1067         This way the ring buffer thread drives the pipeline directly, if
1068         pull mode is possible. There is some lingering nastiness regarding
1069         capsnego, however.
1070         (gst_base_audio_sink_callback): Implement the callback to pull
1071         data. This interface is a bit light, though -- it should get a
1072         GstFlowReturn return value at least.
1073
1074 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1075
1076         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1077         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1078         * gst/playback/gstdecodebin2.c:
1079         (gst_decode_group_check_if_blocked):
1080           Printf format and missing argument fixes.
1081
1082 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
1083
1084         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1085         (gst_ogm_parse_change_state):
1086         Activate pads before adding them to the element.
1087
1088 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1089
1090         * tests/examples/seek/scrubby.c: (main):
1091         * tests/examples/seek/seek.c: (main):
1092           Call g_thread_init() first thing in main() (see #391278).
1093
1094 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1095
1096         * tests/check/Makefile.am:
1097         * tests/check/libs/.cvsignore:
1098         * tests/check/libs/netbuffer.c: (GST_START_TEST),
1099         (netbuffer_suite):
1100           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1101           for the time being, since it's broken, see #393099.
1102
1103 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1104
1105         * tests/check/Makefile.am:
1106           Update to use GST_PLUGINS_BASE_CFLAGS as well.
1107
1108 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
1109
1110         * configure.ac:
1111           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1112           so that GST_BASE_CFLAGS can go inbetween them, making sure
1113           we use uninstalled gst-libs headers
1114         * docs/libs/Makefile.am:
1115         * ext/alsa/Makefile.am:
1116         * ext/cdparanoia/Makefile.am:
1117         * ext/gnomevfs/Makefile.am:
1118         * ext/libvisual/Makefile.am:
1119         * ext/ogg/Makefile.am:
1120         * ext/theora/Makefile.am:
1121         * ext/vorbis/Makefile.am:
1122         * gst-libs/gst/audio/Makefile.am:
1123         * gst-libs/gst/cdda/Makefile.am:
1124         * gst-libs/gst/interfaces/Makefile.am:
1125         * gst-libs/gst/riff/Makefile.am:
1126         * gst-libs/gst/rtp/Makefile.am:
1127         * gst-libs/gst/tag/Makefile.am:
1128         * gst/adder/Makefile.am:
1129         * gst/audioconvert/Makefile.am:
1130         * gst/audiorate/Makefile.am:
1131         * gst/audioresample/Makefile.am:
1132         * gst/playback/Makefile.am:
1133         * gst/tcp/Makefile.am:
1134         * gst/videoscale/Makefile.am:
1135         * gst/volume/Makefile.am:
1136         * sys/ximage/Makefile.am:
1137         * sys/xvimage/Makefile.am:
1138         * tests/icles/Makefile.am:
1139           adapt
1140
1141 2007-01-04  Julien MOUTTE  <julien@moutte.net>
1142
1143         * gst-libs/gst/interfaces/xoverlay.c:
1144         (gst_x_overlay_handle_events):
1145         * gst-libs/gst/interfaces/xoverlay.h:
1146         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1147         (gst_ximagesink_set_xwindow_id),
1148         (gst_ximagesink_set_event_handling),
1149         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1150         (gst_ximagesink_get_property), (gst_ximagesink_init),
1151         (gst_ximagesink_class_init):
1152         * sys/ximage/ximagesink.h:
1153         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1154         (gst_xvimagesink_set_xwindow_id),
1155         (gst_xvimagesink_set_event_handling),
1156         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1157         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1158         (gst_xvimagesink_class_init):
1159         * sys/xvimage/xvimagesink.h:
1160         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1161         Add a method to the XOverlay interface to allow disabling of 
1162         event handling in x[v]imagesink elements. This will let X events
1163         propagate to parent windows which can be usefull in some cases.
1164         Be carefull that the application is then responsible of pushing
1165         navigation events and expose events to the video sink.
1166         Fixes: #387138.
1167
1168 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
1169
1170         * gst-libs/gst/tag/gstvorbistag.c:
1171         * tests/check/libs/tag.c: (GST_START_TEST):
1172           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1173           (fixes #392070).
1174
1175 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
1176
1177         * configure.ac:
1178         * docs/Makefile.am:
1179         * docs/design/Makefile.am:
1180           Dist design docs.
1181
1182 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1183
1184         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1185         typo. Fixes: #390063.
1186
1187 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1188
1189         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1190         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1191         caps leak.
1192         * win32/common/config.h: Updated.
1193
1194 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
1195
1196         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1197         (setup_gdpdepay_streamheader):
1198         * tests/check/elements/gdppay.c: (cleanup_gdppay),
1199         (setup_gdppay_streamheader):
1200           Fix the dp tests, but activating the pads for the streamheader tests
1201           too and cleaning up conditionaly
1202
1203 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
1204
1205         * gst/ffmpegcolorspace/avcodec.h:
1206         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1207         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1208         (gst_ffmpegcsp_avpicture_fill):
1209         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1210         (img_get_alpha_info):
1211         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1212         other end of the word. Fixes: #387073.
1213
1214         Add some inconsequential branch hints in a couple of places.
1215
1216 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
1217
1218         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1219         (gst_ffmpeg_caps_to_smpfmt):
1220           The "signed" field in raw audio caps is of boolean type, trying to
1221           extract the value with _get_int() will fail (fix to keep in sync with
1222           the copy in gst-ffmpeg)
1223
1224 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
1225
1226         * tests/check/elements/audioresample.c: (cleanup_audioresample):
1227         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1228         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1229         (cleanup_gdpdepay):
1230         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1231         * tests/check/elements/subparse.c: (teardown_subparse):
1232         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1233         * tests/check/elements/videorate.c: (cleanup_videorate):
1234         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1235         * tests/check/elements/volume.c: (cleanup_volume):
1236         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1237         (cleanup_vorbisdec):
1238         * tests/check/elements/vorbistag.c: (setup_vorbistag),
1239         (cleanup_vorbistag):
1240           consistent pad (de)activation
1241
1242 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1243
1244         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1245           Forgot to register the extensions.
1246
1247 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1248
1249         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1250         (plugin_init):
1251           Add typefinder for VIVO files (my christmas present to the 90s).
1252
1253 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1254
1255         * gst/playback/gstdecodebin.c: (type_found):
1256           Special-case the text/plain media type: we only want to recognise it
1257           as a 'raw' decoded media type if it comes from a demuxer or subtitle
1258           parser, but not if the entire stream is of text/plain type. If the
1259           entire stream is text/plain, we should just error out.
1260
1261           This fixes playback of audio files with lyrics in totem. Totem can't
1262           distinguish between text files and subtitle files and passes any
1263           .txt file with the same basename as the main file to playbin as
1264           suburi, and playbin will then throw a 'subtitle found, but no video
1265           stream' error, which isn't entirely helpful. See #380342.
1266
1267           Also, with this change we'll show a slightly more correct error
1268           message in case totem passes a playlist file to us (although a
1269           custom error message wording instead of the default text would
1270           probably not be a bad idea either).
1271
1272           Same problem also needs to be fixed for playbin+decodebin2.
1273
1274         * tests/check/Makefile.am:
1275         * tests/check/elements/decodebin.c: (src_handoff_cb),
1276         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1277         (decodebin_suite):
1278           Add simple unit test for decodebin for the above.
1279
1280 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1281
1282         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1283         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1284           Refuse to change state to READY when we failed to create any of the
1285           required elements in our instance init function.
1286
1287 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
1288
1289         * docs/libs/gst-plugins-base-libs-sections.txt:
1290           Small docs fixes/updates.
1291
1292         * gst-libs/gst/video/gstvideosink.h:
1293           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1294           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1295           removed from the base sink API between 0.9.6 and 0.9.7).
1296           API: add GST_VIDEO_SINK_CAST and use it for the height/width
1297           accessor macros, so we don't do a runtime GObject type check every
1298           time we use them.
1299
1300 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
1301
1302         * Makefile.am:
1303         * gst-plugins-base.doap:
1304         * gst-plugins-base.spec.in:
1305           add doap file
1306
1307 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
1308
1309         Patch by: Jens Granseuer <jensgr at gmx net>
1310
1311         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1312         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1313         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1314         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1315         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1316           Declare variables at the beginning of a block. Fixes #383195.
1317
1318 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
1319
1320         * configure.ac:
1321         Bump version nano - back to CVS.
1322
1323
1324 === release 0.10.11 ===
1325
1326 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
1327
1328         * configure.ac:
1329           releasing 0.10.11, "Dumb things"
1330
1331 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
1332
1333         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1334         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1335         Handle the case where an element has multiple pads with 
1336         unfixed caps as well as still possibly producing more dynamic 
1337         pads by storing each case as a distinct entry in the dynamic list.
1338         Fixes #38223 again.
1339
1340 2006-12-04  Wim Taymans  <wim@fluendo.com>
1341
1342         * gst/playback/gstdecodebin.c: (close_pad_link):
1343         Fix #382223, add more dynamic caps handling.
1344
1345 2006-12-04  Wim Taymans  <wim@fluendo.com>
1346
1347         reviewed by: <delete if not using a buddy>
1348
1349         * gst-libs/gst/audio/gstringbuffer.h:
1350         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1351         (gst_netaddress_set_ip4_interface),
1352         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1353         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1354         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1355         (gst_netaddress_get_ttl):
1356         * gst-libs/gst/netbuffer/gstnetbuffer.h:
1357         * gst/playback/gstdecodebin.c: (close_pad_link):
1358         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1359         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1360         * win32/common/config.h:
1361
1362 2006-12-01  Michael Smith  <msmith@fluendo.com>
1363
1364         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1365           Delete bad debug code.
1366           Fixes #381219
1367
1368 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
1369
1370         * gst/videoscale/vs_4tap.c:
1371         * win32/MANIFEST:
1372         * win32/common/config.h:
1373         * win32/vs8/libgstvideoscale.vcproj:
1374         Fix compilation on win32 under VS8
1375         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1376         Partially fixes #381175
1377
1378 2006-11-30  Michael Smith  <msmith@fluendo.com>
1379
1380         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1381         (GST_START_TEST):
1382           It would be very bad if, after a discont buffer, we thought every
1383           single following buffer was also discont. So, add to the test to
1384           ensure that this isn't the case.
1385           
1386         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1387           ... it was the case. So fix it.
1388
1389 2006-11-28  Wim Taymans  <wim@fluendo.com>
1390
1391         * gst/playback/gstplaybasebin.c: (check_queue_event):
1392         Improve debug.
1393
1394         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1395         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1396         padtemplate caps. Refixes #357577.
1397
1398 2006-11-28  Wim Taymans  <wim@fluendo.com>
1399
1400         * gst/playback/gstplaybasebin.c: (check_queue_event),
1401         (queue_threshold_reached), (queue_out_of_data),
1402         (gen_preroll_element):
1403         Add event probe to see when EOS is in a queue and we can disable the
1404         underrun signals. Fixes #357577.
1405
1406 2006-11-28  Edward Hervey  <edward@fluendo.com>
1407
1408         * gst/playback/Makefile.am:
1409         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
1410         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
1411         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
1412         (gst_decode_bin_init), (gst_decode_bin_dispose),
1413         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
1414         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
1415         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
1416         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
1417         (connect_element), (expose_pad), (type_found),
1418         (pad_added_group_cb), (pad_removed_group_cb),
1419         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
1420         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
1421         (are_raw_caps), (multi_queue_overrun_cb),
1422         (multi_queue_underrun_cb), (gst_decode_group_new),
1423         (get_current_group), (group_demuxer_event_probe),
1424         (gst_decode_group_control_demuxer_pad),
1425         (gst_decode_group_control_source_pad),
1426         (gst_decode_group_check_if_blocked),
1427         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
1428         (gst_decode_group_hide), (gst_decode_group_free),
1429         (gst_decode_group_set_complete), (source_pad_blocked_cb),
1430         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
1431         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
1432         (plugin_init):
1433         New decodebin2 element.
1434         Closes #370092
1435         * gst/playback/gstplay-marshal.list:
1436         Added marshallers for new signals in decodebin2
1437         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
1438         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
1439         is set.
1440
1441 2006-11-28  Wim Taymans  <wim@fluendo.com>
1442
1443         * gst/playback/gstplaybasebin.c: (setup_source),
1444         (gst_play_base_bin_change_state):
1445         Disable rtsp:// uris for the release, it's not good enough yet.
1446         Remove unused var.
1447
1448 2006-11-26  Wim Taymans  <wim@fluendo.com>
1449
1450         * ext/theora/theoradec.c: (gst_theora_dec_reset),
1451         (theora_dec_push_forward), (theora_dec_push_reverse),
1452         (theora_handle_data_packet), (theora_dec_decode_buffer),
1453         (theora_dec_flush_decode), (theora_dec_chain_reverse),
1454         (theora_dec_chain_forward), (theora_dec_chain):
1455         Implement reverse playback.
1456
1457         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
1458         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
1459         (vorbis_dec_chain_forward):
1460         Clear buffers used for reverse playback in _reset.
1461         No need to set the eos flag, we clip samples using the segment.
1462
1463 2006-11-24  Wim Taymans  <wim@fluendo.com>
1464
1465         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1466         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
1467         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
1468         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
1469         Some cleanups.
1470         Handle continued pages in reverse mode.
1471
1472 2006-11-24  Wim Taymans  <wim@fluendo.com>
1473
1474         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
1475         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
1476         (vorbis_dec_flush_decode):
1477         Small cleanups.
1478         Don't try to add invalid timestamps.
1479         Clipping will unref the buffer.
1480
1481 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
1482
1483         * gst/adder/gstadder.h:
1484         * gst/audiotestsrc/gstaudiotestsrc.h:
1485           remove obsolete _factory_init protos
1486
1487 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
1488
1489         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
1490           Fix spacing in debug message.
1491
1492 2006-11-23  Wim Taymans  <wim@fluendo.com>
1493
1494         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
1495         (gst_ogg_demux_chain):
1496         Don't just ignore return values from _pad_push().
1497         Small debug improvements.
1498
1499 2006-11-23  Michael Smith  <msmith@fluendo.com>
1500
1501         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
1502           If our incoming buffer is marked as DISCONT, then increment the page
1503           number (so that the discontinuity is marked in the final ogg
1504           bitstream) and flush the previous page.
1505
1506 2006-11-22  Michael Smith  <msmith@fluendo.com>
1507
1508         * ext/theora/gsttheoraenc.h:
1509         * ext/theora/theoraenc.c: (gst_theora_enc_init),
1510         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
1511         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
1512         (theora_enc_chain), (theora_enc_change_state):
1513           Mark discontinuities of > 3/4 of a frame, reinit encoder.
1514
1515         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1516         (GST_START_TEST), (theoraenc_suite):
1517           Enable discontinuity test, fix it.
1518
1519 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
1520
1521         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1522         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
1523         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
1524         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
1525         (gst_text_overlay_change_state):
1526         * ext/pango/gsttextoverlay.h:
1527           Some textoverlay fixes: for one, in the video chain function,
1528           actually wait for a text buffer to come in if there is none at the
1529           moment and there should be one; also, deal more gracefully with
1530           incoming buffers that do not have a timestamp or duration; discard
1531           text buffer when not needed any longer. Fixes #341681.
1532
1533         * tests/check/Makefile.am:
1534         * tests/check/elements/.cvsignore:
1535         * tests/check/elements/textoverlay.c:
1536         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
1537         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
1538         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
1539         (test_video_waits_for_text_send_text_newsegment_thread),
1540         (test_video_waits_for_text_shutdown_element),
1541         (test_render_continuity_push_video_buffers_thread),
1542         (textoverlay_suite):
1543           Add some unit tests for textoverlay.
1544
1545 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
1546
1547         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1548           Avoid integer underflow when the found probability for mp3 is
1549           smaller than the 'penalty' we subtract if there's not a clean
1550           mp3 header sync at offset 0.
1551
1552 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
1553
1554         * docs/libs/gst-plugins-base-libs-sections.txt:
1555           Add some new symbols to the docs
1556
1557 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
1558
1559         * tests/check/Makefile.am:
1560         * tests/check/elements/ffmpegcolorspace.c:
1561         (ffmpegcolorspace_suite):
1562           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
1563           (for now not for valgrinding though, since it takes too long).
1564
1565 2006-11-20  Wim Taymans  <wim@fluendo.com>
1566
1567         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1568         (gst_ffmpeg_pixfmt_to_caps):
1569         Fix RGBA32 caps. Fixes #357038.
1570
1571 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
1572
1573         * gst-libs/gst/interfaces/mixertrack.h:
1574           Add FIXME so we can add some padding here in 0.11
1575
1576 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
1577
1578         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1579           Fix GstBaseRTPAudioPayload structure so the whole GObject
1580           inheritance business actually works (parent class instance structure
1581           must always come first in the derived class instance structure).
1582
1583 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
1584
1585         * gst/videotestsrc/Makefile.am:
1586         * tests/check/Makefile.am:
1587           Make sure our checks and the videotestsrc plugin link against the
1588           local uninstalled gst libs and not any installed gst libs that
1589           might happen to exist as well.
1590
1591         * tests/check/elements/adder.c: (message_received),
1592         (test_event_message_received), (test_play_twice_message_received):
1593         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
1594           Fix compiler warnings when compiling against core with disabled
1595           debugging system.
1596
1597 2006-11-16  Michael Smith  <msmith@fluendo.com>
1598
1599         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
1600         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
1601           Fix audiorate, so that it accurately sets offsets and timestamps.
1602           Doesn't change the fundamental algorithmic decisions; so should be
1603           safe.
1604
1605         * tests/check/Makefile.am:
1606           Enable audiorate test now that it passes.
1607
1608 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
1609
1610         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
1611           clear xv when going to NULL, remove // commented non-existant proto
1612
1613         * tests/examples/seek/seek.c: (main):
1614           add missing tooltip description for scrub and play_scrub
1615
1616 2006-11-14  David Schleef  <ds@schleef.org>
1617
1618         * configure.ac:
1619           Bump liboil requirement to 0.3.8.
1620         * gst-libs/gst/riff/riff-media.c:
1621           Add Dirac fourcc.
1622         * gst/videoscale/vs_image.h:
1623         * gst/videoscale/vs_scanline.h:
1624           Use liboil's stdint.h.
1625         * gst/videotestsrc/videotestsrc.c:
1626           Remove liboil related ifdef's, since they aren't needed now, and
1627           won't work with future versions.
1628
1629 2006-11-14  David Schleef  <ds@schleef.org>
1630
1631         * gst/videoscale/Makefile.am:
1632         * gst/videoscale/gstvideoscale.c:
1633         * gst/videoscale/gstvideoscale.h:
1634         * gst/videoscale/vs_4tap.c:
1635         * gst/videoscale/vs_4tap.h:
1636         * gst/videoscale/vs_image.c:
1637         * gst/videoscale/vs_image.h:
1638         * gst/videoscale/vs_scanline.c:
1639         * gst/videoscale/vs_scanline.h:
1640           Add a 4-tap image scaler.  Theoretically looks much prettier.
1641           The tap calculation could use some improvement.
1642
1643 2006-11-14  Wim Taymans  <wim@fluendo.com>
1644
1645         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
1646
1647         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
1648         (gst_riff_parse_strf_iavs):
1649         * gst/subparse/gstsubparse.c: (convert_encoding):
1650         * gst/tcp/gstmultifdsink.c:
1651         (gst_multi_fd_sink_handle_client_write):
1652         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
1653         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
1654         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
1655         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
1656         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1657         (gst_ximagesink_ximage_new):
1658         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
1659         Various gsize and gssize printf fixes. Fixes #372507.
1660
1661 2006-11-13  Wim Taymans  <wim@fluendo.com>
1662
1663         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
1664         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
1665         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
1666         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
1667         (vorbis_dec_chain_forward), (vorbis_dec_chain):
1668         * ext/vorbis/vorbisdec.h:
1669         First stab at vorbis reverse playback.
1670
1671 2006-11-13  Wim Taymans  <wim@fluendo.com>
1672
1673         * gst-libs/gst/audio/gstbaseaudiosink.c:
1674         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
1675         * gst-libs/gst/audio/gstbaseaudiosink.h:
1676         Make the clock sync code more accurate wrt resampling and playback
1677         at different rates.
1678         
1679         * gst-libs/gst/audio/gstringbuffer.c:
1680         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
1681         * gst-libs/gst/audio/gstringbuffer.h:
1682         Use better algorithm to interpolate sample rates. 
1683
1684 2006-11-13  Michael Smith  <msmith@fluendo.com>
1685
1686         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
1687           Improve a debug line slightly.
1688
1689         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
1690           Call gst_riff_init() in plugin_init, to avoid getting errors from
1691           the debug system (unrelated changes to another plugin made this turn
1692           up; not sure why).
1693
1694 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
1695
1696         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
1697
1698         * win32/common/libgsttag.def:
1699           Add missing symbol (#366492).
1700
1701 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
1702
1703         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
1704           Don't unref a NULL pad.
1705
1706 2006-11-09  Wim Taymans  <wim@fluendo.com>
1707
1708         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
1709         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
1710         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
1711         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
1712         (gst_ogg_demux_loop):
1713         Implement first stab at reverse playback.
1714
1715 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
1716
1717         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1718         (gst_riff_create_video_template_caps):
1719           add h263/h264 variants to the caps, Fixes #363118
1720
1721 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
1722
1723         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
1724         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
1725           Use g_strerror instead of strerror so we get UTF-8.
1726
1727 2006-11-03  David Schleef  <ds@schleef.org>
1728
1729         * ext/ogg/gstoggdemux.c:
1730         * ext/ogg/gstoggmux.c:
1731           Add/remove KW-DIRAC header here, since it is ogg-specific.
1732
1733 2006-11-03  Michael Smith  <msmith@fluendo.com>
1734
1735         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1736           Recognise more mpeg4 elementary video streams.
1737
1738 2006-11-02  Edward Hervey  <edward@fluendo.com>
1739
1740         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1741         Lower the probability of mp3 typefinding functions if we don't find a
1742         valid mp3 header at the start of the file.
1743         Closes #369482
1744
1745 2006-11-02  Wim Taymans  <wim@fluendo.com>
1746
1747         * ext/theora/gsttheoradec.h:
1748         * ext/theora/theoradec.c: (gst_theora_dec_init),
1749         (theora_dec_sink_event), (theora_dec_chain_forward),
1750         (theora_dec_flush_decode), (theora_dec_chain_reverse),
1751         (theora_dec_chain):
1752         Document and partially implement an algorithm for doing reverse playback
1753         of theora video.
1754
1755 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
1756
1757         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
1758
1759         * win32/common/config.h:
1760         * win32/common/interfaces-enumtypes.c:
1761         * win32/common/libgsttag.def:
1762         * win32/vs8/gst-plugins-base.sln:
1763         * win32/vs8/libgstaudioresample.vcproj:
1764         * win32/vs8/libgstinterfaces.vcproj:
1765         * win32/vs8/libgstogg.vcproj:
1766         * win32/vs8/libgstriff.vcproj:
1767         * win32/vs8/libgsttag.vcproj:
1768         * win32/vs8/libgsttheora.vcproj:
1769         * win32/vs8/libgstvideoscale.vcproj:
1770         * win32/vs8/libgstvorbis.vcproj:
1771           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
1772           to libgsttag.def; add missing dependencies for some vs8 projects;
1773           re-arrange placement of .def files in vs8 projects (#366334).
1774
1775 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
1776
1777         * ext/ogg/gstogg.c:
1778           Remove unused variable.
1779
1780         * ext/ogg/gstoggdemux.c:
1781           Fix Wim's surname in plugin description.
1782
1783 2006-10-31  Wim Taymans  <wim@fluendo.com>
1784
1785         * gst-plugins-base.spec.in:
1786         spec new .h file. Fixes #368310.
1787
1788 2006-10-31  Michael Smith  <msmith@fluendo.com>
1789
1790         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
1791         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
1792         (gst_multi_fd_sink_get_stats),
1793         (gst_multi_fd_sink_remove_client_link),
1794         (gst_multi_fd_sink_queue_buffer),
1795         (gst_multi_fd_sink_handle_clients):
1796         * gst/tcp/gstmultifdsink.h:
1797           Make using the remove or clear signals threadsafe.
1798           Make calling get-stats with an invalid fd not segfault.
1799           Fixes 368273.
1800
1801 2006-10-31  Wim Taymans  <wim@fluendo.com>
1802
1803         * gst-libs/gst/rtp/Makefile.am:
1804         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1805         (gst_base_rtp_audio_payload_init):
1806         Fix and activate base audio payloader.
1807
1808 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
1809
1810         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
1811         (plugin_init):
1812           Add typefinder for QuickTime Image Files (see #366156).
1813
1814 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
1815
1816         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
1817           Another typo fix (#366212).
1818
1819 2006-10-27  Wim Taymans  <wim@fluendo.com>
1820
1821         * gst/volume/gstvolume.c: (volume_transform_ip):
1822         Use stream time to synchronize volume property instead of rather random
1823         timestamps. This is needed when gnonlin does its time shifting.
1824
1825 2006-10-27  Wim Taymans  <wim@fluendo.com>
1826
1827         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
1828
1829         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
1830         Remove the pad from the element in release_pad. Fixes #364812.
1831
1832 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
1833
1834         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
1835         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
1836           Explicitly create our custom buffer classes at a thread-safe
1837           location as well, since g_type_class_ref() doesn't seem to be
1838           entirely thread-safe either (#365501; also see #349410).
1839
1840 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
1841
1842         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
1843         (gst_riff_parse_info):
1844           If strings in INFO chunk are not UTF-8, do something similar to
1845           what we do for ID3v1 tags: check a number of environment variables
1846           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
1847           character sets to try, otherwise try the current locale and/or fall
1848           back on ISO-8859-1. Fixes #360552.
1849
1850 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
1851
1852         * gst/videotestsrc/gstvideotestsrc.c:
1853         (gst_video_test_src_pattern_get_type),
1854         (gst_video_test_src_set_pattern):
1855         * gst/videotestsrc/gstvideotestsrc.h:
1856         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
1857         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
1858         (gst_video_test_src_checkers8):
1859         * gst/videotestsrc/videotestsrc.h:
1860           Add a bunch of exciting new checkers patterns.
1861
1862 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
1863
1864         * gst/subparse/Makefile.am:
1865         * gst/subparse/gstsubparse.c:
1866         (gst_sub_parse_data_format_autodetect),
1867         (gst_sub_parse_format_autodetect), (handle_buffer),
1868         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
1869         * gst/subparse/gstsubparse.h:
1870         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
1871         (parse_tmplayer):
1872         * gst/subparse/tmplayerparse.h:
1873           Add support for TMPlayer-type subtitles (#362845).
1874
1875         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
1876         (GST_START_TEST), (subparse_suite):
1877           Add some basic unit tests for the above.
1878
1879 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
1880
1881         * tests/check/elements/audiorate.c: (test_injector_base_init),
1882         (test_injector_class_init), (test_injector_chain),
1883         (test_injector_init), (probe_cb), (do_perfect_stream_test),
1884         (GST_START_TEST), (audiorate_suite):
1885           More tests for audiorate: inject buffers to check behaviour when
1886           buffers overlap.
1887
1888 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
1889
1890         * tests/check/Makefile.am:
1891         * tests/check/elements/.cvsignore:
1892         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
1893         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
1894           Add some basic unit tests for audiorate. Disabled at the moment
1895           since it doesn't pass yet (see bug #363119).
1896
1897 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
1898
1899         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
1900         (parse_subrip), (handle_buffer):
1901           Add missing closing tags for markup and fix broken markup,
1902           otherwise pango won't render anything (fixes #357531). Also,
1903           make sure the text we send out is always NUL-terminated
1904           (better safe than sorry etc.).
1905
1906         * tests/check/elements/subparse.c: (test_srt_do_test),
1907         (test_srt):
1908           Some more tests for .srt incl. tests for the above stuff.
1909
1910 2006-10-20  Julien MOUTTE  <julien@moutte.net>
1911
1912         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
1913         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
1914         Patch by: Stefan Kost  <ensonic@users.sf.net>
1915         Try to redraw borders only when needed. Apparently this consumes
1916         resources on small devices... :-O (#363607)
1917
1918 2006-10-20  Michael Smith  <msmith@fluendo.com>
1919
1920         * gst/tcp/gstmultifdsink.c:
1921         (gst_multi_fd_sink_client_queue_buffer):
1922           If caps change, then update the client's idea of the caps so that we
1923           don't end up re-sending streamheaders for every single buffer after
1924           the caps change.
1925
1926 2006-10-20  Michael Smith  <msmith@fluendo.com>
1927
1928         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
1929         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
1930           Set caps on pushed buffers; fix up refcounting of caps objects.
1931
1932 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
1933
1934         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
1935         (plugin_init):
1936           Typefind mmsh header data packet to application/x-mmsh (#362625).
1937
1938 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
1939
1940         * tests/check/Makefile.am:
1941         * tests/check/elements/.cvsignore:
1942         * tests/check/elements/subparse.c: (buffer_from_static_string),
1943         (setup_subparse), (teardown_subparse), (test_srt_do_test),
1944         (GST_START_TEST), (subparse_suite):
1945           Add very simple unit test for subparse.
1946
1947 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
1948
1949         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
1950         (parse_subrip):
1951           Strip trailing newlines from subtitle text output.
1952
1953 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
1954
1955         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1956         (gst_sub_parse_change_state):
1957           Fix memleak; clear subparse->textbuf n state change function.
1958
1959 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
1960
1961         * gst/subparse/gstsubparse.c:
1962         (gst_sub_parse_data_format_autodetect):
1963           Don't require subrip (.srt) files to start with a chunk number of 1.
1964
1965 2006-10-18  Wim Taymans  <wim@fluendo.com>
1966
1967         * gst-libs/gst/audio/gstbaseaudiosink.c:
1968         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
1969         * gst-libs/gst/audio/gstbaseaudiosink.h:
1970         Extract rate from the NEWSEGMENT event.
1971         Use commit_full to also take rate adjustment into account when writing
1972         samples to the ringbuffer.
1973         
1974         * gst-libs/gst/audio/gstringbuffer.c:
1975         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
1976         (gst_ring_buffer_read):
1977         * gst-libs/gst/audio/gstringbuffer.h:
1978         Added _commit_full() to also take rate into account.
1979         Use simple interpolation algorithm to resample audio.
1980         API: gst_ring_buffer_commit_full()
1981
1982         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
1983         * tests/examples/seek/seek.c: (segment_done):
1984         Don't try to seek with 0.0 rate, just pause instead.
1985         Remove bogus debug line.
1986
1987 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
1988
1989         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
1990         (setup_source):
1991           Catch async errors when starting up the subtitle bin, so we can
1992           stop waiting and continue with the main film instead of hanging
1993           forever. Fixes #339366.
1994
1995         * tests/check/elements/playbin.c: (playbin_suite):
1996           Enable unit test for the above.
1997
1998 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
1999
2000         * tests/check/Makefile.am:
2001         * tests/check/elements/.cvsignore:
2002         * tests/check/elements/playbin.c: (GST_START_TEST),
2003         (gst_red_video_src_uri_get_type),
2004         (gst_red_video_src_uri_get_protocols),
2005         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2006         (gst_red_video_src_uri_handler_init),
2007         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2008         (gst_red_video_src_create), (gst_red_video_src_class_init),
2009         (gst_red_video_src_init), (plugin_init), (playbin_suite):
2010           Some small and basic unit tests for playbin; not very useful yet,
2011           but at least a start.
2012
2013 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2014
2015         * gst/playback/gstplaybin.c: (setup_sinks):
2016           The old pad activation spiel.
2017
2018 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2019
2020         * gst/playback/gstplaybasebin.c: (setup_source):
2021           Don't hang forever if the subbin already fails to start up in 
2022           the state change to PAUSED (#339366).
2023
2024 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
2025
2026         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2027         (gst_tuner_set_channel), (gst_tuner_get_channel),
2028         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2029         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2030         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2031         (gst_tuner_find_channel_by_name):
2032           Fix some function guards, add some more function guards.
2033
2034 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
2035
2036         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2037         (remove_element_chain):
2038         Don't return a pad from get_our_ghost_pad unless it is actually the
2039         one we want.
2040         Change a cast in remove_element_chain slightly.
2041
2042 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2043
2044         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2045         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2046         Segment seeking needs to use the rate and set stop to -1.
2047
2048 2006-10-13  Wim Taymans  <wim@fluendo.com>
2049
2050         * gst-libs/gst/audio/gstbaseaudiosink.c:
2051         (gst_base_audio_sink_setcaps):
2052         Don't crash when ringbuffer is not yet created.
2053         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2054         Fixes #361634.
2055
2056         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2057         * gst/playback/gststreamselector.c:
2058         (gst_stream_selector_request_new_pad):
2059         Activate pads befre adding them to running elements.
2060
2061 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2062
2063         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2064         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2065         updater when we start grabing the slider. Don't wait for the
2066         pipeline to be PAUSED.
2067
2068 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
2069
2070         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2071         (gst_mixer_set_volume), (gst_mixer_get_volume),
2072         (gst_mixer_set_mute), (gst_mixer_set_option),
2073         (gst_mixer_get_option), (gst_mixer_mute_toggled),
2074         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2075         (gst_mixer_option_changed):
2076           Guard mixer interface functions against bogus arguments.
2077
2078 2006-10-12  Julien MOUTTE  <julien@moutte.net>
2079
2080         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2081         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2082         (msg_state_changed), (main): Use state-changed messages to trigger
2083         start/stop of scale update timer. Indeed the scale slider was
2084         jumping here and there because the update timer was activated 
2085         before seek completed. This fixes instant applying of rate changes
2086         by pressing the spinbutton like a crazy man !
2087
2088 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
2089
2090         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
2091
2092         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2093         (gst_basertppayload_finalize):
2094           Fix two small memory leaks (#361456).
2095
2096 2006-10-10  Julien MOUTTE  <julien@moutte.net>
2097
2098         * tests/examples/seek/seek.c: (do_seek),
2099         (rate_spinbutton_changed_cb): When changing spinbutton we try
2100         to change the rate on the fly.
2101
2102 2006-10-10  Wim Taymans  <wim@fluendo.com>
2103
2104         * gst-libs/gst/riff/riff-ids.h:
2105         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2106         (gst_riff_create_audio_template_caps):
2107         Add WMS caps.
2108
2109 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2110
2111         Patch by: Josep Torre Valles <josep@fluendo.com>
2112
2113         * ext/gnomevfs/gstgnomevfssink.c:
2114         * ext/gnomevfs/gstgnomevfssrc.c:
2115         Fix URI interface implementation return type.
2116         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2117         Fix what looks like a copy/paste issue when assigning values.
2118         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2119         (gst_audio_filter_template_get_type):
2120         Cast to prevent Forte warnings.
2121         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2122         Fix URI interface implementation return type.
2123         gst_pad_query_position requires a signed integer pointer as
2124         3rd parameter, GstClockTime is unsigned.
2125         * gst/audioconvert/audioconvert.c:
2126         Fix integer overflow when treated as signed.
2127         * gst/audioresample/resample.c: (resample_add_input_data):
2128         Cast to prevent warnings on Forte.
2129         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2130         Fix integer overflow when treated as signed.
2131         * gst/ffmpegcolorspace/imgconvert_template.h:
2132         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2133         * gst/playback/gstdecodebin.c: (queue_filled_cb),
2134         (cleanup_decodebin):
2135         Who initialises a guint to -1!
2136         Cast function pointers to prevent warnings on Forte.
2137         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2138         (queue_threshold_reached):
2139         Cast function pointers correctly to prevent warnings on Forte.
2140         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2141         Cast function pointers correctly to prevent warnings on Forte.
2142         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2143         Obvious change to unsigned, 0xEF > max signed char.
2144         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2145         GstClockTime is unsigned, initialise correctly.
2146         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2147         Cast so pointer arithemetic doesn't cause warnings on Forte.
2148         * gst/videorate/gstvideorate.c:
2149         Use correct return value.
2150         * tests/examples/seek/scrubby.c:
2151         GstClockTime is unsigned, initialise correctly.
2152
2153 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
2154
2155         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
2156
2157         * gst/typefind/gsttypefindfunctions.c:
2158           Recognise XML files and XML-like files shorter than 256 bytes as
2159           well (fixes #359237).
2160
2161 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
2162
2163         Patch by: Renato Filho <renato.filho@indt.org.br>
2164         
2165         * gst/typefind/gsttypefindfunctions.c:
2166         Added typefind functions to video/x-nuv media.
2167         
2168 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
2169
2170         * gst-libs/gst/interfaces/xoverlay.c:
2171         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2172           Some more guards against invalid input.
2173
2174 2006-10-07  Julien MOUTTE  <julien@moutte.net>
2175
2176         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
2177         Useless goto.
2178         * tests/examples/seek/seek.c: (do_seek),
2179         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2180         seek example to experiment with rates != 1.0 (reverse playback !)
2181
2182 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
2183
2184         * gst-libs/gst/interfaces/xoverlay.c:
2185           Unref message in doc-example (spotted by Robert McQueen)
2186
2187 2006-10-06  Wim Taymans  <wim@fluendo.com>
2188
2189         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2190         (mpeg1_parse_header), (mpeg1_sys_type_find):
2191         printf fix.
2192
2193 2006-10-06  Wim Taymans  <wim@fluendo.com>
2194
2195         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2196         (close_pad_link):
2197         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2198         Activate dynamic pads before adding them to the element.
2199
2200 2006-10-06  Michael Smith  <msmith@fluendo.com>
2201
2202         * gst-libs/gst/floatcast/floatcast.h:
2203           Fix obviously-bogus macros; use the correct types.
2204
2205 2006-10-06  Wim Taymans  <wim@fluendo.com>
2206
2207         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2208         (gst_base_rtp_depayload_change_state):
2209         Also call parent state change function to activate pads.
2210
2211         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2212         (mpeg1_parse_header), (mpeg1_sys_type_find):
2213         Add some more debug info in mpeg typefinding.
2214
2215 2006-10-06  Michael Smith  <msmith@fluendo.com>
2216
2217         * ext/theora/theoradec.c: (theora_dec_chain):
2218           Zero byte theora packets are valid and well-defined; don't warn on
2219           them.
2220
2221 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2222
2223         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2224         (gst_multi_fd_sink_get_stats), (find_limits),
2225         (gst_multi_fd_sink_queue_buffer):
2226           API: add dropped_buffers to the get-stats GValueArray
2227
2228 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
2229
2230         * ext/alsa/gstalsadeviceprobe.c:
2231         (gst_alsa_device_property_probe_get_values):
2232         * ext/alsa/gstalsasink.c: (set_hwparams):
2233         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2234         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2235         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2236         (gst_ogg_mux_process_best_pad):
2237         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2238         (gst_ogg_parse_chain):
2239         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2240         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2241         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2242         (gst_vorbis_enc_buffer_check_discontinuous):
2243         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2244         * gst-libs/gst/audio/gstbaseaudiosink.c:
2245         (gst_base_audio_sink_render):
2246         * gst-libs/gst/cdda/gstcddabasesrc.c:
2247         (gst_cdda_base_src_handle_track_seek):
2248         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2249         (gst_base_rtp_depayload_push_full):
2250         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2251         * gst/audioresample/resample.c: (resample_input_pushthrough):
2252         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2253         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2254         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2255         (wavpack_type_find):
2256         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2257         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2258         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2259         * tests/check/elements/volume.c: (GST_START_TEST):
2260           Printf format fixes.
2261
2262 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
2263
2264         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2265           Fix a simple mistake (see the docs)
2266           Fixes #359580
2267
2268 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2269
2270         * docs/plugins/Makefile.am:
2271         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2272         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2273         * docs/plugins/gst-plugins-base-plugins.args:
2274         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2275         * docs/plugins/inspect/plugin-adder.xml:
2276         * docs/plugins/inspect/plugin-alsa.xml:
2277         * docs/plugins/inspect/plugin-audioconvert.xml:
2278         * docs/plugins/inspect/plugin-audiorate.xml:
2279         * docs/plugins/inspect/plugin-audioresample.xml:
2280         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2281         * docs/plugins/inspect/plugin-cdparanoia.xml:
2282         * docs/plugins/inspect/plugin-decodebin.xml:
2283         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2284         * docs/plugins/inspect/plugin-gdp.xml:
2285         * docs/plugins/inspect/plugin-gnomevfs.xml:
2286         * docs/plugins/inspect/plugin-libvisual.xml:
2287         * docs/plugins/inspect/plugin-ogg.xml:
2288         * docs/plugins/inspect/plugin-pango.xml:
2289         * docs/plugins/inspect/plugin-playbin.xml:
2290         * docs/plugins/inspect/plugin-subparse.xml:
2291         * docs/plugins/inspect/plugin-tcp.xml:
2292         * docs/plugins/inspect/plugin-theora.xml:
2293         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2294         * docs/plugins/inspect/plugin-video4linux.xml:
2295         * docs/plugins/inspect/plugin-videorate.xml:
2296         * docs/plugins/inspect/plugin-videoscale.xml:
2297         * docs/plugins/inspect/plugin-videotestsrc.xml:
2298         * docs/plugins/inspect/plugin-volume.xml:
2299         * docs/plugins/inspect/plugin-vorbis.xml:
2300         * docs/plugins/inspect/plugin-ximagesink.xml:
2301         * docs/plugins/inspect/plugin-xvimagesink.xml:
2302           Add vorbistag element to docs; update version numbers to 0.10.10.1.
2303
2304 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2305
2306         Patch by: James "Doc" Livingston <doclivingston at gmail com>
2307
2308         * ext/vorbis/Makefile.am:
2309         * ext/vorbis/vorbis.c: (plugin_init):
2310         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2311         (vorbis_parse_parse_packet), (vorbis_parse_chain):
2312         * ext/vorbis/vorbisparse.h:
2313         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2314         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2315         (gst_vorbis_tag_parse_packet):
2316         * ext/vorbis/vorbistag.h:
2317           Add new vorbistag element which derives from vorbisparse
2318           and is essentially the same as well, only that it implements
2319           the GstTagSetter interface and can modify the stream's
2320           vorbiscomment on the fly (#335635).
2321
2322         * tests/check/Makefile.am:
2323         * tests/check/elements/.cvsignore:
2324         * tests/check/elements/vorbistag.c: (setup_vorbistag),
2325         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2326         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2327         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2328           Add unit test for new vorbistag element.
2329
2330 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2331
2332         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2333         (vorbis_parse_push_headers), (vorbis_parse_chain):
2334           Set BOS flag in packet structure to fix 'jump depends
2335           on unitialized value' errors in valgrind; various minor
2336           clean-ups.
2337
2338 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
2339
2340         * gst/playback/gstdecodebin.c: (close_pad_link):
2341         Fix typo in a debug statement.
2342
2343         * gst/playback/gstplaybasebin.c: (probe_triggered),
2344         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2345         (gen_source_element), (source_new_pad), (analyse_source),
2346         (setup_source):
2347         When handling no_more_pads in new_decoded_pad, make sure to treat
2348         subtitle pads correctly. Fixes playback with subtitle files.
2349
2350         Move a recurring message to LOG level.
2351
2352         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2353         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2354         which ends up as -1 when cast to an int. Make the logic handle the
2355         max value as an unsigned mask and only change the colorkey when it's
2356         a value we recognise.
2357
2358 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2359
2360         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2361         Removed empty * between paragraphs
2362
2363 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2364
2365         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2366         * gst-libs/gst/rtp/README:
2367         Moved some documentation into .c file
2368
2369 2006-09-29  Wim Taymans  <wim@fluendo.com>
2370
2371         * gst/playback/gstdecodebin.c: (no_more_pads):
2372         Fix compilation.
2373
2374 2006-09-29  Wim Taymans  <wim@fluendo.com>
2375
2376         * gst/playback/gstdecodebin.c: (new_caps):
2377         Remove g_print
2378
2379         * gst/playback/gstplaybin.c:
2380         Add some docs.
2381
2382 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2383
2384         * tests/check/Makefile.am:
2385           Re-enable cddabasesrc test to see if it works again
2386           now.
2387
2388 2006-09-29  Wim Taymans  <wim@fluendo.com>
2389
2390         * gst/playback/gstplaybasebin.c: (setup_subtitle),
2391         (gen_source_element):
2392         Handle invalid URIs a bit more gracefully.
2393
2394 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2395
2396         * tests/check/pipelines/oggmux.c:
2397           Remove obsolete comment.
2398
2399 2006-09-29  Michael Smith  <msmith@fluendo.com>
2400
2401         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2402         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2403         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2404         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2405         (gst_ogg_mux_collected):
2406           Commit patch from James "Doc" Livingston, adds proper EOS handling
2407           in oggmux. GStreamer can, for the first time ever, create a valid
2408           Ogg file! Yay!
2409
2410         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
2411         (oggmux_suite):
2412           Reenable tests now that they pass.
2413
2414 2006-09-29  Wim Taymans  <wim@fluendo.com>
2415
2416         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2417         Stop reading commands when EOF (we read 0) as well.
2418
2419 2006-09-28  Wim Taymans  <wim@fluendo.com>
2420
2421         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
2422         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
2423         (find_dynamic), (unlinked), (close_link):
2424         Implement delayed caps linking needed for element with a lot of
2425         different caps on the src pads that get fixed at runtime.
2426         Improve management of dynamic elements.
2427
2428         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
2429         (group_destroy), (group_commit), (check_queue), (queue_overrun),
2430         (gen_preroll_element), (remove_groups), (unknown_type),
2431         (add_element_stream), (no_more_pads_full), (no_more_pads),
2432         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
2433         (new_decoded_pad), (setup_subtitle), (array_has_value),
2434         (gen_source_element), (source_new_pad), (has_all_raw_caps),
2435         (analyse_source), (remove_decoders), (make_decoder),
2436         (remove_source), (setup_source), (finish_source), (prepare_output),
2437         (gst_play_base_bin_change_state):
2438         * gst/playback/gstplaybasebin.h:
2439         Use more _CAST instead of full type checking casts.
2440         Small cleanups, plug some leaks.
2441         Handle dynamic sources.
2442         Add some helper functions to create lists of strings used for
2443         blacklisting and other stuff.
2444         Refactor some code dealing with analysing the source.
2445         Re-enable sources without pads (like cd:// or other selfcontained
2446         elements).
2447
2448 2006-09-28  Wim Taymans  <wim@fluendo.com>
2449
2450         * gst-libs/gst/audio/gstbaseaudiosink.c:
2451         (gst_base_audio_sink_render):
2452         When we have a timestamp, we can still perform clipping.
2453         When we have no clock, we must play the sample ASAP.
2454
2455 2006-09-28  Wim Taymans  <wim@fluendo.com>
2456
2457         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2458         Set caps on outgoing buffers.
2459
2460         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
2461         (gst_video_rate_event), (gst_video_rate_chain):
2462         * gst/videorate/gstvideorate.h:
2463         Fix videorate some more. Fixes #357977
2464
2465 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
2466
2467         * tests/check/elements/adder.c: (adder_suite):
2468           Don't set timeout to 6 seconds when we're running
2469           in valgrind ... (and how is 6 seconds longer than
2470           the default anyway?)
2471
2472 2006-09-28  Wim Taymans  <wim@fluendo.com>
2473
2474         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2475         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
2476         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
2477         Keep sink and src segment to keep track of time and support more
2478         input formats.
2479         Fix bogus next_offset and run_time calculation, don't understand how
2480         this could have worked before. Fixes #357976.
2481         Remove some unneeded vars.
2482
2483 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
2484
2485         * gst/playback/gstplaybin.c: (remove_sinks):
2486           Only remove visualisation from visbin if there is a visbin (or:
2487           don't throw warnings when closing totem without playing a file).
2488
2489 2006-09-27  Wim Taymans  <wim@fluendo.com>
2490
2491         * gst-libs/gst/audio/gstbaseaudiosink.c:
2492         (gst_base_audio_sink_render):
2493         Add some more info in a WARNING.
2494
2495         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2496         (gst_base_audio_src_create):
2497         Handle PAUSE in create function, use new -core addition to
2498         wait for playing. Fixes pausing and resuming capture from an
2499         audiosrc.
2500
2501         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
2502         (gst_ring_buffer_read):
2503         Constify some more.
2504         Caller supports interrupted reads now.
2505
2506 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2507
2508         * tests/check/Makefile.am:
2509           Another attempt to make the gen64 buildbot happy.
2510
2511 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
2512
2513         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
2514
2515         * ext/libvisual/visual.c: (gst_visual_clear_actors),
2516         (gst_visual_chain), (gst_visual_change_state):
2517           Libvisual plugin was not passing audio data to libvisual 0.4.0 
2518           correctly. Fixes #357800
2519
2520 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2521
2522         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
2523           Add timeout to _get_state() so we see which pipeline it is
2524           that causes trouble on the gen64 build bot.
2525
2526 2006-09-27  Wim Taymans  <wim@fluendo.com>
2527
2528         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2529         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
2530         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
2531         (gst_base_rtp_depayload_set_gst_timestamp):
2532         the source pad always uses fixed caps.
2533
2534 2006-09-27  Wim Taymans  <wim@fluendo.com>
2535
2536         * docs/libs/gst-plugins-base-libs-docs.sgml:
2537         * docs/libs/gst-plugins-base-libs-sections.txt:
2538         * gst-libs/gst/audio/gstaudioclock.c:
2539         * gst-libs/gst/audio/gstaudioclock.h:
2540         * gst-libs/gst/audio/gstaudiosink.c:
2541         * gst-libs/gst/audio/gstaudiosink.h:
2542         * gst-libs/gst/audio/gstaudiosrc.c:
2543         * gst-libs/gst/audio/gstbaseaudiosink.c:
2544         (gst_base_audio_sink_render):
2545         * gst-libs/gst/audio/gstbaseaudiosink.h:
2546         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
2547         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2548         * gst-libs/gst/audio/gstringbuffer.h:
2549         Added docs for the audio libs.
2550
2551 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2552
2553         * tests/check/Makefile.am:
2554           Temporarily disable test that fails on the bots for unknown reasons.
2555
2556 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2557
2558         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2559         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2560         Moved AudioCodecType into priv
2561         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
2562
2563 2006-09-25  Wim Taymans  <wim@fluendo.com>
2564
2565         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2566         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
2567         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
2568         (new_pad):
2569         Cleanups and small leak fixes.
2570         Added Depayloaders to valid list of autopluggable elements.
2571
2572 2006-09-25  Wim Taymans  <wim@fluendo.com>
2573
2574         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2575         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
2576         (gen_video_element), (gen_text_element), (gen_audio_element),
2577         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
2578         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
2579         Detect NO_PREROLL state change returns and disable clock distribution to
2580         the sinks so that sync is disabled.
2581         Avoid some type checking and do simple casts instead.
2582         Small cleanups, fix some FIXMEs.
2583         Be more robust when linking user specified elements, catch an report
2584         errors. Fixes #357404.
2585         Fix some leaks in the error paths.
2586
2587 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
2588
2589         * ChangeLog:
2590           ChangeLog surgery for missing bug-number
2591
2592 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2593
2594         Patch by: Peter Kjellerstedt  <pkj at axis com>
2595
2596         * gst/playback/test.c:
2597           Fix compilation with uClibc and -Werror (#357591).
2598
2599 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2600
2601         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
2602           Parse dates that are followed by a time as well (#357532).
2603
2604         * tests/check/libs/tag.c: (test_vorbis_tags):
2605           Add unit test for this.
2606
2607 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2608
2609         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
2610         (gst_audio_convert_transform_caps):
2611         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
2612         * gst/videotestsrc/videotestsrc.h:
2613           A few array const-ifications.
2614
2615 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2616
2617         * tests/check/Makefile.am:
2618           See if this makes the build bots happy.
2619
2620         * tests/check/libs/cddabasesrc.c:
2621           UTF8-ise my name.
2622
2623 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2624
2625         Patch by: Young-Ho Cha <ganadist at chollian dot net>
2626
2627         * gst/subparse/samiparse.c: (handle_start_font),
2628         (fix_invalid_entities):
2629           More case-insensitivity for certain tags; recognise entities with
2630           decimal codes as special entities as well (#357330).
2631
2632 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2633
2634         * gst-libs/gst/Makefile.am:
2635           Need to build tag directory before cdda.
2636
2637 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2638
2639         * docs/libs/gst-plugins-base-libs-sections.txt:
2640         * gst-libs/gst/cdda/Makefile.am:
2641         * gst-libs/gst/cdda/gstcddabasesrc.c:
2642         (gst_cdda_base_src_base_init):
2643         * gst-libs/gst/cdda/gstcddabasesrc.h:
2644         * gst-libs/gst/tag/tag.h:
2645         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
2646         (gst_tag_register_musicbrainz_tags):
2647           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
2648           depend on libgsttag. This is required so we can extract/read tags like
2649           DISCID without depending on libgstcddabasesrc (which used to register
2650           them).
2651
2652         * gst-libs/gst/tag/gstvorbistag.c:
2653           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
2654           tags (also see #347848).
2655
2656         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
2657           Log vorbis comments we are actually writing. Const-ify array.
2658
2659 2006-09-23  Wim Taymans  <wim@fluendo.com>
2660
2661         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
2662         Improve buffering a bit by avoiding a deadlock because we cannot assume
2663         the underrun is always called.
2664
2665 2006-09-23  Wim Taymans  <wim@fluendo.com>
2666
2667         Patch by: Young-Ho Cha <ganadist at chollian dot net>
2668
2669         * gst-libs/gst/riff/riff-ids.h:
2670         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2671         (gst_riff_create_audio_template_caps):
2672         Added MPEG-4 AAC and id and caps. Fixes #357289
2673         Added WMA9 Lossless id.
2674
2675 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
2676
2677         * ext/gnomevfs/gstgnomevfssrc.c:
2678           Fix misleading docs addition.
2679
2680         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
2681           Get rid of compiler warning the right way.
2682
2683 2006-09-22  Wim Taymans  <wim@fluendo.com>
2684
2685         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2686         (gst_base_rtp_depayload_finalize),
2687         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
2688         (gst_base_rtp_depayload_push_full),
2689         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
2690         (gst_base_rtp_depayload_process),
2691         (gst_base_rtp_depayload_set_gst_timestamp),
2692         (gst_base_rtp_depayload_queue_release):
2693         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2694         Small cleanups.
2695         Fix some leaks.
2696         Refactored the process method and added methods to push from the process
2697         vmethod.
2698         Use _scale functions.
2699         API: gst_base_rtp_depayload_push_ts
2700         API: gst_base_rtp_depayload_push
2701
2702         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2703         timestamps are uint.
2704
2705 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
2706
2707         * gst-libs/gst/interfaces/xoverlay.c:
2708           Remove unused statement from doc example.
2709
2710 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
2711
2712         * gst-libs/gst/interfaces/videoorientation.c:
2713         (gst_video_orientation_iface_init),
2714         (gst_video_orientation_get_hflip),
2715         (gst_video_orientation_get_vflip),
2716         (gst_video_orientation_get_hcenter),
2717         (gst_video_orientation_get_vcenter),
2718         (gst_video_orientation_set_hflip),
2719         (gst_video_orientation_set_vflip),
2720         (gst_video_orientation_set_hcenter),
2721         (gst_video_orientation_set_vcenter):
2722           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
2723           in ChangeLog)
2724
2725 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
2726
2727         * tests/check/Makefile.am:
2728         * tests/check/elements/.cvsignore:
2729         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
2730         (create_rgb_conversions), (rgb_conversion_free),
2731         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
2732         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
2733           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
2734           but disable for now since it doesn't pass (something wrong with
2735           RGBA somewhere).
2736
2737 2006-09-21  Wim Taymans  <wim@fluendo.com>
2738
2739         * gst/playback/gstplaybasebin.c: (group_commit),
2740         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
2741         (queue_out_of_data), (gen_preroll_element),
2742         (preroll_remove_overrun), (probe_triggered):
2743         Refactor handling of overrun detection.
2744         Separate handling of group completion and deadlock detection when doing
2745         network buffering. This should fix some deadlocks that were not detected
2746         because the group was completed.
2747         Add more comments, improve debugging.
2748
2749 2006-09-21  Wim Taymans  <wim@fluendo.com>
2750
2751         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2752         * tests/check/libs/audio.c:
2753         Some more compilation fixes.
2754
2755 2006-09-21  Wim Taymans  <wim@fluendo.com>
2756
2757         * gst-libs/gst/audio/gstringbuffer.c:
2758         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
2759         (gst_ring_buffer_read):
2760         Early morning compilation fix.
2761
2762 2006-09-20  Wim Taymans  <wim@fluendo.com>
2763
2764         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2765         * tests/check/elements/multifdsink.c: (GST_START_TEST):
2766         * tests/check/elements/videorate.c: (GST_START_TEST):
2767         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2768         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
2769         Fix some warnings.
2770
2771 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
2772
2773         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2774         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
2775         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
2776           Handcrafted merge to help CVS understanding what I changed and what
2777           not.
2778
2779 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
2780
2781         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
2782         (gst_xvimagesink_get_times):
2783           change colorkey behaviour back according to #354773 comment 6/7
2784
2785 2006-09-19  Michael Smith  <msmith@fluendo.com>
2786
2787         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
2788         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
2789         (gst_multi_fd_sink_recover_client),
2790         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
2791         (gst_multi_fd_sink_get_property):
2792         * gst/tcp/gstmultifdsink.h:
2793           Implement stubbed out properties unit-type, units-soft-max,
2794           units-max, to allow specifying maximum sizes in units other than
2795           buffers.
2796           Fixes #355935
2797
2798 2006-09-19  Wim Taymans  <wim@fluendo.com>
2799
2800         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2801         (gst_riff_create_audio_template_caps):
2802         Reorder the audio formats a bit for clarity.
2803         Detect and create caps for MSGSM and MSN (WAV49).
2804         Fixes #356596.
2805
2806         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2807         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
2808         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
2809         Small cleanups, move error handling out of normal flow for clarity.
2810
2811 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
2812
2813         * docs/libs/gst-plugins-base-libs-docs.sgml:
2814         * docs/libs/gst-plugins-base-libs.types:
2815         * gst-libs/gst/interfaces/Makefile.am:
2816         * gst-libs/gst/interfaces/videoorientation.c:
2817         (gst_video_orientation_get_type),
2818         (gst_video_orientation_iface_init),
2819         (gst_video_orientation_get_hflip),
2820         (gst_video_orientation_get_vflip),
2821         (gst_video_orientation_get_hcenter),
2822         (gst_video_orientation_get_vcenter),
2823         (gst_video_orientation_set_hflip),
2824         (gst_video_orientation_set_vflip),
2825         (gst_video_orientation_set_hcenter),
2826         (gst_video_orientation_set_vcenter):
2827         * gst-libs/gst/interfaces/videoorientation.h:
2828           API: Add new interface to control video orientation (fixes #354908)
2829
2830 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
2831
2832         * gst/videotestsrc/gstvideotestsrc.c:
2833           Use G_UNLIKELY in _create and log one more detail.
2834           
2835         (gst_video_test_src_get_times), (gst_video_test_src_create):
2836         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
2837           Use gst_util_uint64_scale_int in _get_times().
2838
2839 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
2840
2841         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
2842           Give better warning message (add object and detail).
2843
2844 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
2845
2846         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
2847         (gst_xvimagesink_get_times):
2848           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
2849           #354773), use gst_util_uint64_scale_int in _get_times()
2850
2851 2006-09-18  Michael Smith  <msmith@fluendo.com>
2852
2853         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
2854           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
2855           always true, leading to dropping all timestamps.
2856
2857 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
2858
2859         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
2860         (gst_visual_chain), (gst_visual_change_state):
2861           update to work also with libvisual 0.4 API, fix double unref (#355914)
2862           
2863         * tools/gst-launch-ext.1.in:
2864         * tools/gst-visualise.1.in:
2865           remove references to old man-pages
2866
2867         * tests/examples/seek/seek.c: (main):
2868           add real meadi-buttons, add tool-tips for the seek-options, arrange
2869           seek options in a table
2870
2871 2006-09-18  Michael Smith  <msmith@fluendo.com>
2872
2873         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
2874         (gst_ogg_mux_push_buffer):
2875           Don't generate out-of-order timestamps from oggmux, instead clamp
2876           output timestamps to be >= the previously output ts.
2877           Fixes #355595
2878
2879 2006-09-18  Michael Smith  <msmith@fluendo.com>
2880
2881         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
2882         (gst_multi_fd_sink_class_init):
2883           Updates, fixes, and typo corrections for multifdsink. No functional
2884           changes.
2885
2886 2006-09-17  Michael Smith  <msmith@fluendo.com>
2887
2888         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
2889           Don't crash on truncated files - check that we got an 8 byte buffer
2890           before trying to memcmp it.
2891
2892 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
2893
2894         * gst/playback/gstplaybasebin.c: (get_active_source):
2895           Make stream-switching appear instant to the application
2896           (ie. make sure that a g_object_get on 'current-foo' returns
2897           the stream previously set with g_object_set(). Totem needs
2898           this to update stream-related meta-info (like audio-codec)
2899           correctly when switching streams.
2900
2901 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
2902
2903         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
2904         (gst_alsa_mixer_ensure_track_list):
2905           Try harder to guess which mixer track is the master mixer
2906           track (instead of just taking the first one that has a pvolume).
2907           Fixes #342228.
2908
2909 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
2910
2911         reviewed by: <delete if not using a buddy>
2912
2913         * gst-libs/gst/audio/audio.h:
2914         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
2915
2916 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
2917
2918         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
2919         (gst_audio_convert_transform_caps):
2920           Get structure-name just once.
2921
2922 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
2923
2924         * tests/check/elements/audioresample.c: (GST_START_TEST):
2925         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
2926         * tests/check/elements/volume.c: (GST_START_TEST):
2927         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
2928         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
2929         (test_pipeline), (GST_START_TEST):
2930         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2931         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2932           Fix big batch of compiler warnings.
2933
2934 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
2935
2936         * ext/gnomevfs/gstgnomevfssrc.c:
2937           Add docs about icydemux usage in connection with gnomevfssrc
2938
2939         * ext/libvisual/visual.c:
2940         * ext/ogg/gstoggaviparse.c:
2941         * ext/ogg/gstoggdemux.c:
2942         * ext/ogg/gstoggmux.c:
2943         * ext/ogg/gstoggparse.c:
2944         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2945         * gst-libs/gst/audio/gstaudiosink.c:
2946         * gst-libs/gst/audio/gstaudiosrc.c:
2947         * gst/audiorate/gstaudiorate.c:
2948           More G_OBJECT macro fixing.
2949
2950         * gst/audiotestsrc/gstaudiotestsrc.h:
2951           Fix wrong info in header due to copy & paste
2952
2953 2006-09-15  Wim Taymans  <wim@fluendo.com>
2954
2955         * gst-libs/gst/audio/gstbaseaudiosink.c:
2956         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
2957         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2958         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
2959         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
2960         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2961         Do the delay calculation in the source/sink base classes as this is
2962         specific for the capture/playback mode.
2963         Try to fixate a bit better, like round depth up to a multiple of 8
2964         bigger than width.
2965         Handle underruns correctly by marking DISCONT on buffers and adjusting
2966         timestamps to handle the gap.
2967         Set offset/offset_end correctly on buffers.
2968
2969         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
2970         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
2971         (gst_ring_buffer_read):
2972         Remove resync and underrun recovery from the ringbuffer.
2973         Fix ringbuffer read code on under/overrun.
2974
2975 2006-09-15  Wim Taymans  <wim@fluendo.com>
2976
2977         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
2978         (gst_play_base_bin_init), (fill_buffer), (check_queue),
2979         (queue_threshold_reached), (gst_play_base_bin_set_property),
2980         (gst_play_base_bin_get_property):
2981         * gst/playback/gstplaybasebin.h:
2982         Don't use a 0 low watermark when buffering, it is catching starvation
2983         way too late. Instead, use a 3 second queue with 30 and 95
2984         percent low/high watermarks. 
2985         Added queue-min-threshold property to configure low watermark.
2986         Use new _buffering message API.
2987         Make queue_threshold variable big enough to store a uint64 time value.
2988         API: playbin::queue-min-threshold property.
2989
2990 2006-09-15  Wim Taymans  <wim@fluendo.com>
2991
2992         * configure.ac:
2993         We require 0.10.10.1 now because of _wait_preroll().
2994
2995         * gst-libs/gst/audio/gstbaseaudiosink.c:
2996         (gst_base_audio_sink_render):
2997         Use gst_base_sink_wait_preroll().
2998
2999 2006-09-15  Wim Taymans  <wim@fluendo.com>
3000
3001         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3002         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3003         Use DEBUG_OBJECT more.
3004
3005 === release 0.10.10 ===
3006
3007 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3008
3009         patch by: Michael Smith <msmith at fluendo dot com>
3010
3011         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3012         (gst_multi_fd_sink_client_queue_buffer),
3013         (gst_multi_fd_sink_new_client):
3014         * tests/check/elements/multifdsink.c: (GST_START_TEST),
3015         (multifdsink_suite):
3016           Fix implementation of sync-method 'next-keyframe'
3017           Closes #354594
3018
3019 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3020
3021         patch by: Wim Taymans <wim at fluendo dot com>
3022
3023         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3024         This patch removes the RANDOM flag that was incorrectly introduced with
3025         revision 1.91.  Fixes #354590
3026
3027 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
3028
3029         * tests/check/Makefile.am:
3030           Random variation in Makefile line to see if it makes the
3031           gen64-base-full bot any happier.
3032
3033 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3034
3035         * tests/check/pipelines/oggmux.c: (oggmux_suite):
3036           Disable test that fails at the moment (killed after timeout).
3037
3038 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3039
3040         Patch by: James Livingston  <doclivingston at gmail.com>
3041
3042         * tests/check/Makefile.am:
3043         * tests/check/pipelines/.cvsignore:
3044         * tests/check/pipelines/oggmux.c: (get_page_codec),
3045         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3046         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3047         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3048         (test_theora_vorbis), (oggmux_suite):
3049           Add simple unit test for oggmux from #337026 with checking for the
3050           EOS flags disabled for the time being.
3051
3052 2006-09-04  Wim Taymans  <wim@fluendo.com>
3053
3054         patch by: Alessandro Dessina <alessandro nnva org>
3055
3056         * ext/ogg/gstoggmux.c:
3057         Add cmml caps to oggmux. Fixes #353912
3058
3059 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3060
3061         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3062           Returning a return value often helps. In this case, we
3063           don't need the return value anyway, so just get rid of it.
3064           Should make build bots much happier.
3065
3066 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3067
3068         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3069         (paint_get_structure), (gst_video_test_src_get_size),
3070         (gst_video_test_src_smpte), (gst_video_test_src_snow),
3071         (gst_video_test_src_unicolor), (paint_setup_AYUV),
3072         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3073         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3074         * gst/videotestsrc/videotestsrc.h:
3075           Add support for AYUV and the various RGBA formats. Initialise
3076           fields of paintinfo structs allocated on the stack.
3077
3078         * tests/check/elements/videotestsrc.c: (right_shift_colour),
3079         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3080         (check_rgb_buf), (videotestsrc_suite):
3081           Add unit tests for videotestsrc's RGB output.
3082
3083 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3084
3085         * gst/videotestsrc/gstvideotestsrc.c:
3086         (gst_video_test_src_pattern_get_type),
3087         (gst_video_test_src_set_pattern):
3088         * gst/videotestsrc/gstvideotestsrc.h:
3089         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3090         (gst_video_test_src_black), (gst_video_test_src_white),
3091         (gst_video_test_src_red), (gst_video_test_src_green),
3092         (gst_video_test_src_blue):
3093         * gst/videotestsrc/videotestsrc.h:
3094           Add more uni-colour patterns ("white", "red", "green", and "blue").
3095
3096 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3097
3098         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3099           Fix stride for YVYU, should be word-aligned (#353658).
3100
3101 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
3102
3103         * gst/adder/gstadder.c: (gst_adder_src_event):
3104           Fix build.
3105
3106 2006-08-31  Edward Hervey  <edward@fluendo.com>
3107
3108         * gst/adder/gstadder.c: (forward_event_func),
3109         (gst_adder_src_event), (gst_adder_collected),
3110         (gst_adder_change_state):
3111         * gst/adder/gstadder.h:
3112         Remember the start position asked in the incoming seeks, so we can
3113         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3114         of assuming it will always be 0).
3115
3116 2006-08-31  Edward Hervey  <edward@fluendo.com>
3117
3118         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3119         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3120         (gst_ogg_demux_loop):
3121         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3122
3123 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
3124
3125         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3126         (gst_ffmpegcsp_get_unit_size):
3127           Return FALSE instead of returning a random false unit
3128           size when the format isn't known/supported (even if
3129           this shouldn't happen under normal circumstances).
3130
3131 2006-08-29  Wim Taymans  <wim@fluendo.com>
3132
3133         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
3134
3135         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3136         (gst_gnome_vfs_src_start):
3137         Try harder to get the size from a uri by using _info_uri() when
3138         _info_from_handle() does not give us enough info. 
3139         Also follow symlinks when getting the size.
3140         Partially Fixes #332864.
3141
3142 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3143
3144         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
3145
3146         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3147         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3148         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3149         (gst_alsa_mixer_set_record):
3150         * ext/alsa/gstalsamixertrack.c:
3151         (gst_alsa_mixer_track_update_alsa_capabilities),
3152         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3153         (gst_alsa_mixer_track_update):
3154         * ext/alsa/gstalsamixertrack.h:
3155           Improve and fix mixer track handling, in particular better handling
3156           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3157           separate track objects for tracks that have both capture and playback
3158           volume (and label them differently as well so they're not mistakenly
3159           assumed to be duplicates); classify mixer tracks that only affect
3160           the audible volume of something (rather than the capture volume)
3161           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3162           for capture tracks to correspond to alsa-pswitch alsa-cswitch
3163           (following the meaning documented in the mixer interface header
3164           file); add support for alsa's exclusive cswitch groups; update/sync
3165           state/flags better if mixer settings are changed by another
3166           application. Fixes #336075.
3167
3168 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3169
3170         * gst/playback/gstplaybin.c:
3171           Improve docs: add section about BUFFERING messages sent by playbin.
3172
3173 2006-08-29  Michael Smith  <msmith@fluendo.com>
3174
3175         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3176         (gst_vorbis_enc_buffer_check_discontinuous),
3177         (gst_vorbis_enc_chain):
3178           Ignore explicit DISCONT marked on buffers (which is often spurious,
3179           particularly when using multiple segments), in favour of solely
3180           using the timestamps/durations.
3181
3182 2006-08-29  Edward Hervey  <edward@fluendo.com>
3183
3184         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3185         Don't rely on incoming buffers offset anymore, since it is completely
3186         broken when using multiple segments.
3187         Instead convert the incoming buffers timestamp to running time, and
3188         then convert that value to the offsets.
3189         Also inform GstSegment of the last outputted stop position, which is
3190         needed if we received several segments with an unknown stop value.
3191
3192 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3193
3194         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3195           fix buffer unreffing on a header push failure
3196
3197 2006-08-28  Wim Taymans  <wim@fluendo.com>
3198
3199         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3200         (gst_audio_rate_chain):
3201         Make the metadata of the buffer writable before changing its
3202         flags.
3203
3204 2006-08-28  Wim Taymans  <wim@fluendo.com>
3205
3206         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3207         (gst_audio_rate_setcaps), (gst_audio_rate_init),
3208         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3209         (gst_audio_rate_chain), (gst_audio_rate_change_state):
3210         Fix audiorate some more.
3211         Reset and resync counters on flush and READY.
3212         Handle the DISCONT flag correctly.
3213         Use GstSegment to track position.
3214         Fail when not negotiated.
3215         Fixes #353234.
3216
3217 2006-08-25  Michael Smith  <msmith@fluendo.com>
3218
3219         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3220           Fix spelling.
3221           Remove accidently included debug line.
3222
3223 2006-08-25  Wim Taymans  <wim@fluendo.com>
3224
3225         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3226         Small cleanups.
3227         If a buffer is received with no caps, make the buffer metadata
3228         writable and set the caps, making sure that we don't screw up the
3229         refcounts.
3230
3231 2006-08-25  Michael Smith  <msmith@fluendo.com>
3232
3233         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3234         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3235           Fix memory leaks and misleading debug messages, add a couple of
3236           comments.
3237
3238         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3239         (gst_multi_fd_sink_render):
3240           Do not use gst_buffer_make_writable() in a basesink render method,
3241           as it may incorrectly unref the buffer. Instead, use convoluted
3242           dance to avoid copying the buffer except when we need to.
3243
3244 2006-08-25  Michael Smith  <msmith@fluendo.com>
3245
3246         * ext/vorbis/vorbisenc.c:
3247         (gst_vorbis_enc_buffer_check_discontinuous):
3248           Allow very small discontinuities in the timestamps. These we can't
3249           do anything useful with anyway (because vorbis's timestamps have
3250           only sample granularity), and are commonly produced by elements with
3251           minor bugs. Allow up to 1/2 a sample out.
3252           Fixes #351742.
3253
3254 2006-08-24  Wim Taymans  <wim@fluendo.com>
3255
3256         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3257         (play_scrub_toggle_cb), (main):
3258         Add a checkbox to enable play scrubbing. Makes it possible to disable
3259         normal scrubbing.
3260
3261 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
3262
3263         * tests/check/elements/.cvsignore:
3264           make buildbot happy
3265
3266 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3267
3268         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3269         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3270         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3271         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3272         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3273         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3274         (gst_ogm_text_parse_strip_trailing_zeroes),
3275         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3276         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3277           Refactor ogm parse, do better input checking, misc. clean-ups.
3278           Cache incoming events and push them once the source pad has
3279           been created. Don't pass unterminated strings to sscanf().
3280           Strip trailing zeroes from subtitle text output, since they
3281           are not valid UTF-8. Don't push vorbiscomment packets on
3282           the subtitle text pad. Output perfect streams if possible.
3283
3284 2006-08-23  Wim Taymans  <wim@fluendo.com>
3285
3286         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3287         Waits for tasks to settle down so that we clean up correctly for 
3288         valgrind.
3289
3290 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3291
3292         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3293           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3294           actually return return value in taglists_are_equal.
3295
3296 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3297
3298         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3299           Fix crash due to broken bitstream parsing on x86-64: can't make
3300           any assumptions about sizeof(struct) due to alignment/packing
3301           differences on different architectures. Fixes #351790.
3302
3303 2006-08-22  Wim Taymans  <wim@fluendo.com>
3304
3305         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3306         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3307         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3308         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3309         (gst_riff_parse_info):
3310         Protect public functions against bad input.
3311         Do some cleanups.
3312         Fix documentation.
3313
3314 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3315
3316         * gst-libs/gst/riff/riff-ids.h:
3317         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3318           Add voxware audio IDs (even if we can't play it) (#351795).
3319
3320 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3321
3322         * gst-libs/gst/riff/riff-media.c:
3323         (gst_riff_create_video_template_caps),
3324         (gst_riff_create_audio_template_caps),
3325         (gst_riff_create_iavs_template_caps):
3326           Const-ify some arrays and use G_N_ELEMENTS instead
3327           of wasting oodles of RAM on terminator bits.
3328
3329 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3330
3331         * gst-libs/gst/tag/gstvorbistag.c:
3332         (gst_tag_list_to_vorbiscomment_buffer):
3333         * tests/check/libs/tag.c: (GST_START_TEST):
3334           And the same for _to_vorbiscomment_buffer(): allow
3335           id_data_len == 0 for speex.
3336
3337 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3338
3339         * configure.ac:
3340         * docs/plugins/Makefile.am:
3341         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3342         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3343         * docs/plugins/inspect/plugin-gdp.xml:
3344         * gst/gdp/Makefile.am:
3345         * tests/check/Makefile.am:
3346           Move GDP plugin to -base from -bad.  Closes #347783.
3347
3348 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3349
3350         * gst-libs/gst/tag/gstvorbistag.c:
3351         (gst_tag_list_from_vorbiscomment_buffer):
3352           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3353           Also add some checks to make sure we don't memcmp() beyond the end of
3354           vorbiscomment buffer if the ID to check for is larger than the buffer.
3355
3356         * tests/check/libs/tag.c: (GST_START_TEST):
3357           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3358
3359 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3360
3361         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3362         (gst_vorbis_enc_set_metadata):
3363           Use vorbis comment utility functions from libgsttag
3364           instead of re-inventing the wheel (partially fixes #347091).
3365
3366 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
3367
3368         * tests/check/elements/audioconvert.c: (GST_START_TEST):
3369         Fix leaks. Wait for state transitions that might happen ASYNC, as well
3370         as some that won't.
3371
3372 2006-08-21  Wim Taymans  <wim@fluendo.com>
3373
3374         * docs/libs/Makefile.am:
3375         * docs/libs/gst-plugins-base-libs-sections.txt:
3376         * docs/libs/gst-plugins-base-libs.types:
3377         Don't try to GObject scan the netbuffer as it's not a GObject.
3378         Fixes #351308.
3379
3380         * gst-libs/gst/netbuffer/gstnetbuffer.c:
3381         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3382         Document GstNetBuffer.
3383
3384 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
3385
3386         * tests/check/elements/audioconvert.c: (GST_START_TEST),
3387         (audioconvert_suite):
3388           Add testcase for caps-size-explosion
3389
3390 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
3391
3392         * gst/audioconvert/gstaudioconvert.c:
3393         (gst_audio_convert_get_unit_size), (set_structure_widths):
3394           Lower debug, use g_assert in _get_unit_size
3395
3396         * gst/audioresample/gstaudioresample.c:
3397         (audioresample_get_unit_size):
3398         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3399         (gst_ffmpegcsp_get_unit_size):
3400         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3401           use g_assert in _get_unit_size
3402
3403 2006-08-18  Wim Taymans  <wim@fluendo.com>
3404
3405         * docs/libs/gst-plugins-base-libs-sections.txt:
3406         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3407         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3408         (gst_rtp_buffer_get_payload_buffer):
3409         * gst-libs/gst/rtp/gstrtpbuffer.h:
3410         Document GstRTPBuffer.
3411         Added function to efficiently strip payload headers.
3412         API: gst_rtp_buffer_get_payload_subbuffer()
3413
3414 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
3415
3416         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3417         (gst_tag_to_vorbis_comments):
3418           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
3419           tags and deserialise them properly as well (#347091).
3420           Add some more gtk-doc blurbs and also some g_return_if_fail().
3421
3422         * tests/check/libs/tag.c: (GST_START_TEST),
3423         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
3424           More tests.
3425
3426 2006-08-17  Wim Taymans  <wim@fluendo.com>
3427
3428         * ext/ogg/Makefile.am:
3429         * ext/ogg/gstogg.c: (plugin_init):
3430         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
3431         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
3432         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
3433         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
3434         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
3435         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
3436         Added ogg-in-avi parser element. Fixes #140139.
3437
3438         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
3439         Fixed a bug in oggdemux debug code.
3440
3441         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3442         (gst_riff_create_audio_template_caps):
3443         Recognise Ogg in the AVI extensible wave format.
3444
3445 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
3446
3447         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
3448           Make buffer durations add up (duration should be next_ts-ts for
3449           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
3450           from CVS.
3451
3452         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
3453         (test_buffer_timestamps), (cddabasesrc_suite):
3454           Add unit test for the above.
3455
3456         * tests/check/Makefile.am:
3457           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
3458           to see what happens.
3459
3460 2006-08-16  Wim Taymans  <wim@fluendo.com>
3461
3462         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
3463         (gst_alsasink_open):
3464         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
3465         (gst_alsasrc_open):
3466         Avoid setting and using a NULL device name.
3467         Print more info when we fail to open a device.
3468
3469 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
3470
3471         * docs/libs/gst-plugins-base-libs-sections.txt:
3472         * gst-libs/gst/tag/tag.h:
3473         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
3474           API: add gst_tag_parse_extended_comment() (#351426).
3475
3476         * tests/check/Makefile.am:
3477         * tests/check/libs/.cvsignore:
3478         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
3479           Add unit test for gst_tag_parse_extended_comment().
3480
3481 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
3482
3483         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
3484         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
3485           Fix leak (#351502).
3486
3487 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
3488
3489         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3490         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3491         * docs/plugins/gst-plugins-base-plugins.args:
3492         * gst/playback/gstplaybin.c:
3493           Document playbin.
3494           
3495         * docs/plugins/inspect/plugin-adder.xml:
3496         * docs/plugins/inspect/plugin-alsa.xml:
3497         * docs/plugins/inspect/plugin-audioconvert.xml:
3498         * docs/plugins/inspect/plugin-audiorate.xml:
3499         * docs/plugins/inspect/plugin-audioresample.xml:
3500         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3501         * docs/plugins/inspect/plugin-cdparanoia.xml:
3502         * docs/plugins/inspect/plugin-decodebin.xml:
3503         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3504         * docs/plugins/inspect/plugin-gnomevfs.xml:
3505         * docs/plugins/inspect/plugin-ogg.xml:
3506         * docs/plugins/inspect/plugin-pango.xml:
3507         * docs/plugins/inspect/plugin-playbin.xml:
3508         * docs/plugins/inspect/plugin-subparse.xml:
3509         * docs/plugins/inspect/plugin-tcp.xml:
3510         * docs/plugins/inspect/plugin-theora.xml:
3511         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3512         * docs/plugins/inspect/plugin-video4linux.xml:
3513         * docs/plugins/inspect/plugin-videorate.xml:
3514         * docs/plugins/inspect/plugin-videoscale.xml:
3515         * docs/plugins/inspect/plugin-videotestsrc.xml:
3516         * docs/plugins/inspect/plugin-volume.xml:
3517         * docs/plugins/inspect/plugin-vorbis.xml:
3518         * docs/plugins/inspect/plugin-ximagesink.xml:
3519         * docs/plugins/inspect/plugin-xvimagesink.xml:
3520           Update to CVS version.
3521
3522 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
3523
3524         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3525         (gst_play_bin_set_property), (gst_play_bin_get_property),
3526         (value_list_append_structure_list),
3527         (gst_play_bin_handle_redirect_message),
3528         (gst_play_bin_handle_message):
3529           API: GstPlayBin::connection-speed
3530           Add "connection-speed" property; re-order redirect messages with
3531           multiple redirect locations depending on the minimum bitrate if
3532           that information is available and a connection speed is set
3533           (#350399).
3534
3535 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
3536
3537         * gst/playback/gstplaybin.c:
3538           Update max volume to the same value that the volume element uses.
3539
3540 2006-08-14  Wim Taymans  <wim@fluendo.com>
3541
3542         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
3543         Less uglyness..
3544
3545 2006-08-14  Wim Taymans  <wim@fluendo.com>
3546
3547         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
3548         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
3549         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
3550         Add some more debug info.
3551         Don't crash when a seek failed.
3552         Actually return the result of the seek instead of TRUE.
3553         Ignore multiple BOS pages with the same serial so that we don't create
3554         the same stream multiple times.
3555         Post an error when we fail to do the initial seek.
3556
3557 2006-08-13  Wim Taymans  <wim@fluendo.com>
3558
3559         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
3560         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
3561         Small code cleanup.
3562
3563         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
3564         (gst_alsa_mixer_new):
3565         Remove hack that always set the device to hw:0*.
3566         Properly find the card name for whatever device was configured.
3567         Do some better debugging.
3568         Fixes #350784.
3569
3570         * ext/alsa/gstalsamixerelement.c:
3571         (gst_alsa_mixer_element_set_property),
3572         (gst_alsa_mixer_element_change_state):
3573         Cleanups.
3574         Handle setting of a NULL device name better.
3575
3576 2006-08-11  Wim Taymans  <wim@fluendo.com>
3577
3578         * gst/adder/gstadder.c:
3579         Don't clip float values. Fixes #350900.
3580
3581 2006-08-11  Andy Wingo  <wingo@pobox.com>
3582
3583         * gst/tcp/gsttcp.c: Really fix the build?
3584
3585         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
3586         fixes the build.
3587
3588 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
3589
3590         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
3591           Float caps shouldn't have a "signed" field.
3592
3593 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
3594
3595         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
3596           Implement SEEKING query in its most basic form, so that we can
3597           at least check if we're seekable or not (#350655).
3598
3599 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
3600
3601         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
3602           The checks here are not even close to anything that would
3603           justify MAXIMUM probability, lowering to POSSIBLE until someone
3604           fixes the checks (case at hand: quicktime redirection files
3605           might start with 00 00 01 XX and pass the checks here just
3606           fine, see #350399).
3607
3608 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
3609
3610         Patch by: Sjoerd Simons  <sjoerd at luon net>
3611
3612         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
3613           Better detection for multipart/x-mixed-replace: accept leading
3614           whitespaces before the boundary marker as well (as our very own
3615           multipartmux used to produce) (#349068).
3616
3617 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
3618
3619         Patch by: Young-Ho Cha  <ganadist at chollian net>
3620
3621         * gst-libs/gst/riff/riff-ids.h:
3622         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3623         (gst_riff_create_audio_template_caps):
3624           Detect DTS audio streams (#350157).
3625
3626 2006-08-05  Andy Wingo  <wingo@pobox.com>
3627
3628         * ext/theora/gsttheoraparse.h:
3629         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
3630         (theora_parse_dispose, theora_parse_set_property)
3631         (theora_parse_get_property, theora_parse_munge_granulepos)
3632         (theora_parse_push_buffer, theora_parse_change_state):
3633         API: GstTheoraParse::synchronization-points
3634         Add a property 'synchronization-points' to fix badly synchronized oggs.
3635
3636 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3637
3638         * tests/check/Makefile.am:
3639         * tests/check/libs/.cvsignore:
3640         * tests/check/libs/audio.c: (structure_contains_channel_positions),
3641         (fixed_caps_have_channel_positions), (GST_START_TEST),
3642         (audio_suite), (main):
3643           Add a few tests for the channel position stuff in libgstaudio.
3644
3645 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3646
3647         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
3648         (gst_alsa_detect_channels):
3649         * ext/alsa/gstalsasink.c:
3650           Add support for cards that (only) do more than 8 channels,
3651           like the Delta 44 (#345188).
3652
3653         * gst-libs/gst/audio/multichannel.c:
3654         (gst_audio_check_channel_positions):
3655         * gst-libs/gst/audio/multichannel.h:
3656           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
3657           unspecified channel position and cannot be combined with any
3658           of the other audio channel positions; adjust position layout
3659           checks accordingly (#345188).
3660
3661 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3662
3663         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3664           Recognise ancient RealAudio files (see #349779).
3665
3666 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3667
3668         Patch by: Jens Granseuer  <jensgr at gmx net>
3669
3670         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3671           Add typefinder for Interplay's MVE format (#348973).
3672
3673 2006-08-02  Wim Taymans  <wim@fluendo.com>
3674
3675         Patch by: Marcel Moreaux <marcelm at luon dot net>
3676
3677         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3678         (gst_base_rtp_depayload_add_to_queue):
3679         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3680         Handle RTP sequence number rollover.
3681         Disable jitterbuffer by default.
3682
3683 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
3684
3685         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
3686         (audioresample_set_caps):
3687         Don't leak references to the incoming caps. Clean them up when
3688         stopping.
3689
3690         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
3691         (gst_video_scale_finalize):
3692         Don't leak our temporary pixel buffer.
3693
3694         * tests/check/Makefile.am:
3695         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
3696         (GST_START_TEST), (simple_launch_lines_suite):
3697
3698         Fix leaks and re-enable the test for valgrind checking.
3699
3700 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
3701
3702         Patch by: Sjoerd Simons  <sjoerd at luon net>
3703
3704         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
3705         (plugin_init):
3706           Add typefind function for multipart/x-mixed-replace (#348916).
3707
3708 2006-07-28  Wim Taymans  <wim@fluendo.com>
3709
3710         * gst/adder/gstadder.c: (gst_adder_setcaps),
3711         (gst_adder_query_duration):
3712         Fix leak in duration query.
3713         Reflow some docs and notes.
3714
3715 2006-07-28  Michael Smith  <msmith@fluendo.com>
3716
3717         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
3718         (vorbisenc_suite):
3719           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
3720           aspect of it.
3721
3722 2006-07-28  Michael Smith  <msmith@fluendo.com>
3723
3724         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
3725         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
3726         (gst_vorbis_enc_push_buffer),
3727         (gst_vorbis_enc_buffer_check_discontinuous),
3728         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
3729         * ext/vorbis/vorbisenc.h:
3730           Handle discontinuities in the input vorbis stream correctly,
3731           so that the output is properly timestamped (and has good granulepos
3732           values). Needs some oggmux fixes too.
3733
3734 2006-07-27  Wim Taymans  <wim@fluendo.com>
3735
3736         patch by: Kai Vehmanen <kv2004 eca cx>
3737
3738         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3739         (gst_base_rtp_depayload_chain),
3740         (gst_base_rtp_depayload_handle_sink_event),
3741         (gst_base_rtp_depayload_change_state):
3742         Don't send multiple newsegments with different formats.
3743         Fixes #348677.
3744
3745 2006-07-26  Wim Taymans  <wim@fluendo.com>
3746
3747         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
3748         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
3749         Make seeking in ogg more accurate again by doing the more correct
3750         granuletime to stream time conversion.
3751
3752 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
3753
3754         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
3755         (gst_multi_fd_sink_new_client):
3756           debug a little more understandably
3757           do not use goto as a substitute for break, especially if
3758           break is also being used
3759
3760 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
3761
3762         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
3763         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
3764           Remove GLib-2.6 compatibility cruft.
3765
3766 2006-07-24  Wim Taymans  <wim@fluendo.com>
3767
3768         * gst-libs/gst/audio/gstbaseaudiosink.c:
3769         (gst_base_audio_sink_render):
3770         Don't try to align a sample to an unknown value.
3771
3772 2006-07-24  Wim Taymans  <wim@fluendo.com>
3773
3774         * gst-libs/gst/audio/gstbaseaudiosink.c:
3775         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
3776         When the audio clock is slaved to another clock, never try to align
3777         samples but trust the rate interpolation algorithm.
3778
3779 2006-07-24  Wim Taymans  <wim@fluendo.com>
3780
3781         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
3782         Don't try to calculate silence samples, base class does this much
3783         better now.
3784
3785         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
3786         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
3787         (gst_ring_buffer_acquire):
3788         Calculate silence samples correctly.
3789
3790         * gst-libs/gst/audio/gstringbuffer.h:
3791         Add _CAST macro.
3792
3793 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
3794
3795         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
3796           Limit search for the first markup tag to the first few kB of
3797           the file. If we don't find one there, it's highly unlikely that
3798           this is an XML(-ish) file.
3799
3800 2006-07-21  Andy Wingo  <wingo@pobox.com>
3801
3802         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
3803         test to the one in vorbisenc. Also commented out.
3804
3805         * tests/check/pipelines/vorbisenc.c: 
3806         (test_discontinuity): New test, commented out until Mike lands
3807         some elite vorbisenc patches.
3808
3809         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
3810         Bufferstraw was actually factored out of these tests. Now we share
3811         code yay.
3812
3813         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
3814         for bufferstraw addition to gstcheck.
3815
3816 2006-07-21  Wim Taymans  <wim@fluendo.com>
3817
3818         * ext/theora/theoradec.c: (clip_buffer):
3819         Better clipping.
3820
3821 2006-07-21  Wim Taymans  <wim@fluendo.com>
3822
3823         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
3824         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
3825         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
3826         Fix leak.
3827         Avoid type casting when we can.
3828
3829         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
3830         Fix mem leak.
3831
3832 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
3833
3834         * ext/alsa/gstalsamixerelement.c:
3835         (gst_alsa_mixer_element_change_state):
3836           Make state change fail if the specified device can't be opened
3837           for some reason.
3838
3839 2006-07-20  Wim Taymans  <wim@fluendo.com>
3840
3841         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
3842         (cb_newpad), (main):
3843         Example of a small audio/video player using decodebin.
3844
3845 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
3846
3847         * gst-libs/gst/riff/riff-ids.h:
3848           Add 'fact' chunk id
3849
3850 2006-07-19  Wim Taymans  <wim@fluendo.com>
3851
3852         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3853         (gst_base_rtp_depayload_chain),
3854         (gst_base_rtp_depayload_change_state):
3855         Don't assert when not negotiated but post a meaningfull 
3856         error message. Fixes #347918.
3857
3858         * gst-libs/gst/rtp/gstbasertppayload.c:
3859         Add comment about better default MTU size.
3860
3861         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
3862         Small cleanups, start docs.
3863
3864 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
3865
3866         Patch by: Martin Szulecki
3867
3868         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
3869           If "device-name" is requested and the device is not
3870           open, try to temporarily open it to obtain this
3871           information (#342494).
3872
3873 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
3874
3875         * gst-libs/gst/tag/gstid3tag.c:
3876           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
3877
3878         * gst-libs/gst/tag/gsttageditingprivate.h:
3879         * gst-libs/gst/tag/gstvorbistag.c:
3880           Some more random const-ifications.
3881
3882 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
3883
3884         * gst-libs/gst/riff/riff-ids.h:
3885         * gst-libs/gst/riff/riff-media.c:
3886         (gst_riff_create_video_template_caps):
3887           Add more FOURCCs (sort list to make stuff easier to find),
3888           add comment what those 16 bytes in struct _gst_riff_strh according to
3889           one avi-dumper are
3890
3891 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
3892
3893         * gst-libs/gst/audio/multichannel.c:
3894         (gst_audio_check_channel_positions),
3895         (gst_audio_fixate_channel_positions):
3896           Const-ify two arrays.
3897
3898 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
3899
3900         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
3901           Fix typo, so that alsasink also advertises 8 channels
3902           if that's supported (tags: can, worms, open, alsa, ph34r).
3903
3904 2006-07-17  Wim Taymans  <wim@fluendo.com>
3905
3906         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
3907         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
3908         *sigh*, when is the compiler going to warn when the comments
3909         are out-of-sync with the code.. Refix case of busted theora
3910         headers with 0 granule pos.
3911
3912 2006-07-14  Wim Taymans  <wim@fluendo.com>
3913
3914         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3915         (gst_base_rtp_depayload_wait),
3916         (gst_base_rtp_depayload_change_state),
3917         (gst_base_rtp_depayload_set_property),
3918         (gst_base_rtp_depayload_get_property):
3919         Fix 99% cpu load by waiting for absolute times on the
3920         clock. Fixes #347300.
3921
3922 2006-07-14  Andy Wingo  <wingo@pobox.com>
3923
3924         * ext/theora/gsttheoraparse.h: 
3925         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
3926         (theora_parse_push_headers, theora_parse_clear_queue)
3927         (theora_parse_drain_queue_prematurely, )
3928         (theora_parse_sink_event, theora_parse_change_state): Queue events
3929         until we initialized our state, like in vorbisparse.
3930
3931         * ext/vorbis/vorbisparse.h: 
3932         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
3933         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
3934         (vorbis_parse_drain_queue_prematurely, )
3935         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
3936         until we have initialized our state. Fixes seeking after an
3937         initial pad block.
3938
3939 2006-07-14  Andy Wingo  <wingo@pobox.com>
3940
3941         Patch by: Iain Holmes <iaingnome@gmail.com>
3942         
3943         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
3944
3945 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
3946
3947         * configure.ac:
3948         Bump nano back to CVS
3949
3950 === release 0.10.9 ===
3951
3952 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
3953
3954         * configure.ac:
3955           releasing 0.10.9, "I walk the line"
3956
3957 2006-07-14  Michael Smith  <msmith@fluendo.com>
3958
3959         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
3960           Move a g_cond_signal to earlier to avoid sometimes deadlocking
3961           (commonly happens when running this test under valgrind) when trying
3962           to remove the buffer probe.
3963
3964 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3965
3966         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
3967         Fix missing g_unlock from the previous commit
3968
3969 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3970
3971         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
3972         (gst_ximagesink_change_state):
3973         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3974         (gst_xvimagesink_change_state):
3975         Implement a locking order to ensure we always take the object lock
3976         before the x_lock and never vice-versa.
3977
3978 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
3979
3980         * gst/playback/gstdecodebin.c: (find_compatibles):
3981         Fix a caps leak when linking (#347304)
3982
3983         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3984         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
3985         (gst_ximagesink_change_state):
3986         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3987         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
3988         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
3989         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
3990         Don't leak shared memory resources. Use the object lock to protect
3991         against the xcontext disappearing while returning a buffer from the
3992         pipeline. (#347304)
3993
3994 2006-07-12  Edward Hervey  <edward@fluendo.com>
3995
3996         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
3997         (vorbis_handle_comment_packet):
3998         gst_tag_list_merge() returns a new object. Take that into account when
3999         using it. This avoids memleak.
4000         Revert previous commit which is not needed.
4001
4002 2006-07-12  Edward Hervey  <edward@fluendo.com>
4003
4004         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4005         Reset the decoder in finalize so that all fields get cleared.
4006
4007 2006-07-12  Wim Taymans  <wim@fluendo.com>
4008
4009         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4010         (gst_base_audio_src_set_clock),
4011         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4012         Don't try to post an error message when setting the clock fails
4013         as this can happen when adding an element to a bin which will then
4014         deadlock. Fixes #347296.
4015
4016 2006-07-12  Edward Hervey  <edward@fluendo.com>
4017
4018         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4019         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4020         (vorbis_handle_type_packet):
4021         Post tag messages on the bus even if we're not initialized.
4022         If we're not initialized, we still postpone the event pushing of tags.
4023
4024 2006-07-12  Wim Taymans  <wim@fluendo.com>
4025
4026         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4027         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4028         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4029         Revert last two changes that broke the freeze.
4030
4031 2006-07-12  Wim Taymans  <wim@fluendo.com>
4032
4033         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4034         basesink calculates silence sample correctly for us.
4035
4036 2006-07-12  Wim Taymans  <wim@fluendo.com>
4037
4038         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4039         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4040         Calculate correct silence samples so we don't fill our ringbuffer
4041         with noise.
4042
4043 2006-07-12  Edward Hervey  <edward@fluendo.com>
4044
4045         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4046         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4047         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4048         * ext/vorbis/vorbisdec.h:
4049         Delay sending events (newsegment, tags) until the decoder is properly
4050         initialized.
4051         Fixes #347295
4052
4053 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
4054
4055         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4056         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4057           Patch from #347221 adding a test for audioconvert
4058           channel remappings.
4059
4060 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
4061
4062         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4063         (gst_ssa_parse_parse_line):
4064           Don't include the terminating NUL in the buffer size,
4065           it's only there for extra paranoia (would add random
4066           '*' characters at the end of each subtitle since the
4067           terminator itself is not valid UTF-8 technically).
4068           Also fix indenting after boilerplate macro.
4069
4070 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
4071
4072         * gst/playback/gstdecodebin.c: (close_pad_link):
4073           Also emit 'unknown-type' signal (which should really be
4074           called unhandled-type) if we found potential decoders/demuxers
4075           in the registry but none of them worked in the end (as in the
4076           case where the plugins don't exist any longer but are still
4077           listed in the registry). Fixes #329798.
4078
4079 2006-07-08  Andy Wingo  <wingo@pobox.com>
4080
4081         * theoraparse.c (theora_parse_push_buffer)
4082         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4083         Add some more debugging. Fix granulepos reconstruction in the face
4084         of discontinuities.
4085
4086 2006-07-06  Wim Taymans  <wim@fluendo.com>
4087
4088         * gst-libs/gst/audio/gstbaseaudiosink.c:
4089         (gst_base_audio_sink_class_init),
4090         (gst_base_audio_sink_provide_clock):
4091         Use gobject_class instead of G_OBJECT_CLASS (klass)
4092
4093         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4094         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4095         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4096         (gst_base_audio_src_get_time),
4097         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4098         (gst_base_audio_src_create_ringbuffer):
4099         Fix latency and buffer-time constants and properties ala basesink.
4100         Implement pull based scheduling. Fixes #346527.
4101         Set default blocksize in GstBaseSrc to 0, we default to pushing out
4102         one segment.
4103         Refuse slaving to another clock instead of silently not working.
4104         Only provide a clock when we are actually able to do so.
4105         Various small cleanups and compiler hints.
4106
4107 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4108
4109         Patch by: Lutz Mueller <lutz at topfrose de>
4110
4111         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4112         (plugin_init):
4113           Add typefinding for text/html (#346581).
4114
4115 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4116
4117         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4118         (xml_check_first_element), (xml_type_find), (smil_type_find):
4119           Fix SMIL typefinding, make xml_check_first_element() more
4120           useful.
4121
4122 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4123
4124         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4125         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4126         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4127         * gst/playback/gstplaybasebin.h:
4128           Protect list of elements with a subtitle-encoding property and
4129           the subtitle encoding member itself with a lock of their own
4130           instead of using the object lock. This prevents a dead-lock in
4131           the element-remove callback in some circumstances when shutting
4132           down playbin.
4133
4134 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
4135
4136         * win32/common/libgsttag.def:
4137         Export some new functions.
4138         * win32/vs6/libgstogg.dsp:
4139         Add a link to libgsttag-0.10.lib.
4140
4141 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
4142
4143         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4144           Some const-ification.
4145
4146 2006-07-04  Wim Taymans  <wim@fluendo.com>
4147
4148         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4149         Improve checking if we are dealing with a stream. Added some
4150         more uris that need buffering.
4151
4152 2006-07-03  Edward Hervey  <edward@fluendo.com>
4153
4154         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4155         Remove unused variable.
4156
4157 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4158
4159         * Makefile.am:
4160           include lcov.mak
4161         * configure.ac:
4162           add GCOV_LIBS to GST_LIBS
4163
4164 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
4165
4166         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
4167
4168         * ext/alsa/gstalsasrc.c:
4169           Add 32 bps to template caps and increase channels range
4170           from [1,2] to [1,MAX]. See #346326.
4171
4172 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
4173
4174         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4175           Recognise 'WMVA' video codec fourcc (#345879).
4176           
4177 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
4178          
4179         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
4180           Fixed nasty memory leak
4181
4182 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4183
4184         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4185         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4186           fix logging
4187
4188 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
4189
4190         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4191         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4192         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4193         Protect remove_fakesink using a mutex, so that we don't try and
4194         remove the fakesink simultaneously from multiple threads.
4195
4196         When going from READY to PAUSED, restore the fakesink, so that
4197         it is there when decodebin gets reused.
4198
4199 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
4200
4201         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4202         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4203         * gst-libs/gst/rtp/gstbasertppayload.c:
4204         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4205         * gst/tcp/gstmultifdsink.c:
4206         * gst/tcp/gsttcpclientsink.c:
4207         * gst/tcp/gsttcpclientsrc.c:
4208         * gst/tcp/gsttcpserversink.c:
4209         * gst/tcp/gsttcpserversrc.c:
4210         * gst/videorate/gstvideorate.c:
4211         * gst/videotestsrc/gstvideotestsrc.c:
4212         * sys/v4l/gstv4ljpegsrc.c:
4213         * sys/v4l/gstv4lmjpegsink.c:
4214         * sys/v4l/gstv4lsrc.c:
4215         * tests/examples/seek/scrubby.c:
4216         * tests/examples/seek/seek.c:
4217           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4218
4219 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4220
4221         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4222           Second field in GEnumValue shouldn't be a description,
4223           but a stringified version of the enum value.
4224
4225 2006-06-22  Wim Taymans  <wim@fluendo.com>
4226
4227         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4228         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4229         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4230         Avoid type checking in buffer casts.
4231         Avoid caps copy in buffer_alloc when we can.
4232         Use pad_peer_accept.
4233
4234 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4235
4236         * gst-libs/gst/tag/tag.h:
4237           Oops, make that 'Since: 0.10.9'.
4238
4239 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4240
4241         * docs/libs/gst-plugins-base-libs-sections.txt:
4242         * gst-libs/gst/tag/tag.h:
4243         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4244         (gst_tag_image_type_get_type):
4245           API: add GstTagImageType enum to describe images contained
4246           in image tags (#345641).
4247
4248 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4249
4250         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4251           Fix warnings with gst-inspect: "buffers-min" property
4252           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4253           typo in property description.
4254
4255 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4256
4257         Patch by: Cody Russell <bratsche at gnome org>
4258
4259         * gst/audioresample/gstaudioresample.c:
4260         (gst_audioresample_class_init):
4261         * gst/playback/gststreamselector.c:
4262         (gst_stream_selector_class_init):
4263         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4264         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4265         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4266         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4267         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4268         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4269         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4270         * gst/videotestsrc/gstvideotestsrc.c:
4271         (gst_video_test_src_class_init):
4272         * gst/volume/gstvolume.c: (gst_volume_class_init):
4273           Avoid unnecessary class cast check in class_init
4274           functions (#337747).
4275
4276 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
4277
4278         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4279         (gst_text_overlay_video_chain):
4280           g_markup_escape_text() REALLY doesn't like non-UTF8 input
4281           and doesn't validate its input either (and neither did
4282           textoverlay it seems). Let's do that then and fix #345206.
4283
4284 2006-06-19  Wim Taymans  <wim@fluendo.com>
4285
4286         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4287         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4288         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4289         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4290         (find_syncframe), (find_limits), (assign_value),
4291         (count_burst_unit), (gst_multi_fd_sink_new_client),
4292         (gst_multi_fd_sink_handle_client_write),
4293         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4294         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4295         (gst_multi_fd_sink_change_state):
4296         * gst/tcp/gstmultifdsink.h:
4297         Added shiny new burst-on-connect methods.
4298         Add properties to control the minimal amount of data queued.
4299         Small cleanups.
4300         API: bytes-min property
4301         API: time-min property
4302         API: buffers-min property
4303         API: burst-unit property
4304         API: burst-value property
4305         API: add-full signal
4306
4307         * gst/tcp/gsttcp-marshal.list:
4308         Added new marshaller code for the new signal.
4309
4310         * tests/check/elements/multifdsink.c: (GST_START_TEST),
4311         (multifdsink_suite):
4312         Added testcases for new burst methods.
4313
4314 2006-06-19  Edward Hervey  <edward@fluendo.com>
4315
4316         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4317         Implement clipping for accurate seeking.
4318         Closes #345225
4319
4320 2006-06-19  Wim Taymans  <wim@fluendo.com>
4321
4322         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4323
4324         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4325         (gst_video_scale_transform):
4326         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4327
4328 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
4329
4330         * configure.ac:
4331           Fix --disable-external (can't set conditionals conditionally,
4332           #343602).
4333
4334 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4335
4336         * tests/check/elements/audioresample.c: (test_reuse),
4337         (audioresample_suite):
4338           Add test case for bug #342789 fixed below.
4339
4340 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4341
4342         * gst/audioresample/gstaudioresample.c:
4343         (gst_audioresample_class_init), (gst_audioresample_init),
4344         (audioresample_start), (audioresample_stop),
4345         (gst_audioresample_set_property), (gst_audioresample_get_property):
4346           Implement GstBaseTransform::start and ::stop so that audioresample
4347           can clear its internal state properly and be reused instead of
4348           causing non-negotiated errors with playbin under some circumstances
4349           (#342789).
4350
4351         * tests/check/elements/audioresample.c: (setup_audioresample),
4352         (cleanup_audioresample):
4353           Need to set element state here so that ::start and ::stop are
4354           called.
4355
4356 2006-06-16  Wim Taymans  <wim@fluendo.com>
4357
4358         Patch by: Young-Ho Cha <ganadist at chollian dot net>
4359
4360         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4361         Parse extra data better, apparently it's right behind
4362         the normal strf header size. Fixes #343500.
4363
4364 2006-06-16  Wim Taymans  <wim@fluendo.com>
4365
4366         * ext/alsa/gstalsasink.c: (set_hwparams):
4367         If we fail to set the buffer_time and period_time alsa
4368         parameters, post a warning and leave alsa select a 
4369         default instead of failing. Fixes #342085
4370
4371 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4372
4373         * docs/libs/gst-plugins-base-libs-sections.txt:
4374         * gst-libs/gst/cdda/gstcddabasesrc.h:
4375           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4376           out in the header file and shouldn't be listed in the docs.
4377
4378         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4379           Must dereference pointer to fourcc in the debug statement.
4380
4381 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
4382
4383         * docs/libs/Makefile.am:
4384         * docs/libs/gst-plugins-base-libs-docs.sgml:
4385         * docs/libs/gst-plugins-base-libs-sections.txt:
4386         * docs/libs/gst-plugins-base-libs.types:
4387         add remaining symbols into correct setions
4388         
4389         * gst-libs/gst/audio/gstringbuffer.c:
4390         fix incomplete docs
4391         
4392         * gst-libs/gst/audio/gstringbuffer.h:
4393         comment out not yet implemented function
4394         
4395         
4396         * gst-libs/gst/floatcast/floatcast.h:
4397         * gst-libs/gst/netbuffer/gstnetbuffer.c:
4398         add short descriptions
4399         
4400         
4401         * gst-libs/gst/interfaces/propertyprobe.c:
4402         fix return value docs   
4403         
4404         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4405         simplify debug logging
4406         
4407         * gst-libs/gst/riff/riff-read.h:
4408         sync function prototype and docs
4409         
4410         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4411         remove left over symbol
4412
4413 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4414
4415         * autogen.sh:
4416         * configure.ac:
4417         * docs/Makefile.am:
4418           Use GST_PLUGIN_DOCS macro in configure.ac, add
4419           --enable-plugin-docs default to autogen.sh and use
4420           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
4421
4422 2006-06-15  Wim Taymans  <wim@fluendo.com>
4423
4424         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4425         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
4426         (gst_ogg_demux_loop):
4427         Combine GstFlowReturn from the source pads to give a
4428         meaningfull result to the upstream peer or to stop the
4429         processing task in case of errors.
4430
4431 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4432
4433         * gst/playback/gststreaminfo.c: (cb_probe):
4434           Try GST_TAG_CODEC as fallback when extracting the
4435           codec name; more debug info.
4436
4437 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4438
4439         * ext/ogg/Makefile.am:
4440         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4441           Extract language tags from ogm subtitle streams, so that
4442           the subtitle menu choices are labelled correctly in
4443           Totem (fixes #344708).
4444
4445 2006-06-14  Wim Taymans  <wim@fluendo.com>
4446
4447         Patch by: Alessandro Decina <alessandro at nnva dot org>
4448
4449         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
4450         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
4451         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
4452         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4453         Fix various leaks. Fixes #343699.
4454         Add x-smoke mime type.
4455
4456 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4457
4458         * gst-libs/gst/riff/riff-ids.h:
4459           Add IDs for 'bext' chunks (see #343837).
4460
4461 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
4462
4463         Patch by: Young-Ho Cha  <ganadist at chollian net>
4464
4465         * gst/subparse/samiparse.c: (sami_context_pop_state),
4466         (handle_start_font), (end_sami_element):
4467           Honour font face tags in SAMI subtitles (#344503).
4468
4469 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4470
4471         * po/POTFILES.in:
4472           add missing files containing translatable strings
4473
4474 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4475
4476         * docs/libs/tmpl/.cvsignore:
4477           we don't want those *.sgml files in CVS either
4478
4479 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4480
4481         * docs/libs/.cvsignore:
4482         * tests/check/elements/.cvsignore:
4483         * tests/check/libs/.cvsignore:
4484           ignore more
4485
4486 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4487
4488         * docs/libs/Makefile.am:
4489           also commiting the changed Makefile.am (added more libs to the
4490           doc-build)
4491
4492 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4493
4494         * docs/libs/gst-plugins-base-libs-docs.sgml:
4495         * docs/libs/gst-plugins-base-libs-sections.txt:
4496         * docs/libs/gst-plugins-base-libs.types:
4497           first batch of reordering things, add index & hierarchy
4498
4499 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
4500
4501         * configure.ac:
4502           use GST_PKG_CHECK_MODULES, cleans up output
4503
4504 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
4505
4506         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4507           Add support for burn:// URIs (#343385); const-ify things a bit,
4508           use G_N_ELEMENTS instead of hard-coded array size.
4509
4510 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
4511
4512         Patch by: Young-Ho Cha  <ganadist at chollian net>
4513
4514         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
4515           Fix up broken entities before passing them to libxml *sigh*.
4516           (#343303).
4517           
4518 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4519
4520         * configure.ac:
4521           back to TRUNK
4522
4523 === release 0.10.8 ===
4524
4525 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
4526
4527         * configure.ac:
4528           releasing 0.10.8, "Moar gij ziet mij nie"
4529
4530 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
4531
4532         * configure.ac:
4533         * po/af.po:
4534         * po/az.po:
4535         * po/cs.po:
4536         * po/en_GB.po:
4537         * po/hu.po:
4538         * po/it.po:
4539         * po/nb.po:
4540         * po/nl.po:
4541         * po/or.po:
4542         * po/sq.po:
4543         * po/sr.po:
4544         * po/sv.po:
4545         * po/uk.po:
4546         * po/vi.po:
4547         * win32/common/config.h:
4548           0.10.7.2 prerelease
4549
4550 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
4551
4552         * docs/libs/tmpl/gstaudio.sgml:
4553         * docs/libs/tmpl/gstcolorbalance.sgml:
4554         * docs/libs/tmpl/gstmixer.sgml:
4555         * docs/libs/tmpl/gstringbuffer.sgml:
4556         * docs/libs/tmpl/gsttuner.sgml:
4557         * docs/libs/tmpl/gstxoverlay.sgml:
4558         * gst-libs/gst/audio/audio.c:
4559         * gst-libs/gst/audio/gstringbuffer.c:
4560         * gst-libs/gst/interfaces/colorbalance.c:
4561         * gst-libs/gst/interfaces/mixer.c:
4562         * gst-libs/gst/interfaces/tuner.c:
4563         * gst-libs/gst/interfaces/xoverlay.c:
4564           move last template doc snippets to source code and delete them
4565
4566 2006-06-06  Michael Smith  <msmith@fluendo.com>
4567
4568         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
4569         (theora_parse_drain_queue):
4570           Mark DELTA_UNIT on non-keyframes.
4571
4572 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
4573
4574         * gst-libs/gst/audio/gstbaseaudiosink.c:
4575         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
4576         * gst-libs/gst/audio/gstbaseaudiosink.h:
4577         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
4578         (gst_ring_buffer_samples_done):
4579         * gst-libs/gst/audio/gstringbuffer.h:
4580         Document better the fact that latency_time and buffer_time are values
4581         stored in microseconds, and not the usual GStreamer nanoseconds.
4582         Change the variables (compatibly) that store them from GstClockTime 
4583         to guint64 to make it more clear that they're not storing clock times.
4584         Also, remove the bogus property description that says the user can
4585         specify -1 to get the default value, since that's never been the case.
4586
4587         When computing the default segment size for the ring buffer, make it
4588         an integer number of samples.
4589
4590         When the sub-class indicates a delay greater than the number of
4591         samples we've written return 0 from the audio sink get_time method.
4592
4593 2006-06-02  Michael Smith  <msmith@fluendo.com>
4594
4595         * tests/check/elements/audioconvert.c: (set_channel_positions),
4596         (get_float_mc_caps), (get_int_mc_caps):
4597         * tests/check/elements/audioresample.c:
4598         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
4599         * tests/check/elements/videorate.c:
4600         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
4601         * tests/check/elements/volume.c:
4602         * tests/check/elements/vorbisdec.c:
4603         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
4604           Don't busy-wait in tests; this was causing test timeouts very
4605           frequently when running under valgrind.
4606
4607 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4608
4609         * gst/tcp/README:
4610         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
4611         (gst_multi_fd_sink_remove_client_link),
4612         (gst_multi_fd_sink_client_queue_caps),
4613         (gst_multi_fd_sink_client_queue_buffer),
4614         (gst_multi_fd_sink_handle_client_write),
4615         (gst_multi_fd_sink_render):
4616         * gst/tcp/gstmultifdsink.h:
4617           make multifdsink properly deal with streamheader:
4618           - streamheader is taken from caps
4619           - buffers marked with IN_CAPS are not sent
4620           - streamheaders are sent, on connection, from the caps of the
4621             buffer where the client gets positioned to
4622           - further streamheader changes are done every time the client
4623             will receive a buffer with different caps
4624         * tests/check/elements/multifdsink.c: (GST_START_TEST),
4625         (gst_multifdsink_create_streamheader):
4626           add tests for this
4627
4628 2006-06-02  Michael Smith  <msmith@fluendo.com>
4629
4630         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4631           Reinstate limit on channel count. Vorbis does not define the meaning
4632           of > 6 channels, so they're just independent channels. Gstreamer
4633           currently has no mechanism to represent N independent channels.
4634
4635 2006-06-02  Michael Smith  <msmith@fluendo.com>
4636
4637         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4638           Don't arbitrarily restrict channel counts and rate in vorbis.
4639           In terms of effects likely on real-world files, this fixes 96kHz
4640           playback of vorbis.
4641
4642 2006-06-02  Michael Smith  <msmith@fluendo.com>
4643
4644         * gst/audioconvert/audioconvert.c: (float):
4645           More correct float->int conversion.
4646
4647 2006-06-02  Michael Smith  <msmith@fluendo.com>
4648
4649         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
4650           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
4651           value. Fixes g-critical on trying to play back ogg containing
4652           unknown codec.
4653
4654 2006-06-02  Wim Taymans  <wim@fluendo.com>
4655
4656         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
4657         (setup_source):
4658         * gst/playback/gstplaybasebin.h:
4659         Make the subtitle detection work from any thread so we don't
4660         deadlock. Fixes #343397.
4661
4662 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4663
4664         * gst/volume/Makefile.am:
4665           Seriously, it's not *that* hard to get compilation right.  Even
4666           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
4667
4668 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
4669
4670         * gst/volume/gstvolume.c: (volume_choose_func),
4671         (volume_update_real_volume), (gst_volume_class_init),
4672         (gst_volume_init), (volume_process_float), (volume_process_int16),
4673         (volume_process_int16_clamp), (volume_set_caps),
4674         (volume_transform_ip), (plugin_init):
4675         * gst/volume/gstvolume.h:
4676         rewrite the passthrough check, split _int16 and _int16_clamp, fix
4677         another property desc., remove unused param from process function
4678         
4679         * tests/check/elements/volume.c: (volume_suite):
4680         reactivate the passthrough test
4681
4682 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
4683
4684         * ext/alsa/gstalsamixerelement.h:
4685         * ext/alsa/gstalsamixeroptions.h:
4686         * ext/alsa/gstalsamixertrack.h:
4687         * ext/gnomevfs/gstgnomevfssink.h:
4688         * ext/gnomevfs/gstgnomevfssrc.h:
4689         * ext/theora/gsttheoradec.h:
4690         * ext/theora/gsttheoraenc.h:
4691         * ext/theora/gsttheoraparse.h:
4692         * ext/vorbis/vorbisparse.h:
4693         * gst-libs/gst/audio/gstaudioclock.h:
4694         * gst-libs/gst/audio/gstaudiofilter.h:
4695         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4696         * gst/audioconvert/gstaudioconvert.h:
4697         * gst/audioresample/gstaudioresample.h:
4698         * gst/audiotestsrc/gstaudiotestsrc.h:
4699         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
4700         * gst/playback/gststreamselector.h:
4701         * gst/tcp/gstmultifdsink.h:
4702         * gst/tcp/gsttcpclientsink.h:
4703         * gst/tcp/gsttcpclientsrc.h:
4704         * gst/tcp/gsttcpserversink.h:
4705         * gst/tcp/gsttcpserversrc.h:
4706         * gst/videorate/gstvideorate.h:
4707         * gst/videoscale/gstvideoscale.h:
4708         * gst/videotestsrc/gstvideotestsrc.h:
4709         * gst/volume/gstvolume.h:
4710         * sys/v4l/gstv4ljpegsrc.h:
4711         * sys/v4l/gstv4lmjpegsink.h:
4712         * sys/v4l/gstv4lmjpegsrc.h:
4713         * sys/v4l/gstv4lsrc.h:
4714         * sys/ximage/ximagesink.h:
4715         * sys/xvimage/xvimagesink.h:
4716         * tests/old/testsuite/alsa/sinesrc.h:
4717         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
4718
4719 2006-05-31  Wim Taymans  <wim@fluendo.com>
4720
4721         * ext/libvisual/visual.c: (gst_visual_reset),
4722         (gst_visual_sink_setcaps), (gst_visual_sink_event),
4723         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
4724         Handle DISCONT.
4725         Use running time before doing QoS.
4726         Handle mono too.
4727
4728 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
4729
4730         * docs/libs/Makefile.am:
4731           set a magic variable to indicate we know the docs are incomplete
4732
4733 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
4734
4735         * win32/common/libgstvideo.def:
4736           export gst_video_calculate_display_ratio
4737         * win32/vs6/libgstvideoscale.dsp:
4738           add link to libgstvideo-0.10.lib
4739
4740 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
4741
4742         * gst/playback/gstplaybasebin.c: (gen_source_element):
4743           Throw a more comprehensible error for rtsp:// URIs (rather
4744           than erroring out with a negotiation error later on) until
4745           we fix playbin to handle rtspsrc etc.
4746
4747 2006-05-30  Wim Taymans  <wim@fluendo.com>
4748
4749         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
4750         (gst_text_overlay_text_event):
4751         Added some FIXMEs.
4752
4753 2006-05-30  Wim Taymans  <wim@fluendo.com>
4754
4755         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
4756         (gst_adder_request_new_pad), (gst_adder_release_pad):
4757         * gst/adder/gstadder.h:
4758         Implement release_request_pad.
4759         Make padcounter atomic.
4760
4761         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
4762         Added check for release_pad in adder.
4763
4764 2006-05-30  Wim Taymans  <wim@fluendo.com>
4765
4766         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
4767         Fix build again.
4768
4769 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
4770
4771         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
4772         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
4773         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
4774         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
4775         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
4776         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
4777         (gst_ogg_demux_bisect_forward_serialno),
4778         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
4779         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
4780           add more debugging
4781           clean up printf formats for granulepos and serialno
4782
4783 2006-05-30  Michael Smith  <msmith@fluendo.com>
4784
4785         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
4786         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
4787         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
4788         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
4789         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4790         * ext/vorbis/vorbisenc.h:
4791           Multi-channel caps negotiation, so we can do proper multichannel
4792           vorbis encoding, negotiated through audioconvert.
4793
4794 2006-05-30  Wim Taymans  <wim@fluendo.com>
4795
4796         * tests/check/elements/adder.c: (test_event_message_received),
4797         (test_play_twice_message_received), (GST_START_TEST),
4798         (adder_suite):
4799         Added check to show that #339935 is fixed with ongoing
4800         adder and collectpads fixes.
4801
4802 2006-05-29  Wim Taymans  <wim@fluendo.com>
4803
4804         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
4805         Don't leak pad name.
4806
4807 2006-05-29  Wim Taymans  <wim@fluendo.com>
4808
4809         * gst/adder/gstadder.c: (gst_adder_query_duration),
4810         (forward_event_func), (forward_event), (gst_adder_src_event):
4811         Fix adder seeking.
4812         Make query/seeking code threadsafe.
4813
4814         * tests/check/Makefile.am:
4815         * tests/check/elements/adder.c: (test_event_message_received),
4816         (GST_START_TEST), (test_play_twice_message_received):
4817         Fix adder test case.
4818
4819 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
4820
4821         Patch by: Young-Ho Cha  <ganadist at chollian net>
4822
4823         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
4824         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
4825         (set_encoding_element), (decodebin_element_added_cb),
4826         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
4827         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
4828         * gst/playback/gstplaybasebin.h:
4829           Add 'subtitle-encoding' property to playbin, so applications can
4830           force a subtitle encoding for non-UTF8 subtitles (#342268).
4831
4832         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
4833         (gst_sub_parse_set_property):
4834           Rename recently-added 'encoding' property to 'subtitle-encoding'
4835           (so it can be proxied by playbin/decodebin in a generic way
4836           with less danger of false positives).
4837
4838 2006-05-29  Michael Smith  <msmith@fluendo.com>
4839
4840         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
4841         (append_with_other_format), (set_structure_widths),
4842         (gst_audio_convert_transform_caps):
4843           Patch from #341562: give more specific audio caps in get_caps, so
4844           that basetransform  can make better decisions on what caps to
4845           negotiate.
4846
4847 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
4848
4849         * tests/check/elements/volume.c:
4850         make it compile again
4851
4852 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
4853
4854         * tests/check/elements/volume.c: (volume_suite):
4855         disable test until #343196 gets resolved
4856
4857 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
4858
4859         * gst/adder/gstadder.c: (gst_adder_get_type):
4860         Make it easier to copy&paste
4861         
4862         * gst/volume/Makefile.am:
4863         * gst/volume/gstvolume.c: (volume_update_real_volume),
4864         (gst_volume_set_volume), (gst_volume_set_mute),
4865         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
4866         (volume_transform_ip), (volume_update_mute),
4867         (volume_update_volume):
4868         * gst/volume/gstvolume.h:
4869         Add own debug category, move duplicate code to helper function, fix
4870         property texts, add more comments and prepare ffor liboil-goodness
4871         
4872         * tests/check/Makefile.am:
4873         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
4874         add test for mute and passtrough case, be a bit more verbose to track
4875         failure
4876         
4877         * tests/check/generic/states.c: (GST_START_TEST):
4878         catch elements that fail to instantiate
4879
4880 2006-05-28  Edward Hervey  <edward@fluendo.com>
4881
4882         * tests/check/pipelines/simple-launch-lines.c:
4883         * tests/check/pipelines/theoraenc.c:
4884         * tests/check/pipelines/vorbisenc.c:
4885         Comment out tests using parse_launch() if core was built without
4886         parsing capabilities.
4887
4888 2006-05-27  Edward Hervey  <edward@fluendo.com>
4889
4890         * tests/check/Makefile.am:
4891         Extra bonus points for whoever explains to ensonic that you are meant
4892         to test unit tests thoroughly before commiting them, especially if
4893         you know it's going to break.
4894         De-activated element/adder tests.
4895
4896 2006-05-27  Edward Hervey  <edward@fluendo.com>
4897
4898         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4899         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
4900         Marking caps conversion issues as GST_WARNING is way too verbose,
4901         Moving them to GST_LOG.
4902
4903 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
4904
4905         * README:
4906           Replace current README (containing the release notes from
4907           some 0.9.x version) with a proper README taken from the core.
4908
4909 2006-05-26  Wim Taymans  <wim@fluendo.com>
4910
4911         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4912         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
4913         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
4914         (vorbis_dec_change_state):
4915         Small cleanups.
4916         Add some FIXMEs
4917         Clip output samples to segment boundaries.
4918
4919 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
4920
4921         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4922         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
4923         Improve the errors produced on bad output, including some human
4924         readable description strings.
4925         Handle the (theoretical for ximagesink) case where the XServer 
4926         has a different idea about the size required for a particular 
4927         frame and gives us too small a memory allocation.
4928
4929 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
4930
4931         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4932         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
4933         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
4934         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
4935         Improve the errors produced on bad output, including some human 
4936         readable description strings.
4937         Handle RGB Xv formats properly by transforming them into our 
4938         big-endian caps description.
4939         Use gst_caps_truncate to ensure that we never try and choose a
4940         non-fixed caps in buffer_alloc.
4941         Handle the case where the XServer has a different idea about the size
4942         required for a particular frame and gives us too small a memory
4943         allocation.
4944         Use -1 to indicate 'no image format', because 0 is a valid XServer
4945         image format number.
4946         Put RGB Xv formats at the end of the caps, so that we always prefer
4947         YUV format frames.
4948         Iterate the available Xv Encodings to determine the maximum width and
4949         height, and then return that in our caps.
4950         (Closes #315312, #337544)
4951
4952 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
4953
4954         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
4955         When there is only one unfinished pad and it receives an event that
4956         doesn't match our requirements, we need to set alldone=FALSE so that
4957         the fakesink is not removed yet.
4958
4959 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
4960
4961         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
4962           Use gst_type_find_helper_for_buffer() to find the type
4963           of stream from the first packet.
4964
4965         * configure.ac:
4966           Bump requirements to core CVS (needed for vorbis
4967           typefinding to work).
4968
4969 2006-05-24  Edward Hervey  <edward@fluendo.com>
4970
4971         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
4972         Added the 'prfl' atom type which MQV (no, it's not a typo) files
4973         contain.  Else they play perfectly fine with qtdemux.
4974
4975 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
4976
4977         * ext/theora/theoradec.c:
4978         * ext/theora/theoraenc.c:
4979         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
4980         * gst/audiorate/gstaudiorate.c:
4981           make more debug catagories static
4982         
4983         * tests/check/Makefile.am:
4984         * tests/check/elements/adder.c: (message_received),
4985         (test_event_message_received), (GST_START_TEST),
4986         (test_play_twice_message_received), (adder_suite):
4987           added test case for using element twice, extra bonus points for anyone
4988           who can make these test run reliably
4989
4990 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
4991
4992         * ext/theora/theoradec.c: (theora_dec_chain):
4993           Make work with time-stamped input buffers that do not
4994           have a granulepos in BUFFER_OFFSET_END (like theora
4995           buffers coming from matroskademux). Fixes #342448.
4996
4997 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
4998
4999         Patch by: Peter Kjellerstedt  <pkj at axis com>
5000
5001         * gst/tcp/Makefile.am:
5002           fdstresstest doesn't need Gtk+, fix compilation if 
5003           gtk is not available (#342566).
5004
5005 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5006          
5007         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5008           80 line columns
5009           Removed redundant floor()
5010
5011 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5012
5013         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5014           On second thought, just skip JUNK chunks automatically, so
5015           the caller doesn't have to handle this. Fixes #342345.
5016           Also, return GST_FLOW_UNEXPECTED if we get a short read,
5017           not GST_FLOW_ERROR.
5018
5019 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5020
5021         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5022           Don't bail out on JUNK chunks with a size of 0 (would try to
5023           pull_range 0 bytes before, which sources don't like too much).
5024           See #342345.
5025
5026 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5027
5028         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5029         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5030         Use the gstutil scaling function to preserve 64 bits while calculating
5031         output width and height from the display-aspect-ratio. (A continuation
5032         of #341542)
5033
5034 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5035
5036         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5037         (gst_xvimagesink_buffer_alloc):
5038         * sys/xvimage/xvimagesink.h:
5039         When performing buffer allocations, remember the caps and image format
5040         we return so that if the same caps are asked for next time we can
5041         return them immediately without doing any caps intersections.
5042
5043 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5044          
5045         * gst-libs/gst/rtp/README:
5046           Some new documentation
5047         * gst-libs/gst/rtp/gstrtpbuffer.h:       
5048           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
5049         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5050         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
5051           New RTP audio base payloader class. Supports frame or sample based
5052           codecs.  Not enabled in Makefile.am until approved.
5053
5054 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5055
5056         * tests/check/elements/alsa.c: (test_device_property_probe):
5057           Fix test case: don't try to free NULL GValueArray when there
5058           are no devices.
5059
5060 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5061
5062         * tests/check/Makefile.am:
5063         * tests/check/elements/alsa.c: (test_device_property_probe),
5064         (alsa_suite), (main):
5065           Add simple test that runs a device property probe on alsasrc,
5066           alsasink and alsamixer. Disable valgrind check for now (too
5067           many leaks in libasound, and valgrind ignored my suppressions
5068           additions).
5069
5070 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5071
5072         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5073         (gst_alsa_device_property_probe_probe_property),
5074         (gst_alsa_device_property_probe_needs_probe),
5075         (gst_alsa_device_property_probe_get_values),
5076         (gst_alsa_type_add_device_property_probe_interface):
5077         * ext/alsa/gstalsadeviceprobe.h:
5078         * ext/alsa/gstalsamixerelement.c:
5079         (gst_alsa_mixer_element_init_interfaces):
5080         * ext/alsa/gstalsamixerelement.h:
5081           Clean up and simplify alsa device probing. Make it actually work
5082           for multiple classes. Don't cache results any longer.
5083
5084         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5085         (gst_alsasink_init):
5086         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5087         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5088         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5089           Make alsasink and alsasrc implement the GstPropertyProbe interface
5090           for device probing (#342181).
5091           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
5092
5093 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5094
5095         * gst/subparse/samiparse.c: (handle_start_font):
5096           Don't ignore return value of strtol (++compiler_happiness).
5097
5098 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5099
5100         Patch by: Young-Ho Cha  <ganadist chollian net>
5101
5102         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5103         (gst_sub_parse_class_init), (gst_sub_parse_init),
5104         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5105         (convert_encoding):
5106         * gst/subparse/gstsubparse.h:
5107           Add 'encoding' property (#341681).
5108
5109         * gst/subparse/samiparse.c: (characters_sami):
5110           Output is pango markup, so we need to escape text
5111           between tags (#342143).
5112
5113 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5114
5115         * gst-libs/gst/audio/multichannel.c:
5116         (gst_audio_check_channel_positions):
5117           It's okay to have caps with channels=1 and a channel position
5118           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5119           (deinterleavers might want to keep the position in the caps,
5120           so that they can be re-interleaved again properly later).
5121           Leave check for unexpected 2-channel layouts intact for now.
5122
5123 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5124
5125         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5126         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5127         basesrc can do its job correctly.
5128
5129 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5130
5131         * ext/alsa/Makefile.am:
5132         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5133         (gst_alsa_detect_formats), (get_channel_free_structure),
5134         (caps_add_channel_configuration), (gst_alsa_detect_channels),
5135         (gst_alsa_probe_supported_formats):
5136         * ext/alsa/gstalsa.h:
5137         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5138           Refactor and improve caps probing code: probe signedness
5139           when we probe the supported formats/widths; set endianness
5140           to the one we actually probed for (ie. cpu endianness).
5141           
5142         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5143         (gst_alsasrc_close):
5144         * ext/alsa/gstalsasrc.h:
5145           Implement caps probing for alsasrc.
5146
5147 2006-05-15  Wim Taymans  <wim@fluendo.com>
5148
5149         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5150         (theora_dec_src_query), (theora_dec_src_event),
5151         (theora_dec_sink_event), (theora_handle_comment_packet),
5152         (theora_handle_data_packet), (theora_dec_change_state):
5153         Cleanups, add some G_LIKELY.
5154         Use segment helpers instead of our own wrong code.
5155         Clear queued buffers on seek and READY.
5156
5157         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5158         (vorbis_dec_convert), (vorbis_dec_src_query),
5159         (vorbis_dec_src_event), (vorbis_dec_sink_event),
5160         (vorbis_handle_comment_packet), (vorbis_dec_push),
5161         (vorbis_handle_data_packet), (vorbis_dec_chain),
5162         (vorbis_dec_change_state):
5163         * ext/vorbis/vorbisdec.h:
5164         Remove old useless packetno variable.
5165         Do position query properly.
5166         Add some G_LIKELY.
5167         Do cleanup of queued buffers in new helper function
5168         and use it.
5169
5170 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5171
5172         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5173           Query supported sample rates. Fixes #341732.
5174
5175 2006-05-15  Julien MOUTTE  <julien@moutte.net>
5176
5177         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5178         (gst_decode_bin_change_state): Make decodebin reusable
5179         when going from PAUSE_TO_READY and then back to PAUSED.
5180         Fixes #331678.
5181
5182 2006-05-15  Wim Taymans  <wim@fluendo.com>
5183
5184         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5185         (vorbis_dec_convert), (vorbis_dec_src_query),
5186         (vorbis_dec_sink_query), (vorbis_dec_src_event),
5187         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5188         (vorbis_dec_clean_queued), (vorbis_dec_push),
5189         (vorbis_handle_data_packet), (vorbis_dec_change_state):
5190         Cleanups. Use refcounting and DEBUG_OBJECT.
5191         Reset segment on flush, use code methods instead of our
5192         own wrong version.
5193         Fix potential memleak.
5194
5195 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5196
5197         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5198         (gst_alsasink_init):
5199         * ext/alsa/gstalsasink.h:
5200           Don't leak allocated snd_output_t structure if there's
5201           more than one alsasink instance at a time (#341873).
5202           Also fix GObject macros in header file.
5203           
5204 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5205
5206         * gst/subparse/gstsubparse.c:
5207         (gst_sub_parse_data_format_autodetect):
5208           Don't use libxml functions in the typefinding code.
5209
5210 2006-05-15  Wim Taymans  <wim@fluendo.com>
5211
5212         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5213         Fix seeking performance in the case where a non-header 
5214         packet has a 0 granulepos (busted theora case). 
5215         Fixes #341719
5216         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5217          the first place, you limelight stealer you)
5218
5219 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5220
5221         * gst/subparse/gstsubparse.c:
5222         (gst_sub_parse_data_format_autodetect):
5223           Improve SAMI typefinding: handle case where there are
5224           whitespaces or newlines in front of the first <SAMI>
5225           tag (#169936).
5226
5227 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5228
5229         * configure.ac:
5230           Build video4linux plugin even if there's no XVIDEO, just
5231           without implementing the GstXOverlay interface (#334002).
5232          
5233 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5234
5235         * configure.ac:
5236         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5237         (plugin_init):
5238           Add tentative support for libvisual-0.4 (#336881).
5239
5240 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5241
5242         Patch by: Young-Ho Cha <ganadist at chollian net>
5243
5244         * gst/subparse/samiparse.c: (handle_start_font):
5245           Need to map "silver" colour explicitly (#169936).
5246
5247 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5248
5249         Patch by: Young-Ho Cha  <ganadist at chollian net>
5250
5251         * gst/subparse/Makefile.am:
5252         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5253         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5254         (gst_sub_parse_format_autodetect), (feed_textbuf),
5255         (gst_subparse_type_find), (plugin_init):
5256         * gst/subparse/gstsubparse.h:
5257         * gst/subparse/samiparse.c:
5258         * gst/subparse/samiparse.h:
5259           Add support for SAMI subtitles (#169936).
5260
5261 2006-05-14  Michael Smith  <msmith@fluendo.com>
5262
5263         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5264           Fix #341696: crash when mixing L+R+C to mono or stereo.
5265         * tests/check/Makefile.am:
5266         * tests/check/elements/audioconvert.c: (set_channel_positions),
5267         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5268         (audioconvert_suite):
5269           Add test for the above, including some generic framework bits for
5270           testing multichannel things.
5271
5272 === release 0.10.7 ===
5273
5274 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
5275
5276         * configure.ac:
5277           releasing 0.10.7, "Leave the gun"
5278
5279 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
5280
5281         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5282         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5283         Fix the build.
5284
5285 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
5286
5287         * docs/libs/gst-plugins-base-libs-docs.sgml:
5288         * docs/libs/gst-plugins-base-libs-sections.txt:
5289         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5290         * gst-libs/gst/video/video.h:
5291         * gst/videoscale/Makefile.am:
5292         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5293         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5294         * tests/check/Makefile.am:
5295         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5296         (main):
5297           Fix integer overflow problem with pixel-aspect-ratio calculations
5298           in videoscale and xvimagesink (#341542)
5299
5300 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
5301
5302         * gst-libs/gst/tag/gstid3tag.c:
5303           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5304
5305 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
5306
5307         * win32/MANIFEST:
5308           update win32 files listing
5309
5310 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5311
5312         patch by: Sjoerd Simons (sjoerd@luon.net)
5313
5314         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5315         (group_create), (group_destroy), (add_stream),
5316         (gst_play_base_bin_get_property),
5317         (gst_play_base_bin_get_streaminfo_value_array):
5318         * gst/playback/gstplaybasebin.h:
5319           API: GstPlayBaseBin::stream-info-value-array property
5320           use a more bindings-friendly way of exposing streaminfo
5321           using a GValueArray.  Tested in ipython.
5322           Closes #341114
5323
5324 2006-05-11  Wim Taymans  <wim@fluendo.com>
5325
5326         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5327         (queue_underrun_cb), (queue_filled_cb):
5328         Also catch queue underruns but don't do anything yet.
5329         Refactor and comment queue enlarging code a bit.
5330
5331         * gst/playback/gstplaybasebin.c: (queue_overrun),
5332         (queue_threshold_reached), (queue_out_of_data),
5333         (gen_preroll_element):
5334         If a queue over/underruns check that we don't create nasty
5335         deadlocks when the min-threshold is not reached but the
5336         max-bytes is. In those cases disable max-bytes when we
5337         know that the queue is fed timed data.
5338         Add more comments.
5339
5340 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5341
5342         * gst/playback/gstplaybin.c: (gen_audio_element):
5343           Make playbin automatically plug an 'audioresample'
5344           element before the audio sink as well. This solves
5345           problems with sinks that only accept a very specific
5346           sample rate, like esdsink (e.g. #340379).
5347
5348 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5349
5350         * gst/playback/gstplaybasebin.c: (gen_source_element):
5351           Make http sources send special headers so that we receive
5352           icecast metadata if the http stream is an icecast stream
5353           (otherwise the server will just ignore them). This also
5354           means that from now on users will need the 'icydemux'
5355           element from gst-plugins-good installed if they want to
5356           listen to icecast radio streams. (#341432, #333657).
5357
5358 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5359
5360         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5361         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5362           remove stupid example from docs - it should come with a simple
5363           C program instead.
5364           Clean up/fix docs
5365         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5366         (fail_if_can_read), (GST_START_TEST),
5367         (gst_multifdsink_create_streamheader), (multifdsink_suite):
5368           add a test for changing streamheader which exposes a bug in
5369           multifdsink
5370
5371 2006-05-11  Michael Smith  <msmith@fluendo.com>
5372
5373         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5374         (gst_gnome_vfs_src_received_headers_callback):
5375         * ext/gnomevfs/gstgnomevfssrc.h:
5376           Don't set icy-caps unless we have a sane interval value. Move
5377           interval to a local variable; we never use it outside this function.
5378
5379 2006-05-11  Wim Taymans  <wim@fluendo.com>
5380
5381         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5383         Register special buffer types along with the objects so
5384         that they are not registered at runtime from N different
5385         streaming threads since they are not threadsafe.
5386
5387 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5388
5389         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5390         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5391           add two more tests, one doing streamheader
5392
5393 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5394
5395         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5396           clean up the bufqueue when shutting down
5397         * tests/check/Makefile.am:
5398         * tests/check/elements/multifdsink.c: (setup_multifdsink),
5399         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5400         (main):
5401           add a test for the leak that was just fixed
5402
5403 2006-05-10  Wim Taymans  <wim@fluendo.com>
5404
5405         * gst/adder/gstadder.c: (gst_adder_setcaps),
5406         (gst_adder_query_duration), (gst_adder_query), (forward_event),
5407         (gst_adder_src_event), (gst_adder_sink_event),
5408         (gst_adder_class_init), (gst_adder_finalize),
5409         (gst_adder_request_new_pad), (gst_adder_collected):
5410         * gst/adder/gstadder.h:
5411         Updated some docs. Added comments and FIXMEs all over the place.
5412         Improve debugging info.
5413         Fix leak on finalize by not calling the parent.
5414         Implement duration query.
5415         Make event forwarding threadsafe.
5416         Correctly send NEWSEGMENT at start and after flush.
5417         Handle EOS correctly.
5418         Post error when not negotiated.
5419
5420         * tests/check/elements/adder.c: (GST_START_TEST):
5421         Added FIXME in the test.
5422
5423 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5424
5425         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
5426         (gst_text_overlay_halign_get_type),
5427         (gst_text_overlay_wrap_mode_get_type):
5428         * ext/theora/theoradec.c: (theora_handle_type_packet),
5429         (theora_handle_data_packet):
5430         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
5431         (theora_enc_sink_setcaps), (theora_enc_chain):
5432         * gst-libs/gst/cdda/gstcddabasesrc.c:
5433         (gst_cdda_base_src_mode_get_type):
5434         * gst/audiotestsrc/gstaudiotestsrc.c:
5435         (gst_audiostestsrc_wave_get_type):
5436         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
5437         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
5438         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
5439         (gst_sync_method_get_type), (gst_unit_type_get_type),
5440         (gst_client_status_get_type):
5441         * gst/videoscale/gstvideoscale.c:
5442         (gst_video_scale_method_get_type):
5443         * gst/videotestsrc/gstvideotestsrc.c:
5444         (gst_video_test_src_pattern_get_type):
5445         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
5446         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
5447         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
5448         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
5449         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
5450         (paint_setup_RGB565), (paint_setup_xRGB1555):
5451           Const-ify GEnumValue and GFlagsValue arrays. Use
5452           GST_ROUND_UP_* macros instead of home-made ones.
5453
5454 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5455
5456         * configure.ac:
5457           Require core CVS for the new newsegment stuff.
5458
5459 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5460
5461         Patch by: Sjoerd Simons  <sjoerd at luon net>
5462
5463         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
5464           Register nick for enum value (#341160).
5465
5466 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
5467
5468         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
5469         (plugin_init):
5470          backout typefind patch #340375
5471          
5472         * tests/check/elements/adder.c: (message_received),
5473         (GST_START_TEST), (adder_suite):
5474           redo, signal-handling of test
5475
5476 2006-05-09  Wim Taymans  <wim@fluendo.com>
5477
5478         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
5479         (gst_adder_collected):
5480         * gst/adder/gstadder.h:
5481         Remove bogus segment merging and forwarding, we don't
5482         care about timestamps anyway and we just produce a
5483         continuous stream. 
5484         Also create a nice NEWSEGMENT event when we start.
5485         Use _scale_int some more.
5486
5487 2006-05-09  Edward Hervey  <edward@fluendo.com>
5488
5489         * tests/icles/stress-xoverlay.c:
5490         Fix if core was built without parsing support.
5491
5492 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5493
5494         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5495           Add SEDG (Samsung MPEG-4) fourcc.
5496
5497 2006-05-09  Edward Hervey  <edward@fluendo.com>
5498
5499         * tests/icles/stress-xoverlay.c:
5500         * tests/examples/volume/volume.c:
5501         Fix if core was built without parsing support.
5502
5503         * tests/examples/seek/seek.c:
5504         Disable the parse_launch example if core was built without parsing
5505         support.
5506
5507 2006-05-08  Edward Hervey  <edward@fluendo.com>
5508
5509         * autogen.sh: (CONFIGURE_DEF_OPT): 
5510         libtoolize on Darwin/MacOSX is called glibtoolize
5511
5512 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5513
5514         * tests/check/Makefile.am:
5515         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
5516           Disable the adder test, until the build-slaves posses the kindness to 
5517           either like it or to give valid reason for not doing so 
5518
5519 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5520
5521         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5522         (adder_suite):
5523           Shuffle NULL state change around and raise timeout more
5524
5525 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5526
5527         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
5528         (mp4_type_find), (plugin_init):
5529           Add typefind to distinguish between "audio/x-m4a" and new type
5530           "video/mp4". Fixes #340375
5531
5532         * tests/check/elements/adder.c: (adder_suite):
5533           Raise timeout to make buildbot happy
5534
5535 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5536
5537         * gst/adder/gstadder.c: (gst_adder_sink_event),
5538         (gst_adder_request_new_pad), (gst_adder_change_state):
5539         * gst/adder/gstadder.h:
5540         * tests/check/Makefile.am:
5541         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5542         (adder_suite), (main):
5543           Add sink-event handling to adder. It tries to merge incomming
5544           newsegment-events. Added test to check if segment_done is comming
5545           through. Fixes #340060
5546
5547 2006-05-05  Andy Wingo  <wingo@pobox.com>
5548
5549         * ext/theora/theoraparse.c (gst_theora_parse_init)
5550         (theora_parse_src_convert, theora_parse_src_query):
5551         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
5552         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
5553         query functions on the source pads of the theora and vorbis parse
5554         elements. Fixes position querying when doing a remux.
5555
5556 2006-05-05  Michael Smith  <msmith@fluendo.com>
5557
5558         * ext/theora/theoraparse.c: (parse_granulepos),
5559         (theora_parse_drain_queue_prematurely),
5560         (theora_parse_queue_buffer), (theora_parse_sink_event):
5561           Fix flushing.
5562           Fix invalid granulepos outputs when starting with a non-keyframe.
5563
5564 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
5565
5566         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
5567         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
5568         Rearrange MPEG system stream detection, fixing some memleaks in the
5569         process.
5570         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
5571         they clean up their data correctly.
5572         Remove unused ogganx caps and move the 'is_annodex' check to inside
5573         the 'is_ogg' if statement.
5574
5575 2006-05-05  Wim Taymans  <wim@fluendo.com>
5576
5577         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
5578         Properly remove ghostpads. Fixes #340392
5579
5580 2006-05-04  David Schleef  <ds@schleef.org>
5581
5582         * gst/typefind/gsttypefindfunctions.c:
5583
5584 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
5585
5586         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
5587         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
5588
5589         When typefinding an MP3 in push-based mode, don't penalise the
5590         probability down to 74% when we found 5 valid frames just because we
5591         can't peek the end of the file.
5592
5593         Make the probability for detecting MPEG Transport Streams based on the
5594         number of sequential headers we successfully detected.
5595
5596 2006-05-03  Wim Taymans  <wim@fluendo.com>
5597
5598         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5599         (vorbis_dec_push), (vorbis_dec_chain):
5600         Still produce an error when we receive an empty packet.
5601
5602 2006-05-03  Wim Taymans  <wim@fluendo.com>
5603
5604         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5605         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
5606         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
5607         Mark buffers with DISCONT after seek and after activating new
5608         chains.
5609
5610         * ext/theora/gsttheoradec.h:
5611         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5612         (theora_get_query_types), (theora_dec_sink_event),
5613         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
5614         (theora_dec_change_state):
5615         Fix frame counter.
5616         Detect and mark DISCONT buffers.
5617
5618         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5619         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
5620         (vorbis_dec_change_state):
5621         * ext/vorbis/vorbisdec.h:
5622         Use GstSegment.
5623         Detect and mark DISCONT buffers.
5624         Don't crash on 0 sized buffers.
5625
5626 2006-05-03  Wim Taymans  <wim@fluendo.com>
5627
5628         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
5629         (volume_transform_ip):
5630         Increase "volume" property to 10.0. Fixes #340369.
5631         Set the process function to NULL when capsnego fails so that
5632         we properly error out.
5633
5634 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
5635
5636         * gst/playback/gstplaybin.c: (add_sink):
5637         * gst/playback/test.c: (main):
5638         * gst/playback/test5.c: (dump_element_stats):
5639         * gst/playback/test6.c: (main):
5640           free caps using gst_caps_unref, don't leak caps-strings
5641
5642 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
5643
5644         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
5645         (plugin_init):
5646           Refine musepack typefinding a bit. Return MAXIMUM
5647           probability when we detect stream version 7 to make
5648           sure the mpeg audio typefinder doesn't trump us.
5649
5650 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
5651
5652         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5653           Protect against unexpected NULL strf_data buffer.
5654
5655 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
5656
5657         * tests/check/elements/audioconvert.c: (verify_convert),
5658         (GST_START_TEST):
5659           interpret the out[] buffer in the order the bytes are actually
5660           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
5661           Other tests should use BYTE_ORDER since the array is filled in
5662           with actual values
5663
5664 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
5665
5666         * tests/check/elements/audioconvert.c: (verify_convert),
5667         (GST_START_TEST):
5668           when a test fails, give an indication of which it is
5669
5670 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
5671
5672         * gst-libs/gst/cdda/gstcddabasesrc.c:
5673           compile fix; strtol() needs <stdlib.h>
5674
5675 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
5676
5677         * ext/alsa/gstalsamixerelement.c:
5678         * ext/alsa/gstalsasrc.c:
5679         * ext/cdparanoia/gstcdparanoiasrc.c:
5680         * ext/gnomevfs/gstgnomevfssink.c:
5681         * ext/gnomevfs/gstgnomevfssrc.c:
5682         * ext/ogg/gstoggdemux.c:
5683         * ext/ogg/gstoggmux.c:
5684         * ext/ogg/gstoggparse.c:
5685         * ext/ogg/gstogmparse.c:
5686         * ext/pango/gstclockoverlay.c:
5687         * ext/pango/gsttextoverlay.c:
5688         * ext/pango/gsttextrender.c:
5689         * ext/pango/gsttimeoverlay.c:
5690         * ext/theora/theoradec.c:
5691         * ext/theora/theoraenc.c:
5692         * ext/vorbis/vorbisdec.c:
5693         * ext/vorbis/vorbisenc.c:
5694         * gst-libs/gst/audio/gstaudiofilter.c:
5695         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
5696         * gst/audioconvert/gstaudioconvert.c:
5697         * gst/audiorate/gstaudiorate.c:
5698         * gst/audioresample/gstaudioresample.c:
5699         * gst/audiotestsrc/gstaudiotestsrc.c:
5700         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5701         * gst/playback/gstdecodebin.c:
5702         * gst/playback/gstplaybin.c:
5703         * gst/playback/gststreamselector.c:
5704         * gst/subparse/gstsubparse.c:
5705         * gst/tcp/gstmultifdsink.c:
5706         * gst/tcp/gsttcpclientsink.c:
5707         * gst/tcp/gsttcpclientsrc.c:
5708         * gst/tcp/gsttcpserversink.c:
5709         * gst/tcp/gsttcpserversrc.c:
5710         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
5711         * gst/videorate/gstvideorate.c:
5712         * gst/videoscale/gstvideoscale.c:
5713         * gst/videotestsrc/gstvideotestsrc.c:
5714         * gst/volume/gstvolume.c:
5715         * sys/v4l/gstv4ljpegsrc.c:
5716         * sys/v4l/gstv4lmjpegsink.c:
5717         * sys/v4l/gstv4lmjpegsrc.c:
5718         * sys/v4l/gstv4lsrc.c:
5719         * sys/ximage/ximagesink.c:
5720         * sys/xvimage/xvimagesink.c:
5721         * tests/check/libs/cddabasesrc.c:
5722           make GstElementDetails const
5723
5724 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
5725
5726         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
5727         (gst_adder_init):
5728           send events from src-pad to all sink-pads fixes #338657
5729
5730 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
5731
5732         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
5733         (alsasink_parse_spec):
5734           query width capabilities from alsa, fixes #338919
5735
5736 2006-04-28  Wim Taymans  <wim@fluendo.com>
5737
5738         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
5739         (gst_multi_fd_sink_remove_client_link):
5740         * gst/tcp/gstmultifdsink.h:
5741         Fix race condition in multifdsink that can lead to spurious 
5742         duplicate clients. this patch adds a new signal that is fired when
5743         multifdsink has removed all references to the fd.
5744         Fixes #339574.
5745         Updated documentation.
5746         API: client-fd-removed signal added
5747
5748 2006-04-28  Michael Smith  <msmith@fluendo.com>
5749
5750         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
5751           When asking g_value_array_new to prealloc elements, we may as well
5752           ask for the right number of elements.
5753
5754 2006-04-28  Wim Taymans  <wim@fluendo.com>
5755
5756         * gst-libs/gst/audio/gstbaseaudiosink.c:
5757         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
5758         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
5759         patch to make timestamp checking more tollerant to rounding 
5760         errors given that real discontinuities are to be marked on
5761         buffers. Fixes some asf files and #338778.
5762         Also avoid some crashers when we receive an event in the 
5763         NULL state.
5764
5765 2006-04-28  Michael Smith  <msmith@fluendo.com>
5766
5767         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
5768         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
5769         (gst_gnome_vfs_src_get_property),
5770         (gst_gnome_vfs_src_send_additional_headers_callback),
5771         (gst_gnome_vfs_src_received_headers_callback),
5772         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
5773         (gst_gnome_vfs_src_stop):
5774         * ext/gnomevfs/gstgnomevfssrc.h:
5775           Remove ICY handling (mostly) from gnomevfssrc, in favour of
5776           proper shared support within icydemux.
5777
5778 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5779
5780         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
5781         (gst_video_rate_swap_prev), (gst_video_rate_chain):
5782           fix up docs
5783           fix a leak when no caps negotiated
5784           fix counting of input frames
5785         * tests/check/elements/.cvsignore:
5786         * tests/check/elements/videorate.c: (assert_videorate_stats),
5787         (GST_START_TEST), (videorate_suite):
5788           add tests for these
5789
5790 2006-04-28  Wim Taymans  <wim@fluendo.com>
5791
5792         * gst-libs/gst/audio/gstringbuffer.c:
5793         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
5794         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
5795         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
5796         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
5797         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
5798         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
5799         (gst_ring_buffer_commit), (gst_ring_buffer_read),
5800         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
5801         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
5802         Check arguments passed to public functions instead of
5803         crashing.
5804
5805 2006-04-28  Wim Taymans  <wim@fluendo.com>
5806
5807         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
5808         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
5809         GstBaseAudioSrc must be live or it does not work.
5810
5811         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
5812         Don't set live to TRUE as this is the default in the parentclass.
5813
5814 2006-04-28  Wim Taymans  <wim@fluendo.com>
5815
5816         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
5817         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
5818         Videoscale doesn't pass on pixel-aspect ratio. Handle all
5819         fixation cases better. Fixes #338991
5820
5821 2006-04-28  Wim Taymans  <wim@fluendo.com>
5822
5823         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
5824         Handle 0/1 framerate correctly Fixes #331901.
5825
5826 2006-04-28  Wim Taymans  <wim@fluendo.com>
5827
5828         * tests/check/elements/audioconvert.c: (get_float_caps),
5829         (GST_START_TEST), (audioconvert_suite):
5830         Added check for correct clipping when doing float samples
5831         in audioconvert.
5832
5833 2006-04-28  Wim Taymans  <wim@fluendo.com>
5834
5835         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
5836         (gst_video_rate_chain):
5837         Print more debugging info.
5838
5839 2006-04-28  Wim Taymans  <wim@fluendo.com>
5840
5841         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
5842         (resample_set_state_from_caps):
5843         Add support for other formats audioresample can handle such as
5844         32 bits in and float and 64 bits float. Fixes #301759
5845
5846 2006-04-28  Wim Taymans  <wim@fluendo.com>
5847
5848         * gst/audioconvert/audioconvert.c: (float):
5849         correctly clip float samples > 1.0. Fixes #338718
5850
5851 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
5852
5853         Patch by: Young-Ho Cha  <ganadist at chollian net>
5854
5855         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
5856         (gst_text_overlay_render_text):
5857           Don't strip newlines from the text. Also, center lines
5858           within multi-line paragraphs (#339405).
5859
5860 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
5861
5862         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
5863           Fix wavpack typefinding to work in more cases (don't peek
5864           for chunks of multiple hundred kBs at once, but process
5865           things step-by-step in smaller units). Fixes #339786.
5866
5867 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5868
5869         * configure.ac:
5870           back to HEAD
5871
5872 === release 0.10.6 ===
5873
5874 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
5875
5876         * configure.ac:
5877           releasing 0.10.6, "Chao"
5878
5879 2006-04-26  David Schleef  <ds@schleef.org>
5880
5881         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
5882           Fixes #338897.
5883
5884 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5885
5886         * configure.ac:
5887         * win32/common/config.h:
5888           new prerelease
5889
5890 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5891
5892         patch by: Wim Taymans
5893
5894         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5895         (gst_ogg_demux_perform_seek):
5896           make sure correct newsegments are sent, so that the decoder
5897           and the demuxer agree on timestamps.  Fixes playback of a lot
5898           of Ogg files that do not start from 0.  Fixes #339833.
5899
5900 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5901
5902         Patch by: Edward Hervey  <edward@fluendo.com>
5903
5904         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
5905         * tests/check/Makefile.am:
5906         * tests/check/elements/videorate.c: (assert_videorate_stats),
5907         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
5908         (videorate_suite), (main):
5909           Fix an infinite loop if frames are passed in with wrongly ordered
5910           timestamps.  Fixes #339013.
5911
5912 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5913
5914         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
5915
5916         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5917           fix typefinding on some ISO files.  Fixes #339212.
5918
5919 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5920
5921         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
5922
5923         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5924           add another H264 fourcc.  Fixes #339047.
5925
5926 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5927
5928         Patch by: Jan Schmidt
5929
5930         * gst/playback/gststreamselector.c:
5931         (gst_stream_selector_bufferalloc):
5932           Restore old StreamSelector behaviour.
5933           Fixes #338419.
5934
5935 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5936
5937         * configure.ac:
5938         * win32/common/config.h:
5939           prerelease
5940
5941 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
5942
5943         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
5944
5945         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5946         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
5947           Fix some memory leaks: on finalize, free buffers left in the queue
5948           before destroying the queue; in _push(), unref rtp_buf even if
5949           the process vfunc returned a NULL buffer as output buffer (#337548);
5950           demote some recuring debug messages to LOG level.
5951
5952 2006-04-11  Wim Taymans  <wim@fluendo.com>
5953
5954         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5955         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5956         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
5957         (gst_ogg_demux_loop):
5958         More cleanups.
5959         Respect segment stop when emiting EOS or SEGMENT_DONE.
5960         Fixes (#337945).
5961
5962 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
5963
5964         * gst/playback/gststreamselector.c:
5965         (gst_stream_selector_get_property):
5966           Don't leak pad name.
5967
5968 2006-04-10  Michael Smith  <msmith@fluendo.com>
5969
5970         * tests/check/Makefile.am:
5971         * tests/check/gst-plugins-base.supp:
5972           Suppress an old libtheora bug (fixed in more recent versions), so 
5973           that FC4 buildslaves can pass.
5974
5975 2006-04-10  Wim Taymans  <wim@fluendo.com>
5976
5977         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5978         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
5979         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
5980         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
5981         (gst_ogg_demux_loop):
5982         Don't leak events.
5983         Remember what error we got when finding chains, if we
5984         were shutdown, that would not be an error.
5985
5986 2006-04-10  Wim Taymans  <wim@fluendo.com>
5987
5988         * gst-libs/gst/audio/gstbaseaudiosink.c:
5989         (gst_base_audio_sink_event):
5990         Starting the ringbuffer when we did not acquire it can cause
5991         a deadlock, is pointless and causes nasty things for
5992         subclasses. 
5993         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
5994
5995 2006-04-10  Wim Taymans  <wim@fluendo.com>
5996
5997         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5998         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
5999         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6000         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6001         (gst_ogg_demux_deactivate_current_chain),
6002         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6003         (gst_ogg_demux_bisect_forward_serialno),
6004         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6005         Add some more debugging.
6006
6007 2006-04-10  Wim Taymans  <wim@fluendo.com>
6008
6009         * ext/theora/theoradec.c: (theora_dec_src_event),
6010         (theora_handle_data_packet):
6011         Some more debug info.
6012
6013         * tests/examples/seek/seek.c: (start_seek), (main):
6014         Print element messages too.
6015
6016 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
6017
6018         * gst/audioresample/debug.h:
6019           replace debug macros with variable number of parameters
6020           by a simple alias to gstreamer standard debug macros 
6021          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6022           supported by MSVC 6.0 and 7.1)
6023         * gst/audioresample/resample.h:
6024           define M_PI and rint for WIN32
6025         * win32/common/libgstaudio.def:
6026         * win32/common/libgstriff.def:
6027         * win32/common/libgsttag.def:
6028         * win32/common/libgstvideo.def:
6029           add new exported functions
6030         * win32/vs6:
6031           update project files
6032
6033 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6034
6035         * ext/alsa/gstalsamixeroptions.c:
6036         (gst_alsa_mixer_options_class_init):
6037         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6038         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6039         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6040         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6041         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6042         * gst-libs/gst/audio/gstaudiofilter.c:
6043         (gst_audio_filter_class_init):
6044         * gst-libs/gst/audio/gstaudiosink.c:
6045         (gst_audioringbuffer_class_init):
6046         * gst-libs/gst/audio/gstaudiosrc.c:
6047         (gst_audioringbuffer_class_init):
6048         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6049         * gst-libs/gst/interfaces/colorbalancechannel.c:
6050         (gst_color_balance_channel_class_init):
6051         * gst-libs/gst/interfaces/mixeroptions.c:
6052         (gst_mixer_options_class_init):
6053         * gst-libs/gst/interfaces/mixertrack.c:
6054         (gst_mixer_track_class_init):
6055         * gst-libs/gst/interfaces/tunerchannel.c:
6056         (gst_tuner_channel_class_init):
6057         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6058         * gst-libs/gst/netbuffer/gstnetbuffer.c:
6059         (gst_netbuffer_class_init):
6060         * gst-libs/gst/rtp/gstbasertppayload.c:
6061         (gst_basertppayload_class_init):
6062         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6063         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6064         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6065         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6066         * gst/playback/gststreamselector.c:
6067         (gst_stream_selector_class_init):
6068         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6069         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6070         * sys/v4l/gstv4lcolorbalance.c:
6071         (gst_v4l_color_balance_channel_class_init):
6072         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6073         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6074         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6075         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6076         (gst_v4l_tuner_norm_class_init):
6077         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6078         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6079         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6080         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6081
6082 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6083
6084         * ext/pango/gsttextrender.h:
6085         * gst-libs/gst/audio/gstaudiosink.h:
6086         * gst-libs/gst/audio/gstaudiosrc.h:
6087         * gst-libs/gst/audio/gstbaseaudiosink.h:
6088         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6089         * gst-libs/gst/audio/gstringbuffer.h:
6090         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6091         * gst-libs/gst/rtp/gstbasertppayload.h:
6092         * gst-libs/gst/video/gstvideofilter.h:
6093         * gst-libs/gst/video/gstvideosink.h:
6094         * gst/playback/gstplaybasebin.h:
6095         * gst/tcp/gstmultifdsink.h:
6096         * sys/v4l/gstv4lelement.h:
6097         Fix broken GObject macros
6098
6099 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6100
6101         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6102         More debug to trace why my USB headset is not working with gst
6103
6104 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6105
6106         * gst/playback/gstplaybasebin.c: (group_destroy):
6107         Clean up our group elements properly in the case where it never 
6108         got committed - it still got added unconditionally to the bin.
6109
6110 2006-04-07  Wim Taymans  <wim@fluendo.com>
6111
6112         * ext/theora/theoradec.c: (theora_dec_sink_event),
6113         (theora_handle_data_packet), (theora_dec_chain):
6114         Unref unhandled events.
6115         Protect against empty buffers.
6116         Perform QoS on running time.
6117
6118 2006-04-07  Michael Smith  <msmith@fluendo.com>
6119
6120         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6121         (gst_vorbis_enc_chain):
6122           Remove leaks from vorbisenc.
6123           Mostly minor changes, the only significant one is that now the
6124           buffers we set as 'streamheader' on the caps are copies of the
6125           original buffers, to avoid circular refcounting problems.
6126
6127 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6128
6129         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6130           Don't remove our mute-probe if someone else already did so.
6131           Don't set a 2nd one if there is already one pending on the pad.
6132
6133         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6134         (do_playbin_seek):
6135           When a seek fails, ensure that playbin is still set back to playing.
6136           
6137         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6138         (mpeg_ts_type_find), (plugin_init):
6139           Add a typefind function for mpeg-ts streams. (Closes: #336617)
6140
6141 2006-04-06  Andy Wingo  <wingo@pobox.com>
6142
6143         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
6144         (gst_video_rate_init): Caps-related parameters should not be reset
6145         by a flush -- move their inits to the instance init function.
6146         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6147         is not OK, just return the result.
6148
6149         * gst/audiotestsrc/gstaudiotestsrc.c
6150         (gst_audio_test_src_class_init)
6151         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6152         broken by Stefan's commit on 24 March.
6153
6154         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6155         buffers being pushed out. Fixes oggmux ! multifdsink.
6156
6157 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
6158
6159         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6160         (gst_vorbis_dec_init), (vorbis_dec_finalize):
6161         * ext/vorbis/vorbisdec.h:
6162         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6163         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6164         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6165         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6166         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6167         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6168         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6169         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6170         (gst_vorbis_enc_buffer_from_packet),
6171         (gst_vorbis_enc_buffer_from_header_packet),
6172         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6173         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6174         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6175         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6176         (gst_vorbis_enc_change_state):
6177         * ext/vorbis/vorbisenc.h:
6178           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6179           vorbisenc adhere to the official nomenclature; use boilerplate
6180           macro.
6181
6182 2006-04-04  Andy Wingo  <wingo@pobox.com>
6183
6184         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6185         Whoops, fix bug introduced. Bad hacker!
6186         
6187         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6188         Properly handle the case where you get EOS before any buffers are
6189         received. Use gst_buffer_make_metadata_writable where appropriate.
6190
6191         * ext/theora/theoradec.c (theora_handle_data_packet): This value
6192         is often negative -- make it signed so as not to wrap around.
6193         Fixes segfaults introduced on 9 March.
6194
6195 2006-04-03  Wim Taymans  <wim@fluendo.com>
6196
6197         * ext/theora/gsttheoradec.h:
6198         * ext/theora/theoradec.c: (theora_dec_src_event):
6199         Don't try to store a gdouble in a gboolean.
6200         Small cleanups.
6201
6202 2006-04-03  Michael Smith  <msmith@fluendo.com>
6203
6204         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6205           Oggmux sucks.
6206           Make it suck slightly less by writing out the final page.
6207           Still can't encode a vorbis-in-ogg file correctly, though.
6208
6209 2006-04-03  Andy Wingo  <wingo@pobox.com>
6210
6211         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6212         a g_print.
6213
6214         * ext/theora/theora.c (plugin_init): Register theoraparse.
6215
6216         * ext/theora/gsttheoraparse.h: 
6217         * ext/theora/theoraparse.c: New files implementing a theora
6218         parser. Now we can properly remux ogg/theora+vorbis, yay.
6219
6220         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6221
6222 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6223
6224         * gst/audiotestsrc/gstaudiotestsrc.c:
6225           Fixed the sample pipeline (see #323798)
6226
6227 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6228
6229         * configure.ac:
6230         * win32/common/config.h:
6231         * win32/common/config.h.in:
6232           use AS_VERSION and AS_NANO
6233           more cleanups
6234
6235 2006-03-31  Andy Wingo  <wingo@pobox.com>
6236
6237         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6238         uninitialized variable return that would happen.
6239         
6240         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6241         uninitialized variable return that would never happen.
6242
6243         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
6244         (vorbis_parse_sink_event): Add an event function to flush our
6245         state on a seek, and to drain buffers on a premature EOS.
6246         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
6247         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
6248         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
6249         (vorbis_parse_drain_queue): Queue up buffers until we can set
6250         their timestamps and granulepos values.
6251
6252         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6253         and keep track of data needed for deriving granulepos and
6254         timestamps for buffers.
6255
6256 2006-03-29  Wim Taymans  <wim@fluendo.com>
6257
6258         Patch by: j^ <j at bootlab dot org>
6259
6260         * ext/alsa/gstalsamixerelement.c:
6261         (gst_alsa_mixer_element_class_init):
6262         * ext/alsa/gstalsasink.c:
6263         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6264         * ext/ogg/gstoggdemux.c:
6265         * ext/ogg/gstoggmux.c:
6266         * ext/ogg/gstoggparse.c:
6267         * ext/pango/gstclockoverlay.c:
6268         * ext/pango/gsttextoverlay.c:
6269         * ext/pango/gsttextrender.c:
6270         * ext/pango/gsttimeoverlay.c:
6271         * ext/theora/theoradec.c:
6272         * ext/theora/theoraenc.c:
6273         * ext/vorbis/vorbisdec.c:
6274         * ext/vorbis/vorbisenc.c:
6275         * gst/audioconvert/gstaudioconvert.c:
6276         * gst/subparse/gstsubparse.c:
6277         * gst/tcp/gstmultifdsink.c:
6278         * gst/tcp/gsttcpclientsink.c:
6279         * gst/tcp/gsttcpclientsrc.c:
6280         * gst/tcp/gsttcpserversink.c:
6281         * gst/tcp/gsttcpserversrc.c:
6282           better/unified long descriptions
6283           Fixes #336477
6284
6285 2006-03-29  Wim Taymans  <wim@fluendo.com>
6286
6287         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6288         (stop_seek):
6289         Don't let double and triple clicks mess up our state.
6290
6291 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6292
6293         * gst/playback/gstplaybin.c: (gen_video_element),
6294         (gen_text_element), (gen_audio_element), (gen_vis_element):
6295           Error out gracefully when we can't create any of the usual
6296           conversion elements for some reason. Also, don't try to
6297           create an audioscale (sic) element that's not used anyway.
6298
6299 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6300
6301         * gst/playback/gstplaybasebin.c: (setup_source):
6302           Don't post RESOURCE_NOT_FOUND error when we can't find a source
6303           element for a particular protocol, that's confusing for users.
6304           Instead, post a RESOURCE_FAILED error, so that our own error
6305           message is actually shown in totem etc. (#336303).
6306
6307 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6308
6309         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6310
6311         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6312         (gst_gnome_vfs_src_get_icy_metadata):
6313           Fix some minor memory leaks (#336194).
6314
6315 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6316
6317         * ext/gnomevfs/gstgnomevfs.c:
6318         (gst_gnome_vfs_location_to_uri_string):
6319         * ext/gnomevfs/gstgnomevfs.h:
6320         * ext/gnomevfs/gstgnomevfssink.c:
6321         (gst_gnome_vfs_sink_set_property):
6322         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6323           Make gnomevfssink accept filenames as well as URIs for the
6324           "location" property, just like gnomevfssrc does (and
6325           filesrc/filesink do) (#336190).
6326
6327 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6328
6329         * tests/check/generic/clock-selection.c: (GST_START_TEST):
6330           set to NULL before unreffing, fixes a valgrind leak.
6331           Why was this not triggering the error that an object needs to
6332           be NULL before unreffing ?
6333         * win32/common/config.h:
6334           update
6335
6336 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
6337
6338         * gst/subparse/gstsubparse.c: (convert_encoding),
6339         (gst_sub_parse_change_state):
6340         * gst/subparse/gstsubparse.h:
6341           Text subtitle files may or may not be UTF-8. If it's not, we
6342           don't really want to see '?' characters in place of non-ASCII
6343           characters like accented characters. So let's assume the input
6344           is UTF-8 until we come across text that is clearly not. If it's
6345           not UTF-8, we don't really know what it is, so try the following:
6346           (a) see whether the GST_SUBTITLE_ENCODING environment variable
6347           is set; if not, check (b) if the current locale encoding is
6348           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6349           the current locale encoding is UTF-8 and the environment variable
6350           was not set to any particular encoding. Not perfect, but better
6351           than nothing (and better than before, I think) (fixes #172848).
6352
6353 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6354
6355         * configure.ac:
6356           update core requirement to 0.10.4.1 because of async_playback
6357           vmethod on GstBaseSink
6358
6359 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6360
6361         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6362         * gst/adder/gstadder.c: (gst_adder_init):
6363         use DEBUG_FUNCPTR for collectpads
6364
6365 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6366
6367         * docs/plugins/Makefile.am:
6368         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6369         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6370         * ext/cdparanoia/gstcdparanoiasrc.c:
6371         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6372         (gst_gnome_vfs_sink_class_init):
6373         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6374         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6375         * ext/ogg/gstoggmux.c:
6376         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6377         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6378         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6379         * ext/pango/gsttextoverlay.c:
6380         * ext/pango/gsttextrender.c:
6381         * ext/theora/theoradec.c:
6382         * ext/theora/theoraenc.c:
6383         * ext/vorbis/vorbisdec.c:
6384         * ext/vorbis/vorbisenc.c:
6385         * gst-libs/gst/audio/gstaudiofilter.c:
6386         (gst_audio_filter_base_init):
6387         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6388         (gst_audio_filter_template_base_init):
6389         * gst/adder/gstadder.c: (gst_adder_get_type):
6390         * gst/adder/gstadder.h:
6391         * gst/audioconvert/gstaudioconvert.c:
6392         * gst/audiotestsrc/gstaudiotestsrc.c:
6393         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6394         (gst_audio_test_src_create):
6395         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6396         * gst/playback/gstdecodebin.c:
6397         * gst/playback/gstplaybin.c:
6398         * gst/playback/gststreamselector.c:
6399         (gst_stream_selector_base_init):
6400         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6401         * gst/volume/gstvolume.c:
6402         * sys/v4l/gstv4lmjpegsink.c:
6403         * sys/v4l/gstv4lmjpegsrc.c:
6404         * tests/check/libs/cddabasesrc.c:
6405         * tests/old/examples/gob/gst-identity2.gob:
6406           Add docs for adder, use GST_ELEMENT_DETAILS macro,
6407           define GstElementDetails at the top
6408
6409 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
6410
6411         * win32/common/libgstinterfaces.def:
6412         Add a lot of export functions for gst-python
6413         * win32/vs6/libgstinterfaces.dsp:
6414         Add a missing include folder in the project configuration
6415         
6416 2006-03-23  Wim Taymans  <wim@fluendo.com>
6417
6418         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6419         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6420         (gst_base_audio_src_change_state):
6421         Fix audio sources, forgot to make the ringbuffer
6422         startable...
6423
6424 2006-03-23  Wim Taymans  <wim@fluendo.com>
6425
6426         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6427         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6428         (gst_base_audio_src_change_state):
6429         unparent instead of unref the ringbuffer.
6430
6431 2006-03-23  Wim Taymans  <wim@fluendo.com>
6432
6433         * gst-libs/gst/audio/gstbaseaudiosink.c:
6434         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
6435         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
6436         Implement new async_play vmethod to start slaving and allow
6437         playback start in case of async PLAY state changes. 
6438
6439         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6440         Enable QoS with new method in base class.
6441
6442 2006-03-23  Wim Taymans  <wim@fluendo.com>
6443
6444         Patch by: Julien MOUTTE <julien at moutte dot net>
6445
6446         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
6447         (gst_video_test_src_do_seek), (gst_video_test_src_create):
6448         Partially handle 0 framerate, only EOS after the first frame
6449         is missing.
6450
6451 2006-03-23  Wim Taymans  <wim@fluendo.com>
6452
6453         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
6454
6455         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6456         (gst_riff_create_video_template_caps):
6457         * gst/ffmpegcolorspace/avcodec.h:
6458         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6459         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
6460         (gst_ffmpegcsp_avpicture_fill):
6461         * gst/ffmpegcolorspace/imgconvert.c:
6462         Patch for support of YVU9 AVI files (#334822)
6463
6464 2006-03-22  Edward Hervey  <edward@fluendo.com>
6465
6466         * docs/design/design-decodebin.txt:
6467         Added design document for new decodebin
6468         (Target Caps): text/x-pango-markup is also a default target caps.
6469
6470 2006-03-22  Wim Taymans  <wim@fluendo.com>
6471
6472         * gst-libs/gst/audio/gstbaseaudiosink.c:
6473         (gst_base_audio_sink_dispose):
6474         Since we _parent the ringbuffer, we also need to
6475         _unparent instead of a plain _unref.
6476
6477 2006-03-22  Wim Taymans  <wim@fluendo.com>
6478
6479         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
6480         (stop_seek), (scrub_toggle_cb), (main):
6481         Add scrub checkbox.
6482
6483 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
6484
6485         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
6486         (gst_ogg_parse_chain):
6487           Fix very inefficient usage of linked lists (#335365).
6488
6489 2006-03-21  Edward Hervey  <edward@fluendo.com>
6490
6491         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6492         * gst/playback/gstplaybin.c: (handoff):
6493         * gst/playback/gststreamselector.c:
6494         (gst_stream_selector_set_property):
6495         gcc 4.1 unreferenced pointer fixes.
6496         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
6497         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
6498         gst_buffer_ref() now takes a GstBuffer*.
6499
6500 2006-03-20  Julien MOUTTE  <julien@moutte.net>
6501
6502         * sys/xvimage/xvimagesink.c:
6503         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
6504         by Jan Schmidt.
6505
6506 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
6507
6508         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
6509         (id3v1_type_find), (apetag_type_find), (plugin_init):
6510           Can't do tag preferences via probability, as tags would then
6511           lose against types that are recognised with MAXIMUM probability
6512           (like .wav); so let all tag typefinders return MAXIMUM themselves
6513           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
6514           that we can prefer APE to ID3v1 (fixes #335028).
6515           
6516 2006-03-17  Wim Taymans  <wim@fluendo.com>
6517
6518         * gst-libs/gst/audio/gstbaseaudiosink.c:
6519         (gst_base_audio_sink_change_state):
6520         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
6521         (gst_ring_buffer_may_start):
6522         * gst-libs/gst/audio/gstringbuffer.h:
6523         Only start playback if we are playing.
6524         should fix #330748.
6525
6526 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
6527
6528         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
6529         * win32/common/config.h:
6530           Revert accidental commits to these files.
6531
6532 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
6533
6534         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
6535
6536         * tests/Makefile.am:
6537           Don't try to build tests in tests/icles if we
6538           don't have X (#323852)
6539
6540 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
6541
6542         * gst-libs/gst/tag/gstid3tag.c:
6543           Add TXXX frame identifiers for replaygain stuff as used
6544           by some taggers (see #323721).
6545
6546 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
6547
6548         * gst/playback/gststreamselector.c:
6549         (gst_stream_selector_set_property),
6550         (gst_stream_selector_bufferalloc):
6551           Preserve the existing buggy streamselector behaviour by performing
6552           a fallback buffer allocation when downstream isn't linked yet.
6553           This should really be fixed in playbin by blocking pads until it's
6554           linked them.
6555           Also, use gst_pad_alloc_buffer instead of
6556           gst_pad_alloc_buffer_and_set.
6557
6558 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6559
6560         * gst-libs/gst/tag/gstid3tag.c:
6561           Don't crash on unknown ID3v2 TXXX frames.
6562           
6563 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
6564
6565         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
6566           Chain up to the parent finalize method.
6567           Add 32-bit sample size to the template caps.
6568
6569         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6570         (gst_riff_create_video_template_caps):
6571           Add the fourcc that the VMWare codec uses.
6572           
6573         * gst/playback/gststreamselector.c:
6574         (gst_stream_selector_set_property),
6575         (gst_stream_selector_bufferalloc),
6576         (gst_stream_selector_request_new_pad):
6577           For the active pad, forward buffer-alloc requests, otherwise
6578           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
6579           having to memcpy every frame when used by playbin.
6580
6581         * gst/tcp/gstmultifdsink.c:
6582         (gst_multi_fd_sink_handle_client_write):
6583           Get negotiated caps from the sink pad, rather than the sink
6584           pad's peer.
6585
6586 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6587
6588         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6589         
6590         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
6591           Don't forget to set src->callbacks_pushed to FALSE again when
6592           popping them, otherwise re-activation in a different mode won't
6593           work (#334620).
6594
6595 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6596
6597         Patch by: Sebastien Moutte  <sebastien moutte net>
6598
6599         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
6600         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
6601         (gst_ffmpeg_smpfmt_to_caps):
6602           Replace __VA_ARGS__ caps creation macros with varargs functions.
6603           Makes things compile on MSVC (#320765), looks nicer, and we can
6604           tell the compiler to check for the NULL terminator.
6605
6606 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6607
6608         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
6609
6610         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6611           Make sure the buffer we copy into is really always big
6612           enough, this time for real (#333488).
6613           
6614 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6615
6616         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6617           Add support for 24bpp DIB (#305279).
6618
6619 2006-03-14  Wim Taymans  <wim@fluendo.com>
6620
6621         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
6622         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6623         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
6624         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
6625         (gst_video_scale_init), (gst_video_scale_src_event):
6626         Re-enable QoS after the release.
6627         Rework videoscale to use the base class src_event handler.
6628
6629 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6630
6631         * configure.ac:
6632           back to CVS.
6633
6634 === release 0.10.5 ===
6635
6636 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
6637
6638         * configure.ac:
6639           releasing 0.10.5, "Net"
6640
6641 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
6642
6643         * docs/plugins/Makefile.am:
6644           Part of previous cdparanoiasrc docs fixes, forgot to commit.
6645           
6646 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
6647
6648         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6649         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6650         * docs/plugins/gst-plugins-base-plugins.hierarchy:
6651           Add cdparanoiasrc to docs.
6652
6653         * gst-libs/gst/cdda/gstcddabasesrc.c:
6654           More GstCddaBaseSrc docs.
6655
6656 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
6657
6658         * docs/libs/gst-plugins-base-libs-sections.txt:
6659         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
6660         * gst-libs/gst/tag/tag.h:
6661           API: libgsttag: new method gst_tag_from_id3_user_tag().
6662
6663 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
6664
6665         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6666           NULL-terminate array of mpeg4 video file extensions.
6667           Fixes crash on PPC (#334226).
6668
6669 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
6670
6671         * ext/gnomevfs/gstgnomevfssrc.c:
6672         (gst_gnome_vfs_src_check_get_range):
6673           gnome_vfs_uri_is_local() alone is not a good indicator
6674           whether we can operate in pull-mode with a specific URI,
6675           as it returns FALSE for file:// URIs that point to an
6676           NFS-mounted path. Be more conservative here: whitelist
6677           local files, blacklist http URIs and use the old
6678           mechanism for anything else (fixes #334216).
6679
6680 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6681
6682         * configure.ac:
6683           back to trunk
6684
6685 === release 0.10.4 ===
6686
6687 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
6688
6689         * configure.ac:
6690           releasing 0.10.4, "Power"
6691
6692 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
6693
6694         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6695         Disable max-lateness by setting it to -1 for now, so that 
6696         we can bed QoS stuff in thoroughly between now and the next
6697         release.
6698
6699 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
6700
6701         Patch by: Fabrizio Gennari
6702
6703         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6704           Make sure we don't read beyond the palette buffer in case of
6705           broken or manipulated files (#333488)
6706
6707 2006-03-10  Edward Hervey  <edward@fluendo.com>
6708
6709         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6710         Fix for variable not initialized.
6711
6712 2006-03-09  Wim Taymans  <wim@fluendo.com>
6713
6714         * ext/libvisual/visual.c: (gst_visual_get_type),
6715         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
6716         (gst_visual_chain):
6717         Small cleanups.
6718
6719         * ext/theora/gsttheoradec.h:
6720         * ext/theora/theoradec.c: (gst_theora_dec_init),
6721         (gst_theora_dec_reset), (_theora_granule_time),
6722         (theora_dec_src_convert), (theora_dec_sink_convert),
6723         (theora_dec_src_query), (theora_dec_src_event),
6724         (theora_dec_sink_event), (theora_handle_comment_packet),
6725         (theora_handle_header_packet), (theora_dec_push),
6726         (theora_handle_data_packet), (theora_dec_chain),
6727         (theora_dec_change_state):
6728         Add simple QoS.
6729
6730 2006-03-09  Wim Taymans  <wim@fluendo.com>
6731
6732         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
6733         (audiocast_register_listener), (gst_gnome_vfs_src_start):
6734         Some cleanups.
6735
6736 2006-03-09  Wim Taymans  <wim@fluendo.com>
6737
6738         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
6739         Don't try to activate NULL chains.
6740
6741 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6742
6743         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
6744           Fix invalid memory access to region before peek'd data (#332964).
6745
6746 2006-03-09  Wim Taymans  <wim@fluendo.com>
6747
6748         Patch by: Christophe Fergeau
6749
6750         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
6751         * ext/pango/gsttextrender.c: (gst_text_render_init):
6752         * gst/adder/gstadder.c: (gst_adder_init):
6753         Don't leak padtemplates, closes #333510.
6754
6755 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6756
6757         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
6758           Fix invalid memory access: make sure string passed to
6759           regexec() is NUL-termianted.
6760
6761 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6762
6763         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6764         (mp3_type_find):
6765           Refactor mpeg/audio typefinding to make it more maintainable
6766           and easier to fine-tune. Make probing into middle of the file
6767           work properly (fixes #333900, also see #152688).
6768
6769 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
6770
6771         * gst/typefind/gsttypefindfunctions.c:
6772         (utf8_type_find_have_valid_utf8_at_offset):
6773           Remove part from previous commit that was bogus:
6774           g_utf8_validate() does in fact not accept embedded
6775           zeroes, so we don't need to check for those (thanks
6776           to Mike for the hint).
6777
6778 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
6779
6780         * gst/typefind/gsttypefindfunctions.c:
6781         (utf8_type_find_count_embedded_zeroes),
6782         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
6783           Make plain/text typefinder more conservative: firstly, check
6784           for embedded zeroes, which are perfectly valid UTF-8 characters,
6785           but also a fairly good sign that something is not a plain text
6786           file; secondly, probe into the middle of the file if possible.
6787           If we can't probe into the middle, limit the probability value
6788           to be returned to TYPE_FIND_POSSIBLE (see #333900).
6789
6790 2006-03-08  Michael Smith  <msmith@fluendo.com>
6791
6792         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6793           Make typefind function name for mpeg4 video unique.
6794
6795 2006-03-08  Wim Taymans  <wim@fluendo.com>
6796
6797         * ext/libvisual/visual.c: (gst_visual_init),
6798         (gst_visual_clear_actors), (gst_visual_dispose),
6799         (gst_visual_reset), (gst_visual_src_setcaps),
6800         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
6801         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
6802         (gst_visual_chain), (gst_visual_change_state):
6803         Cleanups, post nice errors.
6804         Handle sink and src events.
6805         Implement simple QoS.
6806
6807         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6808         Use new basesink methods to configure max-lateness.
6809         Small doc update.
6810
6811         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6812         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
6813         Debug statement cleanups.
6814
6815         * gst/volume/gstvolume.c: (gst_volume_class_init):
6816         Simple cleanup.
6817
6818 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
6819
6820         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
6821         (gst_text_overlay_init), (gst_text_overlay_set_property),
6822         (gst_text_overlay_get_property):
6823           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
6824           as string type properties, but mark them deprecated. Add
6825           'halignment' and 'valignment' properties that use enums
6826           instead of strings.
6827
6828 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
6829
6830         Patch by: Fabrizio Gennari
6831
6832         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6833           Allow palettes with less than 256 colours in AVI files
6834           (#333488)
6835
6836 2006-03-07  Julien MOUTTE  <julien@moutte.net>
6837
6838         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
6839         (gst_text_overlay_video_event): Fix wrong EOS handling on text
6840         pad. We were releasing the queued text buffer when we should keep
6841         it until video pad gets EOS or discard the text buffer because it's
6842         too old. That was eating the last subtitle buffer. Add some more
6843         debug.
6844
6845 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
6846
6847         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
6848         (gst_text_overlay_video_chain):
6849           Fix invalid memory access (we can't access a buffer after it's been
6850           pushed downstream without taking a reference); fix memory leak (if
6851           there's no text to render, bail out before allocating stuff).
6852
6853 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
6854
6855         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6856         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
6857         * ext/pango/gsttextoverlay.h:
6858           If input is plain text, escape it before passing it to
6859           pango_layout_set_markup().
6860
6861 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
6862
6863         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
6864           Don't ignore flow return from gst_pad_push().
6865
6866 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
6867
6868         Patch by: Fabrizio Gennari
6869
6870         * ext/libvisual/visual.c: (gst_visual_getcaps),
6871         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
6872         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
6873         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
6874         (gst_vorbisenc_convert_sink):
6875         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
6876         (gst_audio_duration_from_pad_buffer):
6877         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
6878         (gst_audio_filter_chain):
6879         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6880         (gst_base_rtp_depayload_setcaps):
6881         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
6882         (gst_video_get_size):
6883         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
6884           Don't leak references returned by gst_pad_get_parent()
6885           (#333663)
6886
6887 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
6888
6889         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
6890           change location param details
6891         * gst/volume/gstvolume.c: (plugin_init):
6892           correct plugin description
6893
6894 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
6895
6896         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6897         (gst_gnome_vfs_src_check_get_range):
6898           Override GstBaseSrc::check_get_range() in order to avoid opening
6899           the resource just to check whether we can operate in pull-mode or
6900           not - we can predict that pretty well from the URI alone. Should
6901           fix problems with last.fm (#331690). (Requires latest core CVS).
6902
6903 2006-03-06  Wim Taymans  <wim@fluendo.com>
6904
6905         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
6906         (gst_video_sink_class_init):
6907         Throw away frames that are later than 20 ms.
6908
6909 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
6910
6911         Patch by: Fabrizio Gennari
6912
6913         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6914           Set depth on WMA caps (#333545)
6915
6916 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
6917
6918         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
6919         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
6920           put Theora BOS pages before others.  This hardcodes
6921           the Ogg/Theora I profile, but hey.
6922
6923 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6924
6925         * ext/ogg/README:
6926           updated with some examples
6927         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
6928         (granulepos_add), (theora_buffer_from_packet):
6929         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
6930         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
6931         (gst_vorbisenc_chain):
6932           implement strategy from ext/ogg/README
6933         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
6934         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
6935         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
6936         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
6937           Fix muxer so that oggz-validate is happy with all streams;
6938           except for no eos mark, and the BOS page ordering
6939         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
6940         (check_buffer_granulepos):
6941         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
6942           update tests to check for OFFSET being set as requested
6943           fixed type of granulepos, it's not a ClockTime
6944
6945 2006-03-05  Julien MOUTTE  <julien@moutte.net>
6946
6947         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
6948         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
6949         Check that the xvimage we are creating has a correct size
6950         before returning it. (#314897)
6951
6952 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
6953
6954         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6955           Give id3 and ape tag typefinders a rank slightly higher
6956           than PRIMARY to ensure they're always run before any of
6957           the other typefinders (in particular wav and mp3) (#324186).
6958
6959 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
6960
6961         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6962           Add support for '3IVD' fourcc (#333403).
6963
6964 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
6965
6966         * configure.ac:
6967           Bump requirements to GStreamer CVS for the new error enum.
6968
6969         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
6970           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
6971           space left on the device (fixes #333352).
6972
6973 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
6974
6975         * win32/vs6:
6976           add a project file for libgstvolume
6977           update the workspace
6978
6979 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6980
6981         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
6982         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
6983         (GST_START_TEST):
6984           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
6985           Set IN_CAPS on header buffers
6986
6987 2006-03-02  Wim Taymans  <wim@fluendo.com>
6988
6989         * docs/plugins/Makefile.am:
6990         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6991         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6992         Add audioresample to docs.
6993
6994         * gst/audioconvert/gstaudioconvert.c:
6995         Add revision date.
6996
6997         * gst/audioresample/gstaudioresample.c:
6998         (gst_audioresample_base_init), (gst_audioresample_class_init),
6999         (gst_audioresample_init), (gst_audioresample_dispose),
7000         (audioresample_get_unit_size), (audioresample_transform_caps),
7001         (resample_set_state_from_caps), (audioresample_transform_size),
7002         (audioresample_set_caps), (audioresample_event),
7003         (audioresample_do_output), (audioresample_transform),
7004         (audioresample_pushthrough), (gst_audioresample_set_property),
7005         (gst_audioresample_get_property), (plugin_init):
7006         * gst/audioresample/gstaudioresample.h:
7007         Added docs.
7008         Small code cleanups.
7009
7010 2006-03-02  Wim Taymans  <wim@fluendo.com>
7011
7012         * docs/plugins/Makefile.am:
7013         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7014         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7015         Added videoscale to docs.
7016
7017         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7018         (gst_video_rate_swap_prev), (gst_video_rate_event),
7019         (gst_video_rate_chain):
7020         Fix typo in docs.
7021
7022         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7023         (gst_video_scale_init), (gst_video_scale_prepare_size),
7024         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7025         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7026         * gst/videoscale/gstvideoscale.h:
7027         Added docs, examples.
7028         Some code cleanups.
7029         Post errors instead of g_warning.
7030
7031 2006-03-02  Wim Taymans  <wim@fluendo.com>
7032
7033         * docs/libs/gst-plugins-base-libs-docs.sgml:
7034         * docs/libs/gst-plugins-base-libs-sections.txt:
7035         * docs/libs/gst-plugins-base-libs.types:
7036         * docs/plugins/Makefile.am:
7037         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7038         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7039         Added some more docs to libs and plugins.
7040
7041         * gst-libs/gst/audio/gstringbuffer.c:
7042         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7043         * gst-libs/gst/audio/gstringbuffer.h:
7044         Document ringbuffer some more.
7045
7046         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7047         (gst_video_rate_setcaps), (gst_video_rate_reset),
7048         (gst_video_rate_init), (gst_video_rate_flush_prev),
7049         (gst_video_rate_swap_prev), (gst_video_rate_event),
7050         (gst_video_rate_chain), (gst_video_rate_change_state):
7051         * gst/videorate/gstvideorate.h:
7052         Fix videorate to use segments.
7053         Make it work with 0/1 framerates (closes #331903)
7054         Handle EOS correctly.
7055         Added docs.
7056
7057 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7058
7059         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7060         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7061         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7062           In state change function, first chain up to parent class,
7063           then handle downwards state change stuff. Remove some
7064           commented out cruft from 0.8 code.
7065
7066 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7067
7068         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7069         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7070         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7071         (gst_ogm_parse_chain):
7072           Don't remove/re-add source pad if the new caps are the same as
7073           the old caps anyway (#333042). When removing source pad, don't
7074           unref it afterwards - we didn't ref it when adding. Sprinkle some
7075           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7076           after using gst_pad_get_parent(). Return downstream flow return
7077           value in chain function.
7078
7079 2006-03-02  Wim Taymans  <wim@fluendo.com>
7080
7081         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7082         * docs/plugins/gst-plugins-base-plugins.args:
7083         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7084         * docs/plugins/gst-plugins-base-plugins.interfaces:
7085         * docs/plugins/gst-plugins-base-plugins.signals:
7086         Fix hierarchy, added some more elements to the docs.
7087
7088         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7089         (gst_ffmpegcsp_get_type):
7090         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7091         Fix docs for ffmpegcolorspace.
7092
7093 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
7094
7095         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7096         (apetag_type_find), (ape_type_find), (plugin_init):
7097           Some typefinding fine-tuning:
7098           - rank ID3/APE tags in order of preference via probabilities, so that
7099             ID3v2 > APEv2 > APEv1 > ID3v1.
7100           - three or four bytes don't really justify MAXIMUM probability,
7101             change those to 'very likely' (musepack and monkeysaudio).
7102
7103 2006-03-01  Wim Taymans  <wim@fluendo.com>
7104
7105         * docs/plugins/Makefile.am:
7106         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7107         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7108         * ext/alsa/gstalsamixer.c:
7109         * ext/alsa/gstalsamixer.h:
7110         * ext/alsa/gstalsamixerelement.c:
7111         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7112         * ext/alsa/gstalsamixerelement.h:
7113         * ext/alsa/gstalsasink.c:
7114         * ext/alsa/gstalsasink.h:
7115         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7116         (gst_alsasrc_init):
7117         * ext/alsa/gstalsasrc.h:
7118         Added alsa docs.
7119         Small code cleanups.
7120
7121 2006-03-01  Wim Taymans  <wim@fluendo.com>
7122
7123         * ext/theora/Makefile.am:
7124         Dist new header too,
7125
7126 2006-03-01  Wim Taymans  <wim@fluendo.com>
7127
7128         * docs/plugins/Makefile.am:
7129         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7130         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7131         * ext/gnomevfs/gstgnomevfssink.h:
7132         * ext/gnomevfs/gstgnomevfssrc.h:
7133         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7134         * ext/vorbis/vorbisdec.h:
7135         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7136         * ext/vorbis/vorbisenc.h:
7137         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7138         (vorbis_parse_chain), (vorbis_parse_change_state):
7139         * ext/vorbis/vorbisparse.h:
7140         * gst/audioconvert/gstaudioconvert.h:
7141         * gst/tcp/gsttcpserversink.h:
7142         * gst/videotestsrc/gstvideotestsrc.c:
7143         * gst/videotestsrc/gstvideotestsrc.h:
7144         * gst/volume/gstvolume.c:
7145         * gst/volume/gstvolume.h:
7146         Fix some more docs.
7147         Added docs for vorbisdec and vorbisparse.
7148         Fix vorbisparse.
7149
7150 2006-03-01  Wim Taymans  <wim@fluendo.com>
7151
7152         * docs/plugins/Makefile.am:
7153         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7154         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7155         * ext/pango/gstclockoverlay.h:
7156         * ext/pango/gsttextoverlay.h:
7157         * ext/pango/gsttextrender.h:
7158         * ext/pango/gsttimeoverlay.h:
7159         * ext/theora/gsttheoradec.h:
7160         * ext/theora/gsttheoraenc.h:
7161         * ext/theora/theoradec.c:
7162         * ext/theora/theoraenc.c:
7163         * gst/audioconvert/gstaudioconvert.h:
7164         * gst/audiotestsrc/gstaudiotestsrc.h:
7165         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7166         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7167         * gst/tcp/gstmultifdsink.h:
7168         Updated/added documentation.
7169
7170         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7171         (gst_text_overlay_halign_get_type),
7172         (gst_text_overlay_wrap_mode_get_type),
7173         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7174         (gst_text_overlay_init), (gst_text_overlay_set_property),
7175         (gst_text_overlay_get_property):
7176         Fix up properties to be enums instead of string to make bindings,
7177         introspection and automatic GUI creation possible.
7178         Add getters for the properties.
7179
7180 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
7181
7182         * gst/audiotestsrc/gstaudiotestsrc.c:
7183           added defines of M_PI and M_PI_2
7184         * gst/ffmpegcolorspace/avcodec.h:
7185           removed #include "stdint.h" for win32 as _stdint.h is 
7186           autogenerated to win32/common
7187         * win32/common/libgstaudio.def:
7188         * win32/common/libgsttag.def:
7189           added some exports
7190         * win32/vs6:
7191           some project files bugs corrected
7192         * win32/vs7:
7193           project files are reset to the default vs7 configuration 
7194           (they link to msvcr71.dll using default optimizations)
7195           
7196 2006-02-28  Wim Taymans  <wim@fluendo.com>
7197
7198         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7199         Fix some docs.
7200
7201 2006-02-28  Edward Hervey  <edward@fluendo.com>
7202
7203         * ext/alsa/gstalsasrc.c:
7204         Set proper class on the ElementDetails:
7205         Source/Audio instead of Src/Audio/
7206
7207 2006-02-28  Edward Hervey  <edward@fluendo.com>
7208
7209         * gst/videoscale/vs_scanline.c:
7210         (vs_scanline_resample_nearest_RGBA):
7211         Revert optimization in videoscale. It should go in liboil and have
7212         an appropriate liboil function.
7213
7214 2006-02-28  Wim Taymans  <wim@fluendo.com>
7215
7216         * gst-libs/gst/audio/gstbaseaudiosink.c:
7217         (gst_base_audio_sink_provide_clock):
7218         Don't try to provide a clock in the NULL state.
7219
7220 2006-02-28  Wim Taymans  <wim@fluendo.com>
7221
7222         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7223         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7224         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7225         (gst_ogg_demux_deactivate_current_chain),
7226         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7227         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7228         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7229         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7230         Use GstSegment infrastructure to remove duplicated code
7231         and handle more seek cases correctly.
7232
7233 2006-02-28  Wim Taymans  <wim@fluendo.com>
7234
7235         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7236         (gst_ffmpegcsp_transform):
7237         Don't ignore return code from ffmpeg convert function.
7238
7239         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7240         Split out some long statements to ease debugging.
7241
7242 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
7243
7244         * ext/libvisual/visual.c: (gst_visual_init),
7245         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7246         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7247         being able to renegotiate the size. Instead, use the negotiation
7248         algorithm from the goom plugin to pick an initial output caps. 
7249
7250         Also, allow theoretical libvisual plugins that might support non-GL 
7251         output even if they also do GL.
7252
7253 2006-02-26  Julien MOUTTE  <julien@moutte.net>
7254
7255         * ext/libvisual/visual.c: (gst_visual_init),
7256         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7257         (plugin_init): Load only non GL plugins. Fix some memleaks and 
7258         possible negotiation issues.
7259
7260 2006-02-25  Julien MOUTTE  <julien@moutte.net>
7261
7262         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7263
7264 2006-02-24  Michael Smith  <msmith@fluendo.com>
7265
7266         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7267         (cmml_type_find), (plugin_init):
7268           Fix CMML type find function to not require a specific minor version
7269           of the CMML header.
7270
7271           Add an MPEG4 video elementary stream typefind function.
7272
7273 2006-02-04  Michael Smith  <msmith@fluendo.com>
7274
7275         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7276         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7277         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7278         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7279         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7280         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7281           Annodex support in ogg demuxer. Doesn't do very much without the
7282           other annodex patches (to come).
7283
7284 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7285
7286         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7287
7288         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7289           Pick up palette for MS video v1 (#327028)
7290
7291 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7292
7293         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7294         (gst_ffmpegcsp_caps_remove_format_info),
7295         (gst_ffmpegcsp_get_unit_size):
7296           The 'palette_data' field from incoming RGB caps shouldn't be
7297           proxied on outgoing YUV caps; also, restrict unit size
7298           adjustment in case of paletted data only to the unit that
7299           actually has a palette. Fixes #330711.
7300
7301 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7302
7303         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7304         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7305         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7306         (gst_ffmpegcsp_get_unit_size):
7307           Plug some memory leaks.
7308
7309 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7310
7311         * sys/ximage/Makefile.am:
7312         * sys/xvimage/Makefile.am:
7313           Add some _CFLAGS and _LIBS that seem to be missing
7314           and/or required for Cygwin (see #317048).
7315
7316 2006-02-22  Wim Taymans  <wim@fluendo.com>
7317
7318         * ext/alsa/gstalsasrc.c:
7319         Fix description as pointed out by caugier.
7320
7321 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
7322
7323         Reviewed by : Edward Hervey  <edward@fluendo.com>
7324
7325         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7326         (qt_type_find):
7327         Better 3gp typefinding (#331526).
7328
7329 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7330
7331         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7332           Don't send EOS event here, the base class will send one for us.
7333
7334         * gst/playback/gstplaybasebin.c: (prepare_output):
7335           Subpictures without video stream aren't allowed either.
7336         
7337         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7338           Fix debug statement copy'n'paste-o.
7339
7340 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7341
7342         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7343           Fix issues with mixer keeping state when muting/unmuting
7344           and when changing the volume whilst muted (see #331763
7345           and #331765).
7346
7347 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7348
7349         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7350         (parse_subrip), (gst_sub_parse_format_autodetect):
7351           Set right caps given that we send escaped text. Also,
7352           honour <i></i>, <b></b> and <u></u> markers that can be found
7353           in .srt files (fixes #310202).
7354
7355 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7356
7357         * gst-libs/gst/audio/mixerutils.c:
7358         (element_factory_rank_compare_func):
7359           Make order in which elements are tried more determinable.
7360
7361 2006-02-20  Julien MOUTTE  <julien@moutte.net>
7362
7363         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7364         (remove_element_chain), (cleanup_decodebin),
7365         (gst_decode_bin_change_state): Make decodebin reusable by
7366         fixing remove_element_chain first and then introduce a
7367         cleaner in state change to ->NULL. (Closes #331678)
7368
7369 2006-02-19  Wim Taymans  <wim@fluendo.com>
7370
7371         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7372         use 0666 mask when creating files so umask gets applied
7373         correctly. Fixes #331295.
7374
7375 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7376
7377         * gst/subparse/Makefile.am:
7378         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7379         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7380         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7381         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7382         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7383         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7384         * gst/subparse/gstssaparse.h:
7385         * gst/subparse/gstsubparse.c: (plugin_init):
7386           Add very basic parser for SSA subtitle streams (as often
7387           found in matroska files).
7388
7389 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7390
7391         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7392           That should be text/x-pango-markup, not text/x-pango-layout.
7393
7394 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7395
7396         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7397         Polishing.
7398
7399 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7400
7401         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7402         (gst_text_overlay_finalize), (gst_text_overlay_init),
7403         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7404         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7405         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7406         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7407         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7408         Fix state change deadlock.
7409
7410 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7411
7412         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7413         (gst_text_overlay_finalize), (gst_text_overlay_init),
7414         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7415         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7416         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7417         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7418         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7419         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
7420         and subtitles files.
7421
7422 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7423
7424         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
7425         should be considered as raw.
7426
7427 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7428
7429         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
7430         (cb_probe):
7431         * gst/playback/gststreaminfo.h: Introduce language informations.
7432
7433 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
7434
7435         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
7436         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
7437         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7438         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
7439         Set shared memory segments to be deleted as soon as we have attached,
7440         that way they get cleaned up automatically if we crash.
7441
7442 2006-02-18  Julien MOUTTE  <julien@moutte.net>
7443
7444         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
7445         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
7446         functions are called with lock held.
7447
7448 2006-02-18  Julien MOUTTE  <julien@moutte.net>
7449
7450         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7451         (gst_text_overlay_finalize), (gst_text_overlay_init),
7452         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7453         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7454         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
7455         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
7456         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
7457         (gst_text_overlay_change_state): Refactoring of textoverlay
7458         without collectpads. This now supports sparse subtitles coming
7459         from a demuxer instead of a sub file. Seeking is still broken 
7460         though. Need to discuss with wtay some more on how to handle
7461         seeking correctly.
7462         * ext/pango/gsttextoverlay.h:
7463         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
7464         subtitles coming from the demuxer.
7465
7466 2006-02-17  Wim Taymans  <wim@fluendo.com>
7467
7468         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7469         (gst_vorbisenc_convert_sink):
7470         Use some more scaling functions.
7471
7472 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
7473
7474         * ext/cdparanoia/gstcdparanoiasrc.c:
7475         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
7476         (gst_cd_paranoia_paranoia_callback),
7477         (gst_cd_paranoia_src_signal_is_being_watched),
7478         (gst_cd_paranoia_src_read_sector):
7479         * ext/cdparanoia/gstcdparanoiasrc.h:
7480           Add back 'transport-error' and 'uncorrected-error' signals and
7481           make them actually be fired when bad stuff happens (#319340).
7482
7483 2006-02-17  Wim Taymans  <wim@fluendo.com>
7484
7485         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
7486         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
7487         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
7488         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
7489         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
7490         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
7491         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
7492         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
7493         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
7494         (gst_ring_buffer_clear):
7495         Small cleanups.
7496         Added some G_LIKELY.
7497
7498 2006-02-17  Wim Taymans  <wim@fluendo.com>
7499
7500         * gst-libs/gst/audio/TODO:
7501         Update TODO
7502
7503         * gst-libs/gst/audio/gstbaseaudiosink.c:
7504         (gst_base_audio_sink_get_offset):
7505         When trying to play samples ASAP and we don't have a
7506         previous sample, try to play at position 0 instead of
7507         an invalid position.
7508
7509 2006-02-17  Wim Taymans  <wim@fluendo.com>
7510
7511         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
7512         (gst_alsasink_reset):
7513         Also release lock when we get an error in _reset();
7514         fix an error message.
7515
7516 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7517
7518         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
7519         (gst_alsasink_init), (get_channel_free_structure),
7520         (caps_add_channel_configuration), (gst_alsasink_getcaps),
7521         (gst_alsasink_close):
7522         * ext/alsa/gstalsasink.h:
7523           Add support for more than 2 channels (#326720).
7524
7525 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7526
7527         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7528           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
7529           with 4 or 6 channels, assume a default channel layout to make things
7530           work (not sure there's anything else we can do in those cases).
7531
7532 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7533
7534         * gst-libs/gst/audio/multichannel.c:
7535           Minor docs fix.
7536
7537         * gst-libs/gst/riff/Makefile.am:
7538         * gst-libs/gst/riff/riff-ids.h:
7539         * gst-libs/gst/riff/riff-media.c:
7540         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
7541           Add support for WAVEFORMATEX, eg. PCM audio with more than two
7542           channels and a channel layout map.
7543           
7544 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
7545
7546         Reviewed by Edward Hervey  <edward@fluendo.com>
7547
7548         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
7549         C-level optimization of the RGBA nearest neighbour function.
7550         Eventually this might end up in liboil with vectorized versions.
7551
7552 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7553
7554         * gst-libs/gst/audio/multichannel.c:
7555         (gst_audio_get_channel_positions):
7556           When we have more than 2 channels, but no channel layout is
7557           specified in the caps, return some default channel layout
7558           to the caller and warn about about a possibly buggy element
7559           (could be buggy filtercaps as well of course) (#317038).
7560
7561 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7562
7563         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7564           Add gst-libs/gst/cdda to list of lib search paths.
7565
7566 2006-02-15  Andy Wingo  <wingo@pobox.com>
7567
7568         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
7569         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
7570         to the Lord Jesus that I do not have to touch the ogg muxer ever
7571         again.
7572
7573 2006-02-15  Edward Hervey  <edward@fluendo.com>
7574
7575         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
7576         quicktime movie files can also contain 'uuid' atoms.
7577
7578 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
7579
7580         * gst/audioconvert/plugin.c: (plugin_init):
7581           Register the GstAudioChannelPosition enum type with the type
7582           system in the plugin_init function, so that it is known before
7583           any element actually makes use of multi-channel stuff. This is
7584           required for example if one wants to be able to deserialise/use
7585           a caps string with channel positions before any pipeline has
7586           been setup and started, like with gst-launch.
7587
7588 2006-02-14  Wim Taymans  <wim@fluendo.com>
7589
7590         * gst-libs/gst/audio/gstringbuffer.c:
7591         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
7592         (gst_ring_buffer_samples_done), (wait_segment),
7593         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
7594         Add some compiler G_(UN_)LIKELY help.
7595         SIGNAL the ringbuffer waiters when going to PAUSED as well to
7596         make sure they can exit their functions. Should fix #330748
7597
7598 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
7599
7600         * Makefile.am:
7601         * configure.ac:
7602         * win32/MANIFEST:
7603         * win32/common/_stdint.h:
7604           Windows does not have long long; copy the generated _stdint.h
7605         * win32/common/interfaces-enumtypes.c:
7606         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
7607         (gst_mixer_track_flags_get_type),
7608         (gst_tuner_channel_flags_get_type):
7609         * win32/common/multichannel-enumtypes.c:
7610         (gst_audio_channel_position_get_type):
7611           update
7612
7613 2006-02-13  Wim Taymans  <wim@fluendo.com>
7614
7615         * gst-libs/gst/audio/gstbaseaudiosink.c:
7616         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
7617         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7618         Always sync on first sample we receive when starting.
7619
7620 2006-02-13  Wim Taymans  <wim@fluendo.com>
7621
7622         * gst/playback/gstplaybin.c: (gen_vis_element):
7623         Update vis bin docs.
7624         Move queue after tee so we don't queue video buffers but
7625         audio samples instead. Fixes problems where the video queue
7626         is filled and the audio queue empty.
7627
7628 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
7629
7630         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
7631           No need to push an EOS event here, GstBaseSrc will do that for us
7632           when we return FLOW_UNEXPECTED.
7633           
7634 2006-02-12  Wim Taymans  <wim@fluendo.com>
7635
7636         * gst-libs/gst/audio/gstbaseaudiosink.c:
7637         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
7638         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
7639         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7640         Use scale functions when possible.
7641         Fix error messages.
7642         Free clockid when after waiting for EOS.
7643         Use G_(UN_)LIKLY when it makes sense.
7644         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
7645
7646 2006-02-12  Edward Hervey  <edward@fluendo.com>
7647
7648         * gst/playback/gstplaybasebin.c: (prepare_output): 
7649         Remove stray semi-colon (fixes #330888).
7650
7651 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
7652
7653         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
7654         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
7655         Fix up the XShm call testing so that we catch errors, and don't
7656         cause new ones by attempting to detach from a segment we failed
7657         to attach to. Fixes #312439.
7658
7659 2006-02-10  Edward Hervey  <edward@fluendo.com>
7660
7661         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7662         Added flv file typefind (video/x-flv).
7663
7664 2006-02-10  Edward Hervey  <edward@fluendo.com>
7665
7666         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7667         (gst_riff_create_video_template_caps):
7668         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
7669         Also added the caps to the default set of riff video caps.
7670
7671 2006-02-09  Andy Wingo  <wingo@pobox.com>
7672
7673         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
7674         time and the end time of the last packet in the page.
7675         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
7676         on the pages in our queue, set the duration as well. Reflow a
7677         debug statement.
7678         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
7679         Fixes bad muxing order.
7680
7681 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7682
7683         * gst-libs/gst/rtp/gstbasertppayload.c:
7684         (gst_basertppayload_setcaps), (gst_basertppayload_push):
7685           update seqnum before setting it on the packet; this makes sure
7686           that the timestamp and seqnum properties match after pushing
7687           a buffer
7688
7689 2006-02-09  Andy Wingo  <wingo@pobox.com>
7690
7691         * gst-libs/gst/audio/gstringbuffer.c
7692         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
7693         overflow after 13.5 hours of recording. Kapow!
7694
7695         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
7696         the buffer size -- we don't care about underrun/overrun reporting
7697         right now, just need to return a useful value.
7698
7699 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
7700
7701         * configure.ac:
7702           Back to CVS
7703
7704 === release 0.10.3 ===
7705
7706 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
7707
7708         * configure.ac:
7709           releasing 0.10.3, "Under Pressure"
7710
7711 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
7712
7713         * configure.ac:
7714         Drat. Bump libtool version number for new API.
7715         Prelease 0.10.2.3 (of 0.10.3)
7716
7717 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
7718
7719         * configure.ac:
7720         * win32/common/config.h:
7721         0.10.2.2 prerelease (of 0.10.3).
7722
7723 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
7724
7725         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
7726           Revert Andy's newsegment change pending a more correct
7727           fix.
7728
7729 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7730
7731         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7732         (qt_type_find), (plugin_init):
7733           detect more files as 3gp
7734           group and reorder the iso file formats
7735
7736 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7737
7738         * ext/vorbis/vorbis.c: (plugin_init):
7739           Register musicbrainz tags, so apps don't have to.
7740
7741 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7742
7743         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
7744         (gst_tag_to_vorbis_tag):
7745           Make sure we called gst_tag_register_musicbrainz_tags()
7746           before possibly mapping a vorbiscomment string from/to a
7747           musicbrainz tag.
7748
7749 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7750
7751         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
7752           In case we can't find the required number of consecutive
7753           mpeg audio frames to positively identify an MPEG audio
7754           stream, check if there's at least a valid mpeg audio
7755           frame right at offset 0 and if so suggest mpeg/audio
7756           caps with a very low probability (#153004).
7757
7758 2006-02-07  Andy Wingo  <wingo@pobox.com>
7759
7760         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
7761         a TIME segment if we get timestamped buffers. Requires recent
7762         fixes in core to work properly.
7763
7764 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7765
7766         * gst/playback/gstplaybasebin.c: (prepare_output):
7767           Don't print the URI as part of the error message, it
7768           makes error dialogs look rather ugly, especially if
7769           the URI is very long or has characters in it that
7770           need escaping.
7771
7772 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7773
7774         * gst/playback/gstplaybasebin.c: (prepare_output):
7775           Error out if we have only text or subtitles, but nothing
7776           else. Also error out if we have subtitles but no video
7777           stream.
7778
7779 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
7780
7781         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7782           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
7783           Post an error message on the bus when we encounter an
7784           error, which will hopefully be more meaningful than the
7785           'Internal Flow Error' message users get to see if we
7786           just return GST_FLOW_ERROR.
7787
7788 2006-02-07  Andy Wingo  <wingo@pobox.com>
7789
7790         * configure.ac (GST_MAJORMINOR): Update core version req to
7791         0.10.2.2, for the collectpads API addition (#330244).
7792
7793 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
7794
7795         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
7796           Return FALSE from plugin_init() when GnomeVFS can't
7797           be initialised for some reason (#328423).
7798
7799 2006-02-06  Julien MOUTTE  <julien@moutte.net>
7800
7801         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
7802         Stick to seeking theory until i find the bug.
7803         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
7804
7805 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
7806
7807         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
7808         (theora_enc_finalize), (theora_enc_sink_setcaps),
7809         (theora_set_header_on_caps), (theora_enc_chain),
7810         (theora_enc_change_state):
7811         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
7812           Make theoraenc and the tests leak free. Like, really.
7813
7814 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
7815
7816         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
7817         (theora_enc_finalize), (theora_enc_sink_setcaps):
7818           Add a finalize method to ensure we clean up state even if
7819           someone omitted the state change back to NULL.
7820
7821         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
7822         (gst_vorbisenc_chain):
7823           Free some more leaked bits.
7824
7825         * tests/check/pipelines/theoraenc.c: (start_pipeline),
7826         (stop_pipeline):
7827           Wait for state changes to happen if they're ASYNC.
7828
7829           This ought to teach those fancy pants buildbots a lesson.
7830
7831 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
7832
7833         * gst-libs/gst/tag/gstid3tag.c:
7834           Add mapping for ID3 International Standard Recording Code
7835           tag "TSRC"
7836
7837 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
7838
7839         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
7840           Don't leak tag names.
7841
7842 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7843
7844         * docs/libs/gst-plugins-base-libs-docs.sgml:
7845         * docs/libs/gst-plugins-base-libs-sections.txt:
7846         * gst-libs/gst/tag/gstid3tag.c:
7847         * gst-libs/gst/tag/gstvorbistag.c:
7848         * gst-libs/gst/tag/tags.c:
7849           Split libgsttag docs into multiple sections.
7850
7851 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7852
7853         * docs/libs/Makefile.am:
7854         * docs/libs/gst-plugins-base-libs-docs.sgml:
7855         * docs/libs/gst-plugins-base-libs-sections.txt:
7856         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
7857         * gst-libs/gst/tag/gstvorbistag.c:
7858         * gst-libs/gst/tag/tag.h:
7859         * gst-libs/gst/tag/tags.c:
7860           Add libgsttag to the docs.
7861
7862 2006-02-05  Julien MOUTTE  <julien@moutte.net>
7863
7864         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
7865         (gst_text_overlay_init), (gst_text_overlay_src_event),
7866         (gst_text_overlay_collected): Fix clockoverlay.
7867
7868 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7869
7870         * docs/libs/compiling.sgml:
7871           Fix typo: it's pkg-config, not pkg-gconfig
7872
7873         * docs/libs/gst-plugins-base-libs-docs.sgml:
7874         * docs/libs/gst-plugins-base-libs-sections.txt:
7875         * docs/libs/tmpl/gstgconf.sgml:
7876           There is no libgstgconf in 0.10, remove it
7877           from the docs.
7878
7879 2006-02-05  Julien MOUTTE  <julien@moutte.net>
7880
7881         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
7882         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7883         (gst_text_overlay_src_event), (gst_text_overlay_collected):
7884         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
7885         (gst_sub_parse_class_init), (gst_sub_parse_init),
7886         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
7887         (parse_mpsub), (parser_state_init), (handle_buffer),
7888         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
7889         * gst/subparse/gstsubparse.h: Introduce seeking code.
7890
7891 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7892
7893         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7894           Add comment about LANGUAGE tag inconsistency (we want
7895           ISO-639-1, but extract three-letter identifiers?)
7896
7897         * po/POTFILES.in:
7898           Add two translatable files.
7899
7900 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
7901
7902         * gst-libs/gst/tag/Makefile.am:
7903         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
7904         * gst-libs/gst/tag/tag.h:
7905         * gst-libs/gst/tag/tags.c:
7906         (gst_tag_register_musicbrainz_tags_internal),
7907         (gst_tag_register_musicbrainz_tags):
7908           Forward-port some tags stuff from the 0.8 branch. This is
7909           mostly the addition of musicbrainz tags and their mapping
7910           to vorbistags, and a vorbistag mapping of the language tag.
7911
7912 2006-02-05  Julien MOUTTE  <julien@moutte.net>
7913
7914         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
7915         refactoring.
7916
7917 2006-02-04  David Schleef  <ds@schleef.org>
7918
7919         * ext/ogg/gstoggmux.c:
7920         * gst/typefind/gsttypefindfunctions.c:
7921           Add Dirac typefinding and add dirac format to oggmux.
7922
7923 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
7924
7925         * gst/playback/gstdecodebin.c: (try_to_link_1):
7926           Don't put essential function call into
7927           g_return_*() macro, otherwise it'll all be
7928           replaced by NOOPs when compiling with
7929           G_DISABLE_CHECKS defined.
7930
7931 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
7932
7933         * ext/ogg/gstoggdemux.c:
7934         * ext/ogg/gstoggparse.c:
7935         * gst/tcp/gsttcpserversink.c:
7936         * sys/v4l/v4lsrc_calls.c:
7937         * sys/v4l/v4lsrc_calls.h:
7938         Just make it compile with --disable-gst-debug.
7939
7940 2006-02-03  Wim Taymans  <wim@fluendo.com>
7941
7942         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
7943         (gst_alsasink_class_init), (gst_alsasink_init),
7944         (gst_alsasink_write), (gst_alsasink_reset):
7945         * ext/alsa/gstalsasink.h:
7946         Add lock to protect alsa calls.
7947         Implement reset to flush samples ASAP, does not work
7948         with dmix though.
7949
7950 2006-02-02  Wim Taymans  <wim@fluendo.com>
7951
7952         * gst-libs/gst/audio/gstbaseaudiosink.c:
7953         (gst_base_audio_sink_provide_clock):
7954         Ugh.. getting late I guess...
7955
7956 2006-02-02  Wim Taymans  <wim@fluendo.com>
7957
7958         * gst-libs/gst/audio/gstbaseaudiosink.c:
7959         (gst_base_audio_sink_provide_clock),
7960         (gst_base_audio_sink_set_property),
7961         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
7962         Don't try to provide a clock when we are not negotiated since
7963         we might not be able to make it run.
7964
7965 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
7966
7967         * gst/playback/gstdecodebin.c: (try_to_link_1):
7968           Unlinking two source pads is ... hard.
7969
7970 2006-02-02  Wim Taymans  <wim@fluendo.com>
7971
7972         * gst-libs/gst/audio/TODO:
7973         Updated.
7974
7975         * gst-libs/gst/audio/gstbaseaudiosink.c:
7976         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
7977         On EOS, wait till the last sample is played before posting EOS.
7978
7979 2006-02-01  Philippe Kalaf <burger at speedy dot org>
7980
7981         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7982           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
7983           setting queue_delay to zero. Also avoid thread being started if
7984           queue_delay is zero.
7985
7986 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
7987
7988         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
7989           Make test work again by connecting fakesinks to each decoded pad,
7990           which makes the pipeline wait until each fakesink has a buffer
7991           queued before going to PAUSED state. At that point we know the
7992           decodebin pads are negotiated.
7993
7994 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
7995
7996         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
7997         (gst_cdda_base_src_handle_event):
7998         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7999           Pass unhandled queries to the parent class's query function.
8000
8001 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8002
8003         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8004         (gst_ogg_pad_src_query):
8005         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8006         * ext/theora/theoradec.c: (theora_dec_src_query),
8007         (theora_dec_sink_query):
8008         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8009         (vorbis_dec_sink_query):
8010         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8011         (gst_vorbisenc_sink_query):
8012         * gst/adder/gstadder.c: (gst_adder_query):
8013           Pass unhandled queries upstream instead of just
8014           dropping them (#326447). Also, fix supported
8015           query types list for some elements.
8016
8017 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8018
8019         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8020         (paris_type_find), (ilbc_type_find), (plugin_init):
8021           Fix typefinding for audio/x-au, audio/x-paris and
8022           audio/iLBC-sh. We cannot use the START_WITH macros
8023           here, because there can only be one typefind factory
8024           with the same name (caps), so the second one would
8025           replace the first one and the first one would never
8026           be called when doing typefinding (see #161712).
8027           
8028
8029 2006-01-31  Wim Taymans  <wim@fluendo.com>
8030
8031         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8032         (vorbis_handle_header_packet), (vorbis_dec_push),
8033         (vorbis_handle_data_packet):
8034         Use scale_int when we can, add some more scaling.
8035         Check packettype before parsing it.
8036
8037 2006-01-31  Wim Taymans  <wim@fluendo.com>
8038
8039         * ext/theora/theoradec.c: (_theora_granule_time),
8040         (theora_dec_src_convert), (theora_dec_sink_convert):
8041         Call right _scale functions.
8042         Use parameter instead of some other random value.
8043
8044 2006-01-31  Wim Taymans  <wim@fluendo.com>
8045
8046         * ext/theora/theoradec.c: (_theora_granule_frame),
8047         (_theora_granule_time), (_inc_granulepos),
8048         (theora_dec_src_convert), (theora_dec_sink_convert),
8049         (theora_handle_type_packet), (theora_handle_data_packet),
8050         (theora_dec_chain):
8051         Use higher precision timestamps calculation.
8052         Convert some other conversions to _scale.
8053
8054 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
8055
8056         * gst/audiotestsrc/gstaudiotestsrc.c:
8057         (gst_audio_test_src_create_sine_table), (plugin_init):
8058         * gst/volume/gstvolume.c: (plugin_init):
8059           initialize gst_controller before using
8060
8061 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
8062
8063         * tests/check/pipelines/theoraenc.c:
8064         * tests/check/pipelines/vorbisenc.c:
8065         Define constant using G_GINT64_CONSTANT to avoid errors when
8066         passing it around - otherwise it gets truncated to 32 bits.
8067
8068         Fixes failing tests.
8069
8070 2006-01-31  Andy Wingo  <wingo@pobox.com>
8071
8072         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8073         caps being set doesn't have a framerate value. Basically a stopgap
8074         measure.
8075
8076         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8077         technically correct enough to put into core though.
8078         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8079         DURATION. Fixes theoraenc ! oggmux.
8080
8081         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8082         fraction, not double.
8083
8084 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
8085
8086         * win32/vs7:
8087         add vs7 project files created by Sergey Scobich
8088
8089 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
8090
8091         * win32/vs8:
8092         add vs8 project files created by Sergey Scobich
8093         
8094 2006-01-30  Andy Wingo  <wingo@pobox.com>
8095
8096         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8097         timestamp + duration, not just timestamp -- ogg pages should be
8098         ordered by stop time. Necessary fix given the change in vorbis
8099         timestamps.
8100
8101         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
8102         (gst_theora_enc_init): Pull the granule shift out of the encoder.
8103         (granulepos_add): New function, handles the messiness of adjusting
8104         granulepos values.
8105         (theora_buffer_from_packet):
8106         (theora_enc_chain):
8107         (theora_enc_sink_event): Use granulepos_add, not +.
8108
8109         * tests/check/pipelines/theoraenc.c
8110         (check_buffer_granulepos_from_starttime): Just check the frame
8111         count, not the actual granulepos -- we can't dictate to the
8112         encoder when it should be placing keyframes.
8113
8114 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8115
8116         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8117           SERVICE_NOT_AVAILABLE happens for example when you're trying to
8118           play an http:// stream from a server that's not serving
8119
8120 2006-01-30  Andy Wingo  <wingo@pobox.com>
8121
8122         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
8123         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8124         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8125         available.
8126
8127         * ext/theora/gsttheoraenc.h:
8128         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8129         although theoraenc was timestamping correctly. Added handling of
8130         streams that start with nonzero timestamps.
8131
8132         * tests/check/Makefile.am:
8133         * tests/check/pipelines/theoraenc.c: New file, basically does same
8134         tests as vorbisenc.
8135
8136         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8137
8138 2006-01-30  Wim Taymans  <wim@fluendo.com>
8139
8140         * gst-libs/gst/audio/gstaudiosink.c:
8141         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8142         (gst_audioringbuffer_pause):
8143         Implement pause that does not wait for completion.
8144
8145         * gst-libs/gst/audio/gstbaseaudiosink.c:
8146         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8147         Don't drop buffers when going to PAUSED but perform preroll on
8148         remaining samples now that core base class supports this.
8149
8150         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8151         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8152         (gst_ring_buffer_commit):
8153         Pause should not signal waiters.
8154         Implement return value of _commit correctly.
8155
8156 2006-01-30  Andy Wingo  <wingo@pobox.com>
8157
8158         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8159
8160         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8161         updated to timestamp from the first sample, not the last.
8162         (gst_vorbisenc_buffer_from_header_packet): New function, takes
8163         special care of granulepos and timestamp for header packets.
8164         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8165         when the first buffer has a nonzero timestamp.
8166
8167         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8168         (GstVorbisEnc.subgranule_offset): New members. Take care of the
8169         case when the first audio buffer we get has a nonzero timestamp.
8170         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8171         properly timestamp vorbis buffers with the time of the first
8172         sample, not the last.
8173         
8174         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8175         vorbis_granule_time_copy -- now it takes the granule/subgranule
8176         offset into account.
8177
8178         * tests/check/pipelines/vorbisenc.c: New test for correctness of
8179         timestamps, durations, and granulepos on buffers produced by
8180         vorbisenc.
8181
8182 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
8183
8184         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8185         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8186           Patch from Eric Jonas to support conversions to/from UYVY 
8187           (Fixes: #324626)
8188
8189 2006-01-30  Julien MOUTTE  <julien@moutte.net>
8190
8191         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8192         (setup_subtitle), (setup_source), (set_active_source):
8193         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8194         (gen_text_element), (gen_audio_element), (gen_vis_element),
8195         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8196
8197 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
8198
8199         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8200         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8201                 use gst_guint64_to_gdouble to be compliant with vs6
8202         * gst/playback/gstdecodebin.c: (try_to_link_1)
8203         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8204                 use G_GINT64_CONSTANT for int64 constants
8205         * win32/common/libgstinterfaces.def:
8206                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8207         * win32/vs6:
8208                 update and add new project files
8209                 
8210 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8211
8212         * Makefile.am:
8213         * win32/MANIFEST:
8214         * win32/common/interfaces-enumtypes.c:
8215         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8216         (gst_mixer_track_flags_get_type),
8217         (gst_tuner_channel_flags_get_type):
8218         * win32/common/interfaces-enumtypes.h:
8219         * win32/common/multichannel-enumtypes.c:
8220         (gst_audio_channel_position_get_type):
8221         * win32/common/multichannel-enumtypes.h:
8222           add a win32-update rule like in core, and copy over enumtypes files
8223
8224 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8225
8226         * win32/MANIFEST:
8227         * win32/common/config.h:
8228         * win32/common/config.h.in:
8229           add config files just like in core
8230
8231 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
8232
8233         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8234           Make gcc-4.1 happy (part of #327357).
8235
8236 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8237
8238         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8239         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8240         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8241         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8242         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8243         (gst_alsasrc_unprepare), (gst_alsasrc_read):
8244           Update all error messages.  All of them should either use
8245           the default translated message, or actually provide a
8246           translatable string.
8247           Make the string for channel count problems meaningful.
8248
8249 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8250
8251         * sys/v4l/v4l_calls.c: (gst_v4l_open):
8252           check for and throw RESOURCE_BUSY
8253
8254 2006-01-27  David Schleef  <ds@schleef.org>
8255
8256         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8257           checked in this change -- it requires liboil features not
8258           in 0.3.6.  Revert parts.
8259
8260 2006-01-27  David Schleef  <ds@schleef.org>
8261
8262         * REQUIREMENTS:
8263         * configure.ac: update liboil requirement to 0.3.6
8264         * gst/videoscale/Makefile.am:
8265         * gst/videoscale/vs_scanline.c: liboilify
8266
8267 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8268
8269         * ext/libvisual/visual.c: (get_buffer):
8270           When pad_alloc returns a GstFlowReturn other
8271           than GST_FLOW_OK, make sure it is passed upstream.
8272
8273 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8274
8275         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8276         (gst_alsasink_class_init):
8277           Free the device name string.
8278
8279         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8280         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8281         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8282           Don't remove a pad from the collectpads structure until it
8283           is released - it's a request pad, and may receive data again
8284           if the element gets moved back to PLAYING state.
8285
8286         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8287           Ensure we turn on double buffering on the Xv port, and
8288           set the colour key to something dark and mysterious that
8289           isn't black.
8290
8291 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8292
8293         * ext/alsa/gstalsaplugin.c: (plugin_init):
8294         * ext/cdparanoia/gstcdparanoiasrc.c:
8295         (gst_cd_paranoia_src_base_init), (plugin_init):
8296         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8297         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8298           - a library should not call setlocale. see "Libraries" node in
8299             gettext manual
8300           - make sure all plugins that use translation do bindtextdomain
8301             to point to the localedir
8302         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8303         (setup_sinks), (plugin_init):
8304           all this, and check for NULL when creating sinks
8305
8306 2006-01-27  Julien MOUTTE  <julien@moutte.net>
8307
8308         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8309         (plugin_init): Make typefinding of subtitles work again.
8310
8311 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
8312
8313         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8314         (mp3_type_frame_length_from_header), (mp3_type_find),
8315         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8316         (plugin_init):
8317           Backport a bunch of typefinding fixes from the 0.8 branch.
8318           Also, improve wavpack typefinding: if we can't peek the
8319           entire wavpack block, try to parse the bits we can get and
8320           see if we find what we're looking for in those.
8321
8322 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8323
8324         * sys/ximage/ximagesink.c:
8325         (gst_ximagesink_calculate_pixel_aspect_ratio):
8326         * sys/xvimage/xvimagesink.c:
8327         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8328         more cases of pixel aspect ratio.
8329
8330 2006-01-26  Edward Hervey  <edward@fluendo.com>
8331
8332         * gst/playback/gstdecodebin.c: (pad_probe):
8333         Also consider the flush-start and tag events as unblockers
8334         for the pad probes.
8335
8336 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8337
8338         * gst/playback/gstplaybin.c: (gst_play_bin_init),
8339         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8340         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
8341         On the fly visualisation switch, works disabling, enabling as
8342         well but it won't be able to enable vis in a playbin that was
8343         created with no visualisation.
8344
8345 2006-01-25  Wim Taymans  <wim@fluendo.com>
8346
8347         * gst-libs/gst/audio/gstbaseaudiosink.c:
8348         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8349         Undo previous commit that returned WRONG_STATE sooner, it breaks 
8350         resume after pause.
8351
8352 2006-01-25  Wim Taymans  <wim@fluendo.com>
8353
8354         * gst-libs/gst/audio/gstbaseaudiosink.c:
8355         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8356         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8357         Improve debugging.
8358         Post error when caps cannot be parsed.
8359         Resync on discontinuity in the stream.
8360         Clip samples to segment boundaries.
8361         return WRONG_STATE sooner when we are flushing.
8362
8363         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8364         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8365         Make audiosrc operate in TIME.
8366         Set TIMESTAMP and DURATION on buffers.
8367
8368 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
8369
8370         * tests/examples/seek/seek.c: (main):
8371           Output tag messages as well.
8372
8373 2006-01-23  Edward Hervey  <edward@fluendo.com>
8374
8375         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8376         (free_pad_probes), (remove_fakesink), (pad_probe),
8377         (close_pad_link), (gst_decode_bin_change_state):
8378         Replace GstPadBlockCallback with pad probes that detect
8379         first buffer AND eos before removing fakesink.
8380         Fixes hang with demuxers doing EOS while pre-rolling.
8381         Solves #328279
8382
8383 2006-01-23  Andy Wingo  <wingo@pobox.com>
8384
8385         * ext/alsa/gstalsasink.c:
8386         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8387         (gst_base_rtp_depayload_setcaps),
8388         (gst_base_rtp_depayload_add_to_queue),
8389         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8390         
8391         Patch by: Jens Granseuer <jensgr at gmx dot net>
8392
8393 2006-01-22  Julien MOUTTE  <julien@moutte.net>
8394
8395         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8396         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8397         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
8398         frames. We might get a frame destroyed after changing state to
8399         NULL, adding a safety check on xcontext.
8400
8401 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
8402
8403         * gst-libs/gst/interfaces/xoverlay.c:
8404           Fix prepare-xwindow-id code example in the docs - we need to
8405           ignore all messages that aren't element messages as well.
8406           
8407 2006-01-21  Julien MOUTTE  <julien@moutte.net>
8408
8409         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8410           I think one day i'll completely undestand how caps negotiation
8411           is supposed to work. This refactoring handles buffer_alloc
8412           called with caps we can't handle. We definitely don't want a
8413           set_caps with those caps, so we define and allocate a buffer
8414           we would like to receive.
8415
8416 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
8417
8418         * gst/playback/gstplaybasebin.c: (setup_source):
8419           Free iterator when done.
8420
8421 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
8422
8423         * gst-libs/gst/audio/gstbaseaudiosink.c:
8424         (gst_base_audio_sink_render):
8425           Fix playback of non-synchronised streams by assuming a rate
8426           of 1.0 instead of a random one.
8427
8428           Makes this work again:
8429
8430           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
8431           endianness=(int)4321, signed=(boolean)true, width=(int)16,
8432           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
8433           audioresample ! alsasink
8434
8435 === release 0.10.2 ===
8436
8437 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
8438
8439         * configure.ac:
8440           releasing 0.10.2, "Then the devil is six"
8441
8442 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
8443
8444         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8445         * gst/playback/gststreamselector.c:
8446         (gst_stream_selector_set_property):
8447           Comment out broken code that connects to the state-changed signal.
8448           At this point, changing current stream selection is broken, but 
8449           stuff like gst-launch playbin current-audio=1 works and filters
8450           to the chosen stream.
8451
8452 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8453
8454         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
8455           Fix #327216 (null dereference in vorbisdec)
8456
8457 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
8458
8459         * ext/theora/theoradec.c: (theora_handle_comment_packet):
8460           Post taglist actually on bus instead of just freeing it
8461           (fixes #327114 and totem bug #327080).
8462
8463         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
8464           Use gst_element_found_tags_for_pad(), so that the tags
8465           are sent downstream as an event as well.
8466
8467 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8468
8469         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
8470         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
8471         (gst_ximagesink_buffer_alloc):
8472         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
8473         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
8474         (gst_xvimagesink_buffer_alloc):
8475           move all regularly occurring messages to GST_LOG level
8476           add some more object logs
8477
8478 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8479
8480         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
8481           fix a silly segfault
8482
8483 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
8484
8485         * docs/libs/gst-plugins-base-libs-docs.sgml:
8486         * docs/libs/gst-plugins-base-libs-sections.txt:
8487         * gst-libs/gst/audio/mixerutils.c:
8488         * gst-libs/gst/audio/mixerutils.h:
8489           Add docs for mixerutils stuff.
8490
8491 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
8492
8493         * gst/playback/gstplaybasebin.c: (setup_source):
8494           Fix playback for sources that emit raw audio or
8495           raw video streams (e.g.: cd audio sources) (#325984).
8496
8497 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8498
8499         * gst-libs/gst/audio/mixerutils.c:
8500         (gst_audio_mixer_filter_do_filter):
8501           actually save the element we create
8502
8503 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
8504
8505         * gst-libs/gst/cdda/gstcddabasesrc.c:
8506         (gst_cdda_base_src_handle_track_seek):
8507           No need to post a tag message on the bus when seeking
8508           within the same track, only post it when the current
8509           track changes.
8510
8511 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
8512
8513         * gst/playback/gstplaybasebin.c: (group_destroy),
8514         (probe_triggered), (new_decoded_pad), (mute_group_type),
8515         (set_active_source):
8516         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8517         * gst/playback/gststreamselector.c:
8518         (gst_stream_selector_base_init),
8519         (gst_stream_selector_set_property),
8520         (gst_stream_selector_request_new_pad):
8521           Reenable stream selection. These mechanisms need a complete overhaul
8522           in the face of 0.8->0.10 changes though.
8523
8524 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
8525
8526         * ext/ogg/gstoggdemux.c:
8527           Change the pad template to src_%d to match the pads that 
8528           are created from it. decodebin needs this information in order
8529           to decide that oggdemux is capable of producing multiple pads
8530           (and hence needs queues inserted).
8531
8532         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8533         (gst_ogg_mux_collected):
8534           Make debug output more useful by using GST_PTR_FORMAT.
8535
8536 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
8537
8538         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
8539
8540         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
8541           Set depth and width for alaw/mulaw (fixes #326601).
8542
8543 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
8544
8545         * tests/icles/Makefile.am:
8546           don't build the tests if we don't have the libs
8547
8548 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8549
8550         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
8551         (gst_cd_paranoia_paranoia_callback):
8552           Don't try to free NULL pointers.
8553
8554 2006-01-10  Edward Hervey  <edward@fluendo.com>
8555
8556         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
8557         (gst_audio_rate_change_state), (plugin_init):
8558         Add debugging category.
8559         Fix type issues.
8560         Add case for incoming buffers without valid offset/offset_end.
8561
8562 2006-01-10  Michael Smith  <msmith@fluendo.com>
8563
8564         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
8565           Don't leak GCond in audio sources.
8566
8567 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
8568
8569         * gst/playback/gstplaybin.c: (gen_audio_element):
8570           Don't leak an autoaudiosink/alsasink when we generate
8571           a new audio element. (old code, I guess)
8572
8573 2006-01-10  Michael Smith  <msmith@fluendo.com>
8574
8575         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
8576           Support float audio in audiorate.
8577           Use width rather than depth for selecting sample width.
8578
8579 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8580
8581         * gst/videotestsrc/videotestsrc.h:
8582           Use GLib types here (that way we don't have to include the
8583           generated _stdint.h header, which makes life easier for win32
8584           folks that don't use autotools for the build) (#325990, patch
8585           by: Sergey Scobich).
8586
8587 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8588
8589         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8590         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8591         (gst_ring_buffer_pause), (wait_segment):
8592         * gst-libs/gst/audio/gstringbuffer.h:
8593           Name (private) union, makes Forte compiler happy (this time
8594           for real) (#324900).
8595
8596 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8597
8598         * gst-libs/gst/audio/Makefile.am:
8599           Link against libgstinterfaces, needed for mixer
8600           and property probe stuff.
8601
8602 2006-01-09  Edward Hervey  <edward@fluendo.com>
8603
8604         * gst-libs/gst/Makefile.am:
8605
8606 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8607
8608         * gst-libs/gst/audio/Makefile.am:
8609         * gst-libs/gst/audio/mixerutils.c:
8610         (gst_audio_mixer_filter_do_filter),
8611         (gst_audio_mixer_filter_check_element),
8612         (gst_audio_mixer_filter_probe_feature),
8613         (element_factory_rank_compare_func),
8614         (gst_audio_default_registry_mixer_filter):
8615         * gst-libs/gst/audio/mixerutils.h:
8616           Add gst_audio_default_registry_mixer_filter() utility
8617           function.
8618
8619 2006-01-03  Michael Smith  <msmith@fluendo.com>
8620
8621         * gst/audioresample/resample.h:
8622           As before, but for o_buf
8623
8624 2006-01-03  Michael Smith  <msmith@fluendo.com>
8625
8626         * gst/audioresample/resample.h:
8627           Declare struct _ResampleState.buffer as unsigned char *, not void *,
8628           since we do arithmetic on it.
8629
8630 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
8631
8632         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8633         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8634         (gst_ring_buffer_pause), (wait_segment):
8635         * gst-libs/gst/audio/gstringbuffer.h:
8636           Sun's Forte compiler doesn't seem to like anonymous structs,
8637           so use same setup as in GstBaseSrc (fixes #324900).
8638
8639 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
8640
8641         * configure.ac:
8642         * gst/volume/Makefile.am:
8643         * gst/volume/demo.c:
8644           move old example to tests/examples/volume/volune.c
8645         * tests/examples/Makefile.am:
8646         * tests/examples/seek/seek.c: (main):
8647           change window-close event from "delete-event" to "destroy"
8648         * tests/examples/volume/Makefile.am:
8649         * tests/examples/volume/volume.c: (value_changed_callback),
8650         (setup_gui), (message_received), (eos_message_received), (main):
8651           fix event handling and bus usage
8652
8653 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
8654
8655         * gst/audiotestsrc/gstaudiotestsrc.c:
8656         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
8657         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
8658         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
8659         (gst_audio_test_src_create_square),
8660         (gst_audio_test_src_create_saw),
8661         (gst_audio_test_src_create_triangle),
8662         (gst_audio_test_src_create_silence),
8663         (gst_audio_test_src_create_white_noise),
8664         (gst_audio_test_src_create_pink_noise),
8665         (gst_audio_test_src_init_sine_table),
8666         (gst_audio_test_src_create_sine_table),
8667         (gst_audio_test_src_change_wave),
8668         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
8669         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
8670         * gst/audiotestsrc/gstaudiotestsrc.h:
8671           update to basesrc changes, implement segmented seeking and eos
8672           handling, add a 'sine-tab' waveform for performance critical playback
8673
8674 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
8675
8676         * po/POTFILES.in:
8677           ... and this time the other modified file that I missed last time.
8678
8679 2005-12-29  Michael Smith  <msmith@fluendo.com>
8680
8681         * gst/playback/gstdecodebin.c: (new_pad):
8682           Fix non-C89 variable declaration not at the start of a block. Should
8683           help some compilers.
8684
8685 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
8686
8687         * tests/check/Makefile.am:
8688           And now fix 'make distcheck' (builddir != srcdir)
8689
8690 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
8691
8692         * configure.ac:
8693         * ext/cdparanoia/Makefile.am:
8694         * ext/cdparanoia/gstcdparanoia.c:
8695         * ext/cdparanoia/gstcdparanoia.h:
8696         * ext/cdparanoia/gstcdparanoiasrc.c:
8697         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
8698         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
8699         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
8700         (gst_cd_paranoia_paranoia_callback),
8701         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
8702         (gst_cd_paranoia_src_set_property),
8703         (gst_cd_paranoia_src_get_property), (plugin_init):
8704         * ext/cdparanoia/gstcdparanoiasrc.h:
8705           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
8706           plugin again (there are still fixes required to playbin to make
8707           cdda:// uris work there).
8708
8709 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
8710
8711         * tests/check/Makefile.am:
8712           Fix test case compilation.
8713
8714 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
8715
8716         * gst-libs/gst/cdda/gstcddabasesrc.c:
8717         (gst_cdda_base_src_update_duration),
8718         (gst_cdda_base_src_calculate_cddb_id):
8719           An integer is not a string. Fix access to uninitialised variable.
8720
8721         * tests/check/Makefile.am:
8722           Add cddabasesrc unit test; also actually enable the vorbis test.
8723
8724         * tests/check/generic/states.c:
8725           Blacklist new cd audio elements as well.
8726
8727         * tests/check/libs/cddabasesrc.c:
8728           Unit test for GstCddaBaseSrc (discid calculation mostly).
8729
8730 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
8731
8732         * docs/libs/Makefile.am:
8733         * docs/libs/gst-plugins-base-libs-docs.sgml:
8734         * docs/libs/gst-plugins-base-libs-sections.txt:
8735         * docs/libs/gst-plugins-base-libs.types:
8736           Add docs for libgstcdda/GstCddaBaseSrc.
8737
8738         * gst-libs/gst/interfaces/mixertrack.h:
8739           Do one struct member per line with a semicolon at the end, that way
8740           even gtk-doc might parse it without complaining.
8741
8742 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
8743
8744         * configure.ac:
8745         * gst-libs/gst/Makefile.am:
8746         * gst-libs/gst/cdda/Makefile.am:
8747         * gst-libs/gst/cdda/base64.c:
8748         * gst-libs/gst/cdda/base64.h:
8749         * gst-libs/gst/cdda/gstcddabasesrc.c:
8750         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
8751         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
8752         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
8753         (gst_cdda_base_src_get_property),
8754         (gst_cdda_base_src_get_track_from_sector),
8755         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
8756         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
8757         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
8758         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
8759         (gst_cdda_base_src_uri_get_protocols),
8760         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
8761         (gst_cdda_base_src_uri_handler_init),
8762         (gst_cdda_base_src_setup_interfaces),
8763         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
8764         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
8765         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
8766         (gst_cdda_base_src_add_tags),
8767         (gst_cdda_base_src_add_index_associations),
8768         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
8769         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
8770         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
8771         (gst_cdda_base_src_create):
8772         * gst-libs/gst/cdda/gstcddabasesrc.h:
8773         * gst-libs/gst/cdda/sha1.c:
8774         * gst-libs/gst/cdda/sha1.h:
8775           Add new libgstcdda with GstCddaBaseSrc class.
8776
8777 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
8778
8779         * ext/gnomevfs/gstgnomevfssink.h:
8780           Use GstBaseSinkClass as parent_class member for class struct, not
8781           GstBaseSink.
8782
8783 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
8784
8785         Patch by: Michael Benes
8786
8787         * gst/videotestsrc/gstvideotestsrc.c:
8788         (gst_video_test_src_class_init), (gst_video_test_src_start):
8789           Add start method to reset running time and number of frames sent
8790           when starting up (fixes #324696)
8791
8792 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
8793
8794         * docs/plugins/Makefile.am:
8795         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8796         * docs/plugins/gst-plugins-base-plugins-sections.txt:
8797         * docs/plugins/gst-plugins-base-plugins.args:
8798         * docs/plugins/gst-plugins-base-plugins.hierarchy:
8799         * docs/plugins/gst-plugins-base-plugins.signals:
8800           Add docs stuff for gnomevfssrc and gnomevfssink.
8801
8802         * ext/gnomevfs/gstgnomevfssrc.c:
8803           Fix example pipeline in gtk-doc blurb.
8804
8805 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
8806
8807         * ext/gnomevfs/Makefile.am:
8808         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
8809         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
8810         (gst_gnome_vfs_handle_get_type), (plugin_init):
8811         * ext/gnomevfs/gstgnomevfs.h:
8812         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
8813         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
8814         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
8815         (gst_gnome_vfs_sink_set_property),
8816         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
8817         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
8818         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
8819         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
8820         (gst_gnome_vfs_sink_uri_get_type),
8821         (gst_gnome_vfs_sink_uri_get_protocols),
8822         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
8823         (gst_gnome_vfs_sink_uri_handler_init):
8824         * ext/gnomevfs/gstgnomevfssink.h:
8825           Port gnomevfssink; add gtk-doc blurb.
8826
8827         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
8828         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
8829         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
8830         (gst_gnome_vfs_src_uri_get_type),
8831         (gst_gnome_vfs_src_uri_get_protocols),
8832         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
8833         (gst_gnome_vfs_src_uri_handler_init),
8834         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
8835         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
8836         (gst_gnome_vfs_src_send_additional_headers_callback),
8837         (gst_gnome_vfs_src_received_headers_callback),
8838         (gst_gnome_vfs_src_push_callbacks),
8839         (gst_gnome_vfs_src_pop_callbacks),
8840         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
8841         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
8842         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
8843         * ext/gnomevfs/gstgnomevfssrc.h:
8844           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
8845           file; add gtk-doc blurb with example pipelines.
8846
8847 === release 0.10.1 ===
8848
8849 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
8850
8851         * configure.ac:
8852           releasing 0.10.1, "Dobro Dedek"
8853
8854 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
8855
8856         * gst/typefind/gsttypefindfunctions.c:
8857         iLBC30 and iLBC20 added to typefind.
8858
8859 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
8860
8861         * gst-libs/gst/audio/gstbaseaudiosink.c:
8862         (gst_base_audio_sink_class_init):
8863         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8864         (gst_base_audio_src_class_init):
8865           update strings, values are in microseconds
8866           change the default sink buffer time to something that is smaller
8867           (to help software volume mixing have a slightly lower delay) but
8868           still be acceptable on Wim's laptop
8869
8870 2005-12-20  Edward Hervey  <edward@fluendo.com>
8871
8872         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
8873         Made a quack, forgot to add DUCK to the riff video template.
8874
8875 2005-12-19  Edward Hervey  <edward@fluendo.com>
8876
8877         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
8878         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
8879         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
8880         (gst_ogm_parse_chain):
8881         Make sure pads are initialized correctly.
8882         * gst-libs/gst/riff/riff-ids.h:
8883         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8884         (gst_riff_create_video_template_caps):
8885         Add a whole bunch of FOURCC <=> MimeType.
8886         Extend the riff video pad template to support the newly added fourcc.
8887
8888 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
8889
8890         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
8891         (gst_ogg_demux_activate_chain):
8892           Extra debug output when activating/deactivating chains.
8893
8894         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
8895         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
8896         (unlinked):
8897           Remove a queue from our list when it becomes unlinked.
8898           Don't add queues to elements in class 'Demux' if they
8899           can only produce one pad 
8900
8901 2005-12-18  Julien MOUTTE  <julien@moutte.net>
8902
8903         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
8904         (gst_video_sink_get_type): Add a debug category.
8905
8906 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
8907
8908         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8909         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
8910           Handle downstream newsegment by sending our own newsegment before the
8911           next buffer to be released. (#323900)
8912
8913 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
8914
8915         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8916         (gst_base_rtp_depayload_set_gst_timestamp):
8917           add queue delay to new segment as well (as opposed to just the first
8918           buffer). (bug #322347)
8919
8920 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
8921
8922         * ext/libvisual/visual.c: (make_valid_name):
8923           change some char* into char[]
8924         * gst/audiotestsrc/gstaudiotestsrc.c:
8925         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
8926         (gst_audio_test_src_create):
8927         * gst/audiotestsrc/gstaudiotestsrc.h:
8928           prepare to handle EOS and SEGMENT_DONE
8929
8930 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
8931
8932         * tests/check/generic/states.c: (GST_START_TEST):
8933           Blacklist cdparanoia element in state test.
8934
8935 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
8936
8937           Patch by: Benjamin Pineau
8938
8939         * gst/tcp/gsttcp.c:
8940         * gst/tcp/gsttcpclientsink.c:
8941         * gst/tcp/gsttcpserversink.c:
8942         * gst/tcp/gsttcpserversrc.c:
8943           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
8944
8945 2005-12-15  Michael Smith  <msmith@fluendo.com>
8946
8947         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
8948         (gst_video_rate_chain):
8949           Fix timestamping for videorate when the first buffer it sees has a
8950           non-zero timestamp. Fix some misleading debug output.
8951
8952 2005-12-15  Michael Smith  <msmith@fluendo.com>
8953
8954         * gst/audioresample/gstaudioresample.c:
8955           Don't leak all input buffers to audioresample.
8956
8957 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
8958
8959         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
8960           Don't operate on empty text buffers. Strip newlines and
8961           tabs only from the end of the text, but leave them intact
8962           in the middle. Fix typo in gtk-doc description.
8963
8964 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
8965
8966         * gst/playback/gstplaybasebin.c:
8967         * gst/playback/gstplaybin.c: (handoff):
8968           Make sure the video frame buffer we return to apps via the
8969           "frame" property always has caps set on it. Modify
8970           _gst_gvalue_set_object() macro to handle NULL objects
8971           gracefully too.
8972
8973 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
8974
8975         * gst/audiotestsrc/gstaudiotestsrc.c:
8976         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
8977         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
8978         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
8979         (gst_audio_test_src_create):
8980         * gst/audiotestsrc/gstaudiotestsrc.h:
8981         Adjust to some recent api changes and add wtays new cool seeking
8982         capabillities
8983
8984 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
8985
8986         * ext/alsa/Makefile.am:
8987         * ext/alsa/gstalsadeviceprobe.c:
8988         * ext/alsa/gstalsadeviceprobe.h:
8989           Helper functions to add device probing via the GstPropertyProbe
8990           interface to a class.
8991
8992         * ext/alsa/gstalsamixer.h:
8993           Comment out GST_ALSA_MIXER, it returns a struct that's not
8994           used.
8995
8996         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
8997           Add some debug info. 
8998
8999         * ext/alsa/gstalsamixerelement.c:
9000         (gst_alsa_mixer_element_interface_supported),
9001         (gst_implements_interface_init),
9002         (gst_alsa_mixer_element_init_interfaces),
9003         (gst_alsa_mixer_element_class_init),
9004         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9005         (gst_alsa_mixer_element_set_property),
9006         (gst_alsa_mixer_element_get_property),
9007         (gst_alsa_mixer_element_change_state):
9008         * ext/alsa/gstalsamixerelement.h:
9009           Add 'device' and 'device-name' properties. Add GstPropertyProbe
9010           for device handling (gnome-volume-control will need that).
9011
9012 2005-12-12  Christian Schaller  <uraeus@gnome.org>
9013
9014         * ext/Makefile.am: fix cdparanoia entry
9015         * gst-plugins-base.spec.in: add cdparanoia
9016
9017 2005-12-12  Michael Smith  <msmith@fluendo.com>
9018
9019         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9020           Use the correct function to free list of typefind factories.
9021
9022 2005-12-12  Wim Taymans  <wim@fluendo.com>
9023
9024         * gst/videotestsrc/gstvideotestsrc.c:
9025         (gst_video_test_src_class_init), (gst_video_test_src_init),
9026         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9027         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9028         (gst_video_test_src_create):
9029         * gst/videotestsrc/gstvideotestsrc.h:
9030         Implement seeking in videotestsrc.
9031         Small cleanups.
9032
9033 2005-12-12  Wim Taymans  <wim@fluendo.com>
9034
9035         * ext/cdparanoia/Makefile.am:
9036         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9037         (gst_paranoia_endian_get_type), (_do_init),
9038         (cdparanoia_class_init), (cdparanoia_init),
9039         (cdparanoia_set_property), (cdparanoia_get_property),
9040         (cdparanoia_do_seek), (cdparanoia_is_seekable),
9041         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9042         (cdparanoia_convert), (cdparanoia_get_query_types),
9043         (cdparanoia_query), (cdparanoia_set_index),
9044         (cdparanoia_uri_set_uri):
9045         * ext/cdparanoia/gstcdparanoia.h:
9046         Partially ported cdparanoia now that basesrc can support a
9047         plugin like this..
9048
9049 2005-12-12  Wim Taymans  <wim@fluendo.com>
9050
9051         * tests/examples/seek/scrubby.c: (main):
9052         Set higher priority for bus events so they don't get reordered with
9053         gtk gui events.
9054
9055         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9056         (flush_toggle_cb), (main):
9057         Added checkbox to disable flushing seeks. 
9058         Disable scrubbing when doing non flushing seeks.
9059
9060 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
9061
9062         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9063         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9064         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9065         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9066           Implement some sort of event handling that doesn't rely on
9067           g_return_if_fail; make sure we always push the last chunk of an 
9068           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9069           state change function; remove some old cruft. Seeking is still
9070           rather unlikely to work though.
9071
9072         * tools/.cvsignore:
9073           Ignore more.
9074
9075 2005-12-11  Julien MOUTTE  <julien@moutte.net>
9076
9077         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
9078         Fixed a leak of the current image reference when cleaning up.
9079         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9080
9081 2005-12-09  Michael Smith  <msmith@fluendo.com>
9082
9083         * tools/Makefile.am:
9084         * tools/gst-launch-ext-m.m:
9085           Remove gst-launch-ext. It doesn't work, and is no longer
9086           particularly useful.
9087
9088 2005-12-08  Luca Ognibene  <luogni@tin.it>
9089
9090         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9091           don't pass random values to ogmparse convert function.
9092           Make seeking possible in the exile1.ogm file.
9093
9094 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
9095
9096         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9097         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9098           Work around refcount problem with g_value_set_object() that occur
9099           if the core has been compiled against GLib-2.6 (g_value_set_object()
9100           will only g_object_ref() the element, but the caller will
9101           gst_object_unref() it and bad things will happen due to the way
9102           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9103           totem for people on FC4 using Thomas's 0.10 RPMs.
9104           
9105 2005-12-07  Edward Hervey  <edward@fluendo.com>
9106
9107         Time to welcome ogm to 0.10 :)
9108         
9109         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9110         (gst_ogg_pad_typefind):
9111         Oggdemux can now properly typefind elements with dynamic pads.
9112         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9113         Properly set caps on src pad, and set caps on outgoing buffers.
9114
9115 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9116
9117         * ext/alsa/gstalsamixer.h:
9118         * ext/alsa/gstalsamixerelement.h:
9119         * ext/alsa/gstalsamixeroptions.h:
9120         * ext/alsa/gstalsamixertrack.h:
9121         * ext/alsa/gstalsasink.c:
9122         * ext/alsa/gstalsasink.h:
9123         * ext/alsa/gstalsasrc.c:
9124         * ext/alsa/gstalsasrc.h:
9125         * ext/cdparanoia/gstcdparanoia.h:
9126         * ext/gnomevfs/gstgnomevfsuri.h:
9127         * ext/ogg/gstoggdemux.c:
9128         * ext/ogg/gstoggmux.c:
9129         * ext/pango/gsttextoverlay.h:
9130         * ext/theora/theoradec.c:
9131         * ext/theora/theoraenc.c:
9132         * ext/vorbis/vorbisdec.h:
9133         * ext/vorbis/vorbisenc.c:
9134         * ext/vorbis/vorbisenc.h:
9135         * ext/vorbis/vorbisparse.h:
9136         * gst-libs/gst/audio/gstaudioclock.h:
9137         * gst-libs/gst/audio/gstaudiosink.c:
9138         * gst-libs/gst/audio/gstaudiosink.h:
9139         * gst-libs/gst/audio/gstaudiosrc.c:
9140         * gst-libs/gst/audio/gstaudiosrc.h:
9141         * gst-libs/gst/audio/gstbaseaudiosink.c:
9142         * gst-libs/gst/audio/gstbaseaudiosink.h:
9143         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9144         * gst-libs/gst/audio/gstbaseaudiosrc.h:
9145         * gst-libs/gst/audio/gstringbuffer.h:
9146         * gst-libs/gst/audio/multichannel.h:
9147         * gst-libs/gst/floatcast/floatcast.h:
9148         * gst-libs/gst/interfaces/colorbalance.c:
9149         * gst-libs/gst/interfaces/colorbalance.h:
9150         * gst-libs/gst/interfaces/colorbalancechannel.h:
9151         * gst-libs/gst/interfaces/mixer.h:
9152         * gst-libs/gst/interfaces/mixeroptions.h:
9153         * gst-libs/gst/interfaces/mixertrack.h:
9154         * gst-libs/gst/interfaces/navigation.h:
9155         * gst-libs/gst/interfaces/propertyprobe.h:
9156         * gst-libs/gst/interfaces/tuner.h:
9157         * gst-libs/gst/interfaces/tunerchannel.h:
9158         * gst-libs/gst/interfaces/tunernorm.h:
9159         * gst-libs/gst/interfaces/xoverlay.h:
9160         * gst-libs/gst/netbuffer/gstnetbuffer.h:
9161         * gst-libs/gst/riff/riff-ids.h:
9162         * gst-libs/gst/riff/riff-media.h:
9163         * gst-libs/gst/riff/riff-read.h:
9164         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9165         * gst-libs/gst/rtp/gstbasertppayload.c:
9166         * gst-libs/gst/rtp/gstbasertppayload.h:
9167         * gst-libs/gst/rtp/gstrtpbuffer.c:
9168         * gst-libs/gst/rtp/gstrtpbuffer.h:
9169         * gst-libs/gst/tag/gsttageditingprivate.h:
9170         * gst-libs/gst/tag/gstvorbistag.c:
9171         (gst_tag_list_from_vorbiscomment_buffer):
9172         * gst-libs/gst/tag/tag.h:
9173         * gst-libs/gst/video/video.h:
9174         * gst/adder/gstadder.c:
9175         * gst/adder/gstadder.h:
9176         * gst/audioconvert/audioconvert.c:
9177         * gst/audioconvert/audioconvert.h:
9178         * gst/audioconvert/gstaudioconvert.c:
9179         * gst/audioconvert/gstchannelmix.c:
9180         * gst/audioconvert/gstchannelmix.h:
9181         * gst/audiorate/gstaudiorate.c:
9182         * gst/audioresample/buffer.h:
9183         * gst/audioresample/functable.h:
9184         * gst/audioresample/gstaudioresample.c:
9185         * gst/audioresample/resample.h:
9186         * gst/ffmpegcolorspace/avcodec.h:
9187         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9188         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9189         * gst/ffmpegcolorspace/imgconvert.c:
9190         * gst/ffmpegcolorspace/imgconvert_template.h:
9191         * gst/playback/gstdecodebin.c:
9192         * gst/playback/gstplaybasebin.h:
9193         * gst/playback/gstplaybin.c:
9194         * gst/playback/gststreaminfo.h:
9195         * gst/tcp/gstfdset.c:
9196         * gst/tcp/gstfdset.h:
9197         * gst/tcp/gstmultifdsink.c:
9198         * gst/tcp/gstmultifdsink.h:
9199         * gst/tcp/gsttcp.h:
9200         * gst/tcp/gsttcpclientsrc.c:
9201         * gst/tcp/gsttcpclientsrc.h:
9202         * gst/tcp/gsttcpplugin.h:
9203         * gst/tcp/gsttcpserversink.c:
9204         * gst/tcp/gsttcpserversrc.c:
9205         * gst/typefind/gsttypefindfunctions.c:
9206         * gst/videorate/gstvideorate.c:
9207         * gst/videotestsrc/gstvideotestsrc.h:
9208         * gst/videotestsrc/videotestsrc.h:
9209         * sys/v4l/gstv4lcolorbalance.h:
9210         * sys/v4l/gstv4ltuner.h:
9211         * sys/v4l/gstv4lxoverlay.h:
9212         * sys/v4l/v4l_calls.h:
9213         * sys/v4l/videodev_mjpeg.h:
9214         * tests/check/elements/audioconvert.c:
9215         * tests/check/elements/audioresample.c:
9216         * tests/check/elements/audiotestsrc.c:
9217         * tests/check/elements/videotestsrc.c:
9218         * tests/check/elements/volume.c:
9219         * tests/examples/seek/scrubby.c:
9220         * tests/examples/seek/seek.c:
9221           expand tabs
9222
9223 === release 0.10.0 ===
9224
9225 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9226
9227         * configure.ac:
9228           releasing 0.10.0, "Mont-d'or"
9229
9230 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
9231
9232         * tests/examples/seek/Makefile.am:
9233         Build fix for when gtk is not available.
9234
9235 2005-12-05  Andy Wingo  <wingo@pobox.com>
9236
9237         * ext/libvisual/visual.c: (get_buffer):
9238         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9239         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9240         * ext/theora/theoradec.c: (theora_handle_data_packet):
9241         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9242         (theora_enc_chain):
9243         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9244         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9245         Update for alloc_buffer changes.
9246
9247 2005-12-05  Andy Wingo  <wingo@pobox.com>
9248
9249         patch by: Kai Vehmanen <kv2004 eca cx>
9250         
9251         * gst-libs/gst/rtp/gstbasertpdepayload.c
9252         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9253
9254 2005-12-04  Andy Wingo  <wingo@pobox.com>
9255
9256         patch by: Sebastien Cote <sebas642 yahoo ca>
9257         
9258         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9259         Fixes #319172.
9260
9261 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
9262
9263         * docs/plugins/Makefile.am:
9264         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9265         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9266         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9267         * ext/pango/gstclockoverlay.c:
9268         * ext/pango/gsttextoverlay.c: 
9269         * ext/pango/gsttextrender.c:
9270         * ext/pango/gsttimeoverlay.c:
9271           Add gtk-doc blurbs to pango elements.
9272
9273 2005-12-02  Wim Taymans  <wim@fluendo.com>
9274
9275         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9276         * gst/audioresample/buffer.h:
9277         * gst/audioresample/gstaudioresample.c:
9278         * gst/audioresample/gstaudioresample.h:
9279         * gst/audioresample/resample.c: (resample_input_flush),
9280         (resample_input_pushthrough), (resample_input_eos),
9281         (resample_get_output_size_for_input),
9282         (resample_get_input_size_for_output), (resample_get_output_size),
9283         (resample_get_output_data):
9284         * gst/audioresample/resample.h:
9285         * gst/audioresample/resample_ref.c: (resample_scale_ref):
9286         Fix audioresample, seek torture, new segments, reverse negotiation
9287         etc.. work fine.
9288
9289 2005-12-02  Wim Taymans  <wim@fluendo.com>
9290
9291         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9292         Small cleanups.
9293
9294 2005-12-02  Wim Taymans  <wim@fluendo.com>
9295
9296         * gst/audioconvert/gstaudioconvert.c:
9297         (gst_audio_convert_transform):
9298         Post errors.
9299
9300 === release 0.9.7 ===
9301
9302 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9303
9304         * configure.ac:
9305           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9306
9307 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9308
9309         * Makefile.am:
9310         * po/hu.po:
9311         * win32/MANIFEST:
9312         * win32/gst.sln:
9313           add win32 MANIFEST file
9314           do something to the hungarian translation
9315
9316 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
9317
9318         * ext/Makefile.am:
9319           Add $(PANGO_DIR) to SUBDIRS
9320
9321         * ext/pango/gstclockoverlay.c:
9322         * ext/pango/gsttimeoverlay.c:
9323           Fix and improve element descriptions.
9324
9325 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9326
9327         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9328         * docs/plugins/inspect/plugin-libvisual.xml:
9329         * docs/plugins/inspect/plugin-pango.xml:
9330           add pango plugin to docs
9331
9332 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9333
9334         * configure.ac:
9335         * ext/Makefile.am:
9336           moved pango to base
9337
9338 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9339
9340         * configure.ac:
9341         * tests/Makefile.am:
9342         * tests/icles/.cvsignore:
9343         * tests/icles/Makefile.am:
9344         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9345         (close_display), (resize_window), (move_window), (create_window),
9346         (terminate_playback), (pause_playback), (start_playback), (main):
9347           add stress test for xoverlay from Julien
9348
9349 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9350
9351         * docs/libs/tmpl/gstcolorbalance.sgml:
9352         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9353         * gst-libs/gst/rtp/gstbasertppayload.c:
9354         * gst-libs/gst/rtp/gstrtpbuffer.c:
9355         * gst-libs/gst/rtp/gstrtpbuffer.h:
9356           Do burger's rename for rtp payloaders and depayloaders
9357
9358 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9359
9360         * win32/:
9361           add Visual Studio 6 build files
9362
9363 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9364
9365         * docs/libs/gst-plugins-base-libs-docs.sgml:
9366         * docs/libs/gst-plugins-base-libs-sections.txt:
9367         * docs/libs/tmpl/gstaudio.sgml:
9368         * docs/libs/tmpl/gstringbuffer.sgml:
9369         * gst-libs/gst/interfaces/xoverlay.c:
9370         * gst-libs/gst/video/gstvideofilter.c:
9371         * gst-libs/gst/video/gstvideosink.c:
9372           update documentation
9373
9374 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9375
9376         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9377         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9378         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9379         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9380         (gst_multi_fd_sink_get_stats),
9381         (gst_multi_fd_sink_remove_client_link),
9382         (gst_multi_fd_sink_handle_client_read),
9383         (gst_multi_fd_sink_client_queue_data),
9384         (gst_multi_fd_sink_client_queue_caps),
9385         (gst_multi_fd_sink_client_queue_buffer),
9386         (gst_multi_fd_sink_new_client),
9387         (gst_multi_fd_sink_handle_client_write),
9388         (gst_multi_fd_sink_recover_client),
9389         (gst_multi_fd_sink_queue_buffer),
9390         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9391         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9392         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9393         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9394         * gst/tcp/gstmultifdsink.h:
9395         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9396         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9397         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9398         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9399         (gst_tcp_client_sink_set_property),
9400         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9401         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9402         * gst/tcp/gsttcpclientsink.h:
9403         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9404         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9405         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9406         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9407         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9408         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9409         * gst/tcp/gsttcpclientsrc.h:
9410         * gst/tcp/gsttcpplugin.c: (plugin_init):
9411         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
9412         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
9413         (gst_tcp_server_sink_finalize),
9414         (gst_tcp_server_sink_handle_server_read),
9415         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
9416         (gst_tcp_server_sink_set_property),
9417         (gst_tcp_server_sink_get_property),
9418         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
9419         * gst/tcp/gsttcpserversink.h:
9420         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
9421         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
9422         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
9423         (gst_tcp_server_src_set_property),
9424         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
9425         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
9426         * gst/tcp/gsttcpserversrc.h:
9427           more borgifying
9428
9429 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9430
9431         * docs/plugins/Makefile.am:
9432         * docs/plugins/gst-plugins-base-plugins.args:
9433         * docs/plugins/inspect/plugin-libvisual.xml:
9434         * gst/audioconvert/plugin.h:
9435         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
9436         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
9437         (gst_audio_rate_setcaps), (gst_audio_rate_init),
9438         (gst_audio_rate_chain), (gst_audio_rate_set_property),
9439         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
9440         (plugin_init):
9441         * gst/audiotestsrc/gstaudiotestsrc.c:
9442         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
9443         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9444         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
9445         (gst_audio_test_src_get_query_types),
9446         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
9447         (gst_audio_test_src_create_square),
9448         (gst_audio_test_src_create_saw),
9449         (gst_audio_test_src_create_triangle),
9450         (gst_audio_test_src_create_silence),
9451         (gst_audio_test_src_create_white_noise),
9452         (gst_audio_test_src_init_pink_noise),
9453         (gst_audio_test_src_generate_pink_noise_value),
9454         (gst_audio_test_src_create_pink_noise),
9455         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
9456         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
9457         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
9458         (plugin_init):
9459         * gst/audiotestsrc/gstaudiotestsrc.h:
9460         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
9461         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
9462         (gst_sub_parse_init), (gst_sub_parse_formats),
9463         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
9464         (convert_encoding), (get_next_line),
9465         (gst_sub_parse_data_format_autodetect),
9466         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
9467         (gst_sub_parse_loop), (gst_sub_parse_chain),
9468         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
9469         (plugin_init):
9470         * gst/subparse/gstsubparse.h:
9471         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
9472         (gst_video_rate_base_init), (gst_video_rate_class_init),
9473         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
9474         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
9475         (gst_video_rate_init), (gst_video_rate_event),
9476         (gst_video_rate_chain), (gst_video_rate_set_property),
9477         (gst_video_rate_get_property), (gst_video_rate_change_state),
9478         (plugin_init):
9479         * gst/videoscale/gstvideoscale.c:
9480         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
9481         (gst_video_scale_src_template_factory),
9482         (gst_video_scale_sink_template_factory),
9483         (gst_video_scale_get_type), (gst_video_scale_base_init),
9484         (gst_video_scale_class_init), (gst_video_scale_init),
9485         (gst_video_scale_set_property), (gst_video_scale_get_property),
9486         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
9487         (gst_video_scale_prepare_size), (parse_caps),
9488         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
9489         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
9490         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
9491         (plugin_init):
9492         * gst/videoscale/gstvideoscale.h:
9493         * gst/videotestsrc/gstvideotestsrc.c:
9494         (gst_video_test_src_pattern_get_type),
9495         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
9496         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
9497         (gst_video_test_src_set_pattern),
9498         (gst_video_test_src_set_property),
9499         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
9500         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
9501         (gst_video_test_src_event), (gst_video_test_src_get_times),
9502         (gst_video_test_src_create), (plugin_init):
9503         * gst/videotestsrc/gstvideotestsrc.h:
9504         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
9505         (gst_video_test_src_smpte), (gst_video_test_src_snow),
9506         (gst_video_test_src_black):
9507         * gst/videotestsrc/videotestsrc.h:
9508           borgify further
9509           clean up docs a little
9510
9511 2005-11-30  Wim Taymans  <wim@fluendo.com>
9512
9513         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9514         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
9515         (gst_basertppayload_event), (gst_basertppayload_push),
9516         (gst_basertppayload_change_state):
9517         * gst-libs/gst/rtp/gstbasertppayload.h:
9518         closed #320644.
9519
9520 2005-11-30  Julien MOUTTE  <julien@moutte.net>
9521
9522         * docs/libs/gst-plugins-base-libs-docs.sgml:
9523         * docs/libs/gst-plugins-base-libs-sections.txt:
9524         * gst-libs/gst/video/gstvideofilter.c:
9525         * gst-libs/gst/video/gstvideosink.c:
9526         * gst-libs/gst/video/gstvideosink.h: Adding docs.
9527
9528 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9529
9530         * LICENSE:
9531           move
9532         * po/af.po:
9533         * po/az.po:
9534         * po/cs.po:
9535         * po/en_GB.po:
9536         * po/hu.po:
9537         * po/it.po:
9538         * po/nb.po:
9539         * po/nl.po:
9540         * po/or.po:
9541         * po/sq.po:
9542         * po/sr.po:
9543         * po/sv.po:
9544         * po/uk.po:
9545         * po/vi.po:
9546         * Makefile.am:
9547           update
9548         * scripts/autoplugins.sh:
9549           remove
9550
9551 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9552
9553         * Makefile.am:
9554         * configure.ac:
9555         * examples/Makefile.am:
9556         * examples/capsfilter/Makefile.am:
9557         * examples/capsfilter/capsfilter1.c:
9558         * examples/gob/Makefile.am:
9559         * examples/gob/gst-identity2.gob:
9560         * examples/indexing/.cvsignore:
9561         * examples/indexing/Makefile.am:
9562         * examples/indexing/indexmpeg.c:
9563         * examples/seeking/.cvsignore:
9564         * examples/seeking/Makefile.am:
9565         * examples/seeking/cdparanoia.c:
9566         * examples/seeking/cdplayer.c:
9567         * examples/seeking/chained.c:
9568         * examples/seeking/scrubby.c:
9569         * examples/seeking/seek.c:
9570         * examples/stats/Makefile.am:
9571         * examples/stats/mp2ogg.c:
9572         * examples/switch/.cvsignore:
9573         * examples/switch/Makefile.am:
9574         * examples/switch/switcher.c:
9575         * tests/Makefile.am:
9576         * tests/check/generic/.cvsignore:
9577         * tests/check/pipelines/.cvsignore:
9578         * tests/examples/Makefile.am:
9579         * tests/examples/seek/Makefile.am:
9580           reorganize stuff under tests/
9581
9582 2005-11-30  Edward Hervey  <edward@fluendo.com>
9583
9584         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
9585         Go away you stupid GstStaticPadTemplate memleak.
9586
9587 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9588
9589         * gst-libs/gst/net/Makefile.am:
9590         * gst-libs/gst/net/README:
9591         * gst-libs/gst/net/gstnetbuffer.c:
9592         * gst-libs/gst/net/gstnetbuffer.h:
9593           this was moved to "netbuffer"
9594
9595 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9596
9597         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
9598         (gst_video_filter_class_init), (gst_video_filter_init):
9599         * gst-libs/gst/video/gstvideofilter.h:
9600           borgify name to bring in line with other classes
9601
9602 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9603
9604         * gst/audioscale/.cvsignore:
9605         * gst/audioscale/Makefile.am:
9606         * gst/audioscale/README:
9607         * gst/audioscale/audioscale.vcproj:
9608         * gst/audioscale/dtof.c:
9609         * gst/audioscale/dtos.c:
9610         * gst/audioscale/functable.c:
9611         * gst/audioscale/gstaudioscale.c:
9612         * gst/audioscale/gstaudioscale.h:
9613         * gst/audioscale/private.h:
9614         * gst/audioscale/resample.c:
9615         * gst/audioscale/resample.h:
9616         * gst/audioscale/test.c:
9617           remove
9618
9619 2005-11-30  Edward Hervey  <edward@fluendo.com>
9620
9621         * gst-libs/gst/netbuffer/Makefile.am:
9622         really, really tired
9623
9624 2005-11-30  Edward Hervey  <edward@fluendo.com>
9625
9626         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
9627         Update for new GstTypeFindFactory _register()
9628
9629 2005-11-30  Edward Hervey  <edward@fluendo.com>
9630
9631         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
9632         Let's not override libgstnet from core for no reason...
9633         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
9634         Ok, maybe not so quick next time.
9635
9636 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9637
9638         * configure.ac:
9639         * gst-libs/gst/Makefile.am:
9640           moved gst-libs/gst/net to netbuffer through CVS surgery
9641           remove old directory
9642           updating build to accomodate
9643           (#322257)
9644
9645 2005-11-29  Andy Wingo  <wingo@pobox.com>
9646
9647         * pkgconfig/gstreamer-plugins-base.pc.in:
9648         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9649         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
9650         (#322257).
9651
9652 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
9653
9654         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
9655         3rd time's the charm. Correct ref-counting for discarded buffers.
9656
9657 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
9658
9659         * gst/playback/gststreamselector.c:
9660         (gst_stream_selector_class_init),
9661         (gst_stream_selector_set_property),
9662         (gst_stream_selector_get_property),
9663         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9664         Fix ref-counting
9665
9666 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
9667
9668         * gst/subparse/gstsubparse.c: (feed_textbuf):
9669           Don't access already unref'ed buffer.
9670
9671 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
9672
9673         * gst/playback/gststreamselector.c:
9674         (gst_stream_selector_class_init), (gst_stream_selector_init),
9675         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
9676         (gst_stream_selector_get_property),
9677         (gst_stream_selector_get_linked_pad),
9678         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9679         * gst/playback/gststreamselector.h:
9680         Add the active-pad property for playbin to use shortly. Ignore buffers
9681         from any other pad, returning GST_FLOW_NOT_LINKED
9682
9683 2005-11-29  Julien MOUTTE  <julien@moutte.net>
9684
9685         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
9686         patch from bug #322704 (Alessandro Decina).
9687
9688 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9689
9690         * gst-libs/gst/audio/Makefile.am:
9691           folded audiofilter into the audio library
9692
9693 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9694
9695         * gst/videoscale/gstvideoscale.h:
9696         * gst/videoscale/gstvideoscale.c:
9697           remove unimplemented scale methods
9698
9699 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
9700
9701         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
9702           Don't leak caps.
9703
9704 2005-11-28  Julien MOUTTE  <julien@moutte.net>
9705
9706         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
9707         (gst_ximagesink_setcaps):
9708         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9709         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
9710         happens (only visible on ximagesink but bug is in xv too) set_caps was
9711         destroying the internal x[v]image used to memcpy non locally alloced
9712         buffers so that it got renewed on next _chain. The issue is that 
9713         _expose will try to put that image as it reffed it in _put.
9714         Using gst_buffer_unref instead of destroy fixes it !
9715
9716 2005-11-28  Edward Hervey  <edward@fluendo.com>
9717
9718         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9719         (try_to_link_1), (queue_filled_cb):
9720         Better use of the queues. Start with a small size queue and only increase
9721         the size of the queues when the other queues are empty.
9722
9723 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9724
9725         * gst-libs/gst/video/Makefile.am:
9726           compile in copied-over videofilter into the video library
9727         * gst-libs/gst/video/videosink.h:
9728           rename the header to gstvideosink.h since it's a base GstObject class
9729         * sys/ximage/ximagesink.h:
9730         * sys/xvimage/xvimagesink.h:
9731           use the new header
9732
9733 2005-11-28  Wim Taymans  <wim@fluendo.com>
9734
9735         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
9736         * gst/playback/gstplaybasebin.h:
9737         Prepare to handle errors betters.
9738
9739         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
9740         Set sinks to PAUSED first before adding and linking them so that
9741         we don't interrupt dataflow.
9742
9743 2005-11-28  Wim Taymans  <wim@fluendo.com>
9744
9745         * gst-libs/gst/audio/TODO:
9746         Updated TODO
9747
9748         * gst-libs/gst/audio/gstaudiosink.c:
9749         (gst_audioringbuffer_open_device),
9750         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
9751         (gst_audioringbuffer_release):
9752         Small cleanups.
9753
9754         * gst-libs/gst/audio/gstbaseaudiosink.c:
9755         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
9756         (gst_base_audio_sink_change_state):
9757         Slave to the master clock when going to PLAYING and unslave when
9758         going to PAUSED.
9759
9760         * gst-libs/gst/audio/gstringbuffer.c:
9761         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
9762         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
9763         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
9764         (gst_ring_buffer_clear_all), (wait_segment),
9765         (gst_ring_buffer_commit), (gst_ring_buffer_read),
9766         (gst_ring_buffer_advance):
9767         * gst-libs/gst/audio/gstringbuffer.h:
9768         Add some docs and cleanups.
9769
9770 2005-11-28  Julien MOUTTE  <julien@moutte.net>
9771
9772         * sys/xvimage/xvimagesink.c:
9773         (gst_xvimagesink_navigation_send_event): Fix navigation events
9774         coordinates translation with pixel aspect ratios.
9775
9776 2005-11-28  Julien MOUTTE  <julien@moutte.net>
9777
9778         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
9779         Use calculated video geometry from _setcaps instead of buffer
9780         caps to respect pixel aspect ratio. (fixes #322388)
9781
9782 2005-11-28  Julien MOUTTE  <julien@moutte.net>
9783
9784         * docs/libs/tmpl/gstcolorbalance.sgml:
9785         * docs/libs/tmpl/gstmixer.sgml:
9786         * docs/libs/tmpl/gstxoverlay.sgml:
9787         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
9788         interface.
9789
9790 2005-11-28  Julien MOUTTE  <julien@moutte.net>
9791
9792         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
9793         Refuse to create an XvImage if we can't find the format.
9794
9795 2005-11-28  Edward Hervey  <edward@fluendo.com>
9796
9797         * gst-libs/gst/riff/riff-media.c:
9798         (gst_riff_create_audio_template_caps):
9799         Add ATRAC3 to the list of riff-possible audio caps.
9800         I know we still don't have a plugin for atrac3, but it's saner to output
9801         that than a cryptic mimetype.
9802
9803 2005-11-27  Edward Hervey  <edward@fluendo.com>
9804
9805         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
9806         Don't try to create a zero-sized subbuffer.
9807
9808 2005-11-27  Julien MOUTTE  <julien@moutte.net>
9809
9810         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
9811         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9812         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
9813         (gst_ximagesink_expose): Fixed a tricky race.
9814         * sys/ximage/ximagesink.h:
9815         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9816         (gst_xvimagesink_expose): Fixed a tricky race.
9817         * sys/xvimage/xvimagesink.h:
9818
9819 2005-11-27  Edward Hervey  <edward@fluendo.com>
9820
9821         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
9822         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
9823         Remove unused properties, and add queues between demuxers and decoders
9824         so that a lot more files can preroll properly.
9825
9826 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
9827
9828         * gst-libs/gst/net/Makefile.am:
9829         * gst-libs/gst/rtp/Makefile.am:
9830         * gst-libs/gst/tag/Makefile.am:
9831           remove silly include
9832         * gst/tags/Makefile.am:
9833         * gst/tags/gsttagediting.c:
9834         * gst/tags/gsttageditingprivate.h:
9835         * gst/tags/tagedit.vcproj:
9836           remove directory, is as good as empty
9837
9838 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
9839
9840         * configure.ac:
9841           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
9842         * gst-libs/Makefile.am:
9843         * gst-libs/gst/audio/Makefile.am:
9844         * gst-libs/gst/interfaces/Makefile.am:
9845         * gst-libs/gst/net/Makefile.am:
9846         * gst-libs/gst/riff/Makefile.am:
9847         * gst-libs/gst/rtp/Makefile.am:
9848         * gst-libs/gst/tag/Makefile.am:
9849         * gst-libs/gst/video/Makefile.am:
9850           and use them
9851
9852 2005-11-27  Julien MOUTTE  <julien@moutte.net>
9853
9854         * docs/libs/tmpl/gstcolorbalance.sgml:
9855         * docs/libs/tmpl/gstmixer.sgml:
9856         * docs/libs/tmpl/gstxoverlay.sgml:
9857         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
9858         * sys/ximage/ximagesink.h:
9859         * sys/xvimage/xvimagesink.h: More and more documentation.
9860
9861 2005-11-26  Julien MOUTTE  <julien@moutte.net>
9862
9863         * docs/libs/gst-plugins-base-libs-docs.sgml:
9864         * docs/libs/gst-plugins-base-libs-sections.txt:
9865         * docs/libs/tmpl/gstcolorbalance.sgml:
9866         * docs/libs/tmpl/gstmixer.sgml:
9867         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
9868         to documentation.
9869
9870 2005-11-26  Julien MOUTTE  <julien@moutte.net>
9871
9872         * docs/plugins/Makefile.am:
9873         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9874         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9875         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
9876
9877 2005-11-26  Julien MOUTTE  <julien@moutte.net>
9878
9879         * docs/plugins/Makefile.am:
9880         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9881         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9882         * docs/plugins/inspect/plugin-adder.xml:
9883         * docs/plugins/inspect/plugin-alsa.xml:
9884         * docs/plugins/inspect/plugin-audioconvert.xml:
9885         * docs/plugins/inspect/plugin-audiorate.xml:
9886         * docs/plugins/inspect/plugin-audioresample.xml:
9887         * docs/plugins/inspect/plugin-audiotestsrc.xml:
9888         * docs/plugins/inspect/plugin-decodebin.xml:
9889         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
9890         * docs/plugins/inspect/plugin-gnomevfs.xml:
9891         * docs/plugins/inspect/plugin-ogg.xml:
9892         * docs/plugins/inspect/plugin-playbin.xml:
9893         * docs/plugins/inspect/plugin-subparse.xml:
9894         * docs/plugins/inspect/plugin-tcp.xml:
9895         * docs/plugins/inspect/plugin-theora.xml:
9896         * docs/plugins/inspect/plugin-typefindfunctions.xml:
9897         * docs/plugins/inspect/plugin-video4linux.xml:
9898         * docs/plugins/inspect/plugin-videorate.xml:
9899         * docs/plugins/inspect/plugin-videoscale.xml:
9900         * docs/plugins/inspect/plugin-videotestsrc.xml:
9901         * docs/plugins/inspect/plugin-volume.xml:
9902         * docs/plugins/inspect/plugin-vorbis.xml:
9903         * docs/plugins/inspect/plugin-ximagesink.xml:
9904         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
9905         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
9906
9907 2005-11-26  Edward Hervey  <edward@fluendo.com>
9908
9909         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
9910         Properly return GstFlowReturn from gst_pad_push in chain functions.
9911
9912 2005-11-25  Michael Smith  <msmith@fluendo.com>
9913
9914         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
9915         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
9916         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
9917         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
9918           Handle various conditions better when we don't understand a stream.
9919           Removes a heap of CRITICALs on ogg streams containing unknown data.
9920
9921 2005-11-24  Andy Wingo  <wingo@pobox.com>
9922
9923         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
9924         Be threadsafe.
9925
9926 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9927
9928         * configure.ac: back to HEAD
9929
9930 === release 0.9.6 ===
9931
9932 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
9933
9934         * configure.ac:
9935           releasing 0.9.6, "White Eight"
9936
9937 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9938
9939         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
9940         * docs/plugins/inspect/plugin-sine.xml:
9941           remove sinesrc some more
9942
9943 2005-11-23  Wim Taymans  <wim@fluendo.com>
9944
9945         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
9946         If we are reading too slowly, jump forward in the ringbuffer
9947         instead of blocking.
9948
9949 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
9950
9951         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
9952         (gst_visual_chain):
9953         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
9954         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
9955         (gst_videorate_chain):
9956         * gst/videotestsrc/gstvideotestsrc.c:
9957         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
9958         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
9959         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
9960         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
9961         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
9962         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
9963           Updates for API changes
9964
9965 2005-11-23  Wim Taymans  <wim@fluendo.com>
9966
9967         * gst-libs/gst/audio/gstbaseaudiosink.c:
9968         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
9969         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
9970         Fix for calibration API change.
9971
9972 2005-11-23  Michael Smith <msmith@fluendo.com>
9973
9974         * gst-libs/gst/audio/multichannel.c:
9975         (gst_audio_get_channel_positions),
9976         (gst_audio_set_channel_positions),
9977         (gst_audio_set_structure_channel_positions_list),
9978         (gst_audio_fixate_channel_positions):
9979           Use gst_value_array_*() functions on value arrays, not
9980           gst_value_list_*().
9981
9982 2005-11-23  Edward Hervey  <edward@fluendo.com>
9983
9984         * autogen.sh:
9985         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
9986         Fixes autogen
9987
9988 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9989
9990         * check/Makefile.am:
9991         * check/elements/videotestsrc.c: (setup_videotestsrc),
9992         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
9993         (main):
9994           add a test for videotestsrc
9995
9996 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9997
9998         * gst/sine/.cvsignore:
9999         * gst/sine/Makefile.am:
10000         * gst/sine/gstsinesrc.c:
10001         * gst/sine/gstsinesrc.h:
10002         * gst/sine/sinesrc.vcproj:
10003           and remove sinesrc from the repository.  Closes #321446
10004
10005 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10006
10007         * configure.ac:
10008         * gst-plugins-base.spec.in:
10009           remove sinesrc from the build
10010
10011 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10012
10013         * check/Makefile.am:
10014         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10015         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10016         (main):
10017           add a test for audiotestsrc, testing all waves.  Even seems
10018           leak-free at first glance, nice job Stefan
10019
10020 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10021
10022         * po/af.po:
10023         * po/az.po:
10024         * po/cs.po:
10025         * po/en_GB.po:
10026         * po/hu.po:
10027         * po/it.po:
10028         * po/nb.po:
10029         * po/nl.po:
10030         * po/or.po:
10031         * po/sq.po:
10032         * po/sr.po:
10033         * po/sv.po:
10034         * po/uk.po:
10035         * po/vi.po:
10036           Translation string updates
10037
10038         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10039         (gst_v4lsrc_set_caps):
10040         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10041         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10042         * sys/v4l/v4lsrc_calls.h:
10043           Improve v4lsrc, by making it work again.
10044
10045 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10046
10047         * ext/libvisual/visual.c: (gst_visual_chain):
10048           Fix the fps calculations.
10049
10050         * gst/ffmpegcolorspace/avcodec.h:
10051           Move structure element for clarity
10052
10053         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10054         * gst-libs/gst/interfaces/tunernorm.h:
10055         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10056         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10057         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10058         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10059         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10060         (gst_v4lmjpegsrc_getcaps):
10061         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10062         (gst_v4lsrc_set_caps):
10063         * sys/v4l/gstv4lsrc.h:
10064         * sys/v4l/v4l_calls.c: (gst_v4l_open):
10065         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10066         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10067         * sys/v4l/v4lsrc_calls.h:
10068           Fractional framerates...
10069
10070 2005-11-22  Wim Taymans  <wim@fluendo.com>
10071
10072         * gst-libs/gst/audio/gstbaseaudiosink.c:
10073         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10074         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10075         And we provide a clock by default, of course...
10076
10077 2005-11-22  Wim Taymans  <wim@fluendo.com>
10078
10079         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10080         This clock can be slaved to a master clock now.
10081
10082         * gst-libs/gst/audio/gstbaseaudiosink.c:
10083         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10084         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10085         (gst_base_audio_sink_set_clock),
10086         (gst_base_audio_sink_set_property),
10087         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10088         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10089         * gst-libs/gst/audio/gstbaseaudiosink.h:
10090         Handle slaving the internal clock to the clock selected in the
10091         pipeline.
10092         Add property to make the basesink not provide a clock.
10093
10094         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10095         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10096         (gst_base_rtp_depayload_wait):
10097         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10098         We can use the clock in GstElement, no need to store it ourselves.
10099
10100 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10101
10102         * docs/libs/tmpl/gstaudio.sgml:
10103           update
10104         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10105         (gst_paranoia_endian_get_type):
10106         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10107         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10108         * gst/audiotestsrc/gstaudiotestsrc.c:
10109         (gst_audiostestsrc_wave_get_type):
10110         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10111         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10112         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10113         (gst_sync_method_get_type), (gst_unit_type_get_type),
10114         (gst_client_status_get_type), (gst_multifdsink_class_init),
10115         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10116         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10117         (gst_multifdsink_get_property):
10118         * gst/tcp/gstmultifdsink.h:
10119         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10120         * gst/videotestsrc/gstvideotestsrc.c:
10121         (gst_videotestsrc_pattern_get_type):
10122           remove deprecated properties
10123           fix up enums to correctly have short lowercase dashed nicks
10124
10125 2005-11-22  Michael Smith <msmith@fluendo.com>
10126
10127         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10128         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10129           Add underscore.
10130
10131 2005-11-22  Michael Smith <msmith@fluendo.com>
10132
10133         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10134         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10135           Use utility method for scaling clocktime for fractional framerates.
10136
10137 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
10138
10139         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10140         (gst_visual_chain):
10141         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10142         * ext/theora/theoradec.c: (theora_handle_type_packet):
10143         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10144         (theora_enc_chain):
10145         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10146         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10147         * gst-libs/gst/video/video.h:
10148         * gst/ffmpegcolorspace/avcodec.h:
10149         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10150         (gst_ffmpeg_caps_to_pixfmt):
10151         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10152         (gst_ffmpegcsp_set_caps):
10153         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10154         (gst_videorate_setcaps), (gst_videorate_blank_data),
10155         (gst_videorate_chain):
10156         * gst/videotestsrc/gstvideotestsrc.c:
10157         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10158         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10159         (gst_videotestsrc_event), (gst_videotestsrc_create):
10160         * gst/videotestsrc/gstvideotestsrc.h:
10161         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10162         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10163         (gst_ximagesink_get_times), (gst_ximagesink_init):
10164         * sys/ximage/ximagesink.h:
10165         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10166         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10167         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10168         * sys/xvimage/xvimagesink.h:
10169           Convert elements to use fractions for their framerate.
10170           V4L elements to come later tonight.
10171
10172 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10173
10174         * gst-libs/gst/audio/audio.c:
10175         * gst-libs/gst/audio/audio.h:
10176           remove some deprecated functions
10177
10178 2005-11-22  Andy Wingo  <wingo@pobox.com>
10179
10180         * Update for gst_tag_setter API changes.
10181
10182 2005-11-22  Andy Wingo  <wingo@pobox.com>
10183
10184         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10185         (gst_ogg_demux_perform_seek):
10186         * ext/theora/theoradec.c (theora_dec_sink_event):
10187         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10188         update-funcnames.
10189
10190 2005-11-22  Wim Taymans  <wim@fluendo.com>
10191
10192         * examples/seeking/seek.c: (main):
10193         Give higher priority to bus signals than the gtk events
10194         to fix a race condition in the segment looping.
10195
10196 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10197
10198         * ext/theora/Makefile.am:
10199         * ext/vorbis/Makefile.am:
10200         * gst-libs/gst/tag/Makefile.am:
10201         * gst-plugins-base.spec.in:
10202           Rename libgsttagedit to libgsttag (#322117).
10203
10204 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10205
10206         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10207         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10208           Call gst_x_overlay_prepare_xwindow_id() to give applications
10209           a final chance to set their own xwindow id before the video
10210           sink creates its own window.
10211
10212 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10213
10214         * sys/xvimage/xvimagesink.c:
10215         (gst_xvimagesink_navigation_send_event): Handle navigation
10216         events correcly with borders if applicable.
10217
10218 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10219
10220         Patch by: Luca Ognibene
10221
10222         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10223         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10224         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10225         (gst_ffmpegcsp_caps_remove_format_info):
10226         * gst/ffmpegcolorspace/imgconvert.c:
10227         * gst/ffmpegcolorspace/imgconvert_template.h:
10228           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10229           #318353); use gst_structure_has_name().
10230
10231 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10232
10233         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10234         (gst_ximagesink_class_init): Add debug macros on functions.
10235         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10236         (gst_xvimagesink_xwindow_draw_borders),
10237         (gst_xvimagesink_xvimage_put),
10238         (gst_xvimagesink_xwindow_update_geometry),
10239         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10240         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10241         (gst_xvimagesink_xcontext_clear),
10242         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10243         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10244         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10245         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10246         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10247         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10248         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10249         expose while being PAUSED, out of data flow navigation events, etc..
10250
10251 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10252
10253         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10254         * gst-libs/gst/audio/audio.h:
10255           fix prototype - wondering why the test worked regardless
10256
10257 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
10258
10259         * check/Makefile.am:
10260         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10261         * gst-libs/gst/audio/audio.h:
10262           add a method that returns a proper GstClockTime
10263
10264 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10265
10266         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10267         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10268         * gst-libs/gst/interfaces/xoverlay.h:
10269           Remove everything having to do with the desired size; add 
10270           gst_x_overlay_prepare_xwindow_id() function; remove the
10271           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10272           post a message on the bus instead (#321816).
10273
10274         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10275         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10276         (gst_xvimagesink_xoverlay_init):
10277           Remove desired size stuff (#321816).
10278
10279 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10280
10281         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10282         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10283         (mpeg_video_type_find), (mpeg_video_stream_type_find):
10284           Terminate vararg functions with NULL instead of 0 to 
10285           make gcc4 happy.
10286
10287 2005-11-21  Andy Wingo  <wingo@pobox.com>
10288
10289         patch by: Sebastien Cote <sebas642@yahoo.ca>
10290         
10291         * gst-libs/gst/rtp/gstrtpbuffer.h: 
10292         * gst-libs/gst/rtp/gstrtpbuffer.c
10293         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10294
10295 2005-11-21  Andy Wingo  <wingo@pobox.com>
10296
10297         * gst/playback/gstplaybin.c (gen_audio_element) 
10298         (gen_video_element): Use the new MISSING_PLUGIN core error
10299         category. Closes #320060.
10300
10301         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
10302         * gst/videorate/gstvideorate.c (gst_videorate_event):
10303         * ext/theora/theoradec.c (theora_dec_sink_event): 
10304         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10305         stream lock.
10306
10307         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10308         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10309         stream lock changes.
10310
10311 2005-11-21  Wim Taymans  <wim@fluendo.com>
10312
10313         * gst-libs/gst/audio/gstbaseaudiosink.c:
10314         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10315         (gst_base_audio_sink_provide_clock),
10316         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10317         (gst_base_audio_sink_change_state):
10318         * gst/audioresample/gstaudioresample.c:
10319         Segment update fix.
10320
10321 2005-11-21  Andy Wingo  <wingo@pobox.com>
10322
10323         * *.h:
10324         * *.c: Ran scripts/update-macros. Oh yes.
10325
10326 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10327
10328         * sys/ximage/Makefile.am:
10329         * sys/ximage/ximage.c:
10330           Rename ximage plugin to ximagesink (#321426) (Don't forget to
10331           remove your old libgstximage.* manually if necessary).
10332
10333 2005-11-21  Michael Smith <msmith@fluendo.com>
10334
10335         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10336           Minimal fix for bug #320200: set the min/max bitrate in the correct
10337           units. A better fix would be to upgrade to the RATEMANAGE2
10338           interface, rather than using the deprecated interface used here, but
10339           that would require an update in our libvorbis dependency (to 1.1),
10340           which is probably undesirable.
10341
10342 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
10343
10344         * ext/libvisual/visual.c: (get_buffer):
10345         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10346         (gst_base_audio_src_fixate):
10347         * gst/audioconvert/gstaudioconvert.c:
10348         (gst_audio_convert_fixate_caps):
10349         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10350         * gst/audiotestsrc/gstaudiotestsrc.c:
10351         (gst_audiotestsrc_src_fixate):
10352         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10353         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10354         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10355         * gst/videotestsrc/gstvideotestsrc.c:
10356         (gst_videotestsrc_src_fixate):
10357         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10358         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10359           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10360           (#322027)
10361
10362
10363 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10364
10365         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10366         (gst_riff_create_iavs_caps):
10367         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10368         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10369         (gst_riff_parse_info):
10370         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10371         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10372         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10373           Fixes for GST_FOURCC_FORMAT API change.
10374
10375 2005-11-21  Andy Wingo  <wingo@pobox.com>
10376
10377         patch by: Alessandro Dessina <alessandro nnva org>
10378
10379         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10380         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10381         (gst_ogg_parse_chain):
10382         * ext/theora/theoraenc.c (theora_set_header_on_caps):
10383         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10384         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10385         gst_value_list calls on arrays. Fixes #321962.
10386
10387 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10388
10389         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10390         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10391         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10392         * gst/adder/gstadder.c: (gst_adder_init),
10393         (gst_adder_request_new_pad), (gst_adder_collected),
10394         (gst_adder_change_state):
10395           Update for gst_collectpads_foo() to gst_collect_pads_foo()
10396           API change.
10397
10398 2005-11-21  Michael Smith <msmith@fluendo.com>
10399
10400         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10401         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10402           Properly handle pad_push return values.
10403
10404 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
10405
10406         * gst-libs/gst/tag/Makefile.am:
10407         * gst-libs/gst/tag/gstvorbistag.c:
10408         (gst_tag_list_to_vorbiscomment_buffer):
10409           Remove obsolete vorbistag element and debug category.
10410
10411         * gst/playback/gstplaybasebin.c: (check_queue):
10412           Don't divide by 0 when queue-threshold is 0.
10413
10414         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
10415           Don't modify an existing pixel-aspect-ratio if we fail to read
10416           a new one.
10417
10418 2005-11-20  Wim Taymans  <wim@fluendo.com>
10419
10420         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
10421         (gst_vorbisenc_push_packet):
10422         GST_PAD_IS_USABLE is gone, use the return value of
10423         the push or pad_alloc_buffer instead.
10424
10425 2005-11-18  Julien MOUTTE  <julien@moutte.net>
10426
10427         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10428         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
10429         (gst_ximagesink_ximage_destroy),
10430         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
10431         (gst_ximagesink_xwindow_new),
10432         (gst_ximagesink_xwindow_update_geometry),
10433         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
10434         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
10435         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
10436         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10437         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
10438         (gst_ximagesink_navigation_send_event),
10439         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
10440         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
10441         (gst_ximagesink_finalize), (gst_ximagesink_init),
10442         (gst_ximagesink_class_init):
10443         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
10444         This new version brings correct software scaling, non flickering
10445         window while resizing, pixel aspect ratio handling, usage of
10446         hardware buffer pools, out of data flow event thread for 
10447         navigation and handling of expose events even when being PAUSED,
10448         a new property to keep video aspect ratio when resizing, etc...
10449
10450 2005-11-18  Julien MOUTTE  <julien@moutte.net>
10451
10452         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
10453         (gst_videoscale_fixate_caps): Introduce back caps fixate with
10454         handling of PAR.
10455
10456 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
10457
10458         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
10459         Unsetting IS_SINK flag from the fakesink, so decodebin
10460         never behaves as a sink.
10461
10462 2005-11-17  Wim Taymans  <wim@fluendo.com>
10463
10464         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10465         (gst_base_audio_src_change_state):
10466         Fix the audiosrc base class again, we did not unflush.
10467
10468 2005-11-17  Julien MOUTTE  <julien@moutte.net>
10469
10470         * examples/seeking/seek.c: (make_dv_pipeline),
10471         (make_vorbis_theora_pipeline), (make_avi_pipeline),
10472         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
10473         to ogg/vorbis/theora pipeline.
10474
10475 2005-11-17  Wim Taymans  <wim@fluendo.com>
10476
10477         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
10478         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
10479         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
10480         Fix EOS on multiple streams.
10481         More debugging.
10482
10483 2005-11-16  Wim Taymans  <wim@fluendo.com>
10484
10485         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
10486         (gst_ogg_demux_perform_seek):
10487         Segment done must include stream time.
10488
10489         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
10490         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
10491         (gst_ogg_mux_change_state):
10492         Fix ogg muxer again.
10493
10494 2005-11-16  Wim Taymans  <wim@fluendo.com>
10495
10496         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
10497         Fix compile again.
10498
10499 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10500
10501         * ext/libvisual/visual.c: (gst_visual_init):
10502         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
10503         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
10504         (gst_ogg_parse_chain):
10505         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
10506         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
10507         * ext/theora/theoradec.c: (gst_theora_dec_init):
10508         * ext/theora/theoraenc.c: (gst_theora_enc_init):
10509         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
10510         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
10511         * gst/adder/gstadder.c: (gst_adder_class_init),
10512         (gst_adder_dispose):
10513         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
10514         * gst/subparse/gstsubparse.c: (gst_subparse_init):
10515         * gst/videorate/gstvideorate.c: (gst_videorate_init):
10516           Fix a whole set of pad template leaks
10517
10518 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10519
10520         * check/generic/states.c: (GST_START_TEST):
10521           fix the test so that it only checks for elements that are part of
10522           this source module
10523
10524 2005-11-16  Michael Smith <msmith@fluendo.com>
10525
10526         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
10527         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
10528         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10529         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10530         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
10531         (gst_ogg_mux_change_state):
10532           Fix leaking collectpads.
10533
10534 2005-11-16  Edward Hervey  <edward@fluendo.com>
10535
10536         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
10537         (gst_videorate_event), (gst_videorate_chain):
10538         Handle segment seeks
10539
10540 2005-11-16  Wim Taymans  <wim@fluendo.com>
10541
10542         * gst-libs/gst/audio/gstbaseaudiosink.c:
10543         (gst_base_audio_sink_provide_clock),
10544         (gst_base_audio_sink_change_state):
10545         Set ringbuffer to non-flushing when going to PAUSED, set to
10546         flushing again when going to READY.
10547
10548         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
10549         (gst_ring_buffer_stop):
10550         Start in flushing mode by default.
10551         Don't set flushing in the _stop method, let the app call
10552         this explicitly.
10553
10554 2005-11-16  Julien MOUTTE  <julien@moutte.net>
10555
10556         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
10557         * gst-libs/gst/video/videosink.h: Add helper function needed
10558         for video sinks.
10559
10560 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
10561
10562         * gst/videoscale/gstvideoscale.c:
10563         (gst_videoscale_handle_src_event):
10564           Don't leak reference to pad parent.
10565
10566 2005-11-16  Wim Taymans  <wim@fluendo.com>
10567
10568         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
10569         Set ringbuffer to flushing when stopping so that we don't
10570         block on wait_segment anymore and livelock.
10571
10572 2005-11-16  Wim Taymans  <wim@fluendo.com>
10573
10574         * examples/seeking/seek.c: (send_event), (do_seek),
10575         (loop_toggle_cb), (segment_done), (main):
10576         Added looping checkbox.
10577
10578 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10579
10580         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10581         (gst_ogg_demux_init):
10582         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10583         (gst_vorbis_dec_init):
10584           revert unrefs, they don't pass make check
10585
10586 2005-11-15  Johan Dahlin  <johan@gnome.org>
10587
10588         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10589         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
10590         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10591         (gst_vorbis_dec_init):
10592         Fix pad template leaks. 
10593
10594 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
10595
10596         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
10597           Make state change function thread safe.
10598
10599 2005-11-15  Edward Hervey  <edward@fluendo.com>
10600
10601         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
10602         (gst_ogg_demux_class_init):
10603         Implement GstElement::send_event, so we can send seek events
10604         in GST_STATE_READY
10605
10606 2005-11-14  Julien MOUTTE  <julien@moutte.net>
10607
10608         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
10609         Discovered how to take away flickering while resizing the
10610         window. Please don't put that in ximagesink, refactoring in
10611         progress.
10612
10613 2005-11-14  Michael Smith <msmith@fluendo.com>
10614
10615         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
10616         (gst_multifdsink_render):
10617           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
10618
10619 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
10620
10621         * gst/playback/gstplaybin.c: (gen_audio_element):
10622           Use autoaudiosink, it tends to be more widely available than
10623           autoaudiiosink.
10624           
10625 2005-11-14  Andy Wingo  <wingo@pobox.com>
10626
10627         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
10628         as well if it is available. Fixes #316442.
10629
10630 2005-11-14  Michael Smith <msmith@fluendo.com>
10631
10632         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
10633         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
10634         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10635         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10636         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
10637         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10638         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
10639         (gst_vorbisenc_change_state):
10640           Fix a small memory leak in vorbisenc.
10641           Fix large memory leaks in oggmux, also fix lots of state change
10642           bugs in oggmux.
10643
10644 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10645
10646         * gst/videotestsrc/gstvideotestsrc.c:
10647         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
10648         (gst_videotestsrc_src_fixate):
10649           move fixation to a fixate function
10650           remove negotiate function, basesrc's is good enough
10651           fixes a bug for check when using the element alone
10652
10653 2005-11-13  Edward Hervey  <edward@fluendo.com>
10654
10655         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
10656         (key_toggle_cb), (main):
10657         Added checkboxes for adding/removing the accurate and key_unit seek
10658         flags.
10659
10660 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
10661
10662         * configure.ac: back to HEAD
10663
10664 === release 0.9.5 ===
10665
10666 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
10667
10668         * configure.ac:
10669           releasing 0.9.5, "No No Kia"
10670
10671 2005-11-11  Edward Hervey  <edward@fluendo.com>
10672
10673         * examples/seeking/seek.c: (make_parselaunch_pipeline):
10674         Added parse-launch syntax seeking mode for the seeking example.
10675         This should help stress-test even more cases.
10676         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
10677
10678 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
10679
10680         * sys/xvimage/xvimagesink.c:
10681         (gst_xvimagesink_navigation_send_event):
10682           Check whether peer pad exists before sending navigation events
10683           to it.
10684
10685 2005-11-11  Michael Smith <msmith@fluendo.com>
10686
10687         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
10688         (gst_vorbisenc_buffer_from_packet):
10689         * ext/vorbis/vorbisenc.h:
10690           Set duration on encoded buffers. This allows oggmux's
10691           max_page_delay parameter to actually work.
10692
10693 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
10694
10695         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10696         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
10697         (gst_ffmpegcsp_avpicture_fill):
10698         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10699         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
10700           Make palettes work again (see #132341). Use our own macros
10701           for rounding up.
10702
10703 2005-11-10  Andy Wingo  <wingo@pobox.com>
10704
10705         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
10706         string doober.
10707
10708 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10709
10710         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10711         (gst_ffmpegcsp_transform_caps):
10712           Prefer passthrough in transform_caps
10713
10714 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10715
10716         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
10717           check for ALSA errors properly, instead of relying on ALSA's
10718           error strings to serve to the user.
10719
10720 2005-11-10  Wim Taymans  <wim@fluendo.com>
10721
10722         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
10723         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
10724         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
10725         Modernise the seek code.
10726
10727 2005-11-10  Michael Smith <msmith@fluendo.com>
10728         
10729         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
10730         (setup_substreams), (set_active_source):
10731           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
10732           trying to go to NULL if we failed to read a file.
10733
10734 2005-11-10  Wim Taymans  <wim@fluendo.com>
10735
10736         * gst/audiotestsrc/gstaudiotestsrc.c:
10737         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
10738         (gst_audiotestsrc_create):
10739         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10740         (gst_sinesrc_get_times), (gst_sinesrc_create):
10741         * gst/videotestsrc/gstvideotestsrc.c:
10742         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
10743         (gst_videotestsrc_create):
10744         The base class can now sync for us.
10745
10746 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10747
10748         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
10749           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
10750           name=source autoprobe=false autoprobe-fps=false copy-mode=1
10751           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
10752           format=(fourcc)I420" ! xvimagesink
10753
10754 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
10755
10756         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10757         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
10758         (gst_sinesrc_newsegment):
10759           Send newsegment event in TIME format, set duration if
10760           num-buffers is set, fix duration querying.
10761
10762 2005-11-10  Michael Smith <msmith@fluendo.com>
10763
10764         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
10765         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10766         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10767         (gst_ogg_mux_collected):
10768          Fix EOS handling, partially. Now forwarding an EOS event once we have
10769          EOS on all pads works correctly. However, we still don't properly set
10770          EOS on the actual ogg stream pages.
10771
10772 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
10773
10774         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
10775           Set elements to NULL state before disposing of them.
10776
10777 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
10778
10779         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
10780
10781         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10782         (gst_base_rtp_depayload_init),
10783         (gst_base_rtp_depayload_set_gst_timestamp):
10784         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10785           We need to send a newsegment event for each instance, not
10786           just for the first instance of this class (get rid of
10787           static variable in function). (#321011).
10788           
10789 2005-11-08  Michael Smith <msmith@fluendo.com>
10790
10791         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
10792         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
10793         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
10794         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
10795           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
10796           This makes us mux things correctly according to the ogg muxing
10797           rules. Still not handling EOS correctly right now, though.
10798
10799 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
10800
10801         * gst/audioconvert/gstaudioconvert.c:
10802           Fix typo in docs. 
10803
10804 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
10805
10806         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
10807         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
10808           Initialise segment_stop to GST_CLOCK_TIME_NONE when
10809           creating a new chain; should fix live streaming. Also
10810           add more debug output and fix a typo.
10811
10812 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
10813
10814         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
10815
10816         * gst/volume/gstvolume.c: (volume_set_caps):
10817           Fix compilation on Solaris with Forte. (#320923)
10818
10819 2005-11-08  Wim Taymans  <wim@fluendo.com>
10820
10821         * gst-libs/gst/audio/gstbaseaudiosink.c:
10822         (gst_base_audio_sink_render):
10823         No need to do a typecheck.
10824
10825 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
10826
10827         * ext/alsa/gstalsa.h:
10828           We register a debug category, so let's use it.
10829
10830 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
10831
10832         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10833         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
10834         Fixed a small problem.
10835
10836 2005-11-04  Wim Taymans  <wim@fluendo.com>
10837
10838         * examples/seeking/Makefile.am:
10839         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
10840         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
10841         (make_playerbin_pipeline), (format_value), (update_scale),
10842         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
10843         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
10844         (print_usage), (main):
10845         Added app for playback speed testing.
10846
10847         * examples/seeking/seek.c: (dynamic_link),
10848         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
10849         (make_mpeg_pipeline), (do_seek), (set_update_scale),
10850         (message_received), (main):
10851         Updated seek example.
10852
10853 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
10854
10855         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10856         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10857         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
10858         (gst_base_rtp_depayload_set_clock):
10859         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10860         Don't sleep on the bench (system clock) when you have a nice 
10861         comfortable bed (Gstreamer clock) to sleep on.
10862
10863 2005-11-03  Wim Taymans  <wim@fluendo.com>
10864
10865         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10866         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
10867         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
10868         Handle the case where a pad_block failed.
10869
10870 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
10871
10872         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
10873
10874         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10875         (gst_base_rtp_depayload_add_to_queue),
10876         (gst_base_rtp_depayload_push),
10877         (gst_base_rtp_depayload_set_gst_timestamp),
10878         (gst_base_rtp_depayload_queue_release):
10879           Fixes some bugs in the depayloader's queuing/de-queueing code.
10880
10881 2005-10-31  Michael Smith <msmith@fluendo.com>
10882
10883         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
10884         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10885         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
10886           Patch from Alessandro Decina <alessandro@nnva.org>.
10887           Make oggdemux only find the final time in a chain, not per-pad,
10888           since the per-pad information can be very expensive to locate, and
10889           it isn't used anywhere. This makes reading a file containing
10890           OggSkeleton reasonably fast.
10891           Also, make chain finding work when there are logical bitstreams that
10892           can't be decoded. Fixes #319110.
10893
10894 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
10895
10896         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10897         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10898         (gst_base_rtp_depayload_chain),
10899         (gst_base_rtp_depayload_add_to_queue),
10900         (gst_base_rtp_depayload_push),
10901         (gst_base_rtp_depayload_set_gst_timestamp),
10902         (gst_base_rtp_depayload_queue_release),
10903         (gst_base_rtp_depayload_start_thread),
10904         (gst_base_rtp_depayload_set_property),
10905         (gst_base_rtp_depayload_get_property):
10906         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10907         Some random fixes, to fullfill the desires of thomas.
10908
10909 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
10910
10911         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10912         (gst_base_rtp_depayload_add_to_queue),
10913         (gst_base_rtp_depayload_push):
10914         Fixed the queueing algorithm.
10915
10916 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
10917
10918         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10919         (gst_base_rtp_depayload_push):
10920         A small fix
10921
10922 2005-10-31  Wim Taymans  <wim@fluendo.com>
10923
10924         * gst-libs/gst/audio/gstringbuffer.h:
10925         Don't break ABI.
10926
10927         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10928         (gst_ffmpeg_caps_to_pixfmt):
10929         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10930         (gst_ffmpegcsp_set_caps):
10931         Some more comments.
10932         Handle missing required caps fields better.
10933
10934 2005-10-31  Wim Taymans  <wim@fluendo.com>
10935
10936         * gst-libs/gst/audio/gstbaseaudiosink.c:
10937         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
10938         (gst_base_audio_sink_render):
10939         * gst-libs/gst/audio/gstringbuffer.c:
10940         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10941         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
10942         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
10943         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
10944         (gst_ring_buffer_read):
10945         * gst-libs/gst/audio/gstringbuffer.h:
10946         Add flushing mode to the ringbuffer so that it in all cases does
10947         not try to handle more audio. This makes sure it does not try to
10948         block anymore when flushing and fixes a livelock.
10949
10950 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
10951
10952         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10953         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10954         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
10955           Explicitly check for -1 values before doing a conversion
10956           and always map them to -1. (#315545)
10957
10958 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10959
10960         * gst/playback/gstplaybin.c: (gen_video_element):
10961           first try autovideosink, then xvimagesink, then error out
10962         * po/POTFILES.in:
10963           add translatable file
10964         * po/af.po:
10965         * po/az.po:
10966         * po/cs.po:
10967         * po/en_GB.po:
10968         * po/hu.po:
10969         * po/it.po:
10970         * po/nb.po:
10971         * po/nl.po:
10972         * po/or.po:
10973         * po/sq.po:
10974         * po/sr.po:
10975         * po/sv.po:
10976         * po/uk.po:
10977         * po/vi.po:
10978           update translations
10979
10980 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
10981
10982         * gst-libs/gst/rtp/gstbasedepayload.c:
10983         * gst-libs/gst/rtp/gstbasedepayload.h:
10984           Minor cleanups
10985
10986 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
10987
10988         * gst/playback/.cvsignore:
10989         * gst/playback/decodetest.c:
10990         * gst/playback/test3.c:
10991           Port these two tests as well.
10992
10993 2005-10-27  Wim Taymans  <wim@fluendo.com>
10994
10995         * ext/theora/theoradec.c: (theora_dec_src_query),
10996         (theora_dec_sink_event):
10997         * ext/theora/theoraenc.c: (theora_enc_sink_event),
10998         (theora_enc_change_state):
10999         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11000         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11001         Take proper locks when handling events.
11002
11003 2005-10-27  Wim Taymans  <wim@fluendo.com>
11004
11005         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11006         (gst_adder_change_state):
11007         Fix timestamps and fix deadlock when stopping the collectpads.
11008
11009 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
11010
11011         * gst-libs/gst/rtp/gstrtpbuffer.h:
11012         Declaring the payload types as strings too so that they can be used
11013         in the padtemplate inialization.
11014
11015 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
11016
11017         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
11018
11019         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11020         (gst_base_rtp_depayload_class_init):
11021         Fixes a small but nasty bug. The derived elements no longer segfaults
11022         on finalization.
11023
11024 2005-10-26  Michael Smith <msmith@fluendo.com>
11025
11026         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11027           When clearing an audioconvert context, set tmpbufsize to zero, so
11028           we'll allocate it again later if required.
11029           This fixes audioconvert re-negotiating formats, which previously
11030           segfaulted with a NULL destination buffer.
11031
11032 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
11033
11034         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11035         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11036         (gst_base_rtp_depayload_set_gst_timestamp),
11037         (gst_base_rtp_depayload_queue_release):
11038         Fixed a smalll memleak.
11039
11040 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
11041         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11042         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11043         (gst_base_rtp_depayload_finalize),
11044         (gst_base_rtp_depayload_setcaps),
11045         (gst_base_rtp_depayload_add_to_queue),
11046         (gst_base_rtp_depayload_push),
11047         (gst_base_rtp_depayload_set_gst_timestamp),
11048         (gst_base_rtp_depayload_queue_release),
11049         (gst_base_rtp_depayload_thread),
11050         (gst_base_rtp_depayload_change_state):
11051         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11052         Changed the C++ comments to C comments
11053
11054 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11055
11056         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11057         * gst/tcp/gsttcpclientsrc.h:
11058         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11059         * gst/tcp/gsttcpserversrc.h:
11060           Remove unused 'curoffset' structure member.
11061
11062 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
11063
11064         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11065         (gst_base_rtp_depayload_base_init),
11066         (gst_base_rtp_depayload_finalize):
11067         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11068         * gst-libs/gst/rtp/gstbasertppayload.h:
11069           The pad-template on the sinkpad should be set by the derived classes.
11070           Also added some useful macros.
11071
11072 2005-10-24  Wim Taymans  <wim@fluendo.com>
11073
11074         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11075         Correctly flush decoder samples even if we could not
11076         copy them to an output buffer. Fixes #319618.
11077
11078 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11079
11080         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11081         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11082         the caps against our xcontext caps.
11083
11084 2005-10-24  Wim Taymans  <wim@fluendo.com>
11085
11086         * gst-libs/gst/audio/gstbaseaudiosink.c:
11087         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11088         Remove g_print
11089         Use sync property from baseclass to disable sync.
11090
11091 2005-10-24  Wim Taymans  <wim@fluendo.com>
11092
11093         * gst-libs/gst/audio/gstbaseaudiosink.c:
11094         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11095         Buffers with no timestamps get aligned with previous buffers or
11096         on underrun, played ASAP.
11097
11098 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11099
11100         * gst-libs/gst/video/video.h:
11101         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11102         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11103         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11104         here comes my change on caps for framerate and geometry range.
11105         We are now accepting 1 to MAXINT for width and height, and from
11106         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11107         to be blended correctly in videomixer.
11108
11109 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11110
11111         * configure.ac:
11112           back to HEAD
11113
11114 === release 0.9.4 ===
11115
11116 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11117
11118         * NEWS:
11119         * RELEASE:
11120         * configure.ac:
11121           releasing 0.9.4, "Velociraptor"
11122
11123 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11124
11125         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11126         * po/POTFILES.in:
11127           STOPPED -> FAILED
11128
11129 2005-10-21  Wim Taymans  <wim@fluendo.com>
11130
11131         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11132         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11133         (pad_blocked), (close_pad_link), (new_pad):
11134         Don't try to remove elements twice.
11135
11136 2005-10-21  Wim Taymans  <wim@fluendo.com>
11137
11138         * ext/theora/theoradec.c: (theora_dec_src_query),
11139         (theora_dec_sink_event):
11140         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11141         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11142         (vorbis_handle_data_packet):
11143         * ext/vorbis/vorbisdec.h:
11144         Fix old naming.
11145
11146         * gst-libs/gst/audio/gstbaseaudiosink.c:
11147         (gst_base_audio_sink_render):
11148         Don't try to sync on buffers without a timestamp.
11149
11150 2005-10-21  Wim Taymans  <wim@fluendo.com>
11151
11152         * ext/theora/theoradec.c: (theora_dec_src_query),
11153         (theora_dec_sink_event):
11154         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11155         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11156         (vorbis_handle_data_packet):
11157         * ext/vorbis/vorbisdec.h:
11158         Fix old naming.
11159
11160 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11161
11162         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11163         (gst_vorbisenc_src_query):
11164           Implement position and duration queries.
11165
11166         * gst/playback/test3.c: (update_scale), (main):
11167           Fix for async state changes and print nicer output.
11168
11169 2005-10-20  Wim Taymans  <wim@fluendo.com>
11170
11171         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11172         (dump_element_stats), (main):
11173         * gst/playback/test6.c: (main):
11174         Fix tests again
11175
11176 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11177
11178         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11179         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11180           Don't use functions for position queries when handling
11181           duration queries.
11182
11183 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11184
11185         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11186         (vorbis_handle_data_packet), (vorbis_dec_chain),
11187         (vorbis_dec_change_state):
11188         * ext/vorbis/vorbisdec.h:
11189           Vorbis streams can be embedded in other container formats
11190           than ogg, container formats where the demuxer might set 
11191           timestamps on encoded vorbis buffers instead of those silly 
11192           granulepos thingies. In short: make vorbisdec handle 
11193           timestamps on incoming buffers as well.
11194
11195 2005-10-20  Wim Taymans  <wim@fluendo.com>
11196
11197         * gst/playback/gstplaybasebin.c: (group_destroy),
11198         (gst_play_base_bin_change_state):
11199         Fix leak.
11200         Handle case where playbasebin is now ASYNC because
11201         decodebin is.
11202
11203 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11204
11205         * gst/audioconvert/Makefile.am:
11206         * gst/audioconvert/bufferframesconvert.c:
11207         * gst/audioconvert/plugin.c: (plugin_init):
11208         * gst/audioconvert/plugin.h:
11209           And bye bye buffer-frames-convert
11210
11211 2005-10-19  Wim Taymans  <wim@fluendo.com>
11212
11213         * check/elements/audioconvert.c:
11214         * docs/libs/tmpl/gstaudio.sgml:
11215         * docs/libs/tmpl/gstcolorbalance.sgml:
11216         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11217         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11218         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11219         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11220         * gst-libs/gst/audio/audio.h:
11221         * gst/audioconvert/audioconvert.h:
11222         * gst/audioconvert/gstaudioconvert.c:
11223         (gst_audio_convert_parse_caps):
11224         * gst/volume/gstvolume.c:
11225         Bye bye buffer-frames.
11226
11227 2005-10-19  Wim Taymans  <wim@fluendo.com>
11228
11229         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11230         (query_positions_elems), (query_positions_pads), (update_scale),
11231         (do_seek), (set_update_scale), (message_received), (main):
11232         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11233         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11234         (gst_ogg_demux_loop):
11235         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11236         * ext/theora/theoradec.c: (theora_dec_src_query),
11237         (theora_dec_sink_event):
11238         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11239         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11240         * gst/adder/gstadder.c: (gst_adder_query):
11241         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11242         * gst/playback/test3.c: (update_scale):
11243         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11244         (dump_element_stats), (main):
11245         * gst/playback/test6.c: (main):
11246         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11247         Query API update.
11248
11249 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11250
11251         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11252         (xml_check_first_element), (xml_type_find), (smil_type_find),
11253         (plugin_init):
11254           Add typefinding for SMIL and for generic XML. Based on patch by
11255           Akos Maroy (#308663).
11256
11257 2005-10-18  Wim Taymans  <wim@fluendo.com>
11258
11259         * gst/playback/Makefile.am:
11260         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11261         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11262         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11263         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11264         (gst_decode_bin_change_state):
11265         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11266         (gst_play_bin_send_event_to_sink):
11267         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11268         (dump_element_stats), (main):
11269         * gst/playback/test6.c: (main):
11270         Make playbin async, it'll commit state to paused when all streams
11271         are detected.
11272         Remove ugly hack.
11273         Added test6.c to show async behaviour.
11274
11275 2005-10-18  Wim Taymans  <wim@fluendo.com>
11276
11277         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11278         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11279         Fix for segment-start/stop API change.
11280
11281 2005-10-18  Wim Taymans  <wim@fluendo.com>
11282
11283         * check/Makefile.am:
11284         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11285         (main):
11286         Add future test for clock selection.
11287
11288 2005-10-18  Wim Taymans  <wim@fluendo.com>
11289
11290         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11291         (gst_alsasink_close):
11292         Set handle to NULL.
11293
11294         * gst-libs/gst/audio/gstringbuffer.c:
11295         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11296         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11297         (gst_ring_buffer_start), (gst_ring_buffer_pause),
11298         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11299         (gst_ring_buffer_read):
11300         More debug info.
11301
11302 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
11303
11304         * gst/audiotestsrc/Makefile.am:
11305         * gst/sine/Makefile.am:
11306         * gst/volume/Makefile.am:
11307           fix broken build of controllerized plugins
11308
11309 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
11310
11311         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11312
11313         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11314         (gst_riff_create_video_template_caps):
11315           Add support for Indeo-3 (IV32).
11316
11317 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11318
11319         * configure.ac:
11320           rewrite
11321
11322 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11323
11324         * gst-libs/gst/video/video.c: (gst_video_get_size):
11325         * gst/audiotestsrc/gstaudiotestsrc.c:
11326           doc updates
11327
11328 2005-10-17  Andy Wingo  <wingo@pobox.com>
11329
11330         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11331         with the collectpads change.
11332         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11333
11334         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11335
11336         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11337
11338         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11339         alloc_buffer flow return to callers.
11340         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11341         change. Fix some memleaks in theoraenc.
11342
11343         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11344         in strange circumstance.
11345
11346 2005-10-17  Julien MOUTTE  <julien@moutte.net>
11347
11348         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11349         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11350         from caps, let's use the caps...
11351
11352 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11353
11354         * configure.ac:
11355           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11356
11357 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11358
11359         * gst-libs/gst/interfaces/Makefile.am:
11360           fix silly typo
11361
11362 2005-10-16  Andy Wingo  <wingo@pobox.com>
11363
11364         * gst/playback/gstdecodebin.c
11365         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11366         function!
11367         (try_to_link_1): Increase kraziness level.
11368
11369 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11370
11371         * configure.ac:
11372           restructure like the core one
11373         * gst-libs/gst/audio/Makefile.am:
11374         * gst-libs/gst/interfaces/Makefile.am:
11375         * gst-libs/gst/net/Makefile.am:
11376         * gst-libs/gst/riff/Makefile.am:
11377         * gst-libs/gst/rtp/Makefile.am:
11378         * gst-libs/gst/tag/Makefile.am:
11379         * gst-libs/gst/video/Makefile.am:
11380           use correct linker flags, now the libs are properly versioned
11381         * check/elements/audioconvert.c: (verify_convert):
11382         * ext/alsa/gstalsaplugin.c:
11383         * ext/cdparanoia/gstcdparanoia.c:
11384         * ext/gnomevfs/gstgnomevfs.c:
11385         * ext/libvisual/visual.c:
11386         * ext/ogg/gstogg.c:
11387         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11388         * ext/theora/theora.c:
11389         * ext/vorbis/vorbis.c:
11390         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11391         * gst-libs/gst/tag/gsttagediting.c:
11392         * gst-libs/gst/video/video.c:
11393         * gst/adder/gstadder.c:
11394         * gst/audioconvert/plugin.c:
11395         * gst/audiorate/gstaudiorate.c:
11396         * gst/audioresample/gstaudioresample.c:
11397         * gst/audioresample/resample_ref.c: (resample_scale_ref):
11398         * gst/audioscale/gstaudioscale.c:
11399         * gst/audioscale/resample.c:
11400         * gst/audiotestsrc/gstaudiotestsrc.c:
11401         * gst/ffmpegcolorspace/gstffmpeg.c:
11402         * gst/playback/gstdecodebin.c: (close_pad_link):
11403         * gst/playback/gstplaybin.c: (gen_video_element),
11404         (gen_audio_element):
11405         * gst/sine/gstsinesrc.c:
11406         * gst/subparse/gstsubparse.c:
11407         * gst/tags/gsttagediting.c:
11408         * gst/tcp/gsttcpplugin.c:
11409         * gst/typefind/gsttypefindfunctions.c:
11410         * gst/videorate/gstvideorate.c:
11411         * gst/videoscale/gstvideoscale.c:
11412         * gst/videotestsrc/gstvideotestsrc.c:
11413         * gst/volume/gstvolume.c:
11414         * sys/v4l/gstv4l.c:
11415         * sys/ximage/ximage.c:
11416         * sys/xvimage/xvimagesink.c:
11417           fix up defines
11418
11419 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
11420
11421         * ext/vorbis/vorbisenc.c:
11422         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11423         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
11424         (gst_tag_to_vorbis_comments):
11425           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
11426
11427 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
11428
11429         * examples/stats/mp2ogg.c:
11430         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11431           typo fixes
11432
11433 2005-10-13  Michael Smith <msmith@fluendo.com>
11434
11435         * ext/ogg/gstoggmux.c:
11436           Use magic glib macros to define constants as 64 bit, to ensure
11437           appropriate vararg passing.
11438
11439 2005-10-13  Michael Smith <msmith@fluendo.com>
11440
11441         * ext/ogg/gstoggmux.c:
11442         * gst/audioconvert/audioconvert.c: (float):
11443           Don't use LL suffix, as it's not portable, and neither of these
11444           uses required it anyway.
11445
11446 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
11447
11448         * examples/indexing/indexmpeg.c: (main):
11449         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
11450         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
11451         (cdparanoia_convert), (cdparanoia_query):
11452         * ext/cdparanoia/gstcdparanoia.h:
11453         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
11454         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
11455         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
11456         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
11457         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
11458         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
11459         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
11460         (gst_multifdsink_render), (gst_multifdsink_start),
11461         (gst_multifdsink_stop):
11462         * gst/tcp/gstmultifdsink.h:
11463         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
11464         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
11465         (gst_tcpclientsink_stop):
11466         * gst/tcp/gsttcpclientsink.h:
11467         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
11468         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
11469         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
11470         * gst/tcp/gsttcpclientsrc.h:
11471         * gst/tcp/gsttcpserversink.h:
11472         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
11473         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
11474         (gst_tcpserversrc_stop):
11475         * gst/tcp/gsttcpserversrc.h:
11476         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
11477         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
11478         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
11479           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
11480           moved bitshift from macro to enum definition
11481
11482 2005-10-12  Wim Taymans  <wim@fluendo.com>
11483
11484         * examples/seeking/Makefile.am:
11485         Oops.
11486
11487 2005-10-12  Wim Taymans  <wim@fluendo.com>
11488
11489         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11490         (gst_ring_buffer_read), (gst_ring_buffer_clear):
11491         Don't assert on normal stuff.
11492
11493         * gst/playback/gstplaybin.c: (do_playbin_seek):
11494         API fix.
11495
11496 2005-10-12  Wim Taymans  <wim@fluendo.com>
11497
11498         * check/pipelines/simple_launch_lines.c: (run_pipeline):
11499         * examples/seeking/Makefile.am:
11500         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
11501         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11502         (do_seek), (set_update_scale), (message_received), (main):
11503         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11504         (gst_ring_buffer_read), (gst_ring_buffer_clear):
11505         Update for _get_state() API change.
11506
11507 2005-10-11  Wim Taymans  <wim@fluendo.com>
11508
11509         * gst-libs/gst/audio/gstbaseaudiosink.c:
11510         (gst_base_audio_sink_render):
11511         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11512         (gst_base_audio_src_create):
11513         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11514         (gst_ring_buffer_read):
11515         Cleanups.
11516         Commit and read from ringbuffer in samples rather than bytes.
11517
11518 2005-10-11  Wim Taymans  <wim@fluendo.com>
11519
11520         * gst-libs/gst/audio/gstbaseaudiosink.c:
11521         (gst_base_audio_sink_render):
11522         Respect segment rate and accum when scheduling samples.
11523
11524 2005-10-11  Julien MOUTTE  <julien@moutte.net>
11525
11526         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11527         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
11528         EOS correctly, that needs more work.
11529
11530 2005-10-11  Wim Taymans  <wim@fluendo.com>
11531
11532         * check/generic/states.c: (GST_START_TEST):
11533         remove old property.
11534
11535         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11536         (gst_ogg_demux_perform_seek):
11537         * ext/theora/theoradec.c: (theora_dec_sink_event):
11538         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11539         (vorbis_handle_data_packet):
11540         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11541         (gst_base_rtp_depayload_set_gst_timestamp):
11542         * gst/videorate/gstvideorate.c: (gst_videorate_event):
11543         Update for newsegment API change.
11544
11545 2005-10-11  Michael Smith <msmith@fluendo.com>
11546
11547         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
11548         (do_playbin_seek), (gst_play_bin_send_event):
11549           Override send_event differently, so that we can takes bits of
11550           functionality from GstPipeline (special handling for seeks,
11551           including pausing/resuming, and resetting stream time) and still get
11552           the appropriate behaviour of only forwarding event to a single sink,
11553           rather than all of them.
11554           Unfortunately requires a lot of code duplication, but the
11555           alternatives are equally ugly in the end.
11556
11557 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11558
11559         * check/elements/audioconvert.c: (setup_audioconvert),
11560         (cleanup_audioconvert), (get_int_caps), (verify_convert),
11561         (GST_START_TEST), (audioconvert_suite):
11562           clean up tests a little, fix some leaks.
11563
11564 2005-10-10  Wim Taymans  <wim@fluendo.com>
11565
11566         * ext/alsa/gstalsasink.c:
11567         Also allow unsigned int.
11568
11569         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11570         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
11571         Small cleanup
11572
11573 2005-10-10  Wim Taymans  <wim@fluendo.com>
11574
11575         * check/pipelines/simple_launch_lines.c: (run_pipeline):
11576         Small update, use API as stated in design docs.
11577
11578         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11579         (update_scale), (do_seek), (seek_cb), (set_update_scale),
11580         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
11581         (message_received), (main):
11582         Updated seek example for GOption. Some usability improvements.
11583
11584 2005-10-10  Wim Taymans  <wim@fluendo.com>
11585
11586         * gst/audioconvert/audioconvert.h:
11587         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
11588         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
11589         Alloc temp storage somewhere else where we can do it more
11590         portable.
11591
11592 2005-10-10  Wim Taymans  <wim@fluendo.com>
11593
11594         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
11595         (gst_tcpserversrc_start):
11596         Don't block in accept while doing the state change, move
11597         to poll and make cancellable.
11598
11599 2005-10-09  Philippe Khalaf <burger@speedy.org>
11600
11601         * gst-libs/gst/rtp/rtpbasedepayload.c:
11602         Set timestamp and add queue delay to timestamp
11603         * gst-libs/gst/rtp/rtpbuffer.h:
11604         Set correct payload type for h263
11605
11606 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
11607
11608         * gst/audiotestsrc/gstaudiotestsrc.c:
11609         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
11610         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
11611         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
11612         (gst_audiotestsrc_create_triangle),
11613         (gst_audiotestsrc_create_silence),
11614         (gst_audiotestsrc_create_white_noise),
11615         (gst_audiotestsrc_init_pink_noise),
11616         (gst_audiotestsrc_generate_pink_noise_value),
11617         (gst_audiotestsrc_create_pink_noise),
11618         (gst_audiotestsrc_change_wave):
11619         * gst/audiotestsrc/gstaudiotestsrc.h:
11620           fixed typo, added pink noise
11621
11622 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11623
11624         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
11625         (plugin_init):
11626           Add wavpack and spc typefind functions from 0.8 branch.
11627
11628 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11629
11630         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
11631         (ar_type_find), (msdos_type_find), (plugin_init):
11632           Add typefind functions for tar archives, ar archives,
11633           RAR archives, and msdos-executables (dlls, exe, etc.).
11634           Some of those would be wrongly identified as mpeg
11635           streams of some sort before (#315550).
11636
11637 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
11638
11639         * configure.ac:
11640         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11641         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11642         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
11643         * gst/audiotestsrc/Makefile.am:
11644         * gst/audiotestsrc/gstaudiotestsrc.c:
11645         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
11646         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
11647         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
11648         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
11649         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
11650         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
11651         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
11652         (gst_audiotestsrc_create_silence),
11653         (gst_audiotestsrc_create_white_noise),
11654         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
11655         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
11656         (gst_audiotestsrc_start), (plugin_init):
11657         * gst/audiotestsrc/gstaudiotestsrc.h:
11658           add new plugin and element
11659         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
11660           use gobject_class
11661
11662 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11663
11664         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
11665         (gst_adder_init), (gst_adder_request_new_pad),
11666         (gst_adder_change_state):
11667           Add query function to source pad, so adder reports the correct
11668           time/sample position when queried (#315457); fix state change
11669           function; use GST_DEBUG_FUNCPTR() for pad functions.
11670
11671 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
11672
11673         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
11674           Fix leaks in typefind registration
11675           Clean up the gratuitous commenting and whitespacing a little
11676
11677 2005-10-08  Wim Taymans  <wim@fluendo.com>
11678
11679         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
11680         Only actually wait for the thread to be stopped if it's 
11681         running.
11682
11683 2005-10-08  Wim Taymans  <wim@fluendo.com>
11684
11685         * gst-libs/gst/audio/gstbaseaudiosink.c:
11686         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11687         If we receive EOS we can start playback of what we had.
11688
11689 2005-10-08  Wim Taymans  <wim@fluendo.com>
11690
11691         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
11692         (gst_multifdsink_finalize), (multifdsink_hash_remove),
11693         (gst_multifdsink_stop):
11694         Fix crasher when going to NULL multiple times.
11695
11696 2005-10-06  Wim Taymans  <wim@fluendo.com>
11697
11698         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
11699         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
11700         * gst-libs/gst/audio/gstbaseaudiosrc.h:
11701         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
11702         patch from Edgard Lima <edgard.lima@indt.org.br>
11703         Fixed gstbaseaudiosrc adding ring buffer sync to it.
11704
11705 2005-10-06  Wim Taymans  <wim@fluendo.com>
11706
11707         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11708         Report the FLOW_RETURN as string in the error message.
11709
11710         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
11711         Don't assert when clearing an unnegotiated buffer.
11712
11713 2005-10-04  Michael Smith <msmith@fluendo.com>
11714
11715         * gst/playback/gstplaybasebin.c: (group_destroy),
11716         (gen_preroll_element), (remove_groups), (setup_source):
11717         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
11718         (setup_sinks), (gst_play_bin_send_event),
11719         (gst_play_bin_change_state):
11720           Set state to NULL before removing from bin. Fix refcounting.
11721
11722 2005-10-04  Michael Smith <msmith@fluendo.com>
11723
11724         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
11725           Correct refcounting in send_event() function. Previously was wrong
11726           if the first sink was unable to handle the event.
11727
11728 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
11729
11730         * configure.ac:
11731           back to development
11732
11733 === release 0.9.3 ===
11734
11735 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
11736
11737         * configure.ac:
11738           Releasing 0.9.3, "De Facto"
11739
11740 2005-10-03  Andy Wingo  <wingo@pobox.com>
11741
11742         * gst/playback/gstdecodebin.c (try_to_link_1)
11743         (remove_element_chain): set element to NULL before removing it.
11744
11745 2005-10-02  Johan Dahlin  <johan@gnome.org>
11746
11747         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
11748         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
11749         MT safe.
11750
11751 2005-10-02  Andy Wingo  <wingo@pobox.com>
11752
11753         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
11754         (gst_ring_buffer_prepare_read): 
11755         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
11756         Demote to LOG.
11757
11758 2005-09-29  Wim Taymans  <wim@fluendo.com>
11759
11760         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
11761         * ext/theora/theoradec.c: (theora_handle_data_packet):
11762         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11763         Propagate error codes from alloc_buffer too.
11764
11765 2005-09-29  Wim Taymans  <wim@fluendo.com>
11766
11767         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11768         We use fixed caps.
11769
11770         * gst/playback/Makefile.am:
11771         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11772         (dump_element_stats), (main):
11773         Added example stream introspection code.
11774
11775 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
11776
11777         * gst/adder/gstadder.c: (gst_adder_collected):
11778           fix adder for float elements
11779
11780 2005-09-28  Wim Taymans  <wim@fluendo.com>
11781
11782         * gst-libs/gst/audio/gstbaseaudiosink.c:
11783         (gst_base_audio_sink_class_init),
11784         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
11785         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11786         (gst_base_audio_src_class_init),
11787         (gst_base_audio_src_provide_clock):
11788         get_clock -> provide_clock
11789
11790 2005-09-28  Andy Wingo  <wingo@pobox.com>
11791
11792         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
11793         and unlocking.
11794
11795         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
11796         unlocking.
11797
11798         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
11799         Actually add the pad template.
11800         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
11801
11802         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
11803         I'm at it...
11804
11805         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
11806         from fdsrc. Get caps in create() instead of start() so it can be
11807         interrupted. Interruption somewhat untested.
11808
11809         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
11810         Proper EOS handling.
11811
11812 2005-09-27  Andy Wingo  <wingo@pobox.com>
11813
11814         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
11815
11816         * gst/tcp/gsttcpserversrc.c: Cleaned up.
11817
11818         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
11819
11820         * gst/tcp/gsttcp.h: 
11821         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
11822         out of tcpclientsrc.c. Cancellable.
11823         (gst_tcp_socket_read): Made private, cancellable, with better
11824         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
11825         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
11826         whole buffer, and better diagnostics.
11827         (gst_tcp_gdp_read_caps): Same.
11828
11829         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
11830
11831 2005-09-26  Andy Wingo  <wingo@pobox.com>
11832
11833         * gst/sine/gstsinesrc.h:
11834         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
11835         change the 'sync' property to 'is-live' and implement it halfway,
11836         update for controller api change.
11837
11838         * gst/volume/gstvolume.c (volume_transform_ip): Update for
11839         controller api change.
11840
11841 2005-09-24  Wim Taymans  <wim@fluendo.com>
11842
11843         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
11844         * gst-libs/gst/audio/gstaudiosink.c:
11845         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
11846         (gst_audioringbuffer_stop):
11847         * gst-libs/gst/audio/gstbaseaudiosink.c:
11848         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
11849         (gst_base_audio_sink_change_state):
11850         * gst-libs/gst/audio/gstbaseaudiosink.h:
11851         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
11852         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
11853         (gst_ring_buffer_commit), (gst_ring_buffer_read):
11854         * gst-libs/gst/audio/gstringbuffer.h:
11855         Fix sync again. Moved sample alignment to basesink.
11856
11857 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11858
11859         * docs/plugins/Makefile.am:
11860         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11861         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11862         * gst/volume/gstvolume.c:
11863           add/fix docs
11864         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
11865         * gst-libs/gst/audio/audio.h:
11866           add conversion macros for frames <-> clocktime
11867
11868 2005-09-23  David Schleef  <ds@schleef.org>
11869
11870         * gst/audioresample/Makefile.am:
11871         * gst/audioresample/debug.h:
11872         * gst/audioresample/gstaudioresample.c:
11873         * gst/audioresample/resample.c: Convert to using gst debugging
11874
11875 2005-09-22  Wim Taymans  <wim@fluendo.com>
11876
11877         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11878         (gst_play_bin_send_event):
11879         Only seek on one sink, the first one that succeeds.
11880
11881 2005-09-22  Michael Smith <msmith@fluendo.com>
11882
11883         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11884         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11885         Don't flush encoder state unless we have an initialised encoder.
11886         Clear out encoder state on PAUSED_TO_READY.
11887
11888 2005-09-22  Wim Taymans  <wim@fluendo.com>
11889
11890         * gst-libs/gst/rtp/gstbasertppayload.c:
11891         (gst_basertppayload_class_init), (gst_basertppayload_init),
11892         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11893         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11894         (gst_basertppayload_is_filled), (gst_basertppayload_push),
11895         (gst_basertppayload_set_property),
11896         (gst_basertppayload_get_property),
11897         (gst_basertppayload_change_state):
11898         * gst-libs/gst/rtp/gstbasertppayload.h:
11899         Added max-ptime to control amount of data in the rtp packets.
11900
11901 2005-09-21  Andy Wingo  <wingo@pobox.com>
11902
11903         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
11904         thingies.
11905
11906         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
11907         can be called multiple times, dogs.
11908
11909 2005-09-21  Wim Taymans  <wim@fluendo.com>
11910
11911         * gst-libs/gst/rtp/gstbasertppayload.c:
11912         (gst_basertppayload_class_init), (gst_basertppayload_init),
11913         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11914         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11915         (gst_basertppayload_push), (gst_basertppayload_get_property),
11916         (gst_basertppayload_change_state):
11917         Allow 0 ssrc too.
11918
11919 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
11920
11921         * docs/libs/compiling.sgml:
11922           fixing typos
11923
11924 2005-09-20  Wim Taymans  <wim@fluendo.com>
11925
11926         * gst-libs/gst/rtp/gstbasertppayload.c:
11927         (gst_basertppayload_class_init), (gst_basertppayload_init),
11928         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11929         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11930         (gst_basertppayload_push), (gst_basertppayload_set_property),
11931         (gst_basertppayload_get_property),
11932         (gst_basertppayload_change_state):
11933         * gst-libs/gst/rtp/gstbasertppayload.h:
11934         Added property to configure sequence number offsets.
11935
11936 2005-09-20  Wim Taymans  <wim@fluendo.com>
11937
11938         * gst-libs/gst/rtp/gstbasertppayload.c:
11939         (gst_basertppayload_class_init), (gst_basertppayload_init),
11940         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11941         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11942         (gst_basertppayload_push), (gst_basertppayload_set_property),
11943         (gst_basertppayload_get_property),
11944         (gst_basertppayload_change_state):
11945         * gst-libs/gst/rtp/gstbasertppayload.h:
11946         Make timestamp offset configurable.
11947
11948 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
11949
11950         * check/pipelines/simple_launch_lines.c: (run_pipeline):
11951           fix wrong pop/unref
11952
11953 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
11954
11955         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11956
11957         * gst-libs/gst/interfaces/propertyprobe.c:
11958         (gst_property_probe_probe_property_name),
11959         (gst_property_probe_needs_probe_name),
11960         (gst_property_probe_get_values_name),
11961         (gst_property_probe_probe_and_get_values_name):
11962           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
11963           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
11964
11965 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
11966
11967         * check/Makefile.am:
11968           have some tests be disabled for valgrinding
11969         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
11970         (GST_START_TEST):
11971         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
11972           Fix A Leak.  Chain To Parent Finalize.
11973
11974 2005-09-19  Wim Taymans  <wim@fluendo.com>
11975
11976         * examples/seeking/seek.c: (make_wav_pipeline), (main):
11977         Fixed wav pipeline.
11978
11979 2005-09-19  Wim Taymans  <wim@fluendo.com>
11980
11981         * gst-libs/gst/rtp/gstbasertppayload.c:
11982         (gst_basertppayload_class_init), (gst_basertppayload_init),
11983         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
11984         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
11985         (gst_basertppayload_push), (gst_basertppayload_get_property),
11986         (gst_basertppayload_change_state):
11987         Posting ERROR and WARNING messages is good.
11988
11989 2005-09-19  Wim Taymans  <wim@fluendo.com>
11990
11991         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11992         (gst_base_rtp_depayload_add_to_queue),
11993         (gst_base_rtp_depayload_push),
11994         (gst_base_rtp_depayload_set_gst_timestamp),
11995         (gst_base_rtp_depayload_queue_release):
11996         This one was not supposed to go in.
11997
11998 2005-09-19  Wim Taymans  <wim@fluendo.com>
11999
12000         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12001         Fix for bus API.
12002
12003         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12004         (gst_base_rtp_depayload_chain),
12005         (gst_base_rtp_depayload_add_to_queue),
12006         (gst_base_rtp_depayload_push),
12007         (gst_base_rtp_depayload_set_gst_timestamp),
12008         (gst_base_rtp_depayload_queue_release):
12009         Some cleanups.
12010
12011         * gst-libs/gst/rtp/gstbasertppayload.c:
12012         (gst_basertppayload_class_init), (gst_basertppayload_init),
12013         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12014         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12015         (gst_basertppayload_get_property),
12016         (gst_basertppayload_change_state):
12017         Added debugging category.
12018
12019 2005-09-18  David Schleef  <ds@schleef.org>
12020
12021         * gst/playback/gstdecodebin.c: free plugin list correctly
12022         * gst/playback/gstplaybin.c: emit warning if autovideosink
12023           and autoaudiosink can't be found (instead of segfaulting)
12024
12025 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12026
12027         * check/elements/audioconvert.c: (GST_START_TEST):
12028           try out 24 bit conversion
12029
12030 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12031
12032         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12033         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12034         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12035         * ext/vorbis/vorbisenc.h:
12036           Fix EOS handling.  Still needs a fix in the ogg muxer to
12037           mark the last page as eos.
12038
12039 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12040
12041         * common/gtk-doc-plugins.mak:
12042         * docs/plugins/Makefile.am:
12043         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12044         * gst/ffmpegcolorspace/Makefile.am:
12045         * gst/ffmpegcolorspace/avcodec.h:
12046         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12047         * gst/tcp/gstmultifdsink.c:
12048           fix up ffmpegcolorspace docs; extract header
12049
12050 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12051
12052         * common/gtk-doc-plugins.mak:
12053         * docs/plugins/Makefile.am:
12054         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12055         * ext/theora/Makefile.am:
12056         * ext/theora/gsttheoraenc.h:
12057         * ext/theora/theoraenc.c:
12058         * ext/vorbis/vorbisenc.c:
12059           pick up signals and args for vorbis; add some docs for vorbis
12060
12061 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12062
12063         * common/gstdoc-scangobj:
12064         * common/gtk-doc-plugins.mak:
12065         * docs/libs/Makefile.am:
12066         * docs/plugins/gst-plugins-base-plugins.args:
12067         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12068         * docs/plugins/gst-plugins-base-plugins.interfaces:
12069         * docs/plugins/gst-plugins-base-plugins.prerequisites:
12070         * docs/plugins/gst-plugins-base-plugins.signals:
12071           only scanobj stuff from our source module.  Not sure yet
12072           if that's correct, given the hierarchy stuff :)
12073
12074 2005-09-15  Wim Taymans  <wim@fluendo.com>
12075
12076         * gst/audioconvert/gstaudioconvert.c:
12077         And enable 24 bits mode as well..
12078
12079 2005-09-15  Wim Taymans  <wim@fluendo.com>
12080
12081         * gst-libs/gst/rtp/Makefile.am:
12082         * gst-libs/gst/rtp/gstbasertppayload.c:
12083         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12084         (gst_basertppayload_class_init), (gst_basertppayload_init),
12085         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12086         (gst_basertppayload_chain), (gst_basertppayload_set_options),
12087         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12088         (gst_basertppayload_set_property),
12089         (gst_basertppayload_get_property),
12090         (gst_basertppayload_change_state):
12091         * gst-libs/gst/rtp/gstbasertppayload.h:
12092         Added rtp payloader base class.
12093
12094 2005-09-15  Andy Wingo  <wingo@pobox.com>
12095
12096         * configure.ac (plugindir): Remove the EOL matcher from the
12097         regexp, as it causes me problems. Libtool? Make? Who knows?
12098
12099 2005-09-14  David Schleef  <ds@schleef.org>
12100
12101         * check/generic/states.c: 
12102         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12103         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12104           Fixes for changes in registry API.
12105
12106         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
12107           to GST_PLUGIN_LDFLAGS.
12108         * ext/libvisual/visual.c: Make the library shut up.
12109         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12110         * gst-libs/gst/audio/gstaudiofilter.c: same
12111
12112 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12113
12114         * docs/plugins/Makefile.am:
12115         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12116         * docs/plugins/inspect/plugin-libvisual.xml:
12117         * docs/plugins/tmpl/element-tcpserversink.sgml:
12118         * ext/theora/theoraenc.c:
12119           add libvisual plugin and theoraenc element to docs
12120
12121 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12122
12123         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12124         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12125         * ext/theora/theoraenc.c:
12126           add theoraenc
12127
12128 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
12129
12130         * gst/audioconvert/Makefile.am:
12131           Audioconvert derives from GstBaseTransform and should
12132           link to the library with our base elements to avoid
12133           unresolved symbols. Makes things work with MinGW (#316160)
12134
12135         * gst/playback/test4.c: (main):
12136           Fix MinGW build problem and use g_usleep() instead of 
12137           sleep() (#316162)
12138
12139 2005-09-12  Wim Taymans  <wim@fluendo.com>
12140
12141         * gst/audioconvert/audioconvert.c: (float),
12142         (audio_convert_prepare_context), (audio_convert_convert):
12143         * gst/audioconvert/audioconvert.h:
12144         Cleanups, speedups, simplifications, added back support
12145         for 24 bits.
12146
12147 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12148
12149         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12150         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12151         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12152         * docs/plugins/tmpl/element-tcpserversink.sgml:
12153         * gst/ffmpegcolorspace/gstffmpeg.c:
12154         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12155         * gst/videotestsrc/gstvideotestsrc.c:
12156         * gst/volume/gstvolume.c:
12157           add more elements to the docs
12158
12159 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
12160
12161         * check/Makefile.am:
12162         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12163         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12164           Add extra tests for basetransform based components. 
12165           Comment out the test_element_negotiation test until we decide
12166           if it's testing correct behaviour.
12167         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12168         (gst_visual_chain), (gst_visual_change_state):
12169           Slightly more correct but still bogus timestamping.
12170           Fix state change function.
12171         * gst/audioconvert/gstaudioconvert.c:
12172         (gst_audio_convert_class_init):
12173         * gst/audioresample/gstaudioresample.c:
12174         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12175         (gst_ffmpegcsp_class_init):
12176         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12177         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12178         (gst_videoscale_prepare_image):
12179         * gst/volume/gstvolume.c: (gst_volume_class_init),
12180         (volume_transform_ip):
12181           Basetransform updates. Enable passthrough modes.
12182         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12183         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12184         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12185           Negotiation fix that allows the window to return to the original
12186           size and renegotiate passthrough upstream. Extra debug output.
12187
12188 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12189
12190         * gst/sine/gstsinesrc.c:
12191         * gst/volume/gstvolume.c:
12192           fix up header include
12193
12194 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
12195
12196         * gst-libs/gst/audio/gstbaseaudiosink.c:
12197         (gst_base_audio_sink_render):
12198         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12199         * gst/volume/gstvolume.c: (gst_volume_class_init),
12200         (volume_transform):
12201           fixing lost sync, some more debugging
12202
12203 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
12204
12205         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12206         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12207         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12208         (gst_xvimagesink_check_xshm_calls):
12209           Fix compilation when XShm is not available.
12210
12211 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12212
12213         * ext/libvisual/visual.c: (gst_visual_dispose),
12214         (gst_visual_getcaps), (gst_visual_src_setcaps),
12215         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12216         (gst_visual_change_state):
12217           Finish fixing up libvisual plugin so that it runs. 
12218
12219 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12220
12221         * ext/vorbis/vorbisenc.c:
12222         * gst-libs/gst/tag/gstvorbistag.c:
12223           gsttaginterface.h -> gsttagsetter.h
12224
12225 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12226
12227         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12228           added another test that failes for me (test is not active by default)
12229
12230 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12231
12232         * configure.ac:
12233           v4l2 is no longer in gst-plugins-base
12234
12235 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12236
12237         * configure.ac:
12238           In the output at the end, don't show the first plugin on the same
12239           line as "Core plug-ins, always built:".
12240           Indent the output as for other plugin categories
12241         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12242           #define that can be used to not use peer buffer_alloc functions for
12243           test purposes.
12244         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12245         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12246         (gst_ximagesink_show_frame):
12247         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12248         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12249         (gst_xvimagesink_show_frame):
12250           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12251           fails gracefully instead of XError aborting or deadlocking.
12252
12253 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12254
12255         * ext/libvisual/Makefile.am:
12256           link against gst-base-libs
12257
12258 2005-09-06  David Schleef  <ds@schleef.org>
12259
12260         * configure.ac: Enable libvisual plugin.
12261         * ext/libvisual/Makefile.am:
12262         * ext/libvisual/visual.c: Fixes to make it compile.
12263
12264 === release 0.9.2 ===
12265
12266 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12267
12268         * NEWS:
12269         * RELEASE:
12270         * configure.ac:
12271         * docs/random/ChangeLog-0.8:
12272           releasing 0.9.2, "Spoon"
12273
12274 2005-09-05  Michael Smith <msmith@fluendo.com>
12275
12276         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12277           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12278           that in the vorbisenc element.
12279
12280 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12281
12282         * common/gtk-doc-plugins.mak:
12283         * docs/plugins/Makefile.am:
12284           fix distcheck
12285         * gst/audioresample/resample.c:
12286           fix wrong docstring
12287
12288 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12289
12290         * common/gst-xmlinspect.py:
12291         * common/gtk-doc-plugins.mak:
12292           only inspect plugins for this given package
12293           require gst-python 0.9
12294
12295 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12296
12297         * Makefile.am:
12298         * autogen.sh:
12299         * common/gst-xmlinspect.py:
12300         * configure.ac:
12301         * docs/Makefile.am:
12302         * docs/plugins/inspect/plugin-alsa.xml:
12303         * docs/plugins/inspect/plugin-audioresample.xml:
12304         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12305         * docs/plugins/inspect/plugin-ogg.xml:
12306         * docs/plugins/tmpl/element-gnomevfssink.sgml:
12307         * docs/plugins/tmpl/element-multifdsink.sgml:
12308         * docs/plugins/tmpl/element-tcpserversink.sgml:
12309         * docs/plugins/tmpl/element-vorbisenc.sgml:
12310         * gst-plugins-base.spec.in:
12311           various doc-related updates
12312
12313 2005-08-31  Wim Taymans  <wim@fluendo.com>
12314
12315         * gst-libs/gst/audio/gstbaseaudiosink.c:
12316         (gst_base_audio_sink_render):
12317         Resync if the buffer timestamps drift more than a 10th 
12318         of a second.
12319
12320 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
12321
12322         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12323         (gst_v4lsrc_get_property):
12324           The 'timestamp-offset' property is registered as an int64, so
12325           let's use g_value_{set|get}_int64() in our setter and getter
12326           functions (makes it work and fixes warnings with gst-inspect).
12327
12328 2005-08-30  Wim Taymans  <wim@fluendo.com>
12329
12330         * check/elements/audioconvert.c: (setup_audioconvert):
12331         * check/elements/audioresample.c: (setup_audioresample):
12332         * check/elements/volume.c: (setup_volume):
12333         Fix checks.
12334
12335 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12336
12337         * common/gtk-doc-plugins.mak:
12338         * common/plugins.xsl:
12339         * docs/plugins/Makefile.am:
12340           make module a param
12341
12342 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12343
12344         * examples/seeking/seek.c: (make_mp3_pipeline),
12345         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12346         (play_cb), (pause_cb), (stop_cb):
12347           update the example
12348
12349 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12350
12351         * gst/volume/gstvolume.c: (gst_volume_class_init),
12352         (volume_transform):
12353           do not update controlled params, if buffer has no timestamp
12354
12355 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12356
12357         * configure.ac:
12358         * gst/sine/Makefile.am:
12359         * gst/volume/Makefile.am:
12360           controllerized elements also need to link against controller-libs ;)
12361
12362 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12363
12364         * docs/libs/tmpl/gstcolorbalance.sgml:
12365         * docs/libs/tmpl/gstgconf.sgml:
12366         * docs/libs/tmpl/gstmixer.sgml:
12367         * docs/libs/tmpl/gstringbuffer.sgml:
12368         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12369         (gst_sinesrc_create):
12370         * gst/volume/gstvolume.c: (gst_volume_class_init),
12371         (volume_transform):
12372           controllerized two audio plugins
12373
12374 2005-08-29  Andy Wingo  <wingo@pobox.com>
12375
12376         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
12377         (vorbis_handle_data_packet): Fix some int overflow errors.
12378
12379         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12380         -1.
12381         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12382         valid.
12383         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12384         if it's valid. Fixed streaming-mode playback.
12385
12386         * check/elements/volume.c (cleanup_volume): Fix for running
12387         CK_FORK=no.
12388
12389         * check/elements/audioconvert.c: Convert from native endian, not
12390         little endian.
12391
12392 2005-08-29  Michael Smith <msmith@fluendo.com>
12393
12394         * ext/ogg/Makefile.am:
12395         * ext/ogg/gstogg.c: (plugin_init):
12396         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12397         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12398         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12399         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12400         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12401         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12402         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12403         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12404         Add an ogg parser element.
12405
12406 2005-08-28  Andy Wingo  <wingo@pobox.com>
12407
12408         * Updates for two-arg init from GST_BOILERPLATE_FULL.
12409
12410 2005-08-26  Wim Taymans  <wim@fluendo.com>
12411
12412         * gst/audioconvert/audioconvert.c: (if), (float),
12413         (audio_convert_get_func_index), (check_default),
12414         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12415         (audio_convert_clean_context), (audio_convert_get_sizes),
12416         (audio_convert_convert):
12417         Cleanups.
12418
12419 2005-08-26  Wim Taymans  <wim@fluendo.com>
12420
12421         * gst/audioconvert/audioconvert.c: (if), (float),
12422         (audio_convert_get_func_index), (check_default),
12423         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12424         (audio_convert_clean_context), (audio_convert_get_sizes),
12425         (audio_convert_convert):
12426         More elegant and working temp buffer selection algo.
12427
12428 2005-08-26  Wim Taymans  <wim@fluendo.com>
12429
12430         * gst/audioconvert/audioconvert.c: (if), (float),
12431         (audio_convert_get_func_index), (check_default),
12432         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12433         (audio_convert_clean_context), (audio_convert_get_sizes),
12434         (get_temp_buffer), (audio_convert_convert):
12435         Use realloc else we lose our original data.
12436
12437 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
12438
12439         * gst/audioresample/gstaudioresample.c:
12440           use base class' newsegment to properly timestamp
12441
12442 2005-08-26  Wim Taymans  <wim@fluendo.com>
12443
12444         * gst/audioconvert/audioconvert.c: (if), (float),
12445         (audio_convert_get_func_index), (check_default),
12446         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12447         (audio_convert_clean_context), (audio_convert_get_sizes),
12448         (get_temp_buffer), (audio_convert_convert):
12449         * gst/audioconvert/gstaudioconvert.c:
12450         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
12451         (gst_audio_convert_transform_caps),
12452         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
12453         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
12454         Oops, allocate enough space to perform the channel mix.
12455
12456 2005-08-26  Wim Taymans  <wim@fluendo.com>
12457
12458         * gst/audioconvert/Makefile.am:
12459         * gst/audioconvert/audioconvert.c: (if), (float),
12460         (audio_convert_get_func_index), (check_default),
12461         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12462         (audio_convert_clean_context), (audio_convert_get_sizes),
12463         (get_temp_buffer), (audio_convert_convert):
12464         * gst/audioconvert/audioconvert.h:
12465         * gst/audioconvert/gstaudioconvert.c:
12466         (gst_audio_convert_class_init), (gst_audio_convert_init),
12467         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
12468         (gst_audio_convert_get_unit_size),
12469         (gst_audio_convert_transform_caps),
12470         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
12471         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
12472         * gst/audioconvert/gstaudioconvert.h:
12473         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12474         (gst_channel_mix_fill_identical),
12475         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
12476         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
12477         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
12478         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
12479         (gst_channel_mix_mix):
12480         * gst/audioconvert/gstchannelmix.h:
12481         Cleanups, librarify a bit, optimize, better negotiation and more.
12482
12483 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
12484
12485         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
12486         Another from MikeS:
12487         During typefinding, don't support negative offsets
12488         (offsets from the end of the stream) in our typefind->peek() function
12489         - nothing embedded in ogg ever needs them. However, we need to recognise
12490         those requests and reject them, otherwise we return invalid pointers.
12491
12492 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
12493
12494         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
12495         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
12496         (vorbisdec_finalize), (vorbis_handle_type_packet):
12497           Big shout-out to MikeS for fixing this giant memory leak.
12498           Huzzah!
12499
12500 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12501
12502         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
12503         (audio_convert_get_unit_size):
12504           plug some leaks
12505
12506 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12507
12508         * check/Makefile.am:
12509         * check/elements/audioconvert.c: (setup_audioconvert),
12510         (cleanup_audioconvert), (get_int_caps), (verify_convert),
12511         (GST_START_TEST), (audioconvert_suite), (main):
12512           add a test for audioconvert
12513         * gst/audioresample/gstaudioresample.c:
12514         * gst/audioresample/gstaudioresample.h:
12515           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
12516           note that for buffers of 1/3 sec this means DURATION(c) is 
12517           one nanosecond more than for a and b
12518
12519 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12520
12521         * check/Makefile.am:
12522         * check/elements/audioresample.c: (setup_audioresample),
12523         (cleanup_audioresample), (fail_unless_perfect_stream),
12524         (test_perfect_stream_instance), (GST_START_TEST),
12525           add a check for audioresample
12526         (audioresample_suite), (main):
12527         * check/elements/volume.c: (GST_START_TEST):
12528           remove unused method
12529         * gst/audioresample/gstaudioresample.c:
12530           set correct buffer parameters since we're changing them
12531         * gst/audioresample/resample_ref.c: (resample_scale_ref):
12532           add some debug
12533
12534 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12535
12536         * gst/audioresample/debug.c:
12537         * gst/audioresample/gstaudioresample.c:
12538           add room for extra overlap samples when asked to transform size
12539           protect against possible mem corruption and check for discrepancies
12540           between written size and outbuffer's size so we can warn for
12541           potential problems
12542         * gst/audioresample/resample.c: (resample_init),
12543         (resample_get_output_size_for_input), (resample_get_output_size),
12544         (resample_set_n_channels), (resample_set_format):
12545           set debug level based on RESAMPLE_DEBUG env var
12546           make sure that get_output_size* returns a whole number of
12547           sample_size
12548           set sample_size each time either channel or format is set
12549         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
12550         * gst/audioresample/resample_functable.c:
12551         (resample_scale_functable):
12552         * gst/audioresample/resample_ref.c: (resample_scale_ref):
12553           remove r->sample_size, it's done in resample.c now
12554           add some debugging to the ref implementation
12555           make sure we only give back bytes that are wholes of the sample
12556           size
12557
12558 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
12559         * gst/playback/gstplaybasebin.c: (fill_buffer):
12560         Revert unpopular change for GST_MESSAGE_SRC to GObject.
12561
12562 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
12563
12564         * gst/volume/gstvolume.c:
12565           made set_caps function static
12566
12567 2005-08-24  Wim Taymans  <wim@fluendo.com>
12568
12569         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12570         (gst_vorbisenc_change_state):
12571         Stop leaking taglists.
12572
12573 2005-08-24  Wim Taymans  <wim@fluendo.com>
12574
12575         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
12576         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
12577         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
12578         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
12579         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
12580         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
12581         Parse seeking events better.
12582         Unref static caps.
12583         Generate correct newsegment events, fixes seeking in live oggs.
12584
12585         * ext/theora/theoradec.c: (theora_dec_src_query),
12586         (theora_dec_src_event), (theora_dec_src_getcaps),
12587         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
12588         Use newsegment values to report correct play time.
12589
12590         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12591         (vorbis_dec_src_event), (vorbis_dec_sink_event):
12592         * ext/vorbis/vorbisdec.h:
12593         Parse and use newsegment values to report correct play time.
12594
12595         * gst-libs/gst/audio/gstbaseaudiosink.c:
12596         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12597         Clear ringbuffer on flush.
12598         Use newsegment values to calculate playback time.
12599
12600         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12601         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
12602         Basesink does newsegment calculations for us now.
12603
12604 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12605
12606         * check/Makefile.am:
12607         * configure.ac:
12608           add core's plugins to the mix so that playbin works
12609         * check/generic/states.c: (GST_START_TEST):
12610           set a 0 timeout on pipelines, so they don't force the next
12611           state change
12612         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
12613         (gst_play_base_bin_change_state):
12614           remove the crappy error handling and do GST error handling
12615
12616 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12617
12618         * check/Makefile.am:
12619         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
12620           add same test as to core, it bitches out on playbin atm.
12621
12622 2005-08-24  Wim Taymans  <wim@fluendo.com>
12623
12624         * configure.ac:
12625         Remove audioscale.
12626
12627 2005-08-24  Wim Taymans  <wim@fluendo.com>
12628
12629         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
12630         (gst_videoscale_prepare_size), (parse_caps),
12631         (gst_videoscale_set_caps), (gst_videoscale_get_size),
12632         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
12633         (gst_videoscale_transform):
12634         * gst/videoscale/gstvideoscale.h:
12635         Refactor, make use of BaseTranform really well.
12636
12637 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12638
12639         * configure.ac:
12640           compile audioresample
12641         * gst/audioresample/Makefile.am:
12642         * gst/audioresample/buffer.c:
12643         * gst/audioresample/functable.c:
12644         * gst/audioresample/gstaudioresample.c:
12645         * gst/audioresample/gstaudioresample.h:
12646         * gst/audioresample/resample.c:
12647         (resample_get_output_size_for_input):
12648         * gst/audioresample/resample.h:
12649         * gst/audioresample/resample_chunk.c:
12650         * gst/audioresample/resample_functable.c:
12651         * gst/audioresample/resample_ref.c:
12652           port to use basetransform; doesn't work in all cases yet
12653
12654 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12655
12656         * gst/audioconvert/gstaudioconvert.c:
12657         (gst_audio_convert_class_init), (gst_audio_convert_init),
12658         (audio_convert_get_unit_size), (audio_convert_transform_caps),
12659         (audio_convert_fixate_caps), (audio_convert_set_caps),
12660         (audio_convert_transform),
12661         (gst_audio_convert_buffer_to_default_format),
12662         (gst_audio_convert_buffer_from_default_format),
12663         (gst_audio_convert_channels):
12664         * gst/audioconvert/gstchannelmix.c:
12665         * gst/audioconvert/gstchannelmix.h:
12666           port to basetransform
12667         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12668         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
12669         (gst_ffmpegcsp_get_unit_size):
12670         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12671         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
12672           fix for basetransform changes
12673
12674 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
12675
12676         * check/Makefile.am:
12677           Add CHECK_CFLAGS and LDFLAGS
12678
12679         * gst/playback/gstplaybasebin.c: (fill_buffer):
12680           GST_MESSAGE_SRC became a GObject
12681
12682 2005-08-24  Wim Taymans  <wim@fluendo.com>
12683
12684         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
12685         (gst_ring_buffer_clear_all):
12686         * gst-libs/gst/audio/gstringbuffer.h:
12687         Added function to clear the ringbuffer.
12688
12689 2005-08-24  Andy Wingo  <wingo@pobox.com>
12690
12691         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
12692         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
12693         of _open and _close.
12694
12695         * sys/v4l/gstv4lxoverlay.h:
12696         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
12697         an Xv connection here, instead of all the time. Make Xv only be
12698         loaded if you axe for it. Kindof a workaround for buggy behaviour
12699         of Xv when using remote xservers (XvQueryExtension would block).
12700         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
12701         replace the _open and _close public API. Only start the xv
12702         connection if necessary.
12703         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
12704
12705 2005-08-23  David Schleef  <ds@schleef.org>
12706
12707         * gst/audioresample/Makefile.am: Leet audioresampling code
12708         * gst/audioresample/buffer.c:
12709         * gst/audioresample/buffer.h:
12710         * gst/audioresample/debug.c:
12711         * gst/audioresample/debug.h:
12712         * gst/audioresample/functable.c:
12713         * gst/audioresample/functable.h:
12714         * gst/audioresample/gstaudioresample.c:
12715         * gst/audioresample/gstaudioresample.h:
12716         * gst/audioresample/resample.c:
12717         * gst/audioresample/resample.h:
12718         * gst/audioresample/resample_chunk.c:
12719         * gst/audioresample/resample_functable.c:
12720         * gst/audioresample/resample_ref.c:
12721
12722 2005-08-23  Wim Taymans  <wim@fluendo.com>
12723
12724         * examples/seeking/seek.c: (make_vorbis_pipeline),
12725         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
12726         Small seek updates.
12727
12728 2005-08-23  Andy Wingo  <wingo@pobox.com>
12729
12730         * gst-libs/gst/audio/gstbaseaudiosrc.c
12731         (gst_base_audio_src_fixate): Only fixate endianness if it is
12732         present in the caps.
12733
12734 2005-08-22  Andy Wingo  <wingo@pobox.com>
12735
12736         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
12737         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
12738         device-name property.
12739
12740         * gst-libs/gst/audio/gstaudiosrc.h:
12741         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
12742         close_device in the ring buffer, like gstaudiosink.
12743
12744         * ext/alsa/gstalsamixer.h:
12745         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
12746         macro to implement the interface without much code. Cleanups. 
12747
12748         * ext/alsa/gstalsasrc.h:
12749         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
12750         READY.
12751
12752         * ext/alsa/Makefile.am: Add new files.
12753         * ext/alsa/gstalsamixerelement.c: 
12754         * ext/alsa/gstalsamixerelement.c: Split element code out from
12755         mixer code so that alsasrc can be a mixer too.
12756
12757 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
12758
12759         * check/elements/volume.c: (setup_volume), (cleanup_volume),
12760         (GST_START_TEST):
12761         * check/elements/vorbisdec.c: (setup_vorbisdec),
12762         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
12763         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12764         (vorbis_handle_identification_packet),
12765         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
12766         (vorbis_handle_header_packet), (vorbis_dec_push),
12767         (vorbis_dec_chain):
12768           use the setup/teardown methods to save code.  save code is good.
12769
12770 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12771
12772         * check/Makefile.am:
12773           add ext dir for plugins
12774           add vorbisdec test conditionally
12775         * check/elements/volume.c: (setup_volume), (cleanup_volume),
12776         (GST_START_TEST), (volume_suite):
12777           add a test with wrong caps
12778         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
12779         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
12780           add a vorbisdec test
12781         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
12782         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
12783           clean up debug output
12784         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12785           yay, fix a segfault/security issue in vorbisdec
12786           gst-launch fakesrc ! vorbisdec wasn't happy
12787         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
12788         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
12789         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
12790         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
12791         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
12792         (gst_vorbisenc_set_metadata), (get_constraints_string),
12793         (update_start_message), (gst_vorbisenc_setup),
12794         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
12795         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
12796         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
12797         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
12798         * ext/vorbis/vorbisenc.h:
12799           march in line
12800         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12801         (gst_ffmpegcsp_transform):
12802           have the kow come home
12803         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
12804           debug my func ptr
12805         * gst/volume/gstvolume.c: (volume_set_caps):
12806           add a debug
12807
12808 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12809
12810         * Makefile.am:
12811         * check/.cvsignore:
12812         * check/Makefile.am:
12813         * check/elements/.cvsignore:
12814         * check/elements/volume.c: (chain_func), (event_func),
12815         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
12816         (main):
12817         * configure.ac:
12818           add unit test structure for gst-plugins-base
12819           add a test for volume
12820         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
12821         (gst_volume_set_volume), (gst_volume_get_volume),
12822         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
12823         (volume_funcfind), (volume_process_float), (volume_process_int16),
12824         (volume_set_caps), (volume_transform), (volume_update_mute),
12825         (volume_update_volume), (volume_set_property),
12826         (volume_get_property):
12827           document a little; use basetransform vmethod _set_caps
12828
12829 2005-08-19  Andy Wingo  <wingo@pobox.com>
12830
12831         * ext/alsa/gstalsamixertrack.h:
12832         * ext/alsa/gstalsamixertrack.c:
12833         * ext/alsa/gstalsamixeroptions.h:
12834         * ext/alsa/gstalsamixeroptions.c:
12835         * ext/alsa/gstalsamixer.h:
12836         * ext/alsa/gstalsamixer.c: Port to 0.9.
12837
12838         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
12839         Remove gstalsa.c and alsaclock. No more cruft here.
12840         
12841 2005-08-18  Wim Taymans  <wim@fluendo.com>
12842
12843         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12844         (gst_base_rtp_depayload_chain),
12845         (gst_base_rtp_depayload_add_to_queue),
12846         (gst_base_rtp_depayload_push),
12847         (gst_base_rtp_depayload_queue_release):
12848         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12849         Fix for RTPBuffer changes.
12850
12851         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
12852         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
12853         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
12854         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
12855         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
12856         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
12857         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
12858         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
12859         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
12860         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
12861         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
12862         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
12863         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
12864         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
12865         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
12866         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
12867         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
12868         (gst_rtpbuffer_get_payload):
12869         * gst-libs/gst/rtp/gstrtpbuffer.h:
12870         Don't subclass GstBuffer but add methods and helper functions
12871         to construct and manipulate RTP packets in regular GstBuffers.
12872
12873 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
12874
12875         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
12876           moved statement below switch
12877         * gst/volume/gstvolume.c: (gst_volume_class_init):
12878           added debug ptr
12879
12880 2005-08-16  Wim Taymans  <wim@fluendo.com>
12881
12882         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12883         (gst_base_audio_src_change_state):
12884         Open and close device in READY<->NULL state change.
12885
12886 2005-08-16  Andy Wingo  <wingo@pobox.com>
12887
12888         * examples/seeking/Makefile.am: Don't compile non-compiling
12889         compiled objects with the compiler.
12890
12891         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
12892         elements.
12893
12894 2005-08-12  Philippe Khalaf <burger@speedy.org>
12895         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12896         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12897           Made a thread to release the queue.
12898           Removed timestamp conversion for now.
12899
12900 2005-08-10  Philippe Khalaf <burger@speedy.org>
12901         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12902         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12903           Added rtp timestamp -> gst timestamp conversion.
12904           Fixed several problems with queue.
12905
12906 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
12907
12908         * gst-libs/gst/audio/gstaudioclock.h:
12909         * gst-libs/gst/audio/gstaudiofilter.h:
12910         * gst-libs/gst/audio/gstaudiosink.h:
12911         * gst-libs/gst/audio/gstaudiosrc.h:
12912         * gst-libs/gst/audio/gstbaseaudiosink.h:
12913         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12914         * gst-libs/gst/audio/gstringbuffer.h:
12915         * gst-libs/gst/net/gstnetbuffer.h:
12916         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12917         * gst-libs/gst/rtp/gstrtpbuffer.h:
12918           Add padding (you will need to rebuild gst-plugins-base,
12919           gst-plugins and all applications afterwards!)
12920
12921 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
12922
12923         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
12924         (gst_riff_parse_chunk):
12925           Fix bug in debug message and add some more debug messages.
12926
12927 2005-08-08  Edward Hervey  <edward@fluendo.com>
12928
12929         * gst-libs/gst/riff/riff-media.c:
12930         backported updates since branch
12931
12932 2005-08-08  Andy Wingo  <wingo@pobox.com>
12933
12934         * gst-libs/gst/audio/gstbaseaudiosink.c
12935         (gst_base_audio_sink_change_state): Open the device in NULL->READY
12936         like good elements should. Close on READY->NULL too.
12937
12938         * gst-libs/gst/audio/gstaudiosink.c
12939         (gst_audioringbuffer_open_device,
12940         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
12941         (gst_audioringbuffer_release): Updates for new ring buffer API,
12942         hook into the new audio sink api.
12943
12944         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
12945         (GstAudioSinkClass.close): Just open and close the device -- no
12946         resource allocation or configuration.
12947         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
12948         vmethods, handle device setup and resource allocation.
12949
12950         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
12951         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
12952         base class API.
12953
12954         * gst-libs/gst/audio/gstringbuffer.h
12955         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
12956         New vmethods.
12957
12958         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
12959         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
12960         New API functions. The device should be opened before acquiring
12961         and closed after releasing.
12962
12963 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
12964
12965         * gst-libs/gst/interfaces/mixer.h:
12966           Reset padding to GST_PADDING.
12967
12968 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12969
12970         * gst/playback/gstplaybin.c: (remove_sinks):
12971           Remove visualization from parent explicitely; works around some
12972           apparent refcount issue that I haven't tracked down yet.
12973
12974 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12975
12976         * ext/alsa/gstalsasink.c: (set_hwparams):
12977           Assign debug category, add negotiation debug msgs.
12978
12979 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12980
12981         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
12982           Fix error code for file-not-found to NOT_FOUND.
12983
12984 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12985
12986         * common/gtk-doc-plugins.mak:
12987         * docs/plugins/Makefile.am:
12988         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12989         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12990           renamed to actual element names, so much nicer to look at
12991         * docs/plugins/tmpl/gstmultifdsink.sgml:
12992           remove
12993         * docs/plugins/tmpl/multifdsink.sgml:
12994         * docs/plugins/tmpl/tcpserversink.sgml:
12995           add
12996         * ext/alsa/gstalsa.c:
12997         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
12998         * ext/ogg/gstoggmux.c:
12999         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13000         * gst/playback/gstdecodebin.c:
13001         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13002         * gst/tcp/gsttcpserversink.c:
13003           various fixes and documentation additions
13004
13005 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13006
13007         * common/Makefile.am:
13008         * common/gstdoc-scangobj:
13009         * common/gtk-doc-plugins.mak:
13010         * common/gtk-doc.mak:
13011           add a custom scangobj that uses the registry
13012           add a custom gtk-doc-plugins.mak that uses it
13013           some doc build fixes
13014         * configure.ac:
13015         * docs/Makefile.am:
13016         * docs/plugins/Makefile.am:
13017         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13018         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13019         * docs/plugins/gst-plugins-base-plugins.types:
13020         * docs/plugins/tmpl/gstmultifdsink.sgml:
13021           add docs for one element, multifdsink
13022         * gst/adder/gstadder.h:
13023         * gst/volume/gstvolume.h:
13024           don't privatize enum
13025         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13026         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13027         (gst_sync_method_get_type), (gst_client_status_get_type),
13028         (gst_multifdsink_class_init),
13029         (gst_multifdsink_client_queue_buffer),
13030         (gst_multifdsink_handle_client_write):
13031         * gst/tcp/gstmultifdsink.h:
13032         * gst/tcp/gsttcp.h:
13033         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13034         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13035         (gst_tcpclientsink_render):
13036         * gst/tcp/gsttcpclientsink.h:
13037         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13038         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13039         (gst_tcpclientsrc_start):
13040         * gst/tcp/gsttcpclientsrc.h:
13041         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13042         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13043         * gst/tcp/gsttcpserversrc.h:
13044         * gst/typefind/gsttypefindfunctions.c:
13045           remove superfluous Type stuff
13046
13047 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13048
13049         * gst/playback/gstplaybin.c: (gen_video_element):
13050           Enable videoscale.
13051
13052 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13053
13054         * gst-libs/gst/gconf/gconf.c:
13055         * gst-libs/gst/gconf/gconf.h:
13056           Fix some Andy Problem [tm].
13057
13058 2005-08-04  Andy Wingo  <wingo@pobox.com>
13059
13060         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13061         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13062         (gst_ffmpegcsp_get_size): Adapt to API changes.
13063
13064         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13065         Implement an in-place do-nothing transform.
13066
13067 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13068
13069         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13070         (gst_ximagesink_renegotiate_size):
13071           Do not set new window sizes yet if we prepare a new buffer size
13072           for upstream renegotiation (software scaling) at some point in the
13073           future, because this new size waqs not actually accepted yet. Once
13074           accepted, renegotiation later on will set the new sizes just fine.
13075           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13076           embedding testcase.
13077
13078 2005-08-03  Andy Wingo  <wingo@pobox.com>
13079
13080         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13081         (gst_ximagesink_buffer_alloc): 
13082         Protect the height, width, and desired_caps with the pool_lock.
13083         Fixes videotestsrc ! queue ! ximagesink.
13084
13085 2005-08-02  Edward Hervey  <edward@fluendo.com>
13086
13087         * gst/volume/gstvolume.c:
13088         include left from controller cleanup
13089
13090 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
13091         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13092           Stop collectpads before calling the parent state
13093           change function on PAUSED->READY.
13094
13095 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
13096         * configure.ac:
13097           When testing for X libs, use the X CFlags 
13098         * gst/adder/gstadder.c: (gst_adder_change_state):
13099           Stop the collectpads before calling parent state change function
13100           on PAUSED->READY, otherwise we deadlock deactivating pads.
13101
13102 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
13103
13104         * configure.ac:
13105         * docs/libs/tmpl/gstcolorbalance.sgml:
13106         * docs/libs/tmpl/gstmixer.sgml:
13107         * examples/Makefile.am:
13108         * gst/sine/Makefile.am:
13109         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13110         (gst_sinesrc_set_property), (plugin_init):
13111         * gst/sine/gstsinesrc.h:
13112         * gst/volume/Makefile.am:
13113         * gst/volume/gstvolume.c: (gst_volume_set_volume),
13114         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13115         (volume_process_float), (volume_process_int16),
13116         (volume_set_property), (plugin_init):
13117         * gst/volume/gstvolume.h:
13118           deactivate and remove dparams (libgstcontrol)
13119
13120 2005-07-29  Wim Taymans  <wim@fluendo.com>
13121
13122         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13123         Convert me to BaseTransform!! help..
13124
13125 2005-07-29  Andy Wingo  <wingo@pobox.com>
13126
13127         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13128         sinks.
13129
13130         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13131         support of both endiannesses.
13132
13133 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13134
13135         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13136           Fix confusing debug message (s/event/query/)
13137
13138 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13139
13140         * gst/videotestsrc/videotestsrc.h:
13141           Use "_stdint.h" instead of <stdint.h>
13142
13143 2005-07-27  Wim Taymans  <wim@fluendo.com>
13144
13145         * ext/vorbis/Makefile.am:
13146         Revert wrong commit.
13147
13148 2005-07-27  Wim Taymans  <wim@fluendo.com>
13149
13150         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13151         More compilation fixen.
13152
13153 2005-07-27  Wim Taymans  <wim@fluendo.com>
13154
13155         * gst-libs/gst/audio/gstbaseaudiosink.c:
13156         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13157         (gst_base_audio_sink_create_ringbuffer),
13158         (gst_base_audio_sink_change_state):
13159         Fix compilation.
13160
13161 2005-07-27  Wim Taymans  <wim@fluendo.com>
13162
13163         * examples/seeking/seek.c: (setup_dynamic_link),
13164         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13165         (query_positions_elems), (query_positions_pads), (do_seek):
13166         Update seek example.
13167
13168         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13169         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13170         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13171         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13172         (gst_ogg_demux_handle_event),
13173         (gst_ogg_demux_deactivate_current_chain),
13174         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13175         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13176         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13177         (gst_ogg_demux_loop):
13178         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13179         * ext/theora/theoradec.c: (theora_dec_src_event),
13180         (theora_dec_src_getcaps), (theora_dec_sink_event),
13181         (theora_dec_push), (theora_dec_chain):
13182         * ext/vorbis/Makefile.am:
13183         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13184         (vorbis_dec_sink_event), (vorbis_dec_push),
13185         (vorbis_handle_data_packet):
13186         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13187         (gst_vorbisenc_chain):
13188         * gst/playback/gststreaminfo.c: (cb_probe):
13189         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13190         * gst/videorate/gstvideorate.c: (gst_videorate_event):
13191         * gst/videoscale/gstvideoscale.c:
13192         (gst_videoscale_handle_src_event):
13193         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13194         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13195         (gst_ximagesink_navigation_send_event):
13196         * sys/xvimage/xvimagesink.c:
13197         (gst_xvimagesink_navigation_send_event):
13198         Various event updates and cleanups
13199
13200 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13201
13202         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13203           Fix segfault for I420/YV12.
13204
13205 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13206
13207         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13208           Report bitrate.
13209
13210 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13211
13212         * gst/playback/gstplaybin.c: (gen_video_element),
13213         (gen_audio_element):
13214           Switch to auto*sink elements as default sinks; add volume element
13215           so that volume control in totem works.
13216
13217 2005-07-21  Wim Taymans  <wim@fluendo.com>
13218
13219         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13220         * gst/playback/gstplaybin.c: (setup_sinks),
13221         (gst_play_bin_change_state):
13222         Refcount fix and more comments.
13223
13224 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13225
13226         * sys/ximage/Makefile.am:
13227         * sys/ximage/ximage.c: (plugin_init):
13228         * sys/ximage/ximagesink.c:
13229         Prepare for adding ximagesrc, rename of plugin to ximage etc.
13230         
13231
13232 2005-07-21  Wim Taymans  <wim@fluendo.com>
13233
13234         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13235         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13236         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13237         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13238         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13239         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13240         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13241         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13242         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13243         Generate correct disconts for live chained oggs.
13244
13245         * gst-libs/gst/audio/gstbaseaudiosink.c:
13246         (gst_base_audio_sink_render),
13247         (gst_base_audio_sink_create_ringbuffer),
13248         (gst_base_audio_sink_change_state):
13249         Handle discont math correctly.
13250
13251         * gst/playback/gstplaybin.c: (add_sink):
13252         Some small debug cleanup.
13253
13254 2005-07-21  Wim Taymans  <wim@fluendo.com>
13255
13256         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13257         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13258         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13259         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13260         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13261         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13262         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13263         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13264         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13265         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13266         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13267         (gst_ogg_demux_change_state), (gst_ogg_print):
13268         Reorganize code to send the right disconts when in streaming
13269         mode.
13270
13271 2005-07-20  Andy Wingo  <wingo@pobox.com>
13272
13273         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13274         fix (?), fixes a seggie mcfalterson (#310894).
13275
13276 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13277
13278         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13279         (gst_ogg_mux_set_header_on_caps):
13280         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13281         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13282         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13283         * gst-libs/gst/audio/multichannel.c:
13284         (gst_audio_set_channel_positions),
13285         (gst_audio_set_structure_channel_positions_list):
13286         * gst/playback/gstdecodebin.c: (dynamic_create):
13287         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13288         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13289           Fixes for API changes in core.
13290
13291 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13292
13293         * gst/playback/gstplaybasebin.c: (fill_buffer):
13294           Use _new_custom() so we can set custom message types for buffering
13295           messages.
13296
13297 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13298
13299         * configure.ac:
13300         * gst-libs/gst/Makefile.am:
13301         * gst-libs/gst/gconf/.cvsignore:
13302         * gst-libs/gst/gconf/Makefile.am:
13303         * gst-libs/gst/gconf/test-gconf.c:
13304         * pkgconfig/Makefile.am:
13305         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13306         * pkgconfig/gstreamer-gconf.pc.in:
13307           Remove gconf stuff, use gconf elements instead from now on.
13308
13309 2005-07-20  Wim Taymans  <wim@fluendo.com>
13310
13311         * gst-libs/gst/audio/TODO:
13312         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13313         (gst_audio_clock_get_internal_time):
13314         * gst-libs/gst/audio/gstaudioclock.h:
13315         * gst-libs/gst/audio/gstbaseaudiosink.c:
13316         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13317         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13318         (gst_base_audio_sink_render),
13319         (gst_base_audio_sink_create_ringbuffer),
13320         (gst_base_audio_sink_change_state):
13321         Make sure the audio clock always returns an increasing value.
13322
13323 2005-07-19  Andy Wingo  <wingo@pobox.com>
13324
13325         * gst/videotestsrc/: Cleanups.
13326
13327 2005-07-19  Wim Taymans  <wim@fluendo.com>
13328
13329         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13330         Better debugging.
13331
13332 2005-07-19  Wim Taymans  <wim@fluendo.com>
13333
13334         * examples/seeking/seek.c: (make_dv_pipeline),
13335         (make_vorbis_theora_pipeline), (query_rates),
13336         (query_positions_elems), (query_positions_pads), (do_seek):
13337         Make correct DV pipeline.
13338
13339 2005-07-18  Andy Wingo  <wingo@pobox.com>
13340
13341         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13342         default. Also because it's the only thing that really works. (This
13343         is used in the GConf elements).
13344         Use AS_LIBTOOL_TAGS.
13345
13346 2005-07-18  Wim Taymans  <wim@fluendo.com>
13347
13348         * gst/playback/gstdecodebin.c: (remove_element_chain):
13349         * gst/playback/gstplaybin.c: (add_sink):
13350         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13351         (gst_stream_info_set_mute):
13352         * gst/playback/gststreamselector.c:
13353         (gst_stream_selector_get_linked_pad),
13354         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13355         More leak and compile fixes.
13356
13357 2005-07-18  Wim Taymans  <wim@fluendo.com>
13358
13359         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13360         (query_rates), (query_positions_elems), (query_positions_pads),
13361         (do_seek), (seek_cb), (stop_seek):
13362         Updated seek example. 
13363
13364         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13365         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13366         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13367         * gst/playback/gstplaybin.c: (add_sink):
13368         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13369         (gst_stream_info_set_mute):
13370         Some refcount leak fixes.
13371
13372 2005-07-16  Wim Taymans  <wim@fluendo.com>
13373
13374         * gst-libs/gst/audio/gstbaseaudiosink.c:
13375         (gst_base_audio_sink_render):
13376         Align samples even if we have roundoff errors in the 
13377         timestamp conversion.
13378
13379 2005-07-16  Wim Taymans  <wim@fluendo.com>
13380
13381         * docs/libs/tmpl/gstringbuffer.sgml:
13382         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13383         (query_rates), (query_positions_elems), (query_positions_pads),
13384         (update_scale), (do_seek):
13385         Updated seek example.
13386
13387         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13388         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13389         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13390         (gst_ogg_demux_loop):
13391         Push out correct discont values.
13392
13393         * ext/theora/theoradec.c: (theora_dec_src_convert),
13394         (theora_dec_sink_convert), (theora_dec_src_getcaps),
13395         (theora_dec_sink_event), (theora_handle_type_packet),
13396         (theora_handle_header_packet), (theora_dec_push),
13397         (theora_handle_data_packet), (theora_dec_chain),
13398         (theora_dec_change_state):
13399         Better timestamping.
13400
13401         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13402         (vorbis_dec_sink_event), (vorbis_dec_push),
13403         (vorbis_handle_data_packet), (vorbis_dec_chain):
13404         * ext/vorbis/vorbisdec.h:
13405         Better timestamping.
13406
13407         * gst-libs/gst/audio/gstbaseaudiosink.c:
13408         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13409         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13410         Handle syncing on timestamps instead of sample offsets. Make
13411         use of DISCONT values as described in design docs.
13412
13413         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13414         (gst_base_audio_src_get_time):
13415         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
13416         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
13417         (gst_ring_buffer_read):
13418         * gst-libs/gst/audio/gstringbuffer.h:
13419         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
13420         (gst_ximagesink_show_frame):
13421         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13422         Correcly convert buffer timestamp to stream time.
13423
13424 2005-07-16  Wim Taymans  <wim@fluendo.com>
13425
13426         * gst/audioconvert/gstaudioconvert.c:
13427         (gst_audio_convert_get_buffer):
13428         Timestamp buffers correctly.
13429
13430         * gst/playback/gstplaybin.c: (gen_video_element):
13431         Make internal fakesink silent.
13432
13433 2005-07-15  Wim Taymans  <wim@fluendo.com>
13434
13435         * gst/ffmpegcolorspace/Makefile.am:
13436         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13437         (gst_ffmpegcsp_caps_remove_format_info),
13438         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
13439         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
13440         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
13441         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
13442         Ported ffmpegcolorspace to basetransform.
13443
13444         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
13445         * gst/volume/gstvolume.c: (volume_transform):
13446         Ported to new API.
13447
13448 2005-07-14  Wim Taymans  <wim@fluendo.com>
13449
13450         * gst/videotestsrc/Makefile.am:
13451         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
13452         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
13453         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
13454         (gst_videotestsrc_init), (gst_videotestsrc_event),
13455         (gst_videotestsrc_create), (gst_videotestsrc_start),
13456         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
13457         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
13458         (gst_videotestsrc_get_property):
13459         * gst/videotestsrc/gstvideotestsrc.h:
13460         Make videotestsrc a pushsrc.
13461
13462 2005-07-14  Wim Taymans  <wim@fluendo.com>
13463
13464         * gst/tcp/gstfdset.c: (gst_fdset_free):
13465         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
13466         (gst_multifdsink_add), (gst_multifdsink_remove),
13467         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
13468         (gst_multifdsink_remove_client_link),
13469         (gst_multifdsink_client_queue_data),
13470         (gst_multifdsink_client_queue_caps),
13471         (gst_multifdsink_client_queue_buffer),
13472         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
13473         (gst_multifdsink_stop):
13474         * gst/tcp/gstmultifdsink.h:
13475         0.8 backporting.
13476
13477         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
13478         Also draw image when not from a pool.
13479
13480 2005-07-14  Wim Taymans  <wim@fluendo.com>
13481
13482         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
13483         (mute_stream), (silence_stream):
13484         Small debug additions.
13485
13486 2005-07-14  Wim Taymans  <wim@fluendo.com>
13487
13488         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
13489         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13490         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
13491         Better error recovery, ignore unconnected pads and
13492         non-fatal errors.
13493
13494 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13495
13496         * docs/libs/tmpl/gstaudio.sgml:
13497         * docs/libs/tmpl/gstcolorbalance.sgml:
13498         * docs/libs/tmpl/gstgconf.sgml:
13499         * docs/libs/tmpl/gstmixer.sgml:
13500         * docs/libs/tmpl/gstringbuffer.sgml:
13501         * docs/libs/tmpl/gsttuner.sgml:
13502         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13503         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
13504         (gst_tcpclientsrc_class_init):
13505         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
13506         (gst_tcpserversrc_class_init):
13507         * sys/v4l/gstv4lelement.c:
13508           more autistic cleanliness in functions/names/defines
13509
13510 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13511
13512         * configure.ac:
13513           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
13514           added manually to each Makefile.am so we are sure it goes
13515           *last* and doesn't add -L flags before linking in libs of our
13516           own, like, say, internal .la libs, that then accidentally pick
13517           up the installed copy.
13518         * docs/libs/Makefile.am:
13519         * ext/alsa/Makefile.am:
13520         * ext/cdparanoia/Makefile.am:
13521         * ext/gnomevfs/Makefile.am:
13522         * ext/libvisual/Makefile.am:
13523         * ext/ogg/Makefile.am:
13524         * ext/theora/Makefile.am:
13525         * ext/vorbis/Makefile.am:
13526         * gst-libs/gst/video/Makefile.am:
13527         * gst/adder/Makefile.am:
13528         * gst/audioconvert/Makefile.am:
13529         * gst/audiorate/Makefile.am:
13530         * gst/audioscale/Makefile.am:
13531         * gst/ffmpegcolorspace/Makefile.am:
13532         * gst/playback/Makefile.am:
13533         * gst/sine/Makefile.am:
13534         * gst/subparse/Makefile.am:
13535         * gst/tags/Makefile.am:
13536         * gst/tcp/Makefile.am:
13537         * gst/typefind/Makefile.am:
13538         * gst/videorate/Makefile.am:
13539         * gst/videoscale/Makefile.am:
13540         * gst/videotestsrc/Makefile.am:
13541         * gst/volume/Makefile.am:
13542         * sys/v4l/Makefile.am:
13543         * sys/ximage/Makefile.am:
13544         * sys/xvimage/Makefile.am:
13545           adapt properly to this change. This should make sure that
13546           plugins and libs properly link to the as-yet-uninstalled
13547           copies of stuff like libgstinterfaces and libgstvideo
13548
13549 2005-07-13  Andy Wingo  <wingo@pobox.com>
13550
13551         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
13552         (gst_v4lsrc_fixate): Fixate on format as well.
13553
13554         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
13555         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
13556         buffer points to it.
13557         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
13558         rather just doing X calls ourselves. Also fixes a memleak.
13559
13560 2005-07-12  Andy Wingo  <wingo@pobox.com>
13561
13562         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
13563         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
13564         (gst_v4lsrc_create): Re-add the copy-mode property, default to
13565         TRUE to avoid deadlocks if an element holds on to our buffers.
13566
13567 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13568
13569         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
13570         (gst_sinesrc_init), (gst_sinesrc_create),
13571         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
13572         (gst_sinesrc_start):
13573         * gst/sine/gstsinesrc.h:
13574           removing num-buffers property before moving it
13575
13576 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13577
13578         * configure.ac:
13579           use overridable ERROR_CFLAGS
13580         * docs/libs/gst-plugins-base-libs.types:
13581         * docs/libs/tmpl/gstringbuffer.sgml:
13582         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
13583         (gst_alsasink_class_init):
13584         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
13585         (gst_alsasrc_class_init):
13586         * gst-libs/gst/audio/audio.h:
13587         * gst-libs/gst/audio/gstaudioclock.h:
13588         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
13589         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
13590         (gst_audio_filter_link), (gst_audio_filter_init),
13591         (gst_audio_filter_chain), (gst_audio_filter_set_property),
13592         (gst_audio_filter_get_property),
13593         (gst_audio_filter_class_add_pad_templates):
13594         * gst-libs/gst/audio/gstaudiofilter.h:
13595         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13596         (gst_audio_filter_template_get_type),
13597         (gst_audio_filter_template_base_init),
13598         (gst_audio_filter_template_class_init),
13599         (gst_audio_filter_template_init),
13600         (gst_audio_filter_template_set_property),
13601         (gst_audio_filter_template_get_property), (plugin_init),
13602         (gst_audio_filter_template_setup),
13603         (gst_audio_filter_template_filter),
13604         (gst_audio_filter_template_filter_inplace):
13605         * gst-libs/gst/audio/gstaudiosink.c:
13606         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
13607         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
13608         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
13609         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
13610         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
13611         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
13612         * gst-libs/gst/audio/gstaudiosink.h:
13613         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
13614         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
13615         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
13616         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
13617         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
13618         (gst_audio_src_class_init), (gst_audio_src_init),
13619         (gst_audio_src_create_ringbuffer):
13620         * gst-libs/gst/audio/gstaudiosrc.h:
13621         * gst-libs/gst/audio/gstbaseaudiosink.c:
13622         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
13623         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13624         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
13625         (gst_base_audio_sink_set_property),
13626         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
13627         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
13628         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
13629         (gst_base_audio_sink_create_ringbuffer),
13630         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
13631         * gst-libs/gst/audio/gstbaseaudiosink.h:
13632         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13633         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
13634         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
13635         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
13636         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
13637         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
13638         (gst_base_audio_src_event), (gst_base_audio_src_create),
13639         (gst_base_audio_src_create_ringbuffer),
13640         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
13641         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13642         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
13643         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
13644         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
13645         (gst_ring_buffer_debug_spec_caps),
13646         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
13647         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
13648         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
13649         (gst_ring_buffer_start), (gst_ring_buffer_pause),
13650         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
13651         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
13652         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
13653         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
13654         (gst_ring_buffer_clear):
13655         * gst-libs/gst/audio/gstringbuffer.h:
13656         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
13657         (gst_video_sink_class_init), (gst_video_sink_get_type):
13658         * gst-libs/gst/video/videosink.h:
13659         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
13660         (gst_multifdsink_class_init),
13661         (gst_multifdsink_handle_client_write),
13662         (gst_multifdsink_change_state):
13663         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13664         (gst_tcpclientsink_setcaps):
13665         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
13666         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
13667         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
13668         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
13669         (gst_ximagesink_send_pending_navigation),
13670         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
13671         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
13672         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
13673         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
13674         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
13675         (gst_xvimagesink_send_pending_navigation),
13676         (gst_xvimagesink_navigation_send_event),
13677         (gst_xvimagesink_set_xwindow_id),
13678         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
13679         (gst_xvimagesink_get_type):
13680         more macro splitting
13681
13682 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
13683
13684         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13685           plug a memleak, allows me to import 1479 albums in one go
13686           in jamboree
13687         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
13688         (vorbis_handle_type_packet), (vorbis_dec_chain),
13689         (vorbis_dec_change_state):
13690           fix some format strings
13691
13692 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
13693
13694         * docs/libs/tmpl/gstcolorbalance.sgml:
13695         * docs/libs/tmpl/gstmixer.sgml:
13696         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
13697         (gst_alsasink_set_property), (gst_alsasink_get_property):
13698         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
13699         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
13700           add device property
13701
13702 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
13703
13704         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
13705         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
13706         (audiocast_register_listener), (audiocast_thread_run),
13707         (gst_gnomevfssrc_send_additional_headers_callback),
13708         (gst_gnomevfssrc_received_headers_callback),
13709         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
13710         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
13711         (gst_gnomevfssrc_get_size):
13712           add/clean up debugging
13713         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
13714           cleanups
13715
13716 2005-07-07  Andy Wingo  <wingo@pobox.com>
13717
13718         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
13719         framerate. Need to get a handle on when exactly this function is
13720         called, tho.
13721
13722         * sys/v4l/v4lsrc_calls.h:
13723         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
13724         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
13725         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
13726
13727         * sys/v4l/v4l_calls.h: Cast to V4lElement.
13728         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
13729         v4lelements are sources.
13730
13731         * sys/v4l/gstv4lxoverlay.h:
13732         * sys/v4l/gstv4lxoverlay.c:
13733         * sys/v4l/gstv4ltuner.h:
13734         * sys/v4l/gstv4ltuner.c: Header loc fixen.
13735         
13736         * sys/v4l/gstv4lsrc.h:
13737         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
13738         PushSrc/BaseSrc. Removed most sync-related properties, videorate
13739         or something should handle that. Made a live source.
13740
13741         * sys/v4l/gstv4lelement.h:
13742         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
13743         signals. Some cleanups.
13744
13745         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
13746
13747         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
13748         stuff.
13749
13750         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
13751         stuff.
13752
13753         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
13754
13755 2005-07-07  Wim Taymans  <wim@fluendo.com>
13756
13757         * ext/theora/theoradec.c: (theora_get_query_types),
13758         (theora_dec_src_getcaps), (theora_dec_push):
13759         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
13760         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
13761         Remove deprecated/unused query types.
13762
13763 2005-07-06  Wim Taymans  <wim@fluendo.com>
13764
13765         * ext/alsa/Makefile.am:
13766         * ext/alsa/gstalsaplugin.c: (plugin_init):
13767         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
13768         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
13769         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
13770         (gst_alsasrc_class_init), (gst_alsasrc_init),
13771         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
13772         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
13773         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
13774         (gst_alsasrc_reset):
13775         * ext/alsa/gstalsasrc.h:
13776         * gst-libs/gst/audio/Makefile.am:
13777         * gst-libs/gst/audio/gstaudiosink.c:
13778         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
13779         (gst_audioringbuffer_start):
13780         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
13781         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
13782         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
13783         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
13784         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
13785         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
13786         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
13787         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
13788         * gst-libs/gst/audio/gstaudiosrc.h:
13789         * gst-libs/gst/audio/gstbaseaudiosink.c:
13790         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
13791         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
13792         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
13793         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13794         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
13795         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
13796         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
13797         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
13798         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
13799         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
13800         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
13801         (gst_baseaudiosrc_change_state):
13802         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13803         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13804         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
13805         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
13806         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
13807         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
13808         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
13809         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
13810         * gst-libs/gst/audio/gstringbuffer.h:
13811         Added audiosource base classes.
13812         Ported alsasrc, still very basic.
13813
13814 2005-07-06  Wim Taymans  <wim@fluendo.com>
13815
13816         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
13817         (theora_dec_push), (theora_handle_data_packet):
13818         Prepare for better timestamp fix later.
13819
13820         * gst/audioconvert/gstaudioconvert.c:
13821         List most accurate caps first
13822
13823         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
13824         Use proper pad task function.
13825
13826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
13827         (gst_xvimagesink_show_frame):
13828         Fix deadlock when alloc failed.
13829
13830 2005-07-05  Andy Wingo  <wingo@pobox.com>
13831
13832         * ext/gnomevfs/gstgnomevfssrc.c:
13833         * gst/sine/gstsinesrc.c:
13834         * gst/tcp/gsttcpserversrc.c:
13835         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
13836
13837         * sys/v4l/: Port from 0.8.
13838
13839         * Many files: Null if we got it....
13840
13841 2005-07-05  Andy Wingo  <wingo@pobox.com>
13842
13843         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
13844         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
13845         Signedness fixes.
13846
13847 2005-07-05  Wim Taymans  <wim@fluendo.com>
13848
13849         * configure.ac:
13850         * gst/tcp/Makefile.am:
13851         * gst/tcp/README:
13852         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
13853         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
13854         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
13855         (is_sync_frame), (gst_multifdsink_handle_client_write),
13856         (gst_multifdsink_render), (gst_multifdsink_start),
13857         (gst_multifdsink_stop), (gst_multifdsink_change_state):
13858         * gst/tcp/gstmultifdsink.h:
13859         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
13860         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
13861         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
13862         * gst/tcp/gsttcp.h:
13863         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13864         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13865         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
13866         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
13867         * gst/tcp/gsttcpclientsink.h:
13868         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
13869         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
13870         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
13871         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
13872         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
13873         * gst/tcp/gsttcpclientsrc.h:
13874         * gst/tcp/gsttcpplugin.c: (plugin_init):
13875         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
13876         * gst/tcp/gsttcpserversink.h:
13877         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
13878         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
13879         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
13880         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
13881         (gst_tcpserversrc_stop):
13882         * gst/tcp/gsttcpserversrc.h:
13883         * gst/tcp/gsttcpsink.c:
13884         * gst/tcp/gsttcpsink.h:
13885         * gst/tcp/gsttcpsrc.c:
13886         * gst/tcp/gsttcpsrc.h:
13887         Ported tcp plugins to 0.9. 
13888         
13889
13890 2005-07-05  Andy Wingo  <wingo@pobox.com>
13891
13892         * gst/playback/gstplaybasebin.c (fill_buffer):
13893         message_new_application fixen.
13894
13895         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
13896         Style fix.
13897
13898 2005-07-04  Wim Taymans  <wim@fluendo.com>
13899
13900         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
13901         Set caps on output buffer.
13902
13903 2005-07-04  Andy Wingo  <wingo@pobox.com>
13904
13905         * ext/gnomevfs/gstgnomevfssrc.c
13906         (gst_gnomevfssrc_received_headers_callback) 
13907         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
13908         hopefully.
13909
13910         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
13911         No refcount leakage.
13912
13913         * configure.ac: Enable -Werror.
13914         
13915         * ext/theora/theoradec.c (theora_dec_src_getcaps):
13916         * gst/audioconvert/bufferframesconvert.c
13917         (buffer_frames_convert_fixate):
13918         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
13919         (gst_audio_convert_fixate):
13920         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
13921         (gst_sinesrc_create): Fixate func changes.
13922         
13923         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
13924         (gst_ximagesink_buffer_alloc): Unused var.
13925
13926 2005-07-01  Andy Wingo  <wingo@pobox.com>
13927
13928         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
13929         getcaps to do explicit caps. Needs to be done in all decoders,
13930         possibly via a base class.
13931
13932         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
13933
13934         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
13935         caps on the sink pad, just rely on the pad template. Also, setting
13936         ANY caps on a pad is not valid because the caps are not fixed.
13937
13938         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
13939         caps on the buffer, and get the width from the desired_caps if
13940         they're set.
13941         (gst_ximagesink_renegotiate_size): Implement via setting the
13942         desired_caps on the ximagesink.
13943         (gst_ximagesink_setcaps): Only reset the width of the player if it
13944         wasn't already set. Not sure if this is right.
13945         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
13946
13947         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
13948         that the user wants. NULL unless the window has been resized.
13949
13950         * gst/volume/gstvolume.c (volume_transform): Adapt to
13951         basetransform refcount changes.
13952         
13953 2005-07-01  Andy Wingo  <wingo@pobox.com>
13954
13955         * gst/videoscale/gstvideoscale.c:
13956         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
13957         from BaseTransform, implements a transform_caps. Removed dead code
13958         including some PAR stuff that was never reached -- should probably
13959         be added back somehow.
13960
13961 2005-07-01  Andy Wingo  <wingo@pobox.com>
13962
13963         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
13964         come later.
13965
13966 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13967
13968         * configure.ac:
13969         * docs/libs/Makefile.am:
13970         * docs/libs/gst-plugins-libs.types:
13971         * ext/alsa/Makefile.am:
13972         * ext/alsa/gstalsamixer.h:
13973         * ext/alsa/gstalsamixeroptions.h:
13974         * ext/alsa/gstalsamixertrack.h:
13975         * gst-libs/gst/Makefile.am:
13976         * gst-libs/gst/colorbalance/.cvsignore:
13977         * gst-libs/gst/colorbalance/Makefile.am:
13978         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
13979         * gst-libs/gst/colorbalance/colorbalance.c:
13980         * gst-libs/gst/colorbalance/colorbalance.h:
13981         * gst-libs/gst/colorbalance/colorbalance.vcproj:
13982         * gst-libs/gst/colorbalance/colorbalancechannel.c:
13983         * gst-libs/gst/colorbalance/colorbalancechannel.h:
13984         * gst-libs/gst/interfaces/Makefile.am:
13985         * gst-libs/gst/interfaces/colorbalance.c:
13986         (gst_color_balance_class_init):
13987         * gst-libs/gst/interfaces/colorbalance.h:
13988         * gst-libs/gst/interfaces/interfaces-marshal.list:
13989         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
13990         * gst-libs/gst/interfaces/mixer.h:
13991         * gst-libs/gst/interfaces/mixeroptions.h:
13992         * gst-libs/gst/interfaces/navigation.c:
13993         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
13994         * gst-libs/gst/interfaces/tuner.h:
13995         * gst/volume/Makefile.am:
13996         * gst/volume/gstvolume.c:
13997         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
13998         * sys/ximage/Makefile.am:
13999         * sys/ximage/ximagesink.c:
14000         * sys/xvimage/Makefile.am:
14001         * sys/xvimage/xvimagesink.c:
14002           fold in all interfaces into an interfaces dir, preserving CVS
14003           history
14004
14005 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14006
14007         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14008           Fix build after riff changes.
14009
14010 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14011
14012         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14013         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14014         (gst_riff_create_video_template_caps),
14015         (gst_riff_create_audio_template_caps),
14016         (gst_riff_create_iavs_template_caps):
14017         * gst-libs/gst/riff/riff-media.h:
14018         * gst-libs/gst/riff/riff-read.h:
14019         * gst-libs/gst/riff/riff.c: (gst_riff_init):
14020           Add gst_riff_init() to initialize the debug category, instead
14021           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14022
14023 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14024
14025         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14026           Oops, I shouldn't apply hacks.
14027
14028 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14029
14030         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14031           Remove pad_loop function which doesn't work.
14032
14033 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14034
14035         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14036           Send EOS when deactivating.
14037         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14038         (check_queue), (queue_threshold_reached), (queue_out_of_data),
14039         (gen_preroll_element), (probe_triggered), (mute_stream),
14040         (silence_stream), (new_decoded_pad), (setup_substreams),
14041         (set_active_source):
14042         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14043         (remove_sinks), (add_sink):
14044         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14045           Change for new probe API.
14046
14047 2005-06-29  Wim Taymans  <wim@fluendo.com>
14048
14049         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14050         * gst-libs/gst/audio/gstbaseaudiosink.c:
14051         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14052         (gst_baseaudiosink_change_state):
14053         * gst-libs/gst/audio/gstbaseaudiosink.h:
14054         * gst-libs/gst/audio/gstringbuffer.c:
14055         (gst_ringbuffer_set_callback):
14056         Fix compilation error.
14057         Ringbuffer starts out as not running.
14058         Free our clock in dispose.
14059         When releasing the ringbuffer we need to renegotiate so
14060         clear the pad caps.
14061
14062 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14063
14064         * autogen.sh:
14065         * configure.ac:
14066         * docs/Makefile.am:
14067         * docs/libs/Makefile.am:
14068         * docs/libs/gst-plugins-libs-docs.sgml:
14069         * docs/libs/gst-plugins-libs-sections.txt:
14070         * docs/libs/gst-plugins-libs.types:
14071         * docs/libs/tmpl/gstaudio.sgml:
14072         * docs/libs/tmpl/gstcolorbalance.sgml:
14073         * docs/libs/tmpl/gstringbuffer.sgml:
14074         * gst-libs/gst/audio/gstringbuffer.c:
14075         (gst_ringbuffer_set_callback):
14076           reinstate gtk-doc docs for plugin libs
14077
14078 2005-06-28  Wim Taymans  <wim@fluendo.com>
14079
14080         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14081         (gst_ogg_demux_init):
14082         Removed pad loop function.
14083
14084 2005-06-28  Wim Taymans  <wim@fluendo.com>
14085
14086         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14087         If we're building a chain we are not in an error case
14088         when we queue a buffer.
14089
14090 2005-06-28  Andy Wingo  <wingo@pobox.com>
14091
14092         * *.c: Don't cast to GstObject before reffing/unreffing.
14093
14094 2005-06-27  Andy Wingo  <wingo@pobox.com>
14095
14096         * gst/videotestsrc/gstvideotestsrc.c
14097         (gst_videotestsrc_activate_push): Activation API changes.
14098
14099         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
14100         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14101         they have refs on the decodebin.
14102
14103         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14104         parent class.
14105         (gst_ogg_pad_typefind): Don't leak a pad ref.
14106         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14107         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
14108         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14109
14110 2005-06-27  Edward Hervey  <edward@fluendo.com>
14111
14112         * ext/theora/theoradec.c: (theora_dec_change_state): 
14113         re-arranged call to parent's state change in order to avoid locks (or
14114         worse).
14115
14116 2005-06-26  Edward Hervey  <edward@fluendo.com>
14117
14118         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14119         2nd argument of 'unknow-type' signal is a GstCaps and not a
14120         GstMiniObject
14121
14122 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
14123         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14124           Set the worker thread's running flag to TRUE before starting the
14125           thread.
14126         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14127           Catch a failure to add typefind to the bin.
14128
14129 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14130
14131         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14132         (gst_sinesrc_init), (gst_sinesrc_create),
14133         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14134         (gst_sinesrc_start):
14135         * gst/sine/gstsinesrc.h:
14136           add num-buffers and timestamp-offset properties
14137         * gst/videotestsrc/gstvideotestsrc.c:
14138         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14139         (gst_videotestsrc_get_property):
14140           add timestamp-offset property
14141
14142 2005-06-23  Christian Schaller  <uraeus@gnome.org>
14143
14144         * configure.ac: add videorate
14145         * gst-plugins-base.spec.in: add videorate
14146
14147 2005-06-23  Wim Taymans  <wim@fluendo.com>
14148
14149         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14150         (gst_videorate_getcaps), (gst_videorate_setcaps),
14151         (gst_videorate_event), (gst_videorate_chain):
14152         Fixed videorate, fixating an already fixated caps is not
14153         an error.
14154
14155 2005-06-23  Wim Taymans  <wim@fluendo.com>
14156
14157         * ext/ogg/README:
14158         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14159         Buffer on caps is not boxed anymore.
14160
14161 2005-06-22  Wim Taymans  <wim@fluendo.com>
14162
14163         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14164         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14165         Set buffers on caps as miniobjects and not as boxed.
14166
14167 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14168
14169         * configure.ac:
14170           back to HEAD
14171
14172 === release 0.9.1 ===
14173
14174 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14175
14176         * .cvsignore:
14177         * NEWS:
14178         * README:
14179         * RELEASE:
14180         * configure.ac:
14181         * po/af.po:
14182         * po/az.po:
14183         * po/cs.po:
14184         * po/en_GB.po:
14185         * po/hu.po:
14186         * po/it.po:
14187         * po/nb.po:
14188         * po/nl.po:
14189         * po/or.po:
14190         * po/sq.po:
14191         * po/sr.po:
14192         * po/sv.po:
14193         * po/uk.po:
14194         * po/vi.po:
14195           updates for release
14196
14197 2005-06-09  Andy Wingo  <wingo@pobox.com>
14198
14199         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14200         
14201 2005-06-09  Andy Wingo  <wingo@pobox.com>
14202
14203         * configure.ac:
14204         * gst-libs/gst/Makefile.am:
14205         * gst-libs/gst/net/Makefile.am:
14206         Add gstnet to build.
14207
14208 2005-06-09  Andy Wingo  <wingo@pobox.com>
14209
14210         * gst-libs/gst/gconf/gconf.c:
14211         * gst/playback/test.c:
14212         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14213         fixes.
14214
14215         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14216
14217         * ext/theora/theoraenc.c (theora_enc_chain): 
14218         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14219
14220         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14221         RealPad.
14222
14223 2005-06-02  Wim Taymans  <wim@fluendo.com>
14224
14225         * gst-libs/gst/net/Makefile.am:
14226         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14227         * pkgconfig/gstreamer-libs.pc.in:
14228         Added net stuff, version net lib.
14229
14230 2005-06-02  Wim Taymans  <wim@fluendo.com>
14231
14232         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14233         (query_rates), (query_positions_elems), (query_positions_pads),
14234         (do_seek):
14235         Updated seek example.
14236
14237 2005-06-02  Andy Wingo  <wingo@pobox.com>
14238
14239         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14240         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14241         list.
14242
14243         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14244         remove the typefind, the bin dispose will do it for us. When it's
14245         removed and unreffed, the signal handler will be disconnected,
14246         too.
14247         (unlinked): It's too difficult to disconnect from unlinked
14248         handlers, as they are on pads not elements. Just punt if the pads
14249         aren't grandkids of the bin.
14250
14251 2005-06-02  Wim Taymans  <wim@fluendo.com>
14252
14253         * ext/ogg/README:
14254         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14255         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14256         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14257         * ext/theora/theoradec.c: (theora_dec_src_query),
14258         (theora_handle_data_packet):
14259         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14260         (theora_enc_chain):
14261         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14262         (vorbis_handle_data_packet):
14263         * gst/audioconvert/bufferframesconvert.c:
14264         (buffer_frames_convert_chain):
14265         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14266         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14267         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14268         (gst_ffmpegcsp_chain):
14269         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14270         (gst_videorate_getcaps), (gst_videorate_setcaps),
14271         (gst_videorate_event), (gst_videorate_chain):
14272         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14273         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14274         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14275         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14276         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14277         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14278         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14279         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14280         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14281         Cleanups and buffer alloc.
14282
14283 2005-05-31  Wim Taymans  <wim@fluendo.com>
14284
14285         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14286         Don't try to call the delay method when the device is not
14287         opened.
14288
14289 2005-05-31  Wim Taymans  <wim@fluendo.com>
14290
14291         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14292         Get actual segment size and buffer size after opening
14293         the device.
14294
14295 2005-05-30  Wim Taymans  <wim@fluendo.com>
14296
14297         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14298         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14299         Also FLUSH upstream, makes the loop function exit faster.
14300         
14301         * ext/theora/theoradec.c: (theora_dec_src_query):
14302         Some more debug info in the query.
14303         
14304         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14305         (gst_ximagesink_setcaps):
14306         Release lock on par error, better error reporting.
14307
14308 2005-05-26  Wim Taymans  <wim@fluendo.com>
14309
14310         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14311         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14312         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14313         Clear chains in READY
14314         Queue packets until the chain is activated.
14315
14316 2005-05-25  Wim Taymans  <wim@fluendo.com>
14317
14318         * gst-libs/gst/audio/gstaudiosink.c:
14319         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14320         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14321         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14322         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14323         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14324         (gst_audiosink_create_ringbuffer):
14325         * gst-libs/gst/audio/gstbaseaudiosink.c:
14326         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14327         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14328         (gst_baseaudiosink_set_property), (build_linear_format),
14329         (debug_spec_caps), (debug_spec_buffer),
14330         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14331         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14332         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14333         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14334         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14335         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14336         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14337         (gst_ringbuffer_play), (gst_ringbuffer_pause),
14338         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14339         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14340         (wait_segment), (gst_ringbuffer_commit),
14341         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14342         (gst_ringbuffer_clear):
14343         Various small cleanups.
14344
14345         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14346         (gst_audio_convert_change_state):
14347         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14348         No need to take the locks anymore.
14349
14350 2005-05-25  Wim Taymans  <wim@fluendo.com>
14351
14352         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14353         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14354         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14355         (type_found):
14356         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14357         (group_destroy), (group_commit), (queue_overrun),
14358         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14359         (mute_stream), (new_decoded_pad), (setup_substreams),
14360         (setup_source), (mute_group_type), (set_active_source),
14361         (gst_play_base_bin_change_state):
14362         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14363         (gen_video_element), (gen_text_element), (gen_audio_element),
14364         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14365         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14366         (gst_stream_info_dispose), (gst_stream_info_set_mute):
14367         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14368         Some playbin cleanups mostly refcounting sloppyness.
14369
14370 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14371
14372         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14373           Work with streaming input.
14374
14375 2005-05-25  Wim Taymans  <wim@fluendo.com>
14376
14377         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14378         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14379         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14380         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14381         No need to take the STREAM lock anymore.
14382
14383 2005-05-25  Wim Taymans  <wim@fluendo.com>
14384
14385         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14386         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14387         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14388         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14389         (gst_ogg_demux_sink_activate):
14390         * ext/theora/theoradec.c: (theora_dec_src_event),
14391         (theora_handle_comment_packet), (theora_dec_chain),
14392         (theora_dec_change_state):
14393         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14394         (vorbis_handle_data_packet), (vorbis_dec_chain),
14395         (vorbis_dec_change_state):
14396         Remove STREAM locks as they are taken in core now.
14397         Never set bogus granulepos on vorbis/theora.
14398         Fix leaks in theoradec tag parsing.
14399
14400 2005-05-25  Wim Taymans  <wim@fluendo.com>
14401
14402         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14403         Fix memleaks, GST_BUFFER_DATA() is not freed.
14404
14405 2005-05-25  Wim Taymans  <wim@fluendo.com>
14406
14407         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14408         Open non-blocking, set to blocking mode afterwards to avoid
14409         lockups when audio device is busy.
14410
14411 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14412
14413         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
14414           This can't be good.
14415
14416 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14417
14418         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
14419         (gst_audio_convert_chain), (gst_audio_convert_link_src),
14420         (gst_audio_convert_setcaps):
14421           Implement instant setup switching.
14422
14423 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14424
14425         * gst/playback/gstplaybasebin.c: (probe_triggered):
14426           Fix missing unlock.
14427         * gst/playback/gstplaybin.c: (add_sink):
14428           First add, then link (otherwise pad link fails).
14429
14430 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14431
14432         * examples/Makefile.am:
14433         fix buildbot (make distcheck)
14434
14435 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14436
14437         * gst/playback/gstplaybin.c: (gen_vis_element):
14438           Remove some wrong code. Doesn't work yet.
14439
14440 2005-05-19  Wim Taymans  <wim@fluendo.com>
14441
14442         * gst-libs/gst/net/Makefile.am:
14443         * gst-libs/gst/net/README:
14444         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
14445         (gst_netbuffer_class_init), (gst_netbuffer_init),
14446         (gst_netbuffer_finalize), (gst_netbuffer_copy),
14447         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
14448         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
14449         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
14450         * gst-libs/gst/net/gstnetbuffer.h:
14451         Added buffer subclass to store extra to/from addresses for
14452         network sources/sinks.
14453
14454 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14455
14456         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
14457           Don't lock an unassigned variable.
14458
14459 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14460
14461         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
14462           Increase buffer for video, decrease buffer for other media types.
14463         * gst/playback/gstplaybin.c: (gen_video_element),
14464         (gen_audio_element):
14465           Change names for debugging purposes.
14466
14467 2005-05-18  Wim Taymans  <wim@fluendo.com>
14468
14469         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14470         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14471         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14472         (gst_ffmpegcsp_chain):
14473         Enable buffer alloc passthrough if the source and dest
14474         formats are the same.
14475
14476 2005-05-17  Wim Taymans  <wim@fluendo.com>
14477
14478         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14479         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
14480         (gst_ogg_demux_chain_unlocked):
14481         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14482         (gst_audio_convert_caps_remove_format_info),
14483         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14484         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
14485         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14486         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14487         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
14488         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
14489         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
14490         (gst_ffmpegcsp_get_property):
14491         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14492         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14493         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14494         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
14495         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
14496         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14497         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
14498         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
14499         Leak fixes in oggdemux.
14500         Some cleanups in audioconvert.
14501         Make passthrough work along with buffer_alloc etc.
14502         Make buffer_alloc and buffer recycling actually work in
14503         xvimagesink.
14504
14505 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
14506
14507         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
14508           make the compiler happy
14509
14510 2005-05-17  Wim Taymans  <wim@fluendo.com>
14511
14512         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
14513         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
14514         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
14515         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
14516         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14517         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
14518         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
14519         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
14520         (gst_xvimagesink_set_xwindow_id):
14521         * sys/xvimage/xvimagesink.h:
14522         Port xvimagesink to new MiniObject.
14523
14524 2005-05-17  Wim Taymans  <wim@fluendo.com>
14525
14526         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
14527         (gst_audiofilter_chain):
14528         * gst-libs/gst/audio/gstaudiosink.c:
14529         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14530         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14531         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14532         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14533         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14534         (gst_audiosink_create_ringbuffer):
14535         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14536         (gst_audio_convert_caps_remove_format_info),
14537         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14538         (gst_audio_convert_fixate), (gst_audio_convert_channels):
14539         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14540         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14541         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14542         Fix passthrough in ffmpegcolorspace.
14543         Fix memset in audiosink on wrong memory.
14544
14545 2005-05-16  David Schleef  <ds@schleef.org>
14546
14547         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
14548         to GstMiniObject.
14549
14550 2005-05-16  David Schleef  <ds@schleef.org>
14551
14552         Port from GstData to GstMiniObject.
14553         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14554         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
14555         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
14556         (gst_ogg_mux_collected):
14557         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14558         * ext/theora/theoradec.c: (theora_handle_comment_packet),
14559         (theora_handle_data_packet):
14560         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14561         (theora_set_header_on_caps), (theora_enc_chain):
14562         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14563         (vorbis_handle_comment_packet):
14564         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14565         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
14566         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
14567         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
14568         * gst/audioconvert/gstaudioconvert.c:
14569         (gst_audio_convert_get_buffer):
14570         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14571         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14572         (mute_stream), (silence_stream):
14573         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
14574         * gst/volume/gstvolume.c: (volume_transform):
14575         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14576         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
14577         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
14578         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
14579         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
14580         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
14581         (gst_ximagesink_buffer_alloc):
14582         * sys/ximage/ximagesink.h:
14583
14584 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14585
14586         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14587         (fill_buffer), (check_queue), (queue_threshold_reached),
14588         (queue_out_of_data):
14589         * gst/playback/gstplaybasebin.h:
14590           Post buffer-fullness on the bus.
14591
14592 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14593
14594         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14595         (try_to_link_1):
14596         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14597         (group_commit), (probe_triggered), (setup_source),
14598         (gst_play_base_bin_change_state):
14599         * gst/playback/gstplaybasebin.h:
14600         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14601         (gst_play_bin_init), (remove_sinks), (setup_sinks),
14602         (gst_play_bin_change_state):
14603           Move setup_output_pads into a virtual function, remove
14604           group-switch (no longer needed) and redirect (handled by bus
14605           now) signals.
14606
14607 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14608
14609         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
14610         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
14611         (get_active_group), (get_building_group), (group_destroy),
14612         (group_commit), (check_queue), (queue_overrun),
14613         (queue_threshold_reached), (queue_out_of_data),
14614         (gen_preroll_element), (remove_groups), (unknown_type),
14615         (add_element_stream), (no_more_pads), (probe_triggered),
14616         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
14617         (setup_substreams), (setup_source), (finish_source),
14618         (prepare_output), (muted_group_change_state),
14619         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
14620         (gst_play_base_bin_change_state):
14621         * gst/playback/gstplaybasebin.h:
14622         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14623         (gst_play_bin_init), (gst_play_bin_set_property),
14624         (gen_video_element), (gen_text_element), (gen_audio_element),
14625         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
14626         (gst_play_bin_change_state):
14627         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
14628         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
14629         (stream_info_change_state), (gst_stream_info_set_mute),
14630         (gst_stream_info_get_property):
14631         * gst/playback/gststreaminfo.h:
14632         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
14633         (gst_stream_selector_get_linked_pad),
14634         (gst_stream_selector_getcaps),
14635         (gst_stream_selector_get_linked_pads),
14636         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
14637         * gst/playback/gststreamselector.h:
14638           Rough port of playbin. Needs some more work, but is mostly done,
14639           and uses a few locks in important places, which should make stuff
14640           like chain-switches clean. Still uses GST_STATE() in a few places,
14641           which isn't all that good an idea, subtitles/elements disabled
14642           because no elements to test with and thus probably broken, query
14643           and event handling moved to GstBin, internal thread removed
14644           alltogether because the pipeline does that for us now. Can play
14645           Ogg/Vorbis files. Haven't tested anything else yet.
14646
14647 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14648
14649         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
14650           Do no-more-pads (needed for autoplugging).
14651
14652 2005-05-10  Andy Wingo  <wingo@pobox.com>
14653
14654         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
14655         message to the bus with the tags. Still not sent downstream tho.
14656
14657         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
14658         get_parent.
14659         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
14660         avoid refcounting hassles.
14661
14662 2005-05-09  Andy Wingo  <wingo@pobox.com>
14663
14664         * gst/volume/Makefile.am:
14665         * gst/volume/demo.c
14666         * gst/volume/gstvolume.h
14667         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
14668         basetransform. Probably need an audio filter base class.
14669
14670 2005-05-09  Wim Taymans  <wim@fluendo.com>
14671
14672         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
14673         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
14674         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
14675         (gst_vorbisenc_chain):
14676         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14677         (gst_audio_convert_caps_remove_format_info),
14678         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14679         (gst_audio_convert_fixate), (gst_audio_convert_channels):
14680         Make caps writable before writing to it.
14681         Fix negotiation in audioconvert some more.
14682
14683 2005-05-09  Wim Taymans  <wim@fluendo.com>
14684
14685         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14686         (gst_videorate_getcaps), (gst_videorate_setcaps),
14687         (gst_videorate_event), (gst_videorate_chain):
14688         Better negotiation.
14689
14690 2005-05-09  Wim Taymans  <wim@fluendo.com>
14691
14692         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
14693         (gst_videorate_getcaps), (gst_videorate_setcaps),
14694         (gst_videorate_blank_data), (gst_videorate_init),
14695         (gst_videorate_event), (gst_videorate_chain),
14696         (gst_videorate_change_state):
14697         Port videorate, do a better job at negotiation while we're at
14698         it.
14699
14700 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
14701
14702         * configure.ac:
14703           Disable libvisual
14704
14705         * examples/Makefile.am:
14706         * gst-libs/gst/audio/Makefile.am:
14707         * gst-libs/gst/riff/Makefile.am:
14708         * gst-libs/gst/tag/Makefile.am:
14709         * gst-libs/gst/video/Makefile.am:
14710           Fixups for missing variables.
14711
14712 2005-05-09  Wim Taymans  <wim@fluendo.com>
14713
14714         * examples/seeking/seek.c: (make_theora_pipeline),
14715         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
14716         (query_rates), (query_positions_elems), (query_positions_pads),
14717         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
14718         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
14719         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
14720         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
14721         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
14722         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
14723         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14724         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14725         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
14726         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
14727         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
14728         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
14729         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
14730         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
14731         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
14732         (theora_dec_src_convert), (theora_dec_sink_convert),
14733         (theora_dec_src_query), (theora_dec_sink_query),
14734         (theora_dec_src_event), (theora_dec_sink_event),
14735         (theora_handle_comment_packet), (theora_handle_type_packet),
14736         (theora_handle_header_packet), (theora_handle_data_packet),
14737         (theora_dec_chain):
14738         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14739         (vorbis_dec_convert), (vorbis_dec_src_query),
14740         (vorbis_dec_sink_query), (vorbis_dec_src_event),
14741         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
14742         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
14743         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
14744         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
14745         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
14746         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
14747         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14748         (gst_play_bin_query):
14749         * gst/playback/test3.c: (update_scale):
14750         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
14751         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
14752         * gst/subparse/gstsubparse.c: (gst_subparse_init):
14753         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
14754         (gst_videotestsrc_src_query):
14755         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
14756         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
14757         (paint_hline_YUV9):
14758         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14759         Port to new query API.
14760         Updated seek.
14761         Cleanups in x[v]imagesink
14762
14763 2005-05-09  Andy Wingo  <wingo@pobox.com>
14764
14765         * ext/alsa/gstalsasink.h:
14766         * ext/gnomevfs/gstgnomevfssrc.c:
14767         (gst_gnomevfssrc_get_icy_metadata):
14768         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
14769         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
14770         * ext/theora/theoradec.c (theora_dec_src_query)
14771         (theora_dec_src_event, theora_dec_sink_event)
14772         (theora_handle_comment_packet, theora_handle_data_packet):
14773         * ext/theora/theoraenc.c (theora_enc_chain):
14774         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
14775         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
14776         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
14777         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
14778         (qt_type_find):
14779         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
14780         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
14781         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
14782         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
14783         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
14784         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
14785         (paint_setup_xBGR8888, paint_setup_RGBx8888)
14786         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
14787         (paint_setup_RGB565, paint_setup_xRGB1555):
14788         * gst/videotestsrc/videotestsrc.h:
14789         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
14790         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
14791         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
14792         GCC4 fixes.
14793         
14794         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
14795         gst_pad_query_position. Fixes oggdemux.
14796
14797 2005-05-08  David Schleef  <ds@schleef.org>
14798
14799         * configure.ac: Require liboil.
14800         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
14801         a few more.
14802         * gst/videotestsrc/videotestsrc.c:
14803         * gst/videotestsrc/videotestsrc.h:
14804
14805 2005-05-06  Wim Taymans  <wim@fluendo.com>
14806
14807         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14808         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14809         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14810         Well, unreffing a buffer right before pushing it is asking
14811         for trouble..
14812
14813 2005-05-06  Christian Schaller  <uraeus@gnome.org>
14814
14815         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
14816
14817 2005-05-06  Wim Taymans  <wim@fluendo.com>
14818
14819         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14820         (gst_audio_convert_caps_remove_format_info),
14821         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14822         (gst_audio_convert_fixate), (gst_audio_convert_channels):
14823         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14824         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14825         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14826         * gst/sine/Makefile.am:
14827         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
14828         (gst_sinesrc_class_init), (gst_sinesrc_init),
14829         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
14830         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
14831         (gst_sinesrc_update_freq):
14832         * gst/sine/gstsinesrc.h:
14833         * gst/tcp/gstmultifdsink.c:
14834         * sys/xvimage/xvimagesink.c:
14835         Fixed negotiation wrt _peer_get_caps()
14836         Some cleanups.
14837
14838
14839 2005-05-06  Wim Taymans  <wim@fluendo.com>
14840
14841         * gst-libs/gst/audio/gstaudiosink.c:
14842         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14843         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14844         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14845         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14846         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14847         (gst_audiosink_create_ringbuffer):
14848         * gst-libs/gst/audio/gstbaseaudiosink.c:
14849         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14850         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14851         (gst_baseaudiosink_set_property), (build_linear_format),
14852         (debug_spec_caps), (debug_spec_buffer),
14853         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14854         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14855         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14856         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14857         * gst-libs/gst/audio/gstbaseaudiosink.h:
14858         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14859         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14860         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14861         (gst_ringbuffer_play), (gst_ringbuffer_pause),
14862         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14863         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14864         (wait_segment), (gst_ringbuffer_commit),
14865         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14866         (gst_ringbuffer_clear):
14867         * gst-libs/gst/audio/gstringbuffer.h:
14868         Make the base audiosink return an error when there is no
14869         audiobuffer negotiated.
14870
14871 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14872
14873         * ext/Makefile.am:
14874         Disable cdparanoia until someone ports it!
14875
14876 2005-05-06  Wim Taymans  <wim@fluendo.com>
14877
14878         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14879         (gst_ogg_demux_sink_activate):
14880         And revert after wingo's revert.. sigh..
14881
14882 2005-05-05  Andy Wingo  <wingo@pobox.com>
14883
14884         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
14885         GObject.
14886         * configure.ac: Return audiorate and subparse from the ghetto.
14887         Re-enable -Wall -Werror.
14888         * gst/subparse/gstsubparse.c:
14889         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
14890         or chain-based. Cleaned up a bit. Not tested.
14891         
14892 2005-05-05  Christian Schaller <christian@fluendo.com> 
14893
14894         * Makefile.am: remove stuff that is not building
14895         * configure.ac: remove stuff that is not building
14896         * examples/Makefile.am: remove stuff that is not building
14897         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
14898         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
14899         * sys/Makefile.am: remove stuff that is not building
14900         * testsuite/Makefile.am: remove stuff that is not building
14901
14902 2005-05-05  Andy Wingo  <wingo@pobox.com>
14903
14904         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
14905         * gst-libs/gst/tag/gstvorbistag.c:
14906         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
14907         * gst/adder/gstadder.h:
14908         * gst/audioconvert/gstchannelmix.c:
14909         (gst_audio_convert_fill_one_other):
14910         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
14911         (gst_audiorate_init), (gst_audiorate_chain):
14912         * gst/playback/gstplaybasebin.c: (setup_source):
14913         * gst/playback/test3.c: (update_scale):
14914         Some GCC4 fixes
14915         
14916         * po/af.po:
14917         * po/az.po:
14918         * po/cs.po:
14919         * po/en_GB.po:
14920         * po/hu.po:
14921         * po/it.po:
14922         * po/nb.po:
14923         * po/nl.po:
14924         * po/or.po:
14925         * po/sq.po:
14926         * po/sr.po:
14927         * po/sv.po:
14928         * po/uk.po:
14929         * po/vi.po: Foo
14930
14931 2005-05-05  Wim Taymans  <wim@fluendo.com>
14932
14933         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14934         (gst_audio_convert_caps_remove_format_info),
14935         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
14936         (gst_audio_convert_change_state), (gst_audio_convert_channels):
14937         * gst/videotestsrc/gstvideotestsrc.c:
14938         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
14939         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
14940         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
14941         (gst_videotestsrc_init), (gst_videotestsrc_loop):
14942         Don't ignore _push() return values.
14943         Make sure no processing is done when shutting down.
14944         Videotestsrc pad activation fix.
14945
14946 2005-05-05  Wim Taymans  <wim@fluendo.com>
14947
14948         * gst/adder/Makefile.am:
14949         * gst/adder/gstadder.c: (gst_adder_setcaps),
14950         (gst_adder_class_init), (gst_adder_init),
14951         (gst_adder_request_new_pad), (gst_adder_collected),
14952         (gst_adder_change_state):
14953         * gst/adder/gstadder.h:
14954         Ported adder as an example of a mixer element using
14955         collect pads. Needs more negotiation work.
14956
14957 2005-05-05  Wim Taymans  <wim@fluendo.com>
14958
14959         * ext/theora/theoradec.c: (_inc_granulepos),
14960         (theora_dec_src_event), (theora_dec_sink_event),
14961         (theora_handle_comment_packet), (theora_handle_type_packet),
14962         (theora_handle_header_packet), (theora_handle_data_packet),
14963         (theora_dec_chain):
14964         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
14965         (gst_theora_enc_init), (theora_enc_sink_setcaps),
14966         (theora_push_buffer), (theora_push_packet),
14967         (theora_enc_sink_event), (theora_enc_chain),
14968         (theora_enc_change_state), (theora_enc_set_property),
14969         (theora_enc_get_property):
14970         Added stream lock to decoder so that we can serialize
14971         the discont event.
14972         More theoraenc porting, recover from errors, do clean
14973         shutdown.
14974
14975 2005-05-05  Wim Taymans  <wim@fluendo.com>
14976
14977         * ext/ogg/Makefile.am:
14978         * ext/ogg/README:
14979         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14980         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
14981         (gst_ogg_print):
14982         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14983         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14984         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
14985         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
14986         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
14987         (gst_ogg_mux_change_state):
14988         Ported ogg muxer.
14989
14990 2005-05-05  Wim Taymans  <wim@fluendo.com>
14991
14992         * docs/design-audiosinks.txt:
14993         * gst-libs/gst/audio/TODO:
14994         * gst-libs/gst/audio/gstaudiosink.c:
14995         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14996         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14997         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14998         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14999         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15000         (gst_audiosink_create_ringbuffer):
15001         * gst-libs/gst/audio/gstbaseaudiosink.c:
15002         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15003         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15004         (gst_baseaudiosink_set_property), (build_linear_format),
15005         (debug_spec_caps), (debug_spec_buffer),
15006         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15007         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15008         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15009         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15010         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15011         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15012         (gst_ringbuffer_release), (gst_ringbuffer_play),
15013         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15014         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15015         (gst_ringbuffer_set_sample), (wait_segment),
15016         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15017         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15018         More work on the audiosink, mostly debugging and a race in
15019         shutdown.
15020
15021 2005-04-28  Wim Taymans  <wim@fluendo.com>
15022
15023         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15024         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15025         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15026         (vorbis_dec_src_query), (vorbis_dec_src_event),
15027         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15028         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15029         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15030         Don't crap out when seeking back to position 0.
15031
15032 2005-04-28  Wim Taymans  <wim@fluendo.com>
15033
15034         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15035         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15036         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15037         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15038         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15039         Make audio sink configurable, use alsasink as default.
15040
15041 2005-04-28  Wim Taymans  <wim@fluendo.com>
15042
15043         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15044         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15045         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15046         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15047         (vorbis_dec_change_state):
15048         * ext/vorbis/vorbisdec.h:
15049         Refactor, use STREAM_LOCK.
15050
15051 2005-04-28  Wim Taymans  <wim@fluendo.com>
15052
15053         * ext/theora/theoradec.c: (_inc_granulepos),
15054         (theora_dec_sink_event), (theora_handle_comment_packet),
15055         (theora_handle_type_packet), (theora_handle_header_packet),
15056         (theora_handle_data_packet), (theora_dec_chain),
15057         (theora_dec_change_state):
15058         Refactor a bit, use STREAM_LOCK.
15059
15060 2005-04-28  Wim Taymans  <wim@fluendo.com>
15061
15062         * ext/alsa/Makefile.am:
15063         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15064         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15065         (gst_alsa_link), (gst_alsa_close_audio):
15066         * ext/alsa/gstalsaplugin.c: (plugin_init):
15067         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15068         (gst_alsasink_dispose), (gst_alsasink_base_init),
15069         (gst_alsasink_class_init), (gst_alsasink_init),
15070         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15071         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15072         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15073         (gst_alsasink_reset):
15074         * ext/alsa/gstalsasink.h:
15075         Implement alsasink with simple open/write/close API. 
15076         Make alsa dir build by disabling compilation of code.
15077
15078 2005-04-28  Wim Taymans  <wim@fluendo.com>
15079
15080         * gst-libs/gst/audio/Makefile.am:
15081         * gst-libs/gst/audio/audio.h:
15082         * gst-libs/gst/audio/audioclock.c:
15083         * gst-libs/gst/audio/audioclock.h:
15084         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15085         (gst_audio_clock_class_init), (gst_audio_clock_init),
15086         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15087         * gst-libs/gst/audio/gstaudioclock.h:
15088         * gst-libs/gst/audio/gstaudiosink.c:
15089         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15090         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15091         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15092         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15093         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15094         (gst_audiosink_create_ringbuffer):
15095         * gst-libs/gst/audio/gstbaseaudiosink.c:
15096         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15097         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15098         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15099         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15100         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15101         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15102         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15103         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15104         * gst-libs/gst/audio/gstbaseaudiosink.h:
15105         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15106         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15107         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15108         (gst_ringbuffer_release), (gst_ringbuffer_play),
15109         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15110         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15111         (gst_ringbuffer_set_sample), (wait_segment),
15112         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15113         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15114         * gst-libs/gst/audio/gstringbuffer.h:
15115         Make ringbuffer faster and more simple by removing the locks
15116         in the playback thread.
15117         Add sample accurate playback based on buffer sample offsets.
15118         Make the baseaudiosink provide a clock.
15119         Parse caps in the base class.
15120         Correctly handle seeking, flushing and state changes.
15121
15122 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15123
15124         * configure.ac:
15125         * gst/audioconvert/Makefile.am:
15126         * gst/audioscale/Makefile.am:
15127           Fix part of the build.  Come on guys, autogen didn't even work :)
15128
15129 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15130
15131         * configure.ac:
15132         * gst-libs/gst/Makefile.am:
15133         * gst-libs/gst/media-info/.cvsignore:
15134         * gst-libs/gst/media-info/Makefile.am:
15135         * gst-libs/gst/media-info/README:
15136         * gst-libs/gst/media-info/media-info-priv.c:
15137         * gst-libs/gst/media-info/media-info-priv.h:
15138         * gst-libs/gst/media-info/media-info-test.c:
15139         * gst-libs/gst/media-info/media-info.c:
15140         * gst-libs/gst/media-info/media-info.h:
15141         * gst-libs/gst/media-info/media-info.vcproj:
15142         * pkgconfig/Makefile.am:
15143         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15144         * pkgconfig/gstreamer-media-info.pc.in:
15145           Remove media-info, which is also successed by playbin (see Totem
15146           implementation).
15147
15148 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15149
15150         * configure.ac:
15151         * examples/Makefile.am:
15152         * examples/gstplay/.cvsignore:
15153         * examples/gstplay/Makefile.am:
15154         * examples/gstplay/player.c:
15155         * gst-libs/gst/Makefile.am:
15156         * gst-libs/gst/play/.cvsignore:
15157         * gst-libs/gst/play/Makefile.am:
15158         * gst-libs/gst/play/play.c:
15159         * gst-libs/gst/play/play.h:
15160         * gst-libs/gst/play/play.vcproj:
15161         * pkgconfig/Makefile.am:
15162         * pkgconfig/gstreamer-play-uninstalled.pc.in:
15163         * pkgconfig/gstreamer-play.pc.in:
15164           Remove libgstplay, playbin is now the official successor.
15165
15166 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15167
15168         * configure.ac:
15169         * gst-libs/gst/Makefile.am:
15170         * gst-libs/gst/xwindowlistener/Makefile.am:
15171         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15172         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15173           Remove deprecated xwindowlistener (I've moved xwindowlistening
15174           in the v4l/v4l2 plugins over to serverside).
15175
15176 2005-04-25  David Schleef  <ds@schleef.org>
15177
15178         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15179         to examples/dynparams.  Examples do not belong interspersed with
15180         source code.
15181         * examples/dynparams/demo-dparams.c:
15182         * gst/sine/Makefile.am:
15183         * gst/sine/demo-dparams.c:
15184
15185 2005-04-25  David Schleef  <ds@schleef.org>
15186
15187         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15188         * gst-libs/gst/audio/Makefile.am:
15189         * gst-libs/gst/riff/Makefile.am:
15190         * gst-libs/gst/tag/Makefile.am:
15191         * gst-libs/gst/video/Makefile.am:
15192         * gst-libs/gst/xwindowlistener/Makefile.am:
15193
15194         Convert to 0.9 API, seems to work:
15195         * sys/ximage/Makefile.am:
15196         * sys/ximage/ximagesink.c:
15197
15198 2005-04-24  David Schleef  <ds@schleef.org>
15199
15200         Link plugins against libraries:
15201         * ext/alsa/Makefile.am:
15202         * gst/tcp/Makefile.am:
15203
15204         Remove asm code that should be in liboil
15205         * gst/videoscale/Makefile.am:
15206         * gst/videoscale/videoscale_x86_asm.s:
15207
15208         gettext wants these checked in:
15209         * po/af.po:
15210         * po/az.po:
15211         * po/cs.po:
15212         * po/en_GB.po:
15213         * po/hu.po:
15214         * po/it.po:
15215         * po/nb.po:
15216         * po/nl.po:
15217         * po/or.po:
15218         * po/sq.po:
15219         * po/sr.po:
15220         * po/sv.po:
15221         * po/uk.po:
15222         * po/vi.po:
15223
15224 2005-04-24  David Schleef  <ds@schleef.org>
15225
15226         Convert gst_main() to g_main_loop_run()
15227         * gst/playback/decodetest.c: (main):
15228         * gst/playback/test2.c: (main):
15229         * gst/playback/test3.c: (main):
15230         * gst/playback/test4.c: (main):
15231
15232         Link plugins against libraries:
15233         * ext/libvisual/Makefile.am:
15234         * sys/xvimage/Makefile.am:
15235
15236 2005-04-24  David Schleef  <ds@schleef.org>
15237
15238         * configure.ac: Remove idct and resample libs
15239         * gst-libs/gst/Makefile.am: same
15240
15241         Remove usage of gst_library_load():
15242         * ext/alsa/gstalsaplugin.c: (plugin_init):
15243         * ext/libvisual/visual.c: (plugin_init):
15244         * ext/ogg/gstogg.c: (plugin_init):
15245         * ext/theora/theora.c: (plugin_init):
15246         * ext/vorbis/vorbis.c: (plugin_init):
15247         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15248         * gst/audioscale/gstaudioscale.c:
15249         * gst/adder/gstadder.c: (plugin_init):
15250         * gst/audioconvert/plugin.c: (plugin_init):
15251         * sys/ximage/ximagesink.c: (plugin_init):
15252         * sys/xvimage/xvimagesink.c: (plugin_init):
15253         * gst/tcp/gsttcpplugin.c: (plugin_init):
15254
15255         Link plugins against libraries:
15256         * ext/ogg/Makefile.am:
15257         * ext/theora/Makefile.am:
15258         * ext/vorbis/Makefile.am:
15259         * gst/audioconvert/Makefile.am:
15260
15261         Create proper libraries:
15262         * gst-libs/gst/riff/Makefile.am:
15263         * gst-libs/gst/audio/Makefile.am:
15264         * gst-libs/gst/video/Makefile.am:
15265
15266         Move resample library to audioscale plugin directory:
15267         * gst-libs/gst/resample/Makefile.am:
15268         * gst-libs/gst/resample/README:
15269         * gst-libs/gst/resample/dtof.c:
15270         * gst-libs/gst/resample/dtos.c:
15271         * gst-libs/gst/resample/functable.c:
15272         * gst-libs/gst/resample/private.h:
15273         * gst-libs/gst/resample/resample.c:
15274         * gst-libs/gst/resample/resample.h:
15275         * gst-libs/gst/resample/resample.vcproj:
15276         * gst-libs/gst/resample/test.c:
15277         * gst/audioscale/Makefile.am:
15278         * gst/audioscale/README:
15279         * gst/audioscale/dtof.c:
15280         * gst/audioscale/dtos.c:
15281         * gst/audioscale/functable.c:
15282         * gst/audioscale/private.h:
15283         * gst/audioscale/resample.c:
15284         * gst/audioscale/resample.h:
15285         * gst/audioscale/test.c:
15286
15287         Move tagedit library to gst-libs:
15288         * gst-libs/gst/tag/Makefile.am:
15289         * gst-libs/gst/tag/gstid3tag.c:
15290         * gst-libs/gst/tag/gsttagediting.c:
15291         * gst-libs/gst/tag/gsttageditingprivate.h:
15292         * gst-libs/gst/tag/gstvorbistag.c:
15293         * gst/tags/Makefile.am:
15294         * gst/tags/gstid3tag.c:
15295         * gst/tags/gstvorbistag.c:
15296
15297         Fix for core changes:
15298         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15299         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15300         (gst_sinesrc_getrange):
15301
15302 2005-04-23  David Schleef  <ds@schleef.org>
15303
15304         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
15305         in gst-plugins in a long time, and properly belongs in liboil.
15306         * gst-libs/gst/idct/Makefile.am:
15307         * gst-libs/gst/idct/README:
15308         * gst-libs/gst/idct/dct.h:
15309         * gst-libs/gst/idct/doieee:
15310         * gst-libs/gst/idct/fastintidct.c:
15311         * gst-libs/gst/idct/floatidct.c:
15312         * gst-libs/gst/idct/idct.c:
15313         * gst-libs/gst/idct/idct.h:
15314         * gst-libs/gst/idct/idtc.vcproj:
15315         * gst-libs/gst/idct/ieeetest.c:
15316         * gst-libs/gst/idct/intidct.c:
15317
15318 2005-04-20  Wim Taymans  <wim@fluendo.com>
15319
15320         * docs/design-audiosinks.txt:
15321         * gst-libs/gst/audio/Makefile.am:
15322         * gst-libs/gst/audio/TODO:
15323         * gst-libs/gst/audio/gstaudiosink.c:
15324         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15325         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15326         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15327         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15328         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15329         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15330         (gst_audiosink_class_init), (gst_audiosink_init),
15331         (gst_audiosink_create_ringbuffer):
15332         * gst-libs/gst/audio/gstaudiosink.h:
15333         * gst-libs/gst/audio/gstbaseaudiosink.c:
15334         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15335         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15336         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15337         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15338         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15339         (gst_baseaudiosink_create_ringbuffer),
15340         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15341         * gst-libs/gst/audio/gstbaseaudiosink.h:
15342         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15343         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15344         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15345         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15346         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15347         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15348         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15349         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15350         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15351         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15352         * gst-libs/gst/audio/gstringbuffer.h:
15353         An attempt at a set of audio base classes together with some
15354         design docs.
15355
15356 2005-04-20  Wim Taymans  <wim@fluendo.com>
15357
15358         * gst/audioconvert/Makefile.am:
15359         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15360         (gst_audio_convert_caps_remove_format_info),
15361         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15362         (gst_audio_convert_channels):
15363         Link against audio libs.
15364         Fix audio convert plugin.
15365
15366 2005-04-20  Wim Taymans  <wim@fluendo.com>
15367
15368         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15369         (gst_ogg_demux_sink_activate):
15370         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15371         (theora_set_header_on_caps), (theora_enc_sink_event),
15372         (theora_enc_chain):
15373         Fix theora encoder.
15374
15375 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15376
15377         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15378         * gst/playback/gstdecodebin.c: (find_compatibles):
15379           Work with staticpadtemplates in elementfactories.
15380
15381 2005-04-12  Wim Taymans  <wim@fluendo.com>
15382
15383         * gst/playback/README:
15384         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15385         (compare_ranks), (print_feature), (gst_decode_bin_init),
15386         (dynamic_create), (dynamic_free), (find_compatibles),
15387         (mimetype_is_raw), (close_pad_link), (got_redirect),
15388         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15389         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15390         (gst_decode_bin_change_state):
15391         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15392         (gst_play_base_bin_init), (group_destroy), (group_commit),
15393         (check_queue), (queue_overrun), (queue_threshold_reached),
15394         (queue_out_of_data), (gen_preroll_element), (unknown_type),
15395         (new_decoded_pad), (setup_subtitle), (gen_source_element),
15396         (got_redirect), (setup_source), (play_base_eos),
15397         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15398         (gst_play_base_bin_remove_element):
15399         * gst/playback/gstplaybasebin.h:
15400         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15401         (gst_play_bin_init), (gst_play_bin_dispose),
15402         (gst_play_bin_set_property), (gen_video_element),
15403         (gen_text_element), (gen_audio_element), (remove_sinks),
15404         (gst_play_bin_send_event):
15405         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15406         (stream_info_change_state), (gst_stream_info_set_mute):
15407         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15408         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15409         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
15410         (gst_stream_selector_chain):
15411         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15412         (main):
15413         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
15414         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
15415         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15416         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
15417         Raw and crude port of decodebin. 
15418         Make playbin compile.
15419
15420 2005-04-06  Wim Taymans  <wim@fluendo.com>
15421
15422         * ext/gnomevfs/Makefile.am:
15423         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15424         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15425         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15426         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
15427         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
15428         (gst_gnomevfssrc_stop):
15429         * ext/ogg/Makefile.am:
15430         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
15431         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
15432         * ext/theora/Makefile.am:
15433         * ext/theora/theoradec.c: (_inc_granulepos),
15434         (theora_dec_sink_event), (theora_dec_chain):
15435         * ext/vorbis/Makefile.am:
15436         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15437         (vorbis_dec_sink_event), (vorbis_dec_chain):
15438         * gst-libs/gst/audio/Makefile.am:
15439         * sys/xvimage/Makefile.am:
15440         Make gnomevfssrc extend the source base class.
15441         Fix linking against libs in various plugins.
15442
15443 2005-04-06  Andy Wingo  <wingo@pobox.com>
15444
15445         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
15446         GST_BASE_LIBS.
15447
15448         * configure.ac: Add check and AC_SUBST for libgstbase.
15449
15450 2005-03-31  Wim Taymans  <wim@fluendo.com>
15451
15452         * examples/seeking/Makefile.am:
15453         * examples/seeking/cdparanoia.c: (main):
15454         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
15455         (play_cb), (pause_cb), (stop_cb), (main):
15456         * examples/seeking/playbin.c:
15457         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
15458         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
15459         (make_sid_pipeline), (make_vorbis_pipeline),
15460         (make_theora_pipeline), (make_vorbis_theora_pipeline),
15461         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15462         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
15463         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
15464         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
15465         (stop_cb), (main):
15466         * examples/seeking/spider_seek.c:
15467         * examples/seeking/vorbisfile.c:
15468         * ext/gnomevfs/Makefile.am:
15469         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
15470         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
15471         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15472         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
15473         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
15474         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
15475         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
15476         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
15477         * ext/ogg/README:
15478         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
15479         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
15480         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
15481         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
15482         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
15483         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
15484         (gst_ogg_pad_event), (gst_ogg_pad_reset),
15485         (gst_ogg_demux_factory_filter), (compare_ranks),
15486         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
15487         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
15488         (gst_ogg_chain_new), (gst_ogg_chain_free),
15489         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
15490         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
15491         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
15492         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
15493         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
15494         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
15495         (gst_ogg_demux_get_prev_page),
15496         (gst_ogg_demux_deactivate_current_chain),
15497         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
15498         (gst_ogg_demux_bisect_forward_serialno),
15499         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
15500         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
15501         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
15502         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
15503         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
15504         (gst_ogg_demux_change_state), (gst_ogg_print):
15505         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
15506         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
15507         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
15508         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
15509         (gst_ogg_mux_loop):
15510         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15511         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15512         (theora_dec_src_convert), (theora_dec_sink_convert),
15513         (theora_dec_src_query), (theora_dec_src_event),
15514         (theora_dec_sink_event), (theora_dec_chain),
15515         (theora_dec_change_state):
15516         * ext/theora/theoraenc.c: (gst_theora_enc_init),
15517         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
15518         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
15519         (theora_enc_change_state):
15520         * ext/vorbis/Makefile.am:
15521         * ext/vorbis/oggvorbisenc.c:
15522         * ext/vorbis/oggvorbisenc.h:
15523         * ext/vorbis/vorbis.c: (plugin_init):
15524         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15525         (vorbis_dec_src_query), (vorbis_dec_src_event),
15526         (vorbis_dec_sink_event), (vorbis_dec_chain),
15527         (vorbis_dec_change_state):
15528         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
15529         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
15530         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
15531         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
15532         (gst_vorbisenc_change_state):
15533         * ext/vorbis/vorbisenc.h:
15534         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
15535         * gst-libs/gst/audio/audioclock.c:
15536         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15537         (gst_audiofilter_init), (gst_audiofilter_chain):
15538         * gst-libs/gst/audio/testchannels.c: (main):
15539         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15540         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
15541         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
15542         (gmip_find_track_streaminfo), (gmip_find_track_format):
15543         * gst-libs/gst/media-info/media-info.c:
15544         (gst_media_info_read_idler):
15545         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
15546         (gst_play_get_all_by_interface):
15547         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
15548         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
15549         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
15550         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
15551         (gst_riff_parse_info):
15552         * gst-libs/gst/riff/riff-read.h:
15553         * gst-libs/gst/riff/riff.c: (plugin_init):
15554         * gst-libs/gst/video/Makefile.am:
15555         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
15556         (gst_videosink_class_init), (gst_videosink_get_type):
15557         * gst-libs/gst/video/videosink.h:
15558         * gst/audioconvert/bufferframesconvert.c:
15559         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
15560         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
15561         * gst/audioconvert/channelmixtest.c: (main):
15562         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15563         (gst_audio_convert_chain),
15564         (gst_audio_convert_caps_remove_format_info),
15565         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
15566         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
15567         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
15568         (gst_audio_convert_buffer_to_default_format),
15569         (gst_audio_convert_buffer_from_default_format),
15570         (gst_audio_convert_channels):
15571         * gst/audioconvert/gstchannelmix.h:
15572         * gst/ffmpegcolorspace/avcodec.h:
15573         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15574         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
15575         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
15576         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
15577         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
15578         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
15579         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15580         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
15581         (mpeg_video_type_find), (mpeg_video_stream_type_find),
15582         (dv_type_find):
15583         * gst/videotestsrc/gstvideotestsrc.c:
15584         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
15585         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
15586         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
15587         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
15588         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
15589         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
15590         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
15591         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
15592         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
15593         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
15594         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
15595         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15596         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15597         (gst_xvimagesink_navigation_send_event),
15598         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
15599         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
15600         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15601         * sys/xvimage/xvimagesink.h:
15602         Plugin port to 0.9, ogg/theora playback should work in the seek
15603         example now.
15604         Removed old examples.
15605         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
15606         explained in 0.9 TODO doc.
15607
15608
15609 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15610
15611         * autogen.sh:
15612         * configure.ac:
15613         * ext/Makefile.am:
15614         * gst/Makefile.am:
15615         * po/POTFILES.in:
15616         * po/af.po:
15617         * po/az.po:
15618         * po/cs.po:
15619         * po/en_GB.po:
15620         * po/hu.po:
15621         * po/it.po:
15622         * po/nb.po:
15623         * po/nl.po:
15624         * po/or.po:
15625         * po/sq.po:
15626         * po/sr.po:
15627         * po/sv.po:
15628         * po/uk.po:
15629         * po/vi.po:
15630         * sys/Makefile.am:
15631         * testsuite/Makefile.am:
15632           remove a whole bunch of plugins.  This module now contains a set
15633           of free reference plugins/elements as agreed.
15634
15635 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15636
15637         * configure.ac:
15638           hunting season on 0.9 is now OPEN
15639
15640 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15641
15642         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
15643           Kick the hell out of gcc for not warning me about a symbol conflict.
15644
15645 2005-02-22  Luca Ognibene  <luogni@tin.it>
15646
15647         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15648
15649         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
15650           Don't leak caps string (fixes #168134)
15651
15652         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
15653         (gst_jpegenc_init), (gst_jpegenc_finalize),
15654         (gst_jpegenc_change_state):
15655           Don't leak line buffers and context struct (fixes #168133).
15656
15657 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
15658
15659         * configure.ac:
15660         * ext/dirac/gstdiracdec.cc:
15661         (gst_diracdec_chain):
15662           Since dirac 0.5.0 the framerate in dirac is expressed as a
15663           rational number. Fix build and up requirement to 0.5.0, and
15664           also pass parameters to gst_diracdec_link in the right order
15665           (fixes #167959).
15666
15667 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
15668
15669         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
15670         * ext/faad/gstfaad.h:
15671         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
15672         certain invalid muxed streams, where some packets will contain 
15673         junk after decoder data. Partially fixes #149158.
15674
15675 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
15676         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
15677           Make sure we only write to writable buffers
15678
15679 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
15680
15681         * gst-libs/gst/riff/riff-media.c:
15682         (gst_riff_create_audio_caps_with_data):
15683           Do actually fix invalid RIFF fmt header values for alaw
15684           and mulaw audio instead of just saying so.
15685
15686         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
15687           Give gst_riff_create_audio_caps_with_data() a chance to
15688           fix up broken format header fields before extracting any
15689           parameters from the header. (fixes #167633)
15690
15691 2005-02-19  Martin Holters  <martin.holters@gmx.de>
15692
15693         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15694
15695         * gst/audioconvert/bufferframesconvert.c:
15696         (buffer_frames_convert_link):
15697           Don't leak othercaps. (fixes #167878)
15698
15699 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
15700
15701         * configure.ac:
15702         * ext/libvisual/visual.c: (gst_visual_srclink),
15703         (gst_visual_change_state):
15704           Support libvisual 0.2.0.
15705
15706 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
15707
15708         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
15709         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
15710           Use same rowstrides for I420 as used everywhere else.
15711
15712 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
15713
15714         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
15715           Declare variables at beginning of block and make gcc-2.95 happy
15716           (fixes # 167482, patch by Gergely Nagy).
15717           
15718         * gst/tcp/gsttcpclientsrc.c:
15719         * gst/tcp/gsttcpclientsrc.h:
15720           Move some includes into the header, so that struct sockaddr_in is
15721           defined when it should be defined on FreeBSD as well (fixes
15722           #167483).
15723           
15724         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
15725           Don't pass uninitialised values to setsockopt() here either.
15726
15727 2005-02-17  Luca Ognibene  <luogni at tin dot it>
15728
15729         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15730
15731         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
15732           Don't pass uninitialised values to setsockopt(). (fixes #167704)
15733
15734 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15735
15736         * gst/playback/gstplaybin.c: (add_sink):
15737           Invert bin_add/link order to workaround deadlock in opt.
15738
15739 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15740
15741         * gst/modplug/gstmodplug.cc:
15742           Add missing break causing position queries to fail.
15743
15744 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15745
15746         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
15747           Granpos can apparently be -1, which screws up calculations...
15748
15749 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
15750
15751         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
15752         (gst_ximagesink_send_pending_navigation),
15753         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
15754         (gst_ximagesink_init):
15755         * sys/ximage/ximagesink.h:
15756         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
15757         (gst_xvimagesink_send_pending_navigation),
15758         (gst_xvimagesink_navigation_send_event),
15759         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
15760         * sys/xvimage/xvimagesink.h:
15761           Use a mutex protected list to marshal navigation
15762           events into the stream thread from whichever thread
15763           sends them.
15764
15765 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
15766
15767         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
15768           Display current position and track length; misc. clean-ups.
15769           
15770         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
15771         (speed_init), (speed_chain):
15772           Add query function, so that the stream length and current position
15773           get adjusted when queried (note that current position queries may
15774           still be wrong if the audio sink returns values based on buffer
15775           timestamps instead of passing on the query).
15776
15777 2005-02-13  Benjamin Otte  <otte@gnome.org>
15778
15779         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
15780         (gst_audio_convert_channels):
15781           create channel conversion matrix when linking
15782         * gst/audioconvert/.cvsignore:
15783         * gst/audioconvert/Makefile.am:
15784         * gst/audioconvert/channelmixtest.c: (main):
15785           add (ugly) test that ensures stereo <=> mono conversion works
15786           correctly
15787
15788 2005-02-13  Benjamin Otte  <otte@gnome.org>
15789
15790         * gst/audioconvert/gstchannelmix.h:
15791           include missing header file
15792         * gst/audioconvert/gstchannelmix.c:
15793         (gst_audio_convert_fill_compatible):
15794           use same sign for both channels when converting to/from compatible
15795           channel. Previously used different signs made the signals cancel
15796           each other out and appear like silence. (fixes #167269)
15797
15798 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
15799
15800         * gst/ffmpegcolorspace/avcodec.h:
15801         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15802         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
15803         (gst_ffmpegcsp_avpicture_fill):
15804         * gst/ffmpegcolorspace/imgconvert.c:
15805           Convert to and from YV12 (fixes #156379).
15806
15807 2005-02-12  Julien MOUTTE  <julien@moutte.net>
15808
15809         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
15810         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
15811         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
15812         (gst_ximagesink_expose), (gst_ximagesink_set_property),
15813         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
15814         methods from chain and negotiation and vice versa (Fixes #166142).
15815         * sys/ximage/ximagesink.h: Add stream_lock.
15816         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
15817         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
15818         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
15819         (gst_xvimagesink_expose): Check for xcontext before trying to link.
15820
15821 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
15822
15823         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
15824           Don't send "Hey! You gave me a NULL pointer you naughty person" as
15825           error message when we can't open the DVD device (when dvdnav_open()
15826           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
15827           the above). Send something more useful instead (fixes #167117).
15828
15829 2005-02-11  Julien MOUTTE  <julien@moutte.net>
15830
15831         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
15832         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
15833         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
15834         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
15835         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
15836         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
15837         methods from chain and negotiation and vice versa (Fixes #166142).
15838         Fix a possible bug of images in the buffer pool being discarded because
15839         we are looking at the wrong geometry.
15840         * sys/xvimage/xvimagesink.h: Add stream_lock.
15841
15842 2005-02-11  David Schleef  <ds@schleef.org>
15843
15844         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
15845         unsigned int. (fixes #167128)
15846
15847 2005-02-11  David Schleef  <ds@schleef.org>
15848
15849         * gst/librfb/Makefile.am: Testing stuff before committing is
15850           for wimps... and people with fast machines.  Fix stupid
15851           mistake.
15852
15853 2005-02-11  David Schleef  <ds@schleef.org>
15854
15855         * configure.ac: Pull in librfb from my CVS tree, because it is
15856           too small and annoying to be separate.  Move rfbsrc plugin
15857           to gst/.
15858         * ext/Makefile.am:
15859         * ext/librfb/Makefile.am:
15860         * ext/librfb/gstrfbsrc.c:
15861         * gst/librfb/Makefile.am:
15862         * gst/librfb/gstrfbsrc.c:
15863         * gst/librfb/rfb.c:
15864         * gst/librfb/rfb.h:
15865         * gst/librfb/rfbbuffer.c:
15866         * gst/librfb/rfbbuffer.h:
15867         * gst/librfb/rfbbytestream.c:
15868         * gst/librfb/rfbbytestream.h:
15869         * gst/librfb/rfbcontext.h:
15870         * gst/librfb/rfbdecoder.c:
15871         * gst/librfb/rfbdecoder.h:
15872         * gst/librfb/rfbutil.h:
15873
15874 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
15875
15876         * gst/speed/Makefile.am:
15877         * gst/speed/demo-mp3.c: (main):
15878         * gst/speed/filter.func:
15879         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
15880         (speed_class_init), (speed_init), (speed_chain_int16),
15881         (speed_chain_float32), (speed_chain), (speed_set_property),
15882         (speed_get_property), (speed_change_state):
15883         * gst/speed/gstspeed.h:
15884           Fix speed element and make it chain-based (fixes #156467),
15885           and make it handle more than one channel.
15886
15887 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
15888
15889         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
15890         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
15891         (gst_dtsdec_chain), (gst_dtsdec_change_state):
15892         * ext/dts/gstdtsdec.h:
15893           Don't clobber the stack constructing the channels array.
15894           Make the element chain-based. DTS tracks can now be played.
15895           
15896 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
15897
15898         * gst-libs/gst/audio/multichannel.h:
15899         * gst-libs/gst/gconf/gconf.h:
15900         * gst-libs/gst/idct/idct.h:
15901         * gst-libs/gst/media-info/media-info-priv.h:
15902         * gst-libs/gst/play/play.h:
15903         * gst-libs/gst/resample/private.h:
15904         * gst-libs/gst/resample/resample.h:
15905         * gst-libs/gst/riff/riff-ids.h:
15906         * gst-libs/gst/video/video.h:
15907         * gst-libs/gst/video/videosink.h:
15908           Add G_BEGIN_DECLS and G_END_DECLS around headers where
15909           missing, so that they work when included from C++ code.
15910
15911 2005-02-09  David Schleef  <ds@schleef.org>
15912
15913         * testsuite/gst-lint: Check for non-statically scoped
15914           parent_class variables.  This won't be a problem once
15915           plugins are loaded with RTLD_LOCAL.
15916
15917 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15918
15919         * ext/mplex/gstmplexibitstream.cc:
15920           gcc madness.
15921
15922 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15923
15924         * ext/ogg/gstogmparse.c:
15925         * gst/debug/gstnavigationtest.c:
15926           Die, thou faulty symbol pollutors (non-static parent_class).
15927
15928 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15929
15930         * ext/mplex/gstmplexibitstream.cc:
15931           Fix event handling (#165525).
15932
15933 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15934
15935         * ext/mikmod/gstmikmod.c:
15936         * gst/modplug/gstmodplug.cc:
15937           Add missing endianness to template (fixes #165509).
15938
15939 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15940
15941         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
15942           Fix wrong order of reading of optional bytes (#165290).
15943
15944 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15945
15946         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
15947           Implement FILLER event awareness.
15948
15949 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15950
15951         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
15952           Fix track calculations (#166208).
15953
15954 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
15955
15956         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15957
15958         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
15959         * ext/libpng/gstpngenc.c:
15960           Fix byte-order, use proper fixed caps. Fixes #164197.
15961
15962 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
15963
15964         * configure.ac:
15965           Add dvdlpcmdec 
15966
15967         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
15968         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
15969           Don't push buffers if the src pad isn't negotiated yet.
15970           
15971         * gst/audioconvert/gstaudioconvert.c:
15972         (gst_audio_convert_buffer_to_default_format),
15973         (gst_audio_convert_buffer_from_default_format):
15974           Add support for 24-bit width.
15975
15976         * gst/dvdlpcmdec/.cvsignore:
15977         * gst/dvdlpcmdec/Makefile.am:
15978         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
15979         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
15980         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
15981         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
15982         (plugin_init):
15983         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
15984           New decoder for rearranging DVD LPCM into our audio/x-raw-int
15985           format. Needs support for the channels maps if someone can find 
15986           a DVD LPCM track with > 2 channels.
15987
15988         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
15989         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
15990         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
15991         * gst/mpegstream/gstdvddemux.h:
15992         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
15993         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
15994         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
15995         * gst/mpegstream/gstmpegdemux.h:
15996         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
15997         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
15998         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
15999         (gst_mpeg_parse_handle_src_query),
16000         (gst_mpeg_parse_handle_src_event):
16001           Use audio/x-dvd-lpcm for LPCM output.
16002           Add DTS output.
16003
16004 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16005
16006         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16007
16008         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16009         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16010           Add BGRA handling (#165736).
16011
16012 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
16013
16014         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16015
16016         * gst/law/alaw-decode.c: (alawdec_link):
16017         * gst/law/alaw-encode.c: (alawenc_link):
16018         * gst/law/mulaw-decode.c: (mulawdec_link):
16019         * gst/law/mulaw-encode.c: (mulawenc_link):
16020           Fix caps memleaks (#166600).
16021
16022 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
16023
16024         * ext/tarkin/mem.h:
16025         * ext/tarkin/wavelet.h:
16026         * ext/tarkin/yuv.h:
16027         * gst/ffmpegcolorspace/avcodec.h:
16028           Include "_stdint.h" instead of <stdint.h>. Fixes build on
16029           systems that don't have stdint.h, like Solaris9 (fixes #166631).
16030
16031 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16032
16033         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16034         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16035         (gst_xvimagesink_change_state):
16036           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16037           Xv video (and thereby regenerate Xv colourkey) in clear() so
16038           that PLAY -> READY -> PLAY works (fixes #162504).
16039
16040 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16041
16042         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16043           Switch to list instead of range, since MJPEG-devices really just
16044           support decimations, not any size.
16045
16046 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16047         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16048         (gst_mpeg2dec_reset), (free_all_buffers),
16049         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16050         * ext/mpeg2dec/gstmpeg2dec.h:
16051           The libmpeg2 user-allocated buffer management is awkward, 
16052           to say the least. Hopefully this fixes things.
16053
16054 2005-02-04  Andy Wingo  <wingo@pobox.com>
16055
16056         * gst/audioconvert/bufferframesconvert.c
16057         (buffer_frames_convert_fixate): New function, fixates to 256
16058         frames per buffer by default. (Much better than 1.)
16059         (buffer_frames_convert_init): Set the fixate function for both src
16060         and sink pad.
16061         (buffer_frames_convert_link): After success setting nonfixed caps,
16062         get the negotiated caps so we can know how many buffer-frames it
16063         will be. No idea how this worked at all before.
16064
16065 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16066
16067         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16068         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16069         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16070         (handle_sequence), (handle_picture):
16071         * ext/mpeg2dec/gstmpeg2dec.h:
16072           Rearrange buffer tracking and refcounting and refactor
16073           a little for readability. 
16074
16075 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
16076         * sys/v4l/gstv4l.c: (plugin_init):
16077         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16078         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16079         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16080         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16081         * sys/v4l/gstv4ljpegsrc.h:
16082         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16083         * sys/v4l/v4l_calls.h:
16084         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16085         (gst_v4lsrc_get_fps):
16086         * sys/v4l/v4lsrc_calls.h:
16087           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16088           you jpeg inside rgb frames" driver.
16089           Don't error in the v4lsrc link function, just return 
16090           REFUSED.
16091
16092 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16093
16094         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16095         (gst_qcamsrc_open):
16096           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16097
16098 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16099
16100         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16101           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16102
16103 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16104
16105         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16106           Reset negotiated state on PAUSED->READY.
16107
16108 2005-02-02  David Schleef  <ds@schleef.org>
16109
16110         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16111         whereever possible.  (Fixes #165997)
16112         * examples/capsfilter/capsfilter1.c: (main):
16113         * examples/dynparams/filter.c: (create_ui):
16114         * examples/seeking/cdparanoia.c: (get_track_info), (main):
16115         * examples/seeking/chained.c: (main):
16116         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16117         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16118         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16119         (make_mpeg_pipeline), (make_mpegnt_pipeline):
16120         * examples/seeking/spider_seek.c: (make_spider_pipeline):
16121         * examples/switch/switcher.c: (main):
16122         * ext/dv/demo-play.c: (main):
16123         * ext/faad/gstfaad.c: (gst_faad_change_state):
16124         * ext/mad/gstmad.c: (gst_mad_chain):
16125         * ext/smoothwave/demo-osssrc.c: (main):
16126         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16127         (gst_gconf_render_bin_from_description),
16128         (gst_gconf_get_default_audio_sink),
16129         (gst_gconf_get_default_video_sink),
16130         (gst_gconf_get_default_audio_src),
16131         (gst_gconf_get_default_video_src),
16132         (gst_gconf_get_default_visualization_element):
16133         * gst/level/demo.c: (main):
16134         * gst/level/plot.c: (main):
16135         * gst/playback/gstplaybin.c: (gen_video_element),
16136         (gen_audio_element):
16137         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16138         * gst/playondemand/demo-mp3.c: (setup_pipeline):
16139         * gst/sine/demo-dparams.c: (main):
16140         * gst/spectrum/demo-osssrc.c: (main):
16141         * gst/speed/demo-mp3.c: (main):
16142         * gst/volume/demo.c: (main):
16143         * testsuite/embed/embed.c: (main):
16144
16145 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16146
16147         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16148         (gst_tcpclientsink_finalize):
16149         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16150         (gst_tcpclientsrc_finalize):
16151         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16152         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16153         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16154         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16155           Don't leak the hostname when shutting down.
16156           In tcpserversrc, take a copy of the default hostname.
16157
16158 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16159
16160         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16161           Set caps to systemstream=TRUE.
16162
16163 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16164
16165         * testsuite/Makefile.am:
16166           Fix more OSX buildbots.
16167
16168 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16169
16170         * ext/mpeg2dec/gstmpeg2dec.c:
16171           Don't send things to NULL PAD_PEERs
16172
16173         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16174           Copy-on-write the incoming buffer.
16175
16176         * gst/mpegstream/gstdvddemux.h:
16177         * gst/mpegstream/gstmpegclock.h:
16178         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16179         (normal_seek), (gst_mpeg_demux_handle_src_event):
16180         * gst/mpegstream/gstmpegdemux.h:
16181         * gst/mpegstream/gstmpegpacketize.h:
16182         * gst/mpegstream/gstmpegparse.c:
16183         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16184         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16185         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16186         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16187         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16188         * gst/mpegstream/gstmpegparse.h:
16189         * gst/mpegstream/gstrfc2250enc.h:
16190           Various changes to the way time is computed that make seeking and
16191           total time estimation much better here.
16192           Use G_BEGIN/END_DECLS instead of __cplusplus
16193
16194         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16195           Use gst_buffer_stamp instead of only copying the TIMESTAMP
16196
16197 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16198
16199         * gst/subparse/gstsubparse.c:
16200           Fix OSX buildbot.
16201
16202 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16203
16204         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16205         (theora_enc_chain), (theora_enc_change_state):
16206         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16207         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16208         (gst_vorbisenc_change_state):
16209         * ext/vorbis/vorbisenc.h:
16210           Set granulepos and timestamp correctly for streams not
16211           starting at 0, taking into account the initial delay.
16212
16213 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16214
16215         * gst/mpegstream/gstdvddemux.c:
16216           Add audio/x-dts to audio pad template caps
16217
16218 2005-01-30  David Schleef  <ds@schleef.org>
16219
16220         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16221         (create_context), (gst_polypsink_link): Fix silly endianness
16222         bug.  Add some debugging.  Remove float from caps; it doesn't
16223         work.  Attempt to get remote audio working.
16224
16225 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16226
16227         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16228           Add 3IV2 fourcc.
16229
16230 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16231
16232         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16233         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16234         (gst_avi_demux_stream_data):
16235         * gst/avi/gstavidemux.h:
16236           Invert DIB images. Fixes #132341.
16237
16238 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16239
16240         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16241         (gst_ffmpegcsp_chain):
16242           D'oh, reference the palette data, not the palette structure.
16243           Fixes color distortion in #132341.
16244
16245 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16246
16247         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16248           PAR can be non-fixed when not provided as argument (#162626).
16249
16250 2005-01-29  David Moore  <dcm@acm.org>
16251
16252         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16253
16254         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16255         (gst_qtdemux_loop_header):
16256           Re-apply patch from #142272 that allows non-seekable sources,
16257           re-proposed by Daniel Drake <dsd@gentoo.org>.
16258
16259 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16260
16261         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16262           Use the src template for creating the src pad (#162330).
16263
16264 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16265
16266         * configure.ac:
16267         * ext/musepack/Makefile.am:
16268         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16269         (gst_musepackdec_init), (gst_musepackdec_dispose),
16270         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16271         (gst_musepack_stream_init), (gst_musepackdec_loop),
16272         (gst_musepackdec_change_state):
16273         * ext/musepack/gstmusepackdec.cpp:
16274         * ext/musepack/gstmusepackdec.h:
16275         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16276         (gst_musepack_reader_read), (gst_musepack_reader_seek),
16277         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16278         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16279         * ext/musepack/gstmusepackreader.cpp:
16280         * ext/musepack/gstmusepackreader.h:
16281           Update to 1.1 API (#165446).
16282
16283 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16284
16285         * ext/Makefile.am:
16286           Unbreak buildbot.
16287
16288 2005-01-28  Andy Wingo  <wingo@pobox.com>
16289
16290         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16291         to reflect a different dubious internet source. Add a reference
16292         and some commentary.
16293
16294 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16295
16296         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16297         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16298         * gst/playback/gststreamselector.h:
16299           Be more selective when we're redoing caps negotiation from
16300           within the chain function on a stream change.
16301
16302 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16303
16304         * configure.ac:
16305         * ext/Makefile.am:
16306         * ext/amrnb/Makefile.am:
16307         * ext/amrnb/amrnb.c: (plugin_init):
16308         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16309         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16310         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16311         (gst_amrnbdec_state_change):
16312         * ext/amrnb/amrnbdec.h:
16313         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16314         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16315         (gst_amrnbparse_init), (gst_amrnbparse_formats),
16316         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16317         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16318         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16319         * ext/amrnb/amrnbparse.h:
16320           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16321         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16322           Add AMR-NB/-WB raw formats.
16323         * ext/alsa/gstalsa.c: (gst_alsa_link):
16324           Keep valid time when changing format.
16325         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16326         (qtdemux_parse_trak):
16327           Add some more format-specific options (#140141, #143555, #155163).
16328
16329 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16330
16331         * gst/matroska/matroska-demux.c:
16332         (gst_matroska_demux_parse_blockgroup):
16333           Fix logic error in timing of subtitle stream synchronization.
16334         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16335           Add skip-chunk, which is found in kodak-camera streams.
16336
16337 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16338
16339         * po/LINGUAS:
16340         * po/vi.po:
16341           Adding Vietnamese translation (submitted by Clytie Siddall)
16342
16343 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16344
16345         * gst/playback/gstdecodebin.c: (try_to_link_1):
16346           Use realpad for signal.
16347
16348 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16349
16350         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16351           Fix category so decodebin picks it up.
16352
16353 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16354
16355         * ext/mad/Makefile.am:
16356         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16357         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16358         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16359         (found_type), (gst_id3demux_bin_change_state):
16360         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16361         (gst_id3_tag_init), (gst_id3_tag_handle_event),
16362         (gst_id3_tag_src_link), (gst_id3_tag_chain),
16363         (gst_id3_tag_change_state), (plugin_init):
16364         * ext/mad/gstmad.h:
16365           Add id3demuxbin (which is a simple bin consisting of id3demux
16366           and typefind), take over rank from id3demux, remove typefind
16367           code from id3demux. Makes all broken mp3s that I know of work,
16368           and thereby fixes #152688.
16369
16370 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
16371
16372         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16373
16374         * ext/mad/gstmad.c: (gst_mad_src_event):
16375         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16376           Allow seeks on audio pad, make mad forward those (#164826).
16377         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16378           Set duration (#165335).
16379
16380 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16381
16382         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16383         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16384         (gst_asf_demux_process_ext_content_desc),
16385         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16386         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16387         * gst/asfdemux/gstasfdemux.h:
16388           Improve metadata display, e.g. if the metadata comes before the
16389           streams are loaded (which is perfectly valid).
16390
16391 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16392
16393         * tools/gst-launch-ext-m.m:
16394           Fix AVI/ASF pipelines (#165340).
16395
16396 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
16397         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
16398         build failure on amd64
16399
16400 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
16401
16402         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16403         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16404           Check environment variables GST_ID3V2_TAG_ENCODING,
16405           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16406           list of character encodings to force interpretation of non-unicode
16407           strings stored in an ID3v2 tag to a particular encoding. If none
16408           is specified, try to use current locale's encoding, then fall back
16409           to ISO-8859-1 (which will always succeed). (Resolves #149274)
16410         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
16411         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
16412           Check environment variables GST_ID3V1_TAG_ENCODING,
16413           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16414           list of character encodings to use in case a string encountered
16415           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
16416           specified, try to use the current locale's encoding, then fall
16417           back to ISO-8859-1 (which will always succeed).
16418
16419 2005-01-25  Benjamin Otte  <otte@gnome.org>
16420
16421         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16422           - on half framerate, compute the rate in advance so the comparisons
16423             don't compare wrong values
16424           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
16425             behaviour
16426           - don't use mad_header_decode anymore, mad_frame_decode does that
16427             automatically
16428           - when getting rid of consumed bytes, reset the stream's skiplen
16429           (fixes #163867)
16430
16431 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
16432
16433         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
16434           Use 1/2 a second for default max_discont, as PES streams from DVB
16435           seem to have larger spacings in the SCR. 
16436           Fix a typo.
16437
16438 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16439
16440         * gst/playback/gstplaybasebin.c: (group_commit):
16441           Notify delayed stream-info availability.
16442
16443 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
16444         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
16445         (gst_a52dec_handle_event), (gst_a52dec_chain):
16446         Add some debug output. Check that a discont has a valid
16447         time associated.
16448         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16449         (gst_alsa_sink_loop):
16450         Ignore TAG events. A little extra debug for broken timestamps.
16451         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
16452         (dvdnavsrc_change_state):
16453         Ensure we send a discont to engage the link before we send any
16454         other events.
16455         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
16456         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
16457         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
16458         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
16459         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
16460         dvd://title works in totem because typefinding sends a seek that ends
16461         up going back to chapter 1 regardless.
16462         * ext/mpeg2dec/gstmpeg2dec.c:
16463         * ext/mpeg2dec/gstmpeg2dec.h:
16464         Output correct timestamps and handle disconts.
16465         * ext/ogg/gstoggdemux.c: (get_relative):
16466         Small guard against a null dereference.
16467         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
16468         (gst_textoverlay_set_property):
16469         Free memory when done. Don't call gst_event_filler_get_duration on
16470         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
16471         g_warning.
16472         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
16473         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
16474         (gst_sw_srclink), (gst_smoothwave_chain):
16475         Draw solid lines, prettier colours.
16476         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
16477         Add a default palette that'll work for some movies.
16478         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
16479         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
16480         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
16481         * gst/mpegstream/gstdvddemux.h:
16482         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16483         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
16484         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
16485         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
16486         * gst/mpegstream/gstmpegparse.h:
16487         Use PTM/NAV events when for timestamp adjustment when connected to 
16488         dvdnavsrc. Don't use many discont events where one suffices.
16489         * gst/playback/gstplaybasebin.c: (group_destroy),
16490         (gen_preroll_element), (gst_play_base_bin_add_element):
16491         * gst/playback/gstplaybasebin.h:
16492         Make sure we remove subtitles from the same bin we put them in.
16493         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
16494         (gst_subparse_buffer_format_autodetect),
16495         (gst_subparse_change_state):
16496         Fix some memleaks and invalid accesses.
16497         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
16498         (oggskel_type_find), (cmml_type_find), (plugin_init):
16499         Some typefind functions for Annodex v3.0 files
16500         * gst/wavparse/gstwavparse.h:
16501         GstRiffReadClass is the correct parent class.
16502
16503 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16504
16505         * gst-libs/gst/riff/riff-media.c:
16506         (gst_riff_create_video_caps_with_data):
16507           Add extradata to huffyuv (fixes #165013).
16508         * gst-libs/gst/riff/riff-read.c:
16509         (gst_riff_read_strf_vids_with_data):
16510           Fix extradata extraction if it is in the chunk size.
16511
16512 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
16513
16514         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16515
16516         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
16517         (gst_quarktv_change_state), (gst_quarktv_dispose):
16518           Memory free'ing location fix (#164708).
16519
16520 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16521
16522         * gst/playback/gstplaybasebin.c: (group_commit),
16523         (gen_preroll_element), (probe_triggered), (gen_source_element),
16524         (setup_source), (gst_play_base_bin_change_state),
16525         (gst_play_base_bin_add_element):
16526           Don't block for streams.
16527         * gst/playback/gststreaminfo.c: (stream_info_change_state),
16528         (gst_stream_info_set_mute):
16529           Use gst_pad_set_active_recursive.
16530
16531 2005-01-25  Andy Wingo  <wingo@pobox.com>
16532
16533         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
16534         for #ifndef HAVE_XVIDEO.
16535
16536 2005-01-24  Jeffrey C. Ollie
16537
16538         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
16539
16540         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
16541         * ext/gsm/gstgsmdec.h:
16542         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
16543         * ext/gsm/gstgsmenc.h:
16544         Fix rate to 8kHz as per spec, removes obscure errors when no rate
16545         was given by property. Add proper buffer timestamps and offsets.
16546
16547 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16548
16549         * gst-libs/gst/riff/riff-media.c:
16550         (gst_riff_create_audio_caps_with_data):
16551           Audio can be <8000Hz.
16552
16553 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16554
16555         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16556           Explicit state change to workaround refcount bugs.
16557
16558 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16559
16560         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
16561         (gst_avimux_riff_get_avi_header):
16562           Fix...
16563
16564 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16565
16566         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
16567         (gst_riff_read_element_data):
16568         * gst-libs/gst/riff/riff-read.h:
16569           Add _peek version (req'ed in CDXA).
16570         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
16571         (gst_cdxaparse_loop):
16572           Fix parsing in playbin.
16573         * gst/playback/gstdecodebin.c: (close_pad_link):
16574           Ignore current_ pads, they cause major annoyance.
16575
16576 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16577
16578         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
16579           Safety guard.
16580
16581 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16582
16583         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
16584           Fix padding...
16585
16586 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16587
16588         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
16589           Allow for 0-sized buffers. Fixes length query problems in
16590           starwars.mkv from the testsuite.
16591
16592 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
16593
16594         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
16595         (gst_video_box_i420), (gst_video_box_chain):
16596           Fix row strides for I420 (fixes #163159)
16597           
16598 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16599
16600         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
16601           MPEG2 has a useful rate property, so we can actually use that.
16602           For MPEG-1, continue using the bytes/time properties.
16603
16604 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16605
16606         * gst-libs/gst/riff/riff-media.c:
16607         (gst_riff_create_video_caps_with_data),
16608         (gst_riff_create_video_template_caps):
16609           Add intel-h263.
16610
16611 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16612
16613         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16614           Fail if caps negotiation fails. Should fix #162184, and should
16615           definately be in there regardless of it fixing the actual bug.
16616         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
16617         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
16618         (gst_avimux_riff_get_avix_header),
16619         (gst_avimux_riff_get_video_header),
16620         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
16621         (gst_avimux_start_file), (gst_avimux_handle_event),
16622         (gst_avimux_change_state):
16623         * gst/avi/gstavimux.h:
16624           Refactor structure writing to use GST_WRITE_UINT macros, add
16625           metadata writing support.
16626
16627 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16628
16629         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
16630           Elements may already be destroyed when this function is called.
16631
16632 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16633
16634         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16635         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
16636           More memory leak fixes (#149162).
16637
16638 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16639
16640         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16641         (gst_qtdemux_add_stream):
16642           Fix two memleaks.
16643
16644 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16645
16646         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16647           Argh...
16648
16649 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16650
16651         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16652           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
16653           when fixating to six channels in Totem.
16654
16655 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
16656
16657         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
16658           Fix compile warnings on Solaris 10 buildbot
16659
16660 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
16661
16662         * ext/dvdread/dvdreadsrc.c: (_read):
16663           Don't read beyond the last cell in a chapter (fixes 
16664           invalid memory access)
16665
16666 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
16667
16668         * ext/dvdread/stream_labels.c:
16669         (dvdreadsrc_get_audio_stream_labels):
16670           Use NULL for an empty GList instead of g_list_alloc(); fix 
16671           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
16672           of GString (easier to bulk free later)
16673
16674 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
16675
16676         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16677
16678         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16679         (gst_ffmpeg_pixfmt_to_caps):
16680           Fix BGRA32 caps (#164209).
16681
16682 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
16683
16684         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16685
16686         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16687         (gst_ffmpeg_caps_to_pixfmt):
16688           alpha_mask can be RGBA/ABGR. Fixes #164265.
16689
16690 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
16691
16692         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16693
16694         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
16695         (gst_mpeg2dec_alloc_buffer):
16696         * ext/mpeg2dec/gstmpeg2dec.h:
16697           Crop if decoding size is not the actual image size (#163676).
16698
16699 2005-01-17  Steve Baker  <steve@stevebaker.org>
16700
16701         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16702
16703         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
16704         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
16705           Add libsndfile typefind functions (#163309).
16706
16707 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16708
16709         * tools/gst-launch-ext-m.m:
16710           Add .aac, fix .m1v/.m2v (#163891).
16711
16712 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16713
16714         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
16715           Sanity check, don't wait endlessly since the clock might not
16716           actually run at this point (which is a deadlock). Fixes #164069.
16717
16718 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16719
16720         * gst/playback/gstplaybasebin.c: (probe_triggered):
16721           Of course, only pause if group is done...
16722
16723 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16724
16725         * gst/playback/gstplaybasebin.c: (probe_triggered):
16726           Thread safety.
16727
16728 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
16729
16730         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
16731           Don't return state change success when the parent
16732           failed.
16733
16734 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16735
16736         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
16737           Free events (fix memleak in #162905).
16738
16739 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
16740
16741         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16742
16743         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16744         (gst_ffmpeg_caps_to_pixfmt):
16745           Fix for depth = 15. Fixes #161675.
16746
16747 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16748
16749         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
16750           Set FPS correctly, even for webcams and the like.
16751         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
16752           Don error on setting while capturing.
16753
16754 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16755
16756         * ext/dv/gstdvdec.c:
16757         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
16758         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
16759           I'm a bad boy. using /1001. to force C to do float division
16760           and not integer division (as it did in my last commit)
16761           Thanks to David I. Lehn for pointing this mistake.
16762
16763 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16764
16765         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
16766           Revert Johan's 1.35->1.36 since it breaks compat.
16767
16768 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16769
16770         * ext/dv/gstdvdec.c:
16771         * ext/libfame/gstlibfame.c:
16772         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
16773         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
16774           replace framerate aproximations by their real value
16775           (24000/1001, 30000/1001, 60000/1001)
16776           Finish fixing bug #164049
16777
16778 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16779
16780         * ext/ogg/gstoggmux.c:
16781           eos/bos debugging
16782         * gst/tcp/gstmultifdsink.c:
16783         * gst/tcp/gstmultifdsink.h:
16784         * gst/tcp/gsttcp.c:
16785         * gst/tcp/gsttcp.h:
16786         * gst/tcp/gsttcpclientsink.c:
16787         * gst/tcp/gsttcpclientsrc.c:
16788         * gst/tcp/gsttcpserversink.c:
16789         * gst/tcp/gsttcpserversrc.c:
16790           improve reusability of elements after state changes and errors
16791           make multifdsink throw away streamheaders when receiving new ones
16792
16793 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16794
16795         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
16796           Fix for if items are already in list...
16797
16798 2005-01-12  Benjamin Otte  <otte@gnome.org>
16799
16800         * gst/adder/gstadder.c: (gst_adder_loop):
16801           fix adder a bit so it doesn't screw up with events as much anymore
16802
16803 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
16804
16805         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
16806         (pixbufscale_scale), (gst_pixbufscale_chain):
16807         * ext/gdk_pixbuf/pixbufscale.h:
16808           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
16809           to ensure rowstrides are calculated the same way as 
16810           ffmpegcolorspace
16811           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
16812           that we pick up duration and offset also.
16813
16814 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16815
16816         * gst/avi/gstavimux.c: (gst_avimux_class_init),
16817         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
16818           Reusability fixes.
16819
16820 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16821
16822         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
16823         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
16824         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
16825         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
16826           Update flags when requested.
16827
16828 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16829
16830         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
16831           Fix dmix.
16832
16833 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16834
16835         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16836         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
16837         (probe_triggered), (new_decoded_pad), (gen_source_element),
16838         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
16839         * gst/playback/gstplaybasebin.h:
16840         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16841         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
16842         (gst_play_bin_change_state):
16843           Implement group-switch signal for use in apps to clear metadata
16844           cache, clean up subtitle, add suburi property instead of # hack,
16845           some error-out fixes.
16846
16847 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16848
16849         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16850           Debug.
16851         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
16852           If we got a state change in the _get handler, don't return success.
16853
16854 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16855
16856         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
16857         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
16858           Make jpegdec quiet on MJPEG decoding
16859         * gst/asfdemux/README:
16860           Fix mimetypes for MJPEG and H263
16861
16862 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16863
16864         * ext/theora/theoradec.c: (theora_dec_chain):
16865           Fix broken code generation by gcc by swapping arguments.
16866         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
16867           Fix \n in debug.
16868
16869 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16870
16871         * TODO:
16872           delete this file, it is by far outdated
16873         * ext/alsa/gstalsa.1: remove
16874         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
16875         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
16876         (gst_alsa_get_caps):
16877           Add HW probing for supported sample rates. Fixes #161704
16878
16879 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16880
16881         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16882           Don't crash, biatch! :).
16883
16884 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16885
16886         * ext/musepack/gstmusepackreader.cpp:
16887         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
16888           Some work on tags - still doesn't work in playbin...
16889         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16890           Handle events...
16891
16892 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16893
16894         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
16895           Also shove tags on kid pads.
16896
16897 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16898
16899         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
16900           Don't bail on unknown events.
16901         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16902           Don't crash on events before negotiation.
16903         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
16904           Send tags on pads, too.
16905         * gst/playback/gststreamselector.c:
16906         (gst_stream_selector_request_new_pad):
16907           Forward events on first pad if no input was selected yet.
16908
16909 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16910
16911         * gst/playback/gstplaybasebin.c: (setup_substreams):
16912           Don't disable streamtype if the stream doesn't exist, since
16913           then playing a video after audio will disable both and nothing
16914           will happen. Fixes the testsuite.
16915
16916 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16917
16918         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
16919         (gst_v4l_xoverlay_set_xwindow_id):
16920         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
16921         (gst_v4l2_xoverlay_set_xwindow_id):
16922           Add debug categories, fix overlay disabling.
16923
16924 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16925
16926         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
16927         * ext/alsa/gstalsa.h:
16928           Add HW probing for period_count/size and buffer_size MIX/MAX
16929           Adjust default/user defined value if out of bounds
16930           Should fix bug #162024
16931
16932 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16933
16934         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
16935           Fix warning (#161191).
16936
16937 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16938
16939         * ext/dvdread/stream_labels.c:
16940         (dvdreadsrc_get_audio_stream_labels):
16941           Fix warning (init the good variable in switch default)
16942
16943 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
16944
16945         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16946
16947         * gst/tta/gstttaparse.c: (gst_tta_src_event):
16948           Fix gcc-2.95 compile (#163485).
16949
16950 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16951
16952         * configure.ac:
16953         * ext/flac/gstflacenc.c: (gst_flacenc_init),
16954         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
16955         (gst_flacenc_tell_callback), (gst_flacenc_chain),
16956         (gst_flacenc_change_state):
16957         * ext/flac/gstflacenc.h:
16958           Update for API change in flac-1.1.1. Update requirement in
16959           configure.ac. Fixes #162974.
16960
16961 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16962
16963         * gst/playback/gstplaybasebin.c: (group_destroy):
16964           Remove hack to get rid of assert and get rid of unlinked
16965           signals properly.
16966
16967 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16968
16969         * gst/playback/gstplaybasebin.c: (setup_source):
16970           Set source to NULL so that resources are free'ed. Fixes issues
16971           with playback of CDDA and similar device-accessing things.
16972
16973 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16974
16975         * testsuite/embed/Makefile.am:
16976           test->noinst, fix make test in buildbot.
16977
16978 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
16979
16980         * ext/dvdread/stream_labels.c: new file
16981         * ext/dvdread/stream_labels.h: new file
16982         * ext/dvdread/Makefile.am:
16983         * ext/dvdread/dvdreadsrc.c: (_seek_title):
16984           Extract audio stream label from DVD IFO files.
16985           It only dump them on the console for now, still have to
16986           make playbin aware of them.
16987
16988 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16989
16990         * gst/playback/gstplaybasebin.c: (setup_source):
16991           Fix hanging subs.
16992
16993 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16994
16995         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
16996         (gen_preroll_element), (remove_groups), (setup_subtitle),
16997         (gen_source_element), (setup_source):
16998         * gst/playback/gstplaybasebin.h:
16999           Multiple .sub files is just a stupid idea... Fix some threading
17000           mistakes. Interestingly, external .sub files cause playbin to
17001           hang, I don't know why... Parsing fixes contributed by Fran??ois
17002           Kooman <fkooman@tuxed.net>.
17003
17004 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17005
17006         * testsuite/embed/Makefile.am:
17007           Fix buildbot.
17008
17009 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17010
17011         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17012
17013         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17014         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17015         (gst_pngenc_set_property):
17016         * ext/libpng/gstpngenc.h:
17017           Add compression level property (#163323).
17018
17019 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17020
17021         * configure.ac:
17022         * examples/capsfilter/capsfilter1.c: (main):
17023         * examples/seeking/spider_seek.c: (make_spider_pipeline):
17024         * ext/dvdread/Makefile.am:
17025         * ext/dvdread/demo-play:
17026         * ext/dvdread/demo-play.c:
17027         * gconf/gstreamer.schemas.in:
17028         * gst-libs/gst/gconf/gconf.c:
17029         * sys/v4l/TODO:
17030         * testsuite/Makefile.am:
17031         * testsuite/embed/Makefile.am:
17032         * testsuite/embed/embed.c: (cb_expose), (main):
17033           Remove all references to xvideosink, fix examples (#140845).
17034         * gst/playback/gstplaybasebin.c: (group_destroy):
17035           Apparently, disposal does not unlink - so do explicitely.
17036         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17037           Add debug.
17038
17039 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
17040
17041         * README: fix PKG_CONFIG_PATH instructions, what was there
17042         previously was breaking default search path, not nice. 
17043         Fixes #163358
17044
17045 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17046
17047         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17048         (gst_audioscale_chain):
17049           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17050           when resampling - how the ^@$^!@^! is this possible?!?
17051
17052 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17053
17054         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17055           Reset variables on READY.
17056         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17057         (gst_matroska_mux_loop):
17058           Require data before writing header.
17059
17060 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
17061
17062         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17063
17064         * ext/mad/gstmad.c: (gst_mad_chain):
17065           Don't call mad_stream_sync() directly after recovering sync.
17066           Fixes #151661.
17067
17068 2005-01-09  Martin Eikermann  <meiker@upb.de>
17069
17070         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17071
17072         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17073         (snapshot_handler), (gst_snapshot_sinkconnect),
17074         (gst_snapshot_chain):
17075           Allocate resources when required, fix recursive signal emission
17076           and fix caps. Fixes #161667.
17077
17078 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17079
17080         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17081
17082         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17083         (gst_pngdec_chain):
17084           Handle only 8-bppc (bits-per-pixel-component) images, better
17085           error handling and correct strides. Fixes #163177.
17086         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17087         (gst_pngenc_chain):
17088           Better error handling. Fixes #163348.
17089
17090 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17091
17092         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17093         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17094         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17095         (dvdnavsrc_uri_handler_init):
17096           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17097         * gst/playback/gstplaybasebin.c: (gen_source_element):
17098           Add MMS to streaming URIs.
17099
17100 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17101
17102         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17103         * sys/xvimage/xvimagesink.c:
17104         (gst_xvimagesink_navigation_send_event):
17105           Check for pad availability before sending event.
17106
17107 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17108
17109         * gst-plugins.spec.in:
17110           Add subparse.
17111
17112 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17113
17114         * configure.ac:
17115           Since we use functions from CVS, up requirement.
17116
17117 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17118
17119         * gst/playback/Makefile.am:
17120         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17121         (group_destroy), (group_commit), (group_is_muted),
17122         (gen_preroll_element), (add_stream), (unknown_type),
17123         (probe_triggered), (preroll_unlinked), (mute_stream),
17124         (silence_stream), (new_decoded_pad), (setup_substreams),
17125         (setup_source), (get_active_source), (mute_group_type),
17126         (muted_group_change_state), (set_active_source),
17127         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17128         (play_base_eos), (gst_play_base_bin_change_state):
17129         * gst/playback/gstplaybasebin.h:
17130         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17131         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17132         (gst_stream_info_dispose), (stream_info_mute_pad),
17133         (stream_info_change_state), (gst_stream_info_set_mute):
17134         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17135         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17136         (gst_stream_selector_init), (gst_stream_selector_dispose),
17137         (gst_stream_selector_get_linked_pad),
17138         (gst_stream_selector_get_caps), (gst_stream_selector_link),
17139         (gst_stream_selector_get_linked_pads),
17140         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17141         * gst/playback/gststreamselector.h:
17142           Adding stream selection support plus required properties for
17143           applications to use this. Fully fixes #100931.
17144
17145 2005-01-08  Benjamin Otte  <otte@gnome.org>
17146
17147         * gst/games/gstpuzzle.c: (nav_event_handler):
17148           - handle nav events differently: forward every event no matter if it
17149             was handled or not.
17150           - translate events
17151           You can now cheat by using navigationtest ! puzzle and moving the
17152           mouse close to the edge of a tile. ;)
17153
17154 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17155
17156         * configure.ac:
17157         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17158         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17159         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17160         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17161         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17162         (gst_ogm_parse_plugin_init):
17163         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17164         (gst_textoverlay_link), (gst_textoverlay_getcaps),
17165         (gst_textoverlay_event), (gst_textoverlay_video_chain),
17166         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17167         * ext/pango/gsttextoverlay.h:
17168         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17169         (gst_matroska_demux_handle_seek_event),
17170         (gst_matroska_demux_sync_streams),
17171         (gst_matroska_demux_parse_blockgroup),
17172         (gst_matroska_demux_subtitle_caps),
17173         (gst_matroska_demux_plugin_init):
17174         * gst/matroska/matroska-ids.h:
17175         * gst/playback/gstdecodebin.c: (close_pad_link):
17176         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17177         (gen_preroll_element), (remove_groups), (add_stream),
17178         (new_decoded_pad), (setup_subtitles), (gen_source_element),
17179         (setup_source):
17180         * gst/playback/gstplaybasebin.h:
17181         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17182         * gst/subparse/Makefile.am:
17183         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17184         (gst_subparse_base_init), (gst_subparse_class_init),
17185         (gst_subparse_init), (gst_subparse_formats),
17186         (gst_subparse_eventmask), (gst_subparse_event),
17187         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17188         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17189         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17190         (parse_mpsub_deinit), (parse_mpsub_init),
17191         (gst_subparse_buffer_format_autodetect),
17192         (gst_subparse_format_autodetect), (gst_subparse_loop),
17193         (gst_subparse_change_state), (gst_subparse_type_find),
17194         (plugin_init):
17195         * gst/subparse/gstsubparse.h:
17196         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17197         (plugin_init):
17198           Add subtitle support, .sub parser (supports SRT and MPsub),
17199           OGM text support, Matroska UTF-8 text support, deadlock fixes
17200           all over the place, subtitle awareness in decodebin/playbin
17201           and some fixes to textoverlay to handle subtitles in a stream
17202           correctly. Fixes #100931.
17203
17204 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17205
17206         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17207           Check for pad availability before doing a query on it.
17208
17209 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17210
17211         * ext/dv/gstdvdec.c:
17212           really fix bpp24/32 dvdec caps (classic rgba indeed)
17213         * gst/asfdemux/gstasfdemux.c:
17214         (gst_asf_demux_process_ext_content_desc):
17215           don't send text tags if they are empty (bis repetita)
17216
17217 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17218
17219         * ext/dv/gstdvdec.c:
17220          remove unneeded comment from dvdec
17221           (related to DV 4CC codes in AVI files)
17222           moved them in gstreamer/docs/random/mimetypes
17223         * gst/asfdemux/gstasfdemux.c:
17224         (gst_asf_demux_process_ext_content_desc):
17225          don't send text tags if they are empty
17226          fix mem leak on error path
17227         * gst/ffmpegcolorspace/avcodec.h:
17228         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17229         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17230         (gst_ffmpegcsp_avpicture_fill):
17231         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17232         * gst/ffmpegcolorspace/imgconvert_template.h:
17233          adds BGR32 and BGRA32 to ffmpegcolorspace
17234           (still bad colors, fixing it on next commit)
17235           helps with dvdec outputing BGR32
17236
17237 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17238
17239         * ext/dv/gstdvdec.c:
17240          Fix audio caps i just broke (missing ',')
17241         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17242         (gst_matroska_mux_reset):
17243          Fix typo + add FIXME about old "x-gst-metadata" crap
17244
17245 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17246
17247         * ext/dv/demo-play.c: (main):
17248          xvideosink -> xvimagesink
17249         * ext/dv/gstdvdec.c:
17250          change rgb 32/32 caps to 24/32 (no alpha)
17251          change nb of channels to be a list (2 or 4, not 2)
17252          change sample rate to be a list (32, 44.1, 48 kHz) not a range
17253         * gst/asfdemux/gstasfdemux.c:
17254         (gst_asf_demux_process_ext_content_desc):
17255          Add 'date/year' to extracted metadata list
17256
17257 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17258
17259         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17260           The return value of fixate_to does not imply that the requested
17261           value was set, so don't assume.
17262
17263 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
17264
17265         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17266
17267         * ext/libpng/gstpngdec.c:
17268         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17269         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17270         * ext/libpng/gstpngenc.h:
17271           Alpha support (encoder; #163161), mime fixage.
17272
17273 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
17274
17275         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17276
17277         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17278         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17279         (gst_faac_set_property), (gst_faac_get_property):
17280         * ext/faac/gstfaac.h:
17281           Allow for ADTS output (#153434).
17282
17283 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17284
17285         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17286           Fix against template (#150576).
17287
17288 2005-01-06  Benjamin Otte  <otte@gnome.org>
17289
17290         * gst/games/gstpuzzle.c: (draw_puzzle):
17291           don't draw a puzzle if either width or height of tiles would be 0.
17292
17293 2005-01-06  Benjamin Otte  <otte@gnome.org>
17294
17295         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17296         (gst_puzzle_class_init), (gst_puzzle_finalize):
17297           no memleaks, please
17298         (gst_puzzle_create), (gst_puzzle_init),
17299         (gst_puzzle_set_property), (gst_puzzle_setup):
17300           change initialization code around so we don't reshuffle on resize
17301         (draw_puzzle):
17302           fix another stupid typo
17303
17304 2005-01-06  Benjamin Otte  <otte@gnome.org>
17305
17306         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17307           fix stupid typo that borked copying on YUY2
17308
17309 2005-01-06  Benjamin Otte  <otte@gnome.org>
17310
17311         * gst/games/gstpuzzle.c: (draw_puzzle):
17312           fix edges when image sizes aren't multiples of tile sizes
17313
17314 2005-01-06  Benjamin Otte  <otte@gnome.org>
17315
17316         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17317           make RGB endianness work correctly
17318         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17319           refactor and fix race with initial shuffling
17320         (nav_event_handler):
17321           allow using the mouse to puzzle
17322         (draw_puzzle):
17323           insist on tiles having width and height as multiples of 4 to get
17324           clean YUV image handling
17325         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17326         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17327           s/DEBUG/LOG/ for common messages
17328         (gst_xvimagesink_navigation_send_event):
17329           fix mouse event translation to not include screen PAR
17330         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17331           fix mouse event translation to actually work
17332
17333 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17334
17335         * gst/asfdemux/gstasfdemux.c:
17336         (gst_asf_demux_process_ext_content_desc):
17337          Extract TrackNumber metadata + clean up code
17338         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17339          Hope this is the good fix (var used unitialised)
17340
17341 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17342
17343         * ext/faad/gstfaad.c: (gst_faad_chain):
17344           Only increment timestamp if it's valid. Fixes raw AAC streams.
17345
17346 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17347
17348         * configure.ac:
17349         * gst/games/Makefile.am:
17350         * gst/games/gstpuzzle.c:
17351           add a puzzle game with...
17352         * gst/games/gstvideoimage.c:
17353         * gst/games/gstvideoimage.h:
17354           ... full colorspace support (that includes YUV9 and RGB16)) stolen
17355           from videotestsrc and made into something that would be a nice
17356           library for a lot of other plugins.
17357
17358 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17359
17360         * configure.ac:
17361          don't compile faad plugin if a RC of 2.0 is found
17362          Fixes #155346 (and FC1 buildbot)
17363         * gst/asfdemux/gstasfdemux.c:
17364         (gst_asf_demux_process_ext_content_desc):
17365          try to make Solaris compiler happier
17366
17367 2005-01-06  Paul Jack  <pjack@sfaf.org>
17368
17369         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17370
17371         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17372           Fix segfault (#161667).
17373
17374 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17375
17376         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17377           Fix framerate reporting.
17378
17379 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17380
17381         * gst-libs/gst/riff/riff-ids.h:
17382         * gst/wavenc/riff.h:
17383          Add AMR (VBR and CBR) ids to riff.h audio codec list
17384         * gst/asfdemux/gstasfdemux.c:
17385         (gst_asf_demux_process_ext_content_desc),
17386         (gst_asf_demux_process_object):
17387           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17388
17389 2005-01-05  Martin Eikermann  <meiker@upb.de>
17390
17391         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17392
17393         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17394         (gst_dvd_demux_handle_discont):
17395         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17396         (gst_mpeg_demux_handle_discont):
17397           Recreate pads on new-media (#160730).
17398         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17399           Send discont even if manager changes timestamps (#161929).
17400
17401 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
17402
17403         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17404
17405         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17406           Fix invalid memory access (#159211).
17407
17408 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17409
17410         * examples/gstplay/player.c: (main):
17411           Don't iterate.
17412         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
17413           Add visualizations.
17414         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17415         (gst_a52dec_handle_frame):
17416           Set duration.
17417         * ext/dvdnav/gst-dvd:
17418           Add audioconvert. Fixes #161325.
17419         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
17420           Explicitely case to gint64. Possible valgrind error.
17421         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
17422         (gst_play_tick_callback), (gst_play_change_state),
17423         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
17424         (gst_play_set_location), (gst_play_get_location),
17425         (gst_play_seek_to_time), (gst_play_set_data_src),
17426         (gst_play_set_video_sink), (gst_play_set_audio_sink),
17427         (gst_play_set_visualization), (gst_play_connect_visualization),
17428         (gst_play_get_framerate), (gst_play_get_all_by_interface),
17429         (gst_play_new):
17430           Use playbin. Fixes #139749 and #147744.
17431         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
17432           Add genre tag.
17433         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
17434         (audioscale_get_type), (gst_audioscale_base_init),
17435         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
17436         (gst_audioscale_getcaps), (gst_audioscale_fixate),
17437         (gst_audioscale_link), (gst_audioscale_get_buffer),
17438         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
17439         (gst_audioscale_init), (gst_audioscale_dispose),
17440         (gst_audioscale_chain), (gst_audioscale_set_property),
17441         (gst_audioscale_get_property), (plugin_init):
17442           Indent properly.
17443         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
17444           Fix LPCM.
17445         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
17446         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
17447         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
17448           Add more metadata (fixes #162656).
17449
17450 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17451
17452         * configure.ac:
17453           back to cvs
17454
17455 === release 0.8.7 ===
17456
17457 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17458
17459         * NEWS:
17460         * RELEASE:
17461         * configure.ac:
17462           releasing 0.8.7, "Hyperspace"
17463
17464 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17465
17466         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
17467
17468         * gst/playback/gstplaybasebin.c:
17469          Fix for #162924 - free caps after use, not before
17470
17471 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
17472
17473         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17474
17475         * gst/playback/gstplaybasebin.c:
17476         * gst/wavparse/gstwavparse.c:
17477           Fix for #154773 - fixes playback of small .wav files
17478
17479 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17480
17481         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17482
17483         * gst/audioscale/gstaudioscale.c:
17484           Fix for #162819 - make audioscale reusable
17485           Fixes playback of more than one file with playbin/totem
17486
17487 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17488
17489         * gst/ffmpegcolorspace/avcodec.h:
17490         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17491         * gst/ffmpegcolorspace/imgconvert.c:
17492           clean up the mess that made me cry and avoid needless duplication
17493
17494 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17495
17496         * gst/ffmpegcolorspace/imgconvert.c:
17497           give some indication of why we're segfaulting
17498
17499 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17500
17501         * configure.ac:
17502           Fix indentation, fix v4l2 plugin detection.
17503         * ext/Makefile.am:
17504           Fix libmms location (Maciej, use diff -u!).
17505         * ext/alsa/gstalsa.c: (gst_alsa_init):
17506           Initialize caps cache to NULL.
17507         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
17508           Only change state on audiosink if it exists.
17509
17510 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
17511
17512         * gst/matroska/matroska-demux.c:
17513         * gst/matroska/matroska-ids.h:
17514         * gst/matroska/matroska-demux.h:
17515         Fix Vorbis streams failing to decode in some files, where cluster_time
17516         isn't 0, because then it doesn't send codec_priv before actual data.
17517         Remove time-based test and replace it with marker set on beginning of
17518         new stream
17519
17520 2004-12-28  David Schleef  <ds@schleef.org>
17521
17522         Merge patch from Ronald fixing problems with streaming
17523         text.
17524         * ext/cairo/gstcairo.c: (plugin_init):
17525         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17526         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17527         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17528         (gst_textoverlay_font_init), (gst_textoverlay_init),
17529         (gst_textoverlay_set_property):
17530         * ext/cairo/gsttextoverlay.h:
17531
17532 2004-12-27  David Schleef  <ds@schleef.org>
17533
17534         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17535         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17536         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17537         (gst_textoverlay_font_init), (gst_textoverlay_init),
17538         (gst_textoverlay_set_property): Improvements to actually
17539         render text as white on black outline on video, including
17540         font selection and horizontal/vertical alignment.  (Ronald's
17541         christmas present)
17542         * ext/cairo/gsttextoverlay.h:
17543
17544 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17545
17546         * ext/ogg/gstogg.c:
17547         * ext/ogg/gstogmparse.c:
17548           fix ogm[audio/video]parse plugin registration
17549           (riff won't load if bytestream is already loaded)
17550
17551 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17552
17553         * gst/audioconvert/gstchannelmix.c:
17554           fix for GLIB < 2.4
17555
17556 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17557
17558         * Makefile.am:
17559         * configure.ac:
17560           disable docs again until it actually passes make distcheck.
17561
17562 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17563
17564         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
17565         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17566         (plugin_init):
17567           Add 3GP (variables name Q3GP because they can't start with a
17568           number). Add samr audio fourcc (used in .3gp files), decoder
17569           is work in progress. Also do a GST_WARNING instead of ERROR
17570           in case of unknown nodes, to decrease output.
17571
17572 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17573
17574         * Makefile.am:
17575           really fix dist
17576
17577 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17578
17579         * configure.ac:
17580         * ext/speex/gstspeexdec.h:
17581         * ext/speex/gstspeexenc.h:
17582           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
17583           Fix detection code in configure.ac
17584
17585 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17586
17587         * gst/matroska/matroska-demux.c:
17588         (gst_matroska_demux_parse_blockgroup):
17589           Save position, so that queries give proper return values. Don't
17590           know how this could ever have worked before...
17591
17592 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17593
17594         * configure.ac:
17595           Put additional LAME check inside the conditional.  Fixes #152339
17596
17597 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17598
17599         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17600         (gst_avi_demux_stream_scan):
17601           Add some more debug. Fix logic error when setting movi offset
17602           while reading index.
17603
17604 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17605
17606         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17607         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
17608         (gst_avi_demux_process_next_entry):
17609           Add some debugging. Better detection of broken indexes and the
17610           accompanying index recovery. No infinite loops on state changes
17611           when we're still in our loopfunction.
17612
17613 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17614
17615         * configure.ac:
17616           Fix up.
17617
17618 2004-12-22  Archana Shah  <archana.shah@wipro.com>
17619
17620         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17621
17622         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
17623           Normalizing the value before setting
17624         (gst_sunaudiomixer_get_volume):
17625           Normalizing the value after getting. Fixes bug# 161980
17626
17627 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
17628
17629         * Makefile.am: Make sure docs gets disted
17630         * docs/Makefile.am: Make sure all needed files get disted
17631         * gst-plugins.spec.in: latest updates
17632
17633 2004-12-22  Wim Taymans  <wim@fluendo.com>
17634
17635         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
17636         Revert patch 1.38 as clock distribution over schedulers does
17637         not work correcly in the core yet.
17638
17639 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17640
17641         * sys/oss/README: remove this file, which predates my birth
17642           (and which content is by far outdated)
17643
17644 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
17645
17646         * Makefile.am:
17647         * configure.ac:
17648         * docs/Makefile.am:
17649         * docs/libs/Makefile.am:
17650         * docs/libs/gst-plugins-libs-docs.sgml:
17651         * docs/libs/gst-plugins-libs-sections.txt:
17652         * docs/libs/tmpl/gstgconf.sgml:
17653         * docs/upload.mak:
17654         * docs/version.entities.in:
17655           Added boilerplate gtk-doc files for plugin-libs documentation.
17656
17657 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17658
17659         * gst/auparse/gstauparse.c: fix int and float audio caps
17660
17661 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17662
17663         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17664         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
17665           g_assert() can be a macro, don't use #ifdef inside it.
17666
17667 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
17668
17669         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17670
17671         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
17672         (gst_videorate_init), (gst_videorate_chain),
17673         (gst_videorate_change_state):
17674           Event handling (fixes #159986).
17675
17676 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17677
17678         * gst-libs/gst/riff/riff-media.c:
17679         (gst_riff_create_video_caps_with_data):
17680           Add BLZ0 (Blizzard's version of DivX) fourcc.
17681
17682 2004-12-18  David Schleef  <ds@schleef.org>
17683
17684         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
17685         portability fix.
17686
17687 2004-12-18  David Schleef  <ds@schleef.org>
17688
17689         * gst/tta/ttadec.h: Disable some header code that isn't used
17690         and clearly isn't portable.
17691
17692 2004-12-18  David Schleef  <ds@schleef.org>
17693
17694         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
17695         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
17696         (avcodec_get_pix_fmt), (avpicture_layout),
17697         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
17698         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
17699         Fix code to not use GCC extensions (and c99 extensions that
17700         Forte does not like.)
17701
17702 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
17703
17704         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17705
17706         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
17707         (gst_deinterlace_chain):
17708           Rowstride fixes. Fixes #161039.
17709         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
17710         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
17711         (gst_video_crop_getcaps), (gst_video_crop_link),
17712         (gst_video_crop_i420), (gst_video_crop_chain),
17713         (gst_video_crop_change_state):
17714           Rework of negotiation. Actually works now. Fixes #158650.
17715
17716 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17717
17718         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
17719           That was very stupid.
17720
17721 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17722
17723         * gst/matroska/matroska-demux.c:
17724         (gst_matroska_demux_parse_blockgroup):
17725           Fix possible crasher.
17726
17727 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17728
17729         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
17730         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
17731           Lace sizes can be zero.
17732
17733 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17734
17735         * ext/musepack/gstmusepackdec.cpp:
17736           Fetch error return values. Fixes #161624.
17737         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17738           Really EOS.
17739
17740 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17741
17742         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
17743           Work for truncated (unfinished download etc.) files. Fixes #160514.
17744
17745 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17746
17747         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17748           Fix for integer overflow. Makes #156001 not crash. Probably masks
17749           the real bug.
17750
17751 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17752
17753         * gst/ac3parse/gstac3parse.c: (plugin_init):
17754           Parsers never have ranks. Fixes #159651.
17755
17756 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17757
17758         * gst/playback/gstdecodebin.c: (compare_ranks):
17759           make sure the facotries are ordered the same every time even if they
17760           have the same rank by using the name
17761         * gst/playback/gstdecodebin.c: (find_compatibles):
17762           make sure we don't add factories to the list twice
17763
17764 2004-12-16  David Schleef  <ds@schleef.org>
17765
17766         * configure.ac: look for musepack headers as musepack/*.h
17767         (fixes #159847)
17768         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
17769         * ext/musepack/gstmusepackreader.h: same
17770
17771 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17772
17773         * gst-libs/gst/riff/riff-read.c:
17774         (gst_riff_read_strf_auds_with_data):
17775           Read extradata correctly (fixes #155879).
17776
17777 2004-12-16  David Schleef  <ds@schleef.org>
17778
17779         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
17780         audio.  does _not_ attempt or allow conversion unless channels
17781         is 1 or 2.
17782
17783 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
17784
17785         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
17786
17787 2004-12-16  David Schleef  <ds@schleef.org>
17788
17789         * gst/audioscale/gstaudioscale.c: the resample library only
17790         handles 1 or 2 channels.  Change caps to compensate.
17791
17792 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17793
17794         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
17795         (gst_matroska_demux_audio_caps):
17796           Some MPEG-AAC hacks, because else it doesn't work...
17797
17798 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17799
17800         * gst-libs/gst/riff/riff-media.c:
17801         (gst_riff_create_video_caps_with_data),
17802         (gst_riff_create_video_template_caps):
17803           Add h264.
17804
17805 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17806
17807         * gst-libs/gst/audio/Makefile.am:
17808           Try to fix buildbot.
17809
17810 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17811
17812         * gst/tcp/gstmultifdsink.c:
17813           Clean up and uniformize debugging.
17814
17815 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
17816
17817         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17818
17819         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17820         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
17821         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
17822         (gst_mpeg_demux_change_state):
17823           Reset on ready. Fixes 160276.
17824
17825 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
17826
17827         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17828
17829         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17830         (gst_ffmpegcsp_pad_link):
17831           Fix memleak (#154815).
17832
17833 2004-12-16  James Bowes  <bowes@cs.dal.ca>
17834
17835         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17836
17837         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
17838         (gst_musicbrainz_init), (gst_musicbrainz_chain),
17839         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
17840         * ext/musicbrainz/gsttrm.h:
17841           Add support for using a proxy server when getting a trm id from
17842           the MusicBrainz database (#149613).
17843
17844 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
17845
17846         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17847
17848         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
17849         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
17850           Fix memleaks (#157233).
17851
17852 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
17853
17854         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17855
17856         * gst-libs/gst/resample/resample.c: (gst_resample_close):
17857         * gst-libs/gst/resample/resample.h:
17858         * gst/audioscale/gstaudioscale.c:
17859           Fix memleak (#159215).
17860
17861 2004-12-16  Toni Willberg  <toniw@iki.fi>
17862
17863         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17864
17865         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
17866         * sys/oss/oss_probe.c: (main):
17867           Check for mono/stereo support (similar to samplerate probing),
17868           fixes #159433. Also add missing copyright header to oss_probe.c.
17869
17870 2004-12-15  David Schleef  <ds@schleef.org>
17871
17872         * configure.ac: add audioresample and cairo plugins.  Remove
17873         HAVE_MMX stuff, because it's not used.
17874         * ext/Makefile.am: same
17875         * ext/audioresample/Makefile.am: You are not ready for an
17876         audio resampling element based on audioresample.
17877         * ext/audioresample/gstaudioresample.c:
17878         * ext/audioresample/gstaudioresample.h:
17879         * ext/cairo/Makefile.am: You are not ready for overlay elements
17880         based on cairo.  Don't look too closely, these elements kinda
17881         suck right now.
17882         * ext/cairo/gstcairo.c: new
17883         * ext/cairo/gsttextoverlay.c: new
17884         * ext/cairo/gsttextoverlay.h: new
17885         * ext/cairo/gsttimeoverlay.c: new
17886         * ext/cairo/gsttimeoverlay.h: new
17887         * gst-libs/gst/media-info/media-info-priv.h: fix compile
17888         problem with compilers that don't support variadic macros.
17889
17890 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
17891
17892         Reviewed by:  David Schleef  <ds@schleef.org>
17893
17894         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
17895         Bala, registering sunaudiosrc (oops!), and cleaning up code a
17896         bit.  Also ran indent-gst.
17897         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
17898         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
17899         (gst_sunaudiosrc_setparams):
17900
17901 2004-12-14  David Schleef  <ds@schleef.org>
17902
17903         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
17904         output rate to 16000.  Should fix #160235.
17905
17906 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17907
17908         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
17909         Add typefinding for mpeg2 pes streams
17910
17911 2004-12-13  David Schleef  <ds@schleef.org>
17912
17913         * configure.ac:  Applied patch from bug #143659, making default
17914         sources and sinks OS-dependent (for Solaris), and added code
17915         for OS/X.
17916         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
17917
17918 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17919
17920         * gst-libs/gst/riff/riff-media.c:
17921           forgot to add h2.64 to avidemux template caps
17922
17923 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17924
17925         * gst/wavenc/riff.h:
17926         * gst-libs/gst/riff/riff-media.c:
17927         * gst-libs/gst/riff/riff-ids.h:
17928         * gst/avi/gstavimux.c
17929         add 4CC code for VideoSoft h264 in AVI (VSSH)
17930           fixes bug #160655
17931         remove s323 from riff, it's quicktime specific :(
17932
17933 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17934
17935         * gst/asfdemux/README
17936         * gst/wavenc/riff.h
17937         * gst-libs/gst/riff/riff-ids.h
17938         * gst-libs/gst/riff/riff-media.c
17939         * gst/qtdemux/qtdemux.c:
17940           add new 4CC codes for h263 related codecs
17941           fixes partially bug #155163
17942
17943 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
17944
17945         * configure.ac: Update polyaudio requirement to 0.7
17946         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
17947
17948 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17949
17950         * gst/interleave/deinterleave.c:
17951         fix my name's spelling! :)
17952
17953 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17954
17955         * AUTHORS ChangeLog
17956         * gst/auparse/gstauparse.c
17957         * gst/interleave/deinterleave.c
17958         * gst/law/:
17959                 alaw-decode.c alaw-encode.c
17960                 mulaw-decode.c mulaw-encode.c
17961         * gst/oneton/gstoneton.c
17962         * sys/osxaudio/:
17963                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
17964         * sys/osxvideo/:
17965                 cocoawindow.h cocoawindow.m
17966                 osxvideosink.h osxvideosink.m
17967
17968         put the same mail address for Zaheer Abbas Merali everywhere
17969
17970 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17971
17972         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
17973           Align by packetsize, and assert that we a packet available before
17974           playing. The first makes webstreams work (they often include
17975           trailing padding data in a packet), the second allows pausing a
17976           ASF stream in totem without getting demux errors afterwards.
17977
17978 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17979
17980         * ext/ogg/gstoggdemux.c: (get_relative):
17981           Check for non-NULL before accessing member (end-of-chain).
17982
17983 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17984
17985         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
17986         (cdparanoia_set_property), (cdparanoia_get_property):
17987         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
17988         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
17989         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
17990         (dvdreadsrc_init), (dvdreadsrc_set_property),
17991         (dvdreadsrc_get_property):
17992         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
17993         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
17994           Synchronize property names where not yet the case. Devices are
17995           now device=X, other versions are deprecated (but still exist).
17996           Also use g_free() unconditionally.
17997         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17998         (setup_source), (gst_play_base_bin_get_property):
17999           Expose source.
18000
18001 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18002
18003         * configure.ac: move GCONF macro outside conditional for the am
18004           conditional. Fixes #160439
18005
18006 2004-12-08  David Schleef  <ds@schleef.org>
18007
18008         * tools/gst-visualise-m.m: Switch to elements that currently
18009         exist.
18010
18011 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18012
18013         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18014           We love wrong commas.
18015
18016 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18017
18018         * gst/matroska/matroska-demux.c:
18019         (gst_matroska_demux_handle_src_query):
18020           Don't set DEFAULT, unsupported - makes length display incorrectly
18021           in some cases.
18022
18023 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18024
18025         * gst/monoscope/README: remove blurb about files being GPL
18026         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18027         * gst/monoscope/monoscope.c: Change license to BSD with explanation
18028           monoscope is now effectively LGPL licensed
18029
18030 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18031
18032         * gst/monoscope/README: Update information to be more correct
18033         * gst/monoscope/convolve.c: Relicense to LGPL
18034         * gst/monoscope/convolve.h: Relicense to LGPL
18035
18036 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
18037
18038         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18039           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18040         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18041           set default_duration for mpeg1 audio
18042
18043 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18044
18045         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18046         * ext/alsa/gstalsa.h:
18047           refactor big chunks of the core caps negotiation code to make it
18048           a lot faster, because people claim it's really slow
18049           (actually, just cache the getcaps when the device is opened)
18050
18051 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18052
18053         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18054         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18055         (gst_a52dec_handle_frame), (gst_a52dec_chain),
18056         (gst_a52dec_change_state), (plugin_init):
18057         * ext/a52dec/gsta52dec.h:
18058           Do something useful with timestamps. Make chain-based (since
18059           there's really no reason to be loopbased).
18060         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18061           Update current_byte/frame correctly.
18062
18063 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18064
18065         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18066         (gst_ape_demux_stream_init):
18067           Forward tags, too.
18068
18069 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18070
18071         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18072           Let's make sure we're done typefinding when detecting tags.
18073
18074 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18075
18076         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18077         (gst_ebml_read_init), (gst_ebml_read_use_event),
18078         (gst_ebml_read_element_id), (gst_ebml_peek_id),
18079         (gst_ebml_read_seek), (gst_ebml_read_skip),
18080         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18081         (gst_ebml_read_master):
18082         * gst/matroska/ebml-read.h:
18083         * gst/matroska/matroska-demux.c:
18084         (gst_matroska_demux_parse_contents),
18085         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18086           Disgustingly evil hack for working around INTERRUPT events and
18087           their extremely annoying habit of being a pain in the ass. We
18088           simply peek a cluster before reading any of it.
18089
18090 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18091
18092         * ext/musepack/gstmusepackdec.cpp:
18093           There's also floating point libmusepacks.
18094
18095 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18096
18097         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18098         (gst_faad_chanpos_to_gst), (gst_faad_chain):
18099           Set DURATION even if source buffer didn't. Also use increasing
18100           timestamps.
18101         * gst-libs/gst/riff/riff-media.c:
18102         (gst_riff_create_audio_caps_with_data):
18103           Block_align can have larger values than 8192.
18104
18105 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18106
18107         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18108         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18109         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18110         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18111           Fix caps.
18112
18113 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18114
18115         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18116           Fix logic bug.
18117
18118 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18119
18120         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18121           Yay, another one.
18122
18123 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18124
18125         * ext/esd/esdsink.c: (gst_esdsink_chain):
18126           Make error actually say something useful (fixes #156798).
18127         * gst-libs/gst/riff/riff-media.c:
18128         (gst_riff_create_video_caps_with_data),
18129         (gst_riff_create_video_template_caps):
18130           Add Intel Video 5.0 fourcc (IV50).
18131
18132 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
18133
18134         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18135         detection on mono and stereo mp3 files.
18136
18137 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18138
18139         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18140           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18141           the contained stream).
18142
18143 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18144
18145         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18146           Oops, remove debug.
18147
18148 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18149
18150         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18151
18152         * gst/law/alaw-decode.c: (alawdec_getcaps):
18153         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18154           Prevent warnings when negotiating caps (fixes #159338).
18155
18156 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18157
18158         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18159         (gst_ffmpegcsp_chain):
18160           Remove old leftover that shouldn't be there...
18161
18162 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18163
18164         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18165
18166         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18167           Don't forward DISCONT events (fixes #159684).
18168
18169 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18170
18171         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18172           Unlink manually since sometimes bin disposal (and therefore
18173           pad unlinking) is delayed, which will cause a new media file
18174           to not be able to start playing instantly.
18175
18176 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18177
18178         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18179           On mute of an unlinked stream, check for pad availability so
18180           we don't crash on unlinked pad.
18181
18182 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18183
18184         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18185         (gst_avi_demux_massage_index):
18186           Fix quite humiliating bug in omitting 0-sized index chunks but
18187           forgetting to count them for timestamps.
18188
18189 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18190
18191         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18192           Actually leave the loop if we failed to sync. Don't crash.
18193
18194 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18195
18196         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18197         (gst_dvd_demux_process_private):
18198         * gst/mpegstream/gstdvddemux.h:
18199           Fix crash (#159759). Doesn't work, though. :-(.
18200
18201 2004-11-28  Benjamin Otte  <otte@gnome.org>
18202
18203         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18204           more overwriting protection due to modifying channels one by one
18205           instead of all at once
18206
18207 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18208
18209         * gst/audioconvert/gstchannelmix.c:
18210         (gst_audio_convert_fill_normalize):
18211           Normalize using absolute values.
18212
18213 2004-11-28  Julien MOUTTE  <julien@moutte.net>
18214
18215         * configure.ac:
18216         * ext/Makefile.am:
18217         * ext/directfb/Makefile.am:
18218         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18219         (gst_directfbvideosink_get_pixel_format),
18220         (gst_directfbvideosink_get_format_from_fourcc),
18221         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18222         (gst_directfbvideosink_sink_link),
18223         (gst_directfbvideosink_change_state),
18224         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18225         (gst_directfbvideosink_buffer_alloc),
18226         (gst_directfbvideosink_interface_supported),
18227         (gst_directfbvideosink_interface_init),
18228         (gst_directfbvideosink_navigation_send_event),
18229         (gst_directfbvideosink_navigation_init),
18230         (gst_directfbvideosink_set_property),
18231         (gst_directfbvideosink_get_property),
18232         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18233         (gst_directfbvideosink_base_init),
18234         (gst_directfbvideosink_class_init),
18235         (gst_directfbvideosink_get_type), (plugin_init):
18236         * ext/directfb/directfbvideosink.h: Adding a first version of
18237         directfbvideosink.
18238         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18239         more.
18240
18241 2004-11-28  Benjamin Otte  <otte@gnome.org>
18242
18243         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18244           walk the samples backwards if out_channels > in_channels so we don't
18245           overwrite data
18246
18247 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18248
18249         * gst/audioconvert/Makefile.am:
18250         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18251         (gst_audio_convert_link), (gst_audio_convert_change_state),
18252         (gst_audio_convert_channels):
18253         * gst/audioconvert/gstchannelmix.c:
18254         (gst_audio_convert_unset_matrix),
18255         (gst_audio_convert_fill_identical),
18256         (gst_audio_convert_fill_compatible),
18257         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18258         (gst_audio_convert_fill_others),
18259         (gst_audio_convert_fill_normalize),
18260         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18261         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18262         * gst/audioconvert/gstchannelmix.h:
18263           Implement a channel mixer.
18264
18265 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
18266
18267         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18268         * ext/alsa/gstalsa.h:
18269         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18270         Make alsasink actually honor gst_element_set_clock and use that
18271         clock instead of its internal one.
18272
18273 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18274
18275         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18276         (gst_play_base_bin_change_state): nullify source and decoder when
18277         going from READY to NULL so that we don't try to do weird stuff with
18278         them when going from NULL to READY
18279         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18280         instead of g_object_unref
18281         (gen_video_element), (gen_audio_element): more refcounting fixes, now
18282         it should be correct
18283         (gst_play_bin_change_state): don't call remove_sinks if we are
18284         currently disposing the object
18285
18286 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18287
18288         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18289           Don't forget bass if it's there. Else left channel is silent...
18290
18291 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18292
18293         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18294         (gst_a52dec_change_state):
18295           Don't do sample adjusting anymore, we use float audio now.
18296         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18297           Don't fixate to non-existing properties.
18298
18299 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18300
18301         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18302         (gst_a52dec_change_state):
18303           Advertise that we can do surround sound.
18304
18305 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18306
18307         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18308           Add buffer-frames=0.
18309         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18310         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18311         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18312         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18313         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18314         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18315         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18316         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18317         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18318         * ext/dvdread/dvdreadsrc.h:
18319           Add seeking, querying for bytes, sectors, title, angle and
18320           chapter. Handle multiple chapters. Relicense to LGPL because
18321           Billy agreed on that (thanks Billy!).
18322
18323 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18324
18325         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18326         call parent dispose method
18327
18328 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
18329
18330         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18331         (gst_audio_clock_get_internal_time):
18332         Fix active <-> inactive transitions: ensure time value always
18333         grows and avoid abrupt value changes.
18334
18335 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
18336
18337         * configure.ac:
18338         * gst/tta/Makefile.am:
18339         * gst/tta/crc32.h:
18340         * gst/tta/filters.h:
18341         * gst/tta/gsttta.c:
18342         * gst/tta/gstttadec.c:
18343         * gst/tta/gstttadec.h:
18344         * gst/tta/gstttaparse.c:
18345         * gst/tta/gstttaparse.h:
18346         * gst/tta/ttadec.h:
18347           added TTA parser and decoder
18348
18349 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18350
18351         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18352         (probe_triggered), (check_queue), (buffer_underrun),
18353         (buffer_running), (buffer_overrun), (gen_source_element),
18354         (setup_source):
18355         * gst/playback/gstplaybasebin.h:
18356           Implement buffering. Needs some more work.
18357
18358 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18359
18360         * ext/theora/theoradec.c: (theora_dec_chain):
18361           Fix ilog mask range overflow.
18362
18363 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18364
18365         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18366           Don't omit the last (which in case of dmix is the only :) )
18367           channel count. Don't set channels if <= 2.
18368
18369 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
18370
18371         * gst/playback/gstplaybin.c: (gen_video_element),
18372         (gen_audio_element): Removed 2 obsolete comments
18373
18374 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18375
18376         * ext/vorbis/oggvorbisenc.c
18377         * ext/vorbis/vorbisenc.c :
18378           change description fields of those plugins to differentiate them
18379           (pitivi show Encoders by description, they had the same one)
18380
18381 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
18382
18383         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18384
18385         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18386         (gst_play_bin_set_property), (gen_video_element),
18387         (gen_audio_element):
18388           Refcounting fixes for provided audio-/videosinks.
18389
18390 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18391
18392         * gst/playback/gstplaybin.c: (gen_video_element),
18393         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18394           Don't reference all sinks, but only the video- and audiosinks.
18395           The vis. element should be disposed when we're done with it.
18396           We don't have any reason to keep it around. This fixes warnings
18397           when reusing playbin for playing multiple audio files with
18398           vis. enabled. Also release audio device on pause - idea stolen
18399           from Rhythmbox.
18400
18401 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18402
18403         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18404         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18405         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18406         * ext/alsa/gstalsaplugin.c: (plugin_init):
18407         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18408         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18409         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
18410         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
18411         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
18412         (gst_faad_change_state), (plugin_init):
18413         * ext/faad/gstfaad.h:
18414         * ext/vorbis/vorbis.c: (plugin_init):
18415         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18416         * gst-libs/gst/audio/Makefile.am:
18417         * gst-libs/gst/audio/audio.c: (plugin_init):
18418         * gst-libs/gst/audio/multichannel.c:
18419         (gst_audio_check_channel_positions),
18420         (gst_audio_get_channel_positions),
18421         (gst_audio_set_channel_positions),
18422         (gst_audio_set_structure_channel_positions_list),
18423         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
18424         (gst_audio_fixate_channel_positions):
18425         * gst-libs/gst/audio/multichannel.h:
18426         * gst-libs/gst/audio/testchannels.c: (main):
18427         * gst/audioconvert/gstaudioconvert.c:
18428         (gst_audio_convert_class_init), (gst_audio_convert_init),
18429         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
18430         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
18431         (gst_audio_convert_fixate), (gst_audio_convert_channels):
18432         * gst/audioconvert/plugin.c: (plugin_init):
18433           Surround sound support.
18434
18435 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18436
18437         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18438           Fix position for discont if we're close as well. Nitpicking, but
18439           saves a few milliseconds of extra waiting or skipping.
18440
18441 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18442
18443         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
18444           We sometimes need parsers for playback, so add those too.
18445
18446 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18447
18448         * configure.ac:
18449         * gst/apetag/Makefile.am:
18450         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
18451         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
18452         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
18453         (gst_ape_demux_get_src_query_types),
18454         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
18455         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
18456         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
18457         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
18458         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
18459         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
18460         (gst_ape_demux_change_state):
18461         * gst/apetag/apedemux.h:
18462         * gst/apetag/apetag.c: (plugin_init):
18463         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
18464         (plugin_init):
18465           APE v1/2 tag reader plus typefind function.
18466
18467 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18468
18469         * configure.ac:
18470         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18471         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18472           Remove hacks for older core. Require newer core version
18473           accordingly.
18474
18475 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18476
18477         * gst/cdxaparse/Makefile.am:
18478         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
18479         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
18480         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
18481         * gst/cdxaparse/gstcdxaparse.h:
18482         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
18483         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
18484         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
18485         (gst_cdxastrip_get_src_query_types),
18486         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
18487         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
18488         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
18489         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
18490         * gst/cdxaparse/gstcdxastrip.h:
18491           SVCD/VCD header stripping separated from CDXA image parsing.
18492         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
18493         (plugin_init):
18494           Add VCD/SVCD header typefinding for VCD/SVCD.
18495         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
18496         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
18497         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
18498         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
18499         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
18500         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
18501         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
18502         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
18503         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
18504         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
18505         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
18506         * sys/vcd/vcdsrc.h:
18507           Fix up, add seeking, querying, URI interface. Works in totem now.
18508
18509 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18510
18511         * configure.ac:
18512           back to CVS
18513
18514 === release 0.8.6 ===
18515
18516 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18517
18518         * NEWS:
18519         * RELEASE:
18520         * configure.ac:
18521         * po/af.po:
18522         * po/az.po:
18523         * po/cs.po:
18524         * po/en_GB.po:
18525         * po/hu.po:
18526         * po/it.po:
18527         * po/nb.po:
18528         * po/nl.po:
18529         * po/or.po:
18530         * po/sq.po:
18531         * po/sr.po:
18532         * po/sv.po:
18533         * po/uk.po:
18534           releasing 0.8.6, "IOU Love"
18535
18536 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18537
18538         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18539
18540         * gst/playback/gstplaybasebin.c:
18541           Fix unplayable files error handling.  Fixes #158365
18542
18543 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18544
18545         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18546
18547         * gst/typefind/gsttypefindfunctions.c:
18548           Fix broken mp3 typefinding.  Fixes #158375
18549
18550 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18551
18552         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18553
18554         * ext/ogg/gstoggdemux.c:
18555           Fix sync on broken files.  Fixes #158976
18556
18557 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18558
18559         patch by: Edward Hervey <bilboed@bilboed.com>
18560
18561         * ext/libpng/gstpngenc.c:
18562           Copy over buffer properties.  Fixes #158832
18563
18564 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18565
18566         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18567
18568         * ext/dvdread/dvdreadsrc.c:
18569           Fixes invalid reads (#158462)
18570
18571 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18572
18573         * sys/v4l/gstv4lsrc.c:
18574         * sys/v4l/gstv4lsrc.h:
18575         * sys/v4l/v4lsrc_calls.c:
18576           Probe less and cache it.  Fixes #159187.
18577
18578 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18579
18580         * gst/videorate/gstvideorate.c:
18581           Handle all video formats. Fixes #159186.
18582
18583 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
18584         * gst/synaesthesia/gstsynaesthesia.c:
18585         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
18586         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
18587         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
18588         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
18589         (gst_synaesthesia_change_state), (plugin_init):
18590         Fix up synaesthesia to work under different samplerates/ buffer sizes.
18591         Force 320x200 output, as that's the only thing the underlying
18592         synaesthesia implementation supports. Still needs to be made
18593         re-entrant.
18594
18595 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18596
18597         * configure.ac:
18598           Fix mpeg2enc configure check (similar to mplex check below).
18599
18600 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
18601
18602         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18603
18604         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18605           Fix for gcc-2.95 (fixes #158221).
18606
18607 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18608
18609         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18610           Re-add clock distribution hack (until new core is released).
18611           Fixes #158125.
18612
18613 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
18614         * configure.ac:
18615           fix mplex configure check segfaulting on some systems (bug #140994)
18616
18617 2004-11-13  Benjamin Otte  <otte@gnome.org>
18618
18619         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
18620           add debugging
18621         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18622           do a wait when we enter the loop func with no data available to
18623           write instead of getting into an 100% CPU loop by just returning and
18624           being called again by the scheduler
18625
18626 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
18627
18628         * configure.ac:
18629         * ext/libvisual/visual.c: (gst_visual_get_type),
18630         (libvisual_log_handler), (gst_visual_getcaps),
18631         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
18632         (plugin_init):
18633           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
18634         * ext/smoothwave/Makefile.am:
18635         * ext/smoothwave/demo-osssrc.c: (main):
18636         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
18637         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
18638         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
18639         (plugin_init):
18640         * ext/smoothwave/gstsmoothwave.h:
18641           Make gstsmoothwave a working element in the 20th century.
18642
18643         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
18644           Fix incorrect link function
18645
18646 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18647
18648         * gst/volume/gstvolume.c:
18649           Allow buffer-frames=0.
18650
18651 2004-11-12 Iain <iaingnome@gmail.com>
18652
18653         * configure.ac: Check for polypaudio
18654
18655         * ext/Makefile.am: Build the polyp dir
18656
18657         * ext/polyp: The polypsink sources.
18658
18659 2004-10-30 Iain <iaingnome@gmail.com>
18660
18661         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
18662         caps to reflect the new number of channels.
18663
18664 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18665
18666         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18667           Fix for negotiation order problem. This would show when the
18668           ALSA loopfuction was called before any other function. ALSA
18669           wouldn't do anything because we're not negotiated yet, leading
18670           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
18671
18672 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18673
18674         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18675
18676         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18677           No warnings (#157986).
18678
18679 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18680
18681         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18682           Prefer apev1/2 and id3v1 (at end of file) over musepack.
18683
18684 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18685
18686         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
18687           Signal no-more-pads (so it works in playbin).
18688
18689 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18690
18691         * ext/musepack/gstmusepackreader.cpp:
18692           Workaround for older core.
18693
18694 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18695
18696         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
18697           Actually test for odd width/height rather than testing whether
18698           a temporary variable that was 0 before we subtracted 1 is now
18699           not equal to zero (which it always is).
18700
18701 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18702
18703         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18704         Fix compilation if HAVE_XVIDEO is not defined
18705
18706 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18707
18708         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18709         Fix compilation if HAVE_XVIDEO is not defined
18710
18711 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
18712
18713         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18714         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
18715         (gst_goom_change_state), (plugin_init):
18716         Use the bytestream adapter so goom doesn't depend on the input
18717         buffer size.
18718         Add a debug category
18719
18720 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18721
18722         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
18723           Only set hardware parameters *after* negotiation. Before
18724           negotiation, it will set ANY and that seems to cause crashes
18725           (see e.g. #151288, #153227).
18726
18727 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18728
18729         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
18730           This seems to be antique leftover. It needs to pass error
18731           checking.
18732         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
18733         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
18734         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
18735         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
18736           Fix GstXOverlay implementation (#151059).
18737
18738 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18739
18740         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18741           Don't assert (#157853).
18742
18743 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18744
18745         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
18746           Fix bytes/samples confustion.
18747         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
18748           Fix for underrun (#144389).
18749
18750 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18751
18752         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18753           Disable halfway-seek for pending release (since it needs a new
18754           core release).
18755
18756 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18757
18758         * sys/v4l/gstv4lsrc.c:
18759         * sys/v4l/gstv4lsrc.h:
18760         * sys/v4l/v4lsrc_calls.c:
18761           add autoprobe-fps property so we can separate autoprobing parts
18762
18763 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18764
18765         * sys/v4l/gstv4lsrc.c:
18766         * sys/v4l/v4lsrc_calls.c:
18767         initialise fourcc to catch unset fourcc's, and debug
18768
18769 2004-11-09  Wim Taymans  <wim@fluendo.com>
18770
18771         * gst/playback/README:
18772         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
18773         * gst/playback/gstplaybin.c: (gst_play_bin_init),
18774         (gst_play_bin_dispose), (gst_play_bin_set_property),
18775         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
18776         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
18777         (gst_play_bin_get_formats), (gst_play_bin_convert),
18778         (gst_play_bin_get_query_types), (gst_play_bin_query):
18779         Cleanups and some more documentation.
18780
18781 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
18782
18783         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
18784         (gst_cacasink_init), (gst_cacasink_chain):
18785         * ext/libcaca/gstcacasink.h:
18786         Cacasink inherits from VideoSink, so let that store the clock.
18787
18788 2004-11-09  Wim Taymans  <wim@fluendo.com>
18789
18790         * gst/playback/README:
18791         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
18792         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
18793         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
18794         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
18795         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
18796         (setup_sinks):
18797         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
18798         (gst_stream_info_is_mute), (gst_stream_info_set_property):
18799         * gst/playback/gststreaminfo.h:
18800         Updated README.
18801         Only switch groups if all streams have muted (EOSed).
18802         Send Tags in sync with the stream playback instead of in
18803         the playback/preroll phase.
18804         Some cleanups, free the fakesrc elements.
18805
18806 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18807
18808         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
18809           buffer-frames property was missing
18810         * ext/arts/gst_arts.c:
18811           rate missing from sinkcaps
18812         * ext/audiofile/gstafparse.c:
18813         * ext/audiofile/gstafsink.c:
18814         * ext/audiofile/gstafsrc.c:
18815         * ext/swfdec/gstswfdec.c:
18816           int audio doesn't know buffer-frames
18817         * ext/cdparanoia/gstcdparanoia.c:
18818           int audio doesn't know chunksize either
18819         * ext/nas/nassink.c:
18820           it's endianness, not endianess
18821         * gst-libs/gst/audio/audio.h:
18822           make float standard pad template caps really describe float
18823         * gst/law/mulaw.c: (linear_factory):
18824           signed only, please
18825         * gst/mpegstream/gstdvddemux.c:
18826           widths of 20 are not valid
18827
18828 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18829
18830         Submitted by: Luca Ferretti <elle.uca@infinito.it>
18831
18832         * po/LINGUAS:
18833         * po/it.po:
18834           Add Italian
18835
18836 2004-11-08  Wim Taymans  <wim@fluendo.com>
18837
18838         * gst/playback/README:
18839         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
18840         * gst/playback/gstplaybasebin.c: (probe_triggered),
18841         (gst_play_base_bin_change_state):
18842         Updated README, added more comments for fixmes etc..
18843
18844 2004-11-08  Wim Taymans  <wim@fluendo.com>
18845
18846         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18847         We can remove this hack now.
18848
18849 2004-11-08  Wim Taymans  <wim@fluendo.com>
18850
18851         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
18852         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
18853         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
18854         Only mix AYUV for maximum quality.
18855
18856 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18857
18858         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
18859         (gst_ogg_demux_push), (gst_ogg_pad_push):
18860           Let's act as if we're synchronized now! :).
18861         * ext/theora/theoradec.c: (theora_dec_chain):
18862           Add some debug.
18863
18864 2004-11-08  Wim Taymans  <wim@fluendo.com>
18865
18866         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
18867         (gst_alpha_set_property), (gst_alpha_sink_link),
18868         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
18869         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
18870         (gst_alpha_init_params), (gst_alpha_chain):
18871         Implement alpha functions for AYUV too, this increases
18872         accuracy quite a bit.
18873
18874 2004-11-08  Wim Taymans  <wim@fluendo.com>
18875
18876         * gst/ffmpegcolorspace/avcodec.h:
18877         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18878         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
18879         (gst_ffmpegcsp_avpicture_fill):
18880         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18881         (gst_ffmpegcsp_caps_remove_format_info):
18882         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
18883         (shrink12), (img_get_alpha_info), (deinterlace_line),
18884         (deinterlace_line_inplace):
18885         * gst/ffmpegcolorspace/imgconvert_template.h:
18886         Added AYUV colorspace and handle RGBA a bit more respectful.
18887
18888 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18889
18890         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
18891           Actually always send a discont (cornercase when resending the
18892           same serial-tagged chain twice).
18893
18894 2004-11-08  Julien MOUTTE  <julien@moutte.net>
18895
18896         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
18897         (gst_ximagesink_finalize):
18898         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
18899         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
18900
18901 2004-11-08  Wim Taymans  <wim@fluendo.com>
18902
18903         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
18904         Don't segfault on NULL data.
18905
18906 2004-11-08  Wim Taymans  <wim@fluendo.com>
18907
18908         * gst/playback/gstdecodebin.c: (unlinked):
18909         * gst/playback/gstplay-marshal.list:
18910         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18911         (gst_play_base_bin_init), (group_create), (get_active_group),
18912         (get_building_group), (group_destroy), (group_commit),
18913         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
18914         (add_element_stream), (no_more_pads), (probe_triggered),
18915         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
18916         (state_change), (setup_source), (gst_play_base_bin_get_property),
18917         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
18918         (gst_play_base_bin_link_stream),
18919         (gst_play_base_bin_get_streaminfo):
18920         * gst/playback/gstplaybasebin.h:
18921         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
18922         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
18923         Add support for chained ogg files. Prepare for playlist
18924         support. This patch introduces the concept of pad groups, which
18925         together compose one playable media file.
18926
18927 2004-11-07  David Schleef  <ds@schleef.org>
18928
18929         * testsuite/gst-lint: Check for pad templates that aren't statically
18930         scoped.
18931
18932 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18933
18934         * configure.ac:
18935         * ext/Makefile.am:
18936         * ext/musepack/Makefile.am:
18937         * ext/musepack/gstmusepackdec.cpp:
18938         * ext/musepack/gstmusepackdec.h:
18939         * ext/musepack/gstmusepackreader.cpp:
18940         * ext/musepack/gstmusepackreader.h:
18941           Add musepack decoder.
18942         * ext/faad/gstfaad.c: (gst_faad_base_init):
18943           Make pad templates static.
18944         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
18945         (plugin_init):
18946           Add musepack typefinder, make mp3 typefinding work halfway stream,
18947           which doesn't actually work yet because id3demux doesn't implement
18948           _get_length().
18949
18950 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18951
18952         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
18953         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
18954           Fix interrupt event handling (#144436).
18955
18956 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18957
18958         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
18959           Hide unused glory.
18960
18961 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18962
18963         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18964
18965         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
18966           Fix weird caps (#157548).
18967
18968 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18969
18970         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18971
18972         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
18973           Add missing NULL terminator (#157543).
18974
18975 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18976
18977         * gst/tcp/gsttcp.h:
18978         * gst/tcp/gsttcpclientsink.c:
18979         * gst/tcp/gsttcpclientsrc.c:
18980         * gst/tcp/gsttcpserversink.c:
18981         * gst/tcp/gsttcpserversrc.c:
18982           ports can go up to 65535.  Move common defines to gsttcp.h
18983
18984 2004-11-05  Wim Taymans  <wim@fluendo.com>
18985
18986         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
18987         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
18988         Added two more colorspaces.
18989
18990 2004-11-05  Wim Taymans  <wim@fluendo.com>
18991
18992         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18993         (gst_ffmpegcsp_avpicture_fill):
18994         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
18995         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
18996         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
18997         More stride fixes.
18998
18999 2004-11-05  Wim Taymans  <wim@fluendo.com>
19000
19001         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19002         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19003         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19004         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19005         (gst_videomixer_loop):
19006         More stride fixes.
19007
19008 2004-11-05  Benjamin Otte  <otte@gnome.org>
19009
19010         * ext/mad/gstmad.c: (gst_mad_chain):
19011           don't overflow data buffer. Flush not needed sync data when syncing
19012           failed.
19013
19014 2004-11-04  Wim Taymans  <wim@fluendo.com>
19015
19016         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19017         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19018         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19019         (gst_alpha_init_params), (gst_alpha_chain),
19020         (gst_alpha_change_state):
19021         Updated the chroma keying algorithm with something more
19022         sophisticated.
19023
19024 2004-11-03  Wim Taymans  <wim@fluendo.com>
19025
19026         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19027         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19028         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19029         Fix stride issues. Does not completely work for odd
19030         heights.
19031
19032 2004-11-03  Wim Taymans  <wim@fluendo.com>
19033
19034         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19035         (gst_alpha_chroma_key), (gst_alpha_chain):
19036         Fix stride issues. Does not completely work for odd
19037         heights.
19038
19039 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
19040
19041         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19042         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19043         leak fixes
19044
19045 2004-11-03  Wim Taymans  <wim@fluendo.com>
19046
19047         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19048         (gst_ffmpegcsp_avpicture_fill):
19049         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19050         (avpicture_alloc):
19051         * gst/ffmpegcolorspace/imgconvert_template.h:
19052         Use correct _fill function to get correct strides.
19053
19054 2004-11-02  David Schleef  <ds@schleef.org>
19055
19056         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19057         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19058         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19059         Change all g_print()s to debugging.  Add a bunch of consistency
19060         checks.
19061
19062 2004-11-02  Wim Taymans  <wim@fluendo.com>
19063
19064         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19065         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19066         (unlinked), (no_more_pads), (close_link):
19067         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19068         (unknown_type), (add_element_stream), (new_decoded_pad),
19069         (removed_decoded_pad), (setup_source):
19070         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19071         (gst_stream_info_class_init), (gst_stream_info_init),
19072         (gst_stream_info_new), (gst_stream_info_dispose),
19073         (stream_info_mute_pad), (gst_stream_info_set_property),
19074         (gst_stream_info_get_property):
19075         * gst/playback/gststreaminfo.h:
19076         Fix playback of multiple files.
19077         a slightly different approach to handling dynamic pad removals.
19078         This one only looks at pads that we have linked.
19079
19080 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
19081
19082         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19083         free" warning from libc.
19084
19085 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19086
19087         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19088         (get_unconnected_element), (remove_starting_from), (pad_removed),
19089         (close_link):
19090           Implement support for dynamic pad changing. We listen to "live"
19091           pad removals (i.e. while playing) and re-setup autoplugging
19092           after that. Playbasebin/playbin need some more work for this
19093           to finally work, but decodebin supports (and replugs) chained
19094           ogg now.
19095
19096 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
19097
19098         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19099         (gst_alsa_finalize):
19100         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19101         (gst_cdaudio_finalize):
19102         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19103         (cdparanoia_finalize):
19104         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19105         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19106         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19107         (dvdreadsrc_finalize):
19108         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19109         (gst_flacdec_finalize):
19110         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19111         (gst_flacenc_finalize):
19112         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19113         (gst_gnomevfssink_finalize):
19114         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19115         (gst_gnomevfssrc_finalize):
19116         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19117         (gst_fameenc_finalize):
19118         * ext/nas/nassink.c: (gst_nassink_class_init),
19119         (gst_nassink_finalize):
19120         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19121         (gst_sdlvideosink_class_init):
19122         * ext/sndfile/gstsf.c: (gst_sf_dispose):
19123         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19124         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19125         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19126         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19127         (gst_x_window_listener_dispose):
19128         * gst/audioscale/gstaudioscale.c:
19129         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19130         (play_on_demand_finalize):
19131         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19132         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19133         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19134         (cdplayer_finalize):
19135         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19136         (gst_glimagesink_class_init):
19137         * sys/oss/gstosselement.c: (gst_osselement_class_init),
19138         (gst_osselement_finalize):
19139         * sys/oss/gstosssink.c: (gst_osssink_dispose):
19140         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19141         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19142           Fixes a bunch of problems with finalize and dispose functions,
19143           either assumptions that dispose is only called once, or not calling
19144           the parent class dispose/finalize function
19145
19146 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
19147
19148         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19149           added two api precondition guards
19150           use g_strdup with getenv to fix crash when using ENVVAR
19151
19152 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
19153         * ext/esd/esdsink.c: (gst_esdsink_class_init),
19154         (gst_esdsink_finalize):
19155         Use a finalize function, not dispose, and more importantly,
19156         call the parent class finalize function too
19157
19158 2004-11-01  Johan Dahlin  <johan@gnome.org>
19159
19160         * ext/ogg/gstoggdemux.c:
19161         * gst/tags/gstvorbistag.c:
19162         Plug leaks.
19163
19164 2004-10-31  Benjamin Otte  <otte@gnome.org>
19165
19166         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19167           lotsa memleaks today. But they're all small...
19168
19169 2004-10-31  Benjamin Otte  <otte@gnome.org>
19170
19171         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19172           another memleak crushed
19173
19174 2004-10-31  Benjamin Otte  <otte@gnome.org>
19175
19176         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19177           fix memleak
19178
19179 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19180
19181         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19182           Hack to prevent crash when going to READY inside signal handler
19183           while this function is active.
19184
19185 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19186
19187         * gst/ffmpegcolorspace/Makefile.am:
19188         * gst/ffmpegcolorspace/avcodec.h:
19189         * gst/ffmpegcolorspace/common.h:
19190         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19191         * gst/ffmpegcolorspace/dsputil.h:
19192         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19193         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19194         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19195         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19196         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19197         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19198         (gst_ffmpegcsp_avpicture_fill):
19199         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19200         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19201         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19202         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19203         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19204         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19205         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19206         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19207         * gst/ffmpegcolorspace/imgconvert.c:
19208         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19209         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19210         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19211         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19212         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19213         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19214         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19215         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19216         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19217         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19218         (grow21), (grow22), (grow41), (grow44), (conv411),
19219         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19220         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19221         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19222         (avpicture_free), (is_yuv_planar), (img_convert),
19223         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19224         (deinterlace_line_inplace), (deinterlace_bottom_field),
19225         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19226         * gst/ffmpegcolorspace/imgconvert_template.h:
19227         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19228         * gst/ffmpegcolorspace/mmx.h:
19229         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19230         (av_fast_realloc), (av_mallocz_static), (av_free_static),
19231         (av_freep), (avcodec_get_context_defaults),
19232         (avcodec_alloc_context), (avcodec_init):
19233           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19234           handling plus update from ffmpeg CVS. Large clean-up.
19235
19236 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19237
19238         * gst/playback/Makefile.am:
19239           We need the marshallers for decodebin, too.
19240
19241 2004-10-30  David Schleef  <ds@schleef.org>
19242
19243         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19244           quicktime typefinding work with 64-bit offsets.
19245
19246 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
19247
19248         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19249           Set EOS on the element when processing an EOS event.
19250         * ext/speex/gstspeexdec.h:
19251         * ext/speex/gstspeexenc.h:
19252           Only keep a const ptr to the mode
19253         * gst-libs/gst/riff/riff-media.c:
19254         (gst_riff_create_audio_caps_with_data),
19255         (gst_riff_create_audio_template_caps):
19256           Allow WMAV3, with up to 6 channels.
19257         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19258           Don't call gst_pad_set_event_function on a sink pad.
19259         * gst/mpegstream/gstdvddemux.c:
19260         (gst_dvd_demux_get_subpicture_stream),
19261         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19262           Copy the explicit caps that were set across to the cur_* pads,
19263           instead of trying to use a possibly non-existent negotiated caps.
19264           Reset the type of subpicture pads to UNKNOWN after calling
19265           init_stream, so that the caps get set.
19266
19267 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
19268
19269         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19270
19271         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19272           Don't touch buffer if it is of size 0 (fixes #151064).
19273
19274 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19275
19276         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19277           Synchronized discont handling.
19278
19279 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19280
19281         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19282         (gst_ogg_demux_push):
19283           Make seeking sort-of exact again (fixes #156387).
19284
19285 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19286
19287         * gst/playback/gstplaybasebin.c: (unknown_type),
19288         (add_element_stream), (new_decoded_pad),
19289         (gst_play_base_bin_change_state):
19290         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19291         (gst_stream_info_init), (gst_stream_info_new),
19292         (gst_stream_info_dispose), (gst_stream_info_get_property):
19293         * gst/playback/gststreaminfo.h:
19294           Make caps explicitely available. Makes testing for unsupported
19295           types possible. Improves error reporting.
19296
19297 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19298
19299         * gst/audioconvert/gstaudioconvert.c:
19300         (gst_audio_convert_buffer_to_default_format):
19301           Really don't touch read-only buffers (#156563).
19302
19303 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
19304
19305         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19306
19307         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19308           Fix memleak (#155223).
19309
19310 2004-10-29  Wim Taymans  <wim@fluendo.com>
19311
19312         * gst/tcp/.cvsignore:
19313         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19314         (gst_multifdsink_class_init), (gst_multifdsink_init),
19315         (gst_multifdsink_add), (gst_multifdsink_remove),
19316         (gst_multifdsink_remove_client_link), (is_sync_frame),
19317         (gst_multifdsink_new_client),
19318         (gst_multifdsink_handle_client_write),
19319         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19320         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19321         (gst_multifdsink_get_property):
19322         * gst/tcp/gstmultifdsink.h:
19323         Added burst on connect sync_method, deprecated sync_clients,
19324         streamlined the sync code some more.
19325
19326 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19327
19328         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19329         (gst_play_base_bin_change_state):
19330           Improve error reporting.
19331
19332 2004-10-28  Wim Taymans  <wim@fluendo.com>
19333
19334         * gst/tcp/Makefile.am:
19335         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19336         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19337         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19338         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19339         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19340         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19341         (gst_fdset_wait):
19342         Added more locks around fdset structures. Fixed/reworked
19343         the poll array resizing code.
19344         Added stress test for fdset.
19345
19346 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19347
19348         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19349         fix build
19350
19351 2004-10-28  Benjamin Otte  <otte@gnome.org>
19352
19353         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19354           fix link function to always query channels and query width for
19355           floats
19356         * configure.ac:
19357           add equalizer dir
19358         * gst/equalizer/Makefile.am:
19359         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19360         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19361         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19362         (arg_to_scale), (setup_filter),
19363         (gst_iir_equalizer_compute_frequencies),
19364         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19365         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19366         (plugin_init):
19367           add an equalizer
19368
19369 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19370
19371         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19372
19373         * po/LINGUAS:
19374         * po/nb.po:
19375           Added Norwegian Bokmaal translation
19376
19377 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19378
19379         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19380           Don't break on options (fixes #156488).
19381
19382 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19383
19384         * configure.ac:
19385         * ext/cdaudio/Makefile.am:
19386         * sys/Makefile.am:
19387           fix build on older automake
19388
19389 2004-10-26  Wim Taymans  <wim@fluendo.com>
19390
19391         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19392         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19393         Allow a little margin when negotiating the framerate.
19394
19395 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
19396
19397         * gst/level/gstlevel.c:
19398           synchonised naming of pads and pad-templates
19399
19400 2004-10-26  Wim Taymans  <wim@fluendo.com>
19401
19402         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19403         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19404         (_find_streams_check), (gst_ogg_demux_push):
19405         Fix EOS again. Needs to be done in a better way. We should not
19406         remove the pad if there is no new chained stream.
19407
19408 2004-10-26 Iain <iaingnome@gmail.com>
19409
19410         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
19411         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
19412         of the caps.
19413         * gst/interleave/interleave.c (interleave_class_init): Hook up release
19414         pad.
19415         (interleave_release_pad): Remove the pad.
19416         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
19417         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
19418         the set device.
19419         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
19420         attrs
19421         (gst_xvimagesink_xcontext_clear): Free the xcontext.
19422         (gst_xvimagesink_finalize): Free the par.
19423
19424 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19425
19426         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
19427         (gst_avimux_stop_file):
19428           First calculate the rate, and only then use it. Hdr.rate is a
19429           multiple and not a derivative of hdr.scale. Scale is not the
19430           same as blockalign but is solely related to rate.
19431
19432 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19433
19434         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
19435         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
19436           Implement seeking.
19437
19438 2004-10-25  James Henstridge  <james@jamesh.id.au>
19439
19440         Reviewed by:  David Schleef  <ds@schleef.org>
19441
19442         * examples/gstplay/player.c: (got_stream_length), (main):
19443         * examples/seeking/cdplayer.c: (update_scale):
19444         * examples/seeking/seek.c: (format_value), (update_scale):
19445         * examples/seeking/spider_seek.c: (format_value), (update_scale),
19446         (stop_seek):
19447         Build fixes on AMD64.
19448
19449 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19450
19451         reviewed by: Ronald Bultje <rbultje at gnome dot org>
19452
19453         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
19454         Fix for some v4l cards which hang in v4lsrc
19455
19456 2004-10-25  Wim Taymans  <wim@fluendo.com>
19457
19458         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
19459         (gst_ogg_demux_push), (gst_ogg_chains_clear):
19460         Make sure to remove the pad when a new chain is
19461         encountered. Set some vars to NULL so we don't try
19462         to reference freed memory.
19463
19464 2004-10-25  Wim Taymans  <wim@fluendo.com>
19465
19466         * examples/seeking/Makefile.am:
19467         * examples/seeking/cdplayer.c: (update_scale):
19468         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
19469         * examples/seeking/playbin.c: (make_playerbin_pipeline),
19470         (format_value), (update_scale), (iterate), (start_seek),
19471         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
19472         (print_usage), (main):
19473         Added some more examples, update others.
19474
19475 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19476
19477         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
19478         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19479         * ext/theora/theoradec.c: (theora_dec_chain):
19480         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19481           Add codec-name metadata.
19482
19483 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
19484
19485         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19486
19487         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19488         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19489         * ext/alsa/gstalsamixertrack.h:
19490         * po/POTFILES.in:
19491           ALSA mixer track label internationalization (#154054).
19492
19493 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19494
19495         * ext/theora/theoradec.c: (theora_dec_chain):
19496           Export bitrate as metadata.
19497
19498 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19499
19500         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19501         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19502         * ext/alsa/gstalsamixertrack.h:
19503           Fix names, fix loop.
19504
19505 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19506
19507         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
19508         (speex_dec_convert):
19509           sinkconvert function so oggdemux can get the file length (totem).
19510
19511 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
19512
19513         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19514
19515         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19516           Don't push incomplete packets.
19517         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
19518           Fix MPEG-4 audio typefinding.
19519
19520 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19521
19522         * sys/v4l/Makefile.am:
19523         * sys/v4l/gstv4l.c: (plugin_init):
19524         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
19525         (gst_v4lelement_init), (gst_v4lelement_dispose),
19526         (gst_v4lelement_change_state):
19527         * sys/v4l/gstv4lelement.h:
19528         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
19529         (gst_v4l_xoverlay_close), (idle_refresh),
19530         (gst_v4l_xoverlay_set_xwindow_id):
19531         * sys/v4l/gstv4lxoverlay.h:
19532         * sys/v4l/v4l-overlay_calls.c:
19533         * sys/v4l/v4l_calls.h:
19534         * sys/v4l2/Makefile.am:
19535         * sys/v4l2/gstv4l2.c: (plugin_init):
19536         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
19537         (gst_v4l2element_init), (gst_v4l2element_dispose),
19538         (gst_v4l2element_change_state):
19539         * sys/v4l2/gstv4l2element.h:
19540         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
19541         (gst_v4l2_xoverlay_close), (idle_refresh),
19542         (gst_v4l2_xoverlay_set_xwindow_id):
19543         * sys/v4l2/gstv4l2xoverlay.h:
19544         * sys/v4l2/v4l2-overlay_calls.c:
19545         * sys/v4l2/v4l2_calls.h:
19546           Remove client-side overlay handling, use the X-server v4l plugin
19547           for that. Nicer overlay, less code. Also make the plugin
19548           compileable without X (but then without overlay, obviously).
19549           Makes xwindowlistener obsolete, should we remove that?
19550
19551 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19552
19553         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
19554         (gst_osssrc_src_query):
19555         * sys/oss/gstosssrc.h:
19556           OK, so people want offset in DEFAULT. This time, actually fix all
19557           cases.
19558         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
19559           Add FPS properly.
19560
19561 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19562
19563         * gst/asfdemux/gstasfmux.c:
19564         * gst/avi/gstavimux.c:
19565           Framerate.
19566
19567 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19568
19569         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
19570           Fix properties (channel, norm, frequency).
19571
19572 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19573
19574         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
19575           Flag typo.
19576         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
19577           No warnings.
19578
19579 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19580
19581         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
19582           Fix hang.
19583
19584 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19585
19586         * sys/v4l2/gstv4l2element.h:
19587           Yet Another Hack (tm) for kernel header borkedness.
19588         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
19589         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
19590         (gst_v4l2src_link), (gst_v4l2src_getcaps),
19591         (gst_v4l2src_change_state):
19592         * sys/v4l2/gstv4l2src.h:
19593         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
19594         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
19595           Fix caps, keep track of state, work.
19596
19597 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19598
19599         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
19600           Quiet.
19601
19602 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19603
19604         * sys/oss/gstosssrc.c: (gst_osssrc_get):
19605           Don't mix bytes and samples.
19606
19607 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19608
19609         * ext/ogg/gstoggmux.c:
19610           Basic pad template which accepts OGM tracks, speex, flac, vorbis
19611           and theora. Any is incorrect.
19612         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
19613           Fix caps.
19614         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
19615         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
19616         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
19617         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
19618         * sys/v4l/gstv4lmjpegsrc.h:
19619         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
19620         (gst_v4lsrc_change_state):
19621         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
19622         (gst_v4lmjpegsrc_capture_stop):
19623           Fix caps. Keep track of internal state. Work.
19624
19625 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19626
19627         * ext/Makefile.am:
19628           Fix the build fixes.
19629
19630 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19631
19632         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19633         (gst_ogg_demux_src_event), (_find_chain_seek),
19634         (gst_ogg_pad_push):
19635           Check for pad availability before using it.
19636         * ext/ogg/gstoggdemux.c: (_find_chain_process):
19637           Fix parsing of chained ogg. Needs more work on the decoder side.
19638
19639 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19640
19641         * gst/spectrum/Makefile.am:
19642         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
19643         (idle_func):
19644           Fix demo and reenable it. Yes, I'm currently playing with audio
19645           analysis tools
19646
19647 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19648
19649         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19650           We love it if files that start at zero work too...
19651
19652 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19653
19654         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19655           Handle files with missing EOS headers.
19656
19657 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19658
19659         * gst/tcp/gsttcpserversink.c:
19660         (gst_tcpserversink_handle_server_read),
19661         (gst_tcpserversink_init_send):
19662         Zero some variables first (need for accept not to return EINVAL)
19663
19664 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19665
19666         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19667         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
19668         * ext/theora/theoradec.c: (theora_dec_sink_convert),
19669         (theora_dec_chain):
19670         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
19671         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
19672           Seeking and querying finetune.
19673
19674 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19675
19676         * configure.ac:
19677         * ext/Makefile.am:
19678         * ext/raw1394/Makefile.am:
19679           fix the build
19680
19681 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19682
19683         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19684           Wrong return.
19685         * gst/playback/Makefile.am:
19686         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
19687         * gst/playback/gstplay-marshal.list:
19688         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
19689           Fix marshallers.
19690
19691 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19692
19693         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
19694           Silence.
19695
19696 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19697
19698         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19699         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
19700         (gst_ogg_pad_push):
19701           Yay for non-lineair granulepos in theora.
19702
19703 2004-10-18  Wim Taymans  <wim@fluendo.com>
19704
19705         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
19706         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19707         * ext/dv/gstdvdec.h:
19708         Make sure we renegotiate aspect ratio when the camera switches.
19709
19710 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19711
19712         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19713         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
19714           Start at zero.
19715         * ext/theora/theoradec.c: (theora_dec_chain):
19716           Skip headers. Bad idea for chained ogg, but fixes seeking.
19717
19718 2004-10-18  Wim Taymans  <wim@fluendo.com>
19719
19720         * configure.ac:
19721         I swear, this is the last time I touch this.
19722
19723 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19724
19725         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19726         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
19727         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
19728           Faster seeking.
19729         * ext/theora/theoradec.c: (theora_dec_sink_convert):
19730           Time-to-default conversion.
19731         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19732           Don't error on unknown packets, just skip. We should probably
19733           read them if we want to support chained ogg.
19734
19735 2004-10-18  Wim Taymans  <wim@fluendo.com>
19736
19737         * configure.ac:
19738         Added cdaudio to wrong list.
19739
19740 2004-10-18  Wim Taymans  <wim@fluendo.com>
19741
19742         * configure.ac:
19743         Revive cdaudio.
19744
19745 2004-10-18  Wim Taymans  <wim@fluendo.com>
19746
19747         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19748         (gst_dvdec_video_link), (gst_dvdec_push):
19749         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
19750         (gst_smokeenc_resync), (gst_smokeenc_chain):
19751         Fix mimetype on smoke encoder.
19752         Add aspect ratio to dvdec. Not sure if these
19753         values are correct though....
19754
19755 2004-10-18  Wim Taymans  <wim@fluendo.com>
19756
19757         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
19758         Fix vorbis property descriptions and ranges.
19759
19760 2004-10-18  Wim Taymans  <wim@fluendo.com>
19761
19762         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19763         Really do nothing when no data is available.
19764         Go to the playing state when the stream is not seekable
19765         instead of failing.
19766
19767 2004-10-18  Wim Taymans  <wim@fluendo.com>
19768
19769         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
19770         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
19771         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
19772         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
19773         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
19774         Added uri handler for cd://
19775         Port to new API.
19776
19777 2004-10-18  Wim Taymans  <wim@fluendo.com>
19778
19779         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19780         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
19781         (try_to_link_1), (no_more_pads), (close_link), (type_found):
19782         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
19783         (remove_prerolls), (unknown_type), (add_element_stream),
19784         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
19785         (gst_play_base_bin_remove_element),
19786         (gst_play_base_bin_link_stream):
19787         * gst/playback/gstplaybin.c: (gen_video_element),
19788         (gen_vis_element), (remove_sinks), (setup_sinks):
19789         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
19790         (gst_stream_info_get_type), (gst_stream_info_class_init),
19791         (gst_stream_info_init), (gst_stream_info_new),
19792         (gst_stream_info_dispose), (stream_info_mute_pad),
19793         (gst_stream_info_set_property), (gst_stream_info_get_property):
19794         * gst/playback/gststreaminfo.h:
19795         Add sink padtemplate to decodebin.
19796         Added some more comments.
19797         Make queue size configurable in playbasebin.
19798         Added possibility to use elements as sinks (ex cdaudio).
19799
19800 2004-10-15  Wim Taymans  <wim@fluendo.com>
19801
19802         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
19803         (gst_speexenc_chain):
19804         Fix speex timestamps so that it gets muxed properly.
19805
19806 2004-10-15  Wim Taymans  <wim@fluendo.com>
19807
19808         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
19809         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
19810         (gst_dv1394src_init), (gst_dv1394src_dispose),
19811         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
19812         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
19813         (gst_dv1394src_event), (gst_dv1394src_get_formats),
19814         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
19815         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
19816         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
19817         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
19818         * ext/raw1394/gstdv1394src.h:
19819         Added conversion/query functions.
19820         Update buffer timestamps,
19821         Added signals.
19822         Added uri dv:// so it might play from the firewire in playbin.
19823         Fix a possible leak.
19824         Added debugging.
19825
19826 2004-10-15  Wim Taymans  <wim@fluendo.com>
19827
19828         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
19829         (gst_dv1394src_init), (gst_dv1394src_set_property),
19830         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
19831         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
19832         * ext/raw1394/gstdv1394src.h:
19833         Added AV/C VTR control support needed for some cameras.
19834         Added automatic port detection.
19835         Added properties for selecting the channel.
19836         The configure.ac script is not yet updated to reflect the
19837         new libavc1394 and librom1394 dependencies.
19838
19839 2004-10-15  Wim Taymans  <wim@fluendo.com>
19840
19841         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19842         (qtdemux_parse), (gst_qtdemux_handle_esds):
19843         An esds box is not a container.
19844         Fix parsing of mp4v boxes.
19845         Do not try to renegotiate fps for each frame. Need to
19846         find a better method. This should fix mp4 playback.
19847
19848 2004-10-14  David Schleef  <ds@schleef.org>
19849
19850         * configure.ac: update for swfdec-0.3 and liboil-0.2
19851         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
19852         * ext/swfdec/gstswfdec.h: same
19853         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
19854         * gst/videotestsrc/videotestsrc.c: same
19855
19856 2004-10-14  Wim Taymans  <wim@fluendo.com>
19857
19858         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
19859         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
19860         (is_sync_frame), (gst_multifdsink_new_client),
19861         (gst_multifdsink_handle_client_write),
19862         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19863         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
19864         Turn warnings into info.
19865         Don't allow a state change in the streaming thread.
19866
19867 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19868
19869         * ext/vorbis/oggvorbisenc.c:
19870         * ext/vorbis/vorbisdec.c:
19871           fix template sample rate
19872
19873 2004-10-13  Wim Taymans  <wim@fluendo.com>
19874
19875         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
19876         Decoding the header first fixes some problems in resyncing
19877         in more mp3s.
19878
19879 2004-10-12  Wim Taymans  <wim@fluendo.com>
19880
19881         * gst/playback/gstplaybin.c: (gen_video_element),
19882         (gen_vis_element), (remove_sinks), (setup_sinks):
19883         Added vis plugin support, need to configure the vis
19884         element to activate it.
19885
19886 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19887
19888         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
19889         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
19890           Some debug.
19891         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19892         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
19893         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
19894         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
19895         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
19896         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
19897         * gst/avi/gstavidemux.h:
19898           Support for openDML-2.0 indx/ix## chunks. Support for broken index
19899           recovery (where, if part of the index is broken, we will still read
19900           the rest of the index and recover the broken part by stream
19901           scanning). More broken media support. EOS workarounds. General AVI
19902           braindamage headache recovery. Aspirin included.
19903
19904 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19905
19906         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
19907         (cdparanoia_event), (cdparanoia_query):
19908           Get rid of hideous lead-in.
19909
19910 2004-10-11  Wim Taymans  <wim@fluendo.com>
19911
19912         * gst/playback/gstplaybasebin.c: (setup_source):
19913         Wrong var used to get g_list_next.
19914
19915 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19916
19917         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19918         (cdparanoia_get), (cdparanoia_open):
19919           Report discid as metadata, add duration.
19920
19921 2004-10-11  Wim Taymans  <wim@fluendo.com>
19922
19923         * gst/playback/gstplaybasebin.c: (setup_source):
19924         Cleanup the previous pipeline a little earlier for the
19925         case that a source element provides raw data.
19926
19927 2004-10-11  Benjamin Otte  <otte@gnome.org>
19928
19929         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
19930           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
19931           consuming the last 128 bytes, even though it was valid mp3 data.
19932
19933 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19934
19935         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
19936         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
19937         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
19938         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
19939
19940 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19941
19942         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
19943         Fix for webcams that support only specific width or height
19944
19945 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19946
19947         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19948
19949         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
19950           Fix wrong discont event setup (fixes #154967).
19951
19952 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
19953
19954         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19955
19956         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19957           Error out on invalid data (fixes #154807).
19958
19959 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19960
19961         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19962
19963         * ext/dvdread/dvdreadsrc.c: (_read):
19964           Make titles > 0 work again (fixes #154834).
19965
19966 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19967
19968         * gst-libs/gst/riff/riff-media.c:
19969         (gst_riff_create_video_template_caps):
19970           WMV3 missing in template caps.
19971
19972 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19973
19974         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
19975           OK, so the original code was too strict. It makes random AVI files
19976           hang for seconds upon opening, which is unacceptable and is far
19977           beyond the original goal of getting multiple chunks for one-chunk
19978           sounc stream files. So now do just that.
19979
19980 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19981
19982         * gst/playback/gstplaybasebin.c: (setup_source),
19983         (gst_play_base_bin_change_state):
19984           Actually clean up streaminfo if output fails. This would trigger
19985           if, for example, there was no CD in the drive. No preroll, so
19986           a streaminfo structure is created, but the subsequent state change
19987           of the thread fails.
19988         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
19989           Don't change state if parent failed.
19990
19991 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19992
19993         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19994         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
19995         (gen_video_element), (remove_sinks):
19996           Add small bits of code for screenshot handling.
19997
19998 2004-10-08  Wim Taymans  <wim@fluendo.com>
19999
20000         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20001         (gen_video_element), (gen_audio_element), (setup_sinks):
20002         Don't assume the user provided sinks are named "sink"...
20003
20004 2004-10-08  Wim Taymans  <wim@fluendo.com>
20005
20006         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20007         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20008         (gst_play_base_bin_link_stream):
20009         Do not try to autoplug sources that generate raw streams like
20010         cdparanoia.
20011         disconnect the preroll overrun signal when we don't need it anymore.
20012
20013 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
20014
20015         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20016         Added reworked patch from #154903 from milosz derezynski (deadchip).
20017
20018 2004-10-08  Wim Taymans  <wim@fluendo.com>
20019
20020         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20021         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20022         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20023         (cdparanoia_convert), (cdparanoia_uri_get_type),
20024         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20025         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20026         * ext/cdparanoia/gstcdparanoia.h:
20027         This adds the cdda://<tracknum> uri.
20028
20029 2004-10-08  Wim Taymans  <wim@fluendo.com>
20030
20031         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20032         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20033         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20034         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20035         (unknown_type), (gst_play_base_bin_remove_element),
20036         (gst_play_base_bin_link_stream):
20037         * gst/playback/gstplaybasebin.h:
20038         * gst/playback/gstplaybin.c: (gst_play_bin_init),
20039         (gst_play_bin_set_property), (gen_video_element),
20040         (gen_audio_element), (setup_sinks):
20041         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20042         (gst_stream_info_get_type), (gst_stream_info_class_init),
20043         (gst_stream_info_init), (gst_stream_info_new),
20044         (gst_stream_info_dispose), (stream_info_mute_pad),
20045         (gst_stream_info_set_property), (gst_stream_info_get_property):
20046         * gst/playback/gststreaminfo.h:
20047         Reuse the audio and video bins.
20048         Some internal cleanups in the stream selection code.
20049
20050 2004-10-08  Julien MOUTTE  <julien@moutte.net>
20051
20052         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20053         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20054         * sys/ximage/ximagesink.h:
20055         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20056         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20057         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20058         not coming from those elements. Moreover these elements should not keep
20059         the xid they have been given when in NULL state.
20060
20061 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20062
20063         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20064         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20065         * sys/ximage/ximagesink.h:
20066         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20067         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20068         * sys/xvimage/xvimagesink.h:
20069           Actually only create a new toplevel window if we're not gonna
20070           embed it right after.
20071
20072 2004-10-07  Wim Taymans  <wim@fluendo.com>
20073
20074         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20075         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20076         * gst/playback/gstplaybin.c: (setup_sinks):
20077         Implement muting/unmuting of streams, mute streams that are not
20078         used.
20079
20080 2004-10-07  Wim Taymans  <wim@fluendo.com>
20081
20082         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20083         (plugin_init):
20084         Added lame audio/x-ac3 typefind function.
20085
20086 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20087
20088         * configure.ac:
20089           bump nano to cvs
20090
20091 === release 0.8.5 ===
20092
20093 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20094
20095         * NEWS:
20096         * RELEASE:
20097         * configure.ac:
20098           releasing 0.8.5, "Take You On"
20099
20100 2004-10-06  Wim Taymans  <wim@fluendo.com>
20101
20102         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20103         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20104         (no_more_pads), (close_link), (type_found):
20105         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20106         * gst/playback/gstplaybin.c: (gen_video_element):
20107         Do not signal the no_more_pads after the first pad when
20108         we are plugging a non dynamic element with multiple
20109         output pads (like swfdec, dvdec, ...).
20110
20111 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20112
20113         * configure.ac:
20114           bump for prerelease
20115
20116 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20117
20118         * gst/wavparse/gstwavparse.c:
20119           add ATRAC3 to STATIC CAPS to fix a warning
20120
20121         * gst/matroska/ebml-read.c:
20122         * gst-libs/gst/riff/riff-read.c:
20123           fix typos
20124
20125 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20126
20127         * gst-libs/gst/riff/riff-media.c:
20128           generate caps for ATRAC3 audio streams
20129
20130         * gst/realmedia/rmdemux.c:
20131           generate caps for ATRAC3 audio streams
20132
20133 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20134
20135         * gst/wavparse/Makefile.am
20136         * gst/wavparse/riff.h
20137         * gst/wavparse/wavparse.vcproj
20138           riff.h removal (unused and duplication with riff-ids.h)
20139
20140 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20141
20142         * gst/wavparse/gstwavparse.h
20143           remove duplicated defines for audio codec codes
20144
20145         * gst-libs/gst/riff/riff-ids.h
20146         * gst/wavenc/riff.h:
20147           add "4CC" code for ATRAC3 audio streams
20148           add "4CC" code for ITU_G721_ADPCM (unused for now)
20149
20150 2004-10-06  Wim Taymans  <wim@fluendo.com>
20151
20152         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20153         Actually _do_ negotiation. Pass gdouble as arg instead
20154         of guint64 for the framerate.
20155
20156 2004-10-06  Wim Taymans  <wim@fluendo.com>
20157
20158         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20159         (find_compatibles), (close_pad_link), (try_to_link_1),
20160         (no_more_pads), (close_link), (type_found):
20161         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20162         * gst/playback/gstplaybin.c: (gen_video_element),
20163         (gen_audio_element):
20164         Set state on newly added element to READY so that negotiation
20165         can happen ASAP.
20166         Addes some more debug info.
20167         Do not try to plug pads with multiple caps structures or ANY
20168         because it is too dangerous since we do not do dynamic
20169         replugging.
20170
20171 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20172
20173         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20174
20175         * po/LINGUAS:
20176         * po/or.po:
20177           add Oriya translation
20178
20179 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20180
20181         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20182           Prevent overwrite of size member. Makes audio sound crappy.
20183
20184 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20185
20186         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20187         Add rmvb to the list of known RealMedia extensions
20188
20189 2004-10-05  Wim Taymans  <wim@fluendo.com>
20190
20191         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20192         (mngdec_openstream), (mngdec_closestream),
20193         (mngdec_handle_sink_event), (mngdec_readdata),
20194         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20195         (mngdec_getcanvasline), (mngdec_refresh),
20196         (gst_mngdec_change_state):
20197         Set the framerate correctly.
20198
20199 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20200
20201         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20202           There was something wrong with the index massaging.
20203
20204 2004-10-04  Wim Taymans  <wim@fluendo.com>
20205
20206         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20207         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20208         (gst_smokedec_chain):
20209         * ext/jpeg/gstsmokedec.h:
20210         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20211         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20212         * ext/jpeg/gstsmokeenc.h:
20213         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20214         (smokecodec_decode_new), (smokecodec_info_free),
20215         (smokecodec_set_quality), (smokecodec_get_quality),
20216         (smokecodec_set_threshold), (smokecodec_get_threshold),
20217         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20218         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20219         (smokecodec_encode), (smokecodec_parse_id),
20220         (smokecodec_parse_header), (smokecodec_decode):
20221         * ext/jpeg/smokecodec.h:
20222         * ext/jpeg/smokeformat.h:
20223         Updated smoke, new bitstream, allows embedding in ogg.
20224
20225 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20226
20227         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20228           Fix seeking in some files. All this code is no longer needed (and
20229           actually breaks stuff) because we now synchronize the full index
20230           right when reading the header.
20231
20232 2004-10-04  Wim Taymans  <wim@fluendo.com>
20233
20234         * configure.ac:
20235         configure update for libmng.
20236
20237 2004-10-04  Wim Taymans  <wim@fluendo.com>
20238
20239         * ext/libmng/Makefile.am:
20240         * ext/libmng/gstmng.c: (plugin_init):
20241         * ext/libmng/gstmng.h:
20242         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20243         (gst_mngdec_base_init), (gst_mngdec_class_init),
20244         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20245         (gst_mngdec_loop), (gst_mngdec_get_property),
20246         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20247         (mngdec_closestream), (mngdec_handle_sink_event),
20248         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20249         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20250         (gst_mngdec_change_state):
20251         * ext/libmng/gstmngdec.h:
20252         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20253         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20254         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20255         (gst_mngenc_chain), (gst_mngenc_get_property),
20256         (gst_mngenc_set_property):
20257         * ext/libmng/gstmngenc.h:
20258         Added basic MNG decoder. Needs more work. The encoder does
20259         not work yet.
20260
20261 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20262
20263         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20264         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20265         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20266           Don't hang on length=0 chunks. Some negotiation fixes. Signal
20267           no-more-pads.
20268
20269 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20270
20271         * configure.ac:
20272           you need at least 1.0.4 of speex
20273
20274 2004-10-04 Iain <iaingnome@gmail.com>
20275
20276         * ext/speex/gstspeexdec.h: Revert the includes changes.
20277
20278         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20279
20280 2004-09-30 Iain <iaingnome@gmail.com>
20281
20282         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20283         found during init or set as a property instead of hardcoding /dev/audio
20284
20285 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20286
20287         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20288         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20289         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20290         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20291         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20292         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20293         (gst_rmdemux_dump_data):
20294           Use debug category, fix EOS handling. filesrc ! rmdemux now
20295           works.
20296
20297 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20298
20299         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20300         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20301         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20302           Improve allocation, cutting and sorting of the index. How takes a
20303           few seconds instead of minutes.
20304
20305 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
20306
20307         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20308           fixed compilation
20309
20310 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20311
20312         * gst-libs/gst/riff/riff-media.c:
20313         (gst_riff_create_video_caps_with_data),
20314         (gst_riff_create_video_template_caps):
20315           Add wing commander format mimetype/fourccs.
20316         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20317           Don't crash if some value is 0.
20318
20319 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20320
20321         * gst-libs/gst/riff/riff-media.c:
20322         (gst_riff_create_video_caps_with_data),
20323         (gst_riff_create_video_template_caps):
20324           Add DIB fourcc (raw, palettized 8-bit RGB).
20325         * gst-libs/gst/riff/riff-read.c:
20326         (gst_riff_read_strf_vids_with_data):
20327           Oops, fix strf_data reading bug.
20328         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20329           Use a non-NULL tag.
20330         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20331           Time for hacks. Sorry Dave. At least one quicktime movie (a
20332           trailer) that I've encountered contains multiple video tracks.
20333           One of those is the actual video track, the other are one-frame
20334           tracks (images). Unfortunately, the number of frames according
20335           to the trak header is 1 for each, so that doesn't help. So
20336           instead, I look at the duration and discard tracks with a
20337           duration shorter than 20% of the length of the stream. Better
20338           than nothing.
20339
20340 2004-10-01  Christian Schaller <christian@fluendo.com>
20341
20342         * ext/ivorbis/vorbis.c:
20343           Patch from Phil Blundell (Bug 152341)
20344
20345 2004-10-01  Wim Taymans  <wim@fluendo.com>
20346
20347         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20348         (speex_dec_get_formats), (speex_dec_convert),
20349         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20350         (speex_dec_chain), (gst_speexdec_get_property),
20351         (gst_speexdec_set_property):
20352         Small cleanups.
20353
20354 2004-10-01  Wim Taymans  <wim@fluendo.com>
20355
20356         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20357         (gst_wavparse_stream_init), (gst_wavparse_fmt),
20358         (gst_wavparse_other), (gst_wavparse_loop),
20359         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20360         (gst_wavparse_srcpad_event):
20361         * gst/wavparse/gstwavparse.h:
20362         Added some more debugging info.
20363         Fix the case where the length of the file is 0.
20364         Make sure we seek to sample borders.
20365
20366 2004-10-01  Wim Taymans  <wim@fluendo.com>
20367
20368         * gst/playback/README:
20369         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20370         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20371         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20372         Add some debug info to decodebin, update README
20373
20374 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20375
20376         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20377           Don't use g_print(); use GST_DEBUG().
20378
20379 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20380
20381         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20382         (gst_ogg_mux_queue_pads):
20383           Handle EOS properly.
20384
20385 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20386
20387         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20388
20389         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20390         (gst_faad_chain), (gst_faad_change_state):
20391         * ext/faad/gstfaad.h:
20392           Allow playback of raw (unframed) MPEG AAC files (#148993).
20393
20394 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20395
20396         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20397
20398         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20399           Throw error if we didn't recognize the stream. Fixes #152289.
20400
20401 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20402
20403         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20404           Fix negotiation.
20405
20406 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
20407
20408         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20409
20410         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20411           Fix memleak.
20412
20413 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
20414
20415         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20416
20417         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
20418           Solve #152805.
20419         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
20420           Solve 152806.
20421
20422 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20423
20424         * gst-libs/gst/riff/riff-media.c:
20425         (gst_riff_create_video_caps_with_data),
20426         (gst_riff_create_audio_caps_with_data):
20427           Add codec_data handling (like asfdemux used to do).
20428         * gst/asfdemux/gstasf.c: (plugin_init):
20429         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20430         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
20431           Use riff-media for caps creation instead of our own (mostly
20432           broken) copy of its functions.
20433
20434 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20435
20436         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
20437           Don't actually error out if we get another return value than
20438           -EINVAL. Opposite to what I first thought, drivers have random
20439           return values for this, although -EINVAL is the expected return
20440           value. Since this is not fatal, we shouldn't use
20441           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
20442
20443 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20444
20445         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
20446         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
20447         (dvdreadsrc_get_property), (_open), (_seek), (_read),
20448         (dvdreadsrc_get), (dvdreadsrc_open_file),
20449         (dvdreadsrc_change_state):
20450           Fix. Don't do one big huge loop around the whole DVD, that will
20451           cache all data and thus eat sizeof(dvd) (several GB) before we
20452           see something.
20453         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20454           Actually NULL'ify event after using it.
20455         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
20456         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
20457         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
20458         (gst_ebml_read_seek), (gst_ebml_read_skip):
20459           Handle events.
20460         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
20461         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
20462         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
20463           Fix timing (this will probably break if I seek using menus, but
20464           I didn't get there yet). VOBs and normal DVDs should now work.
20465           Add a mpeg2-only pad with high rank so this get autoplugged for
20466           MPEG-2 movies.
20467         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
20468         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
20469         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
20470         (gst_mpeg_demux_get_audio_stream),
20471         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
20472         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
20473           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
20474           MPEG-1 but use dvddemux for MPEG-2.
20475         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
20476         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
20477         (gst_mpeg_parse_parse_packhead):
20478           Timing. Only add pad template if it exists. Add sink template from
20479           class and not from ourselves. This means we will always use the
20480           correct sink template even if it is not the one defined in this
20481           file.
20482
20483 2004-09-29  Wim Taymans  <wim@fluendo.com>
20484
20485         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
20486         (gst_mpeg_demux_parse_pes):
20487         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
20488         Fix playback of mpeg again, timestamps where screwed up by
20489         patch 1.61.
20490
20491 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20492
20493         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
20494           Only return true if we actually filled something in. Prevents
20495           player applications from showing a random length for flac files.
20496         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
20497         (gst_riff_read_use_event), (gst_riff_read_handle_event),
20498         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
20499         (gst_riff_read_strf_vids_with_data),
20500         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
20501           OK, ok, so I implemented event handling. Apparently it's normal
20502           that we receive random events at random points without asking
20503           for it.
20504         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20505         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20506         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
20507         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20508         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
20509         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
20510         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
20511         * gst/avi/gstavidemux.h:
20512           Implement non-lineair chunk handling and subchunk processing.
20513           The first solves playback of AVI files where the audio and video
20514           data of individual buffers that we read are not synchronized.
20515           This should not happen according to the wonderful AVI specs, but
20516           of course it does happen in reality. It is also a prerequisite for
20517           the second. Subchunk processing allows us to cut chunks in small
20518           pieces and process each of these pieces separately. This is
20519           required because I've seen several AVI files with incredibly large
20520           audio chunks, even some files with only one audio chunk for the
20521           whole file. This allows for proper playback including seeking.
20522           This patch is supposed to fix all AVI A/V sync issues.
20523         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
20524         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
20525           Work.
20526         * gst/modplug/gstmodplug.cc:
20527           Proper return value setting for the query() function.
20528         * gst/playback/gstplaybasebin.c: (setup_source):
20529           Being in non-playing state (after, e.g., EOS) is not necessarily
20530           a bad thing. Allow for that. This fixes playback of short files.
20531           They don't actually playback fully now, because the clock already
20532           runs. This means that small files (<500kB) with a small length
20533           (<2sec) will still not or barely play. Other files, such as mod
20534           or flx, will work correctly, however.
20535
20536 2004-09-28  Wim Taymans  <wim@fluendo.com>
20537
20538         * ext/speex/gstspeex.c: (plugin_init):
20539         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
20540         (gst_speex_dec_class_init), (speex_dec_get_formats),
20541         (speex_get_event_masks), (speex_get_query_types),
20542         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
20543         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
20544         (gst_speexdec_get_property), (gst_speexdec_set_property),
20545         (speex_dec_change_state):
20546         * ext/speex/gstspeexdec.h:
20547         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
20548         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
20549         (gst_speexenc_base_init), (gst_speexenc_class_init),
20550         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
20551         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
20552         (gst_speexenc_src_query), (gst_speexenc_init),
20553         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
20554         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
20555         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
20556         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
20557         (gst_speexenc_chain), (gst_speexenc_get_property),
20558         (gst_speexenc_set_property), (gst_speexenc_change_state):
20559         * ext/speex/gstspeexenc.h:
20560         Rewrote speex encoder, make sure it can be embedded in ogg.
20561         Implemented speex decoder.
20562
20563 2004-09-28  Christian Schaller <christian@fluendo.com>
20564
20565         * configure.ac:
20566         Remove kioslave plugin. Markey is brewing a new working one
20567         * ext/Makefile.am: Remove kioslave plugin
20568         * ext/kio: remove
20569         * gst-plugins.spec.in: remove kio plugin from spec
20570
20571 2004-09-27  Wim Taymans  <wim@fluendo.com>
20572
20573         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20574         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20575         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
20576         (gst_multifdsink_new_client),
20577         (gst_multifdsink_handle_client_write),
20578         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20579         (gst_multifdsink_handle_clients):
20580         * gst/tcp/gstmultifdsink.h:
20581         Make syncing to keyframes actually work for new clients and lagging
20582         clients.
20583
20584 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20585
20586         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
20587         (gst_navigationtest_handle_src_event), (draw_box_planar411),
20588         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
20589         * gst/debug/gstnavigationtest.h:
20590           make navigationtest display button-press and button-release events
20591
20592 2004-09-26 Iain <iaingnome@gmail.com>
20593
20594         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
20595         the channels have received a new media event.
20596         (interleave_buffered_loop): Compresses a new media event on all
20597         channels into one.
20598
20599 2004-09-26 Iain <iaingnome@gmail.com>
20600
20601         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
20602         call the sinkpad's default event handler and not the srcpads. He also
20603         says this is confusing :)
20604         (gst_wavenc_stop_file): Company says that seek events only go upstream
20605         we should send a discontinuous downstream instead.
20606
20607 2004-09-25  Christian Schaller <christian@fluendo.com>
20608
20609         * Update SPEC file to be usable in conjunction with Fedora Core,
20610           Fedora.us and freshrpms packages
20611         * Fix typo in multifilesrc test Makefile
20612
20613 2004-09-24  Wim Taymans  <wim@fluendo.com>
20614
20615         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20616         Only signal the no_more_pads signal when we have
20617         added the stream to our list.
20618
20619 2004-09-24  Wim Taymans  <wim@fluendo.com>
20620
20621         * gst/playback/gstplaybasebin.c: (remove_prerolls),
20622         (new_decoded_pad):
20623         * gst/playback/gstplaybasebin.h:
20624         * gst/playback/gstplaybin.c: (setup_sinks):
20625         Don't try to preroll or decode more than one audio/video
20626         track.
20627
20628 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20629
20630         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
20631           Throw error if we failed to find a suitable output. This should
20632           throw an error if we successfully set up a pipeline (e.g. because
20633           we recognized a media file) but found no decodable streams in it
20634           (e.g. because it contains only media stream types for which we
20635           have no decoders, or because it's not a media type).
20636
20637 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20638
20639         * ext/dirac/Makefile.am:
20640         * ext/dirac/gstdirac.cc:
20641         * ext/dirac/gstdiracdec.cc:
20642         * ext/dirac/gstdiracdec.h:
20643           Do something. Don't actually know if this works because I don't
20644           have a demuxer yet.
20645         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
20646           Add channels=1 to caps returned from _getcaps().
20647         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
20648         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
20649         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
20650         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
20651         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
20652         (gst_ogm_parse_change_state):
20653           Separate between audio/video so ogmaudioparse actually uses the
20654           audio pad templates. Both audio and video work now, including
20655           autoplugging. Also use sometimes-srcpad hack.
20656         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20657           Handle events better. Don't hang on infinite loops.
20658         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
20659         (gst_avi_demux_init), (gst_avi_demux_reset),
20660         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20661         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
20662         (gst_avi_demux_change_state):
20663         * gst/avi/gstavidemux.h:
20664           Improve A/V sync. Still not perfect.
20665         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
20666         (gst_ebml_read_skip):
20667           Handle events better.
20668         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
20669         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
20670         (qtdemux_audio_caps):
20671           Add IMA4. Improve event handling. Save offset after a seek when
20672           the headers are at the end of the file so that we don't end up in
20673           an infinite loop.
20674         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
20675           Add low-priority typefind support for files with no length.
20676
20677 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20678
20679         * testsuite/multifilesink/Makefile.am:
20680         fix typo
20681
20682 2004-09-22  Julien MOUTTE  <julien@moutte.net>
20683
20684         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
20685         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
20686         mistakes from thaytan's patches.
20687
20688 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
20689
20690         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
20691           For completeness, XSync in the destroy function as xvimage does.
20692
20693 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
20694
20695         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
20696            Correct caps negotiation
20697         * gst/volume/gstvolume.c: (volume_chain_float),
20698         (volume_chain_int16):
20699            Modify debug output to be little more informative
20700         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
20701         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
20702         (gst_xvimagesink_xvimage_destroy):
20703           Add XSync calls after detaching from the shared memory segment to
20704           avoid a crash.
20705
20706 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20707
20708         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20709         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
20710         * ext/vorbis/vorbis.c: (plugin_init):
20711         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
20712         (gst_vorbisenc_chain):
20713         * ext/vorbis/vorbisenc.h:
20714         remove explicit newmedia support from oggmux and vorbisenc
20715         add debug category to vorbisenc
20716         * gst/multifilesink/gstmultifilesink.c:
20717         (gst_multifilesink_class_init), (gst_multifilesink_init),
20718         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
20719         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
20720         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
20721         (plugin_init):
20722         * gst/multifilesink/gstmultifilesink.h:
20723         add support for streamheader in multifilesink
20724
20725 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20726
20727         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
20728         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
20729         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
20730           Prevent infinite loops. More correct error reporting.
20731         * gst/auparse/gstauparse.c: (gst_auparse_chain):
20732           Error out if negotiation fails.
20733         * gst/playback/gstplaybasebin.c: (setup_source),
20734         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
20735         (gst_play_base_bin_found_tag):
20736           Error/tag forwarding. Pre-roll fixes for source errors on state
20737           changes (e.g. "file does not exist") to prevent hangs.
20738
20739 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20740
20741         * testsuite/multifilesink/Makefile.am:
20742         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
20743         (gst_newmedia_class_init), (gst_newmedia_init),
20744         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
20745         (newfile_signal), (test_signal), (main):
20746         * testsuite/multifilesink/multifilesrc_test.c: (main):
20747         * testsuite/multifilesink/oggtheora_test.c:
20748         (gst_newmedia_base_init), (gst_newmedia_class_init),
20749         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
20750         (test_format), (newfile_signal), (test_signal), (main):
20751         * testsuite/multifilesink/oggvorbis_test.c:
20752         (gst_newmedia_base_init), (gst_newmedia_class_init),
20753         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
20754         (test_format), (newfile_signal), (test_signal), (main):
20755         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
20756         (gst_newmedia_class_init), (gst_newmedia_init),
20757         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
20758         (newfile_signal), (test_signal), (main):
20759         New media tests
20760
20761 2004-09-20  Christian Schaller <christian@fluendo.com>
20762
20763         * Fix mikmod license to LGPL as they have relicensed
20764         * Move Dirac and Effectv into LGPL section of README_license
20765
20766 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20767
20768         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
20769         (gst_mad_change_state):
20770           Allow for mp3 rate/channels changes. However, only very
20771           conservatively. Reason that we *have* to enable this is smiply
20772           because the mad find_sync() function is not good enough, it will
20773           regularly sync on random data as valid frames and therefore make
20774           us provide random caps as *final* caps of the stream. The best fix
20775           I could think of is to simply require several of the same stream
20776           changes in a row before we change caps.
20777           The actual testcase that works now is #
20778         * ext/ogg/Makefile.am:
20779         * ext/ogg/gstogg.c: (plugin_init):
20780         * ext/ogg/gstogmparse.c:
20781           OGM support (video only for now; I need an audio sample file).
20782         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20783         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
20784         (gst_asf_demux_add_video_stream):
20785           WMV extradata.
20786         * gst/playback/gstplaybasebin.c: (unknown_type):
20787           Don't error out on single unknown-types after all. It's wrong.
20788           If we found type of video and audio but not of a subtitle stream,
20789           it will still error out (which is unwanted). Will find a better fix
20790           later on.
20791         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
20792         (ogmaudio_type_find), (plugin_init):
20793           OGM support.
20794
20795 2004-09-20  Johan Dahlin  <johan@gnome.org>
20796
20797         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
20798         after setting caps.
20799
20800 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20801
20802         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
20803         * gst/wavenc/gstwavenc.h:
20804         Added newmedia support to wavenc
20805
20806 2004-09-17  Wim Taymans  <wim@fluendo.com>
20807
20808         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
20809         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
20810         (gst_fdset_fd_can_write), (gst_fdset_wait):
20811         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
20812         (gst_multifdsink_init), (gst_multifdsink_add),
20813         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
20814         (gst_multifdsink_remove_client_link),
20815         (gst_multifdsink_client_queue_buffer),
20816         (gst_multifdsink_handle_client_write),
20817         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
20818         (gst_multifdsink_close), (gst_multifdsink_change_state):
20819         * gst/tcp/gstmultifdsink.h:
20820         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
20821         (gst_tcpserversink_removed):
20822         Small cleanups in fdset.c
20823         Use a hastable to map fd to the client structure for faster
20824         lookup in _remove and get_stats.
20825         Added virtual function to close the fds.
20826         Handle clients even when the select/poll call was unblocked because
20827         of a command.
20828         Implement syncing to keyframe in the recovery procedure.
20829
20830 2004-09-16 Iain <iaingnome@gmail.com>
20831
20832         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
20833         try caps.
20834
20835 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20836
20837         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
20838           Caps are only set if the type of the stream is unknown, but this
20839           is initialized in ->init_stream(), so set to UNKNOWN after calling
20840           ->init_stream() so that capsnego starts.
20841
20842 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20843
20844         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20845         (gst_avi_demux_stream_data):
20846           Just hardcode for raw audio then. AVI audio sucks.
20847
20848 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
20849
20850         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
20851         * gst/matroska/matroska-mux.c: (audiosink_templ),
20852         (gst_matroska_mux_audio_pad_link):
20853         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
20854         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
20855
20856 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20857
20858         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20859         (gst_avi_demux_stream_data):
20860           Try to fix a/v sync issues.
20861
20862 2004-09-15  David Schleef  <ds@schleef.org>
20863
20864         * configure.ac: remove NASM check, since we don't use it.  Update
20865         dirac check to 0.4
20866         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
20867         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
20868         Initialized variables.
20869         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
20870         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
20871         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
20872         SVQ3 format
20873
20874 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20875
20876         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
20877         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
20878         * gst/avi/gstavidemux.h:
20879           Fix for compressed audio (mp3) timestamp generation. How did this
20880           ever work?
20881
20882 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20883
20884         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
20885           Volume is a double not a float.
20886
20887 2004-09-15  Wim Taymans  <wim@fluendo.com>
20888
20889         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
20890         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20891         Don't close the fd in multifdsink as we didn't open it in the
20892         first place. Some cleanups.
20893
20894 2004-09-15  Wim Taymans  <wim@fluendo.com>
20895
20896         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20897         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20898         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
20899         Fix the case where the muxer would mark pages as delta
20900         frames when they are not (vorbis only ogg).
20901
20902 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20903
20904         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
20905         (gst_play_base_bin_change_state):
20906           Handle the case where we failed to setup a clear pipeline. This
20907           will throw an error (or EOS, another nice case) and if you don't
20908           catch that, the app will wait for the signal forever (and thus
20909           hang).
20910
20911 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20912
20913         * ext/gnomevfs/gstgnomevfssink.c:
20914         (gst_gnomevfssink_uri_get_protocols):
20915         * ext/gnomevfs/gstgnomevfssrc.c:
20916         (gst_gnomevfssrc_uri_get_protocols):
20917         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
20918         * ext/gnomevfs/gstgnomevfsuri.h:
20919           Use _uri_new() instead of _open(), so it doesn't take as long and
20920           Christophe's computer won't hang.
20921         * gst/playback/gstplaybasebin.c: (unknown_type):
20922           Throw error on unknown media type, so apps actually display it.
20923
20924 2004-09-14  Brian Cameron  <brian.cameron@sun.com
20925
20926         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
20927           this script to work on Solaris since bash shell handles echo
20928           differenly than bash.
20929
20930 2004-09-17  Wim Taymans  <wim@fluendo.com>
20931
20932         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
20933         (setup_source), (gst_play_base_bin_set_property),
20934         (gst_play_base_bin_add_element):
20935         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
20936         Some more work on making sure seeking pauses the pipeline and
20937         that changing the uri actually does something.
20938
20939 2004-09-17  Wim Taymans  <wim@fluendo.com>
20940
20941         * gst/tcp/gstfdset.c: (gst_fdset_wait):
20942         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
20943         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
20944         (gst_tcpserversink_close):
20945         Be a bit more paranoid when freeing memory.
20946
20947 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20948
20949         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
20950         (qtdemux_parse_trak):
20951           Don't crash by dividing by zero (see sample movie in #126922).
20952
20953 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20954
20955         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
20956           Don't touch non-existing data (fixes crash on file in #140147).
20957
20958 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20959
20960         * gst/playback/gstplaybasebin.c:
20961         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
20962           Handle double disposals, and proper change of URIs.
20963
20964 2004-09-13  Martin Eikermann <meiker@upb.de>
20965
20966         * gst/mpegstream/gstmpegparse.c:
20967           fix synchronistation for streams recorded from digital PCR
20968           fixes bug #119376
20969
20970 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20971
20972         * ext/gnomevfs/Makefile.am:
20973         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
20974         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
20975         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
20976         (gst_gnomevfssink_uri_get_type),
20977         (gst_gnomevfssink_uri_get_protocols),
20978         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
20979         (gst_gnomevfssink_uri_handler_init),
20980         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
20981         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
20982         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
20983         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
20984         (gst_gnomevfssrc_uri_get_type),
20985         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
20986         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
20987         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
20988         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
20989         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
20990         * ext/gnomevfs/gstgnomevfsuri.h:
20991           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
20992           of fake URIs to see which this version of Gnome-VFS likes, and
20993           uses that for the Gst-URI interface. Makes playbin support http://
20994           streams. Also fix up some stupid behaviour in gnomevfssrc.
20995
20996 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20997
20998         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
20999         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21000         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21001         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21002           Update mixer (to sync with other sessions) if we try to obtain
21003           a new value. This makes alsamixer work accross applications.
21004         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21005           Only call sync functions if we're running, else alsalib asserts.
21006         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21007           Sometimes fails to compile. Possibly a gcc bug.
21008         * gst/playback/gstplaybin.c: (gen_video_element),
21009         (gen_audio_element):
21010           Add a reference to an application-provided object, because we lose
21011           this same reference if we add it to the bin. If we don't do this,
21012           we can only use this object once and thus crash if we go from
21013           ready to playing, back to ready and back to playing again.
21014           Also add an audioscale element because several cheap soundcards -
21015           like mine - don't support all samplerates.
21016         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21017         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21018           Fix wrong order or PAR calls. Makes automatically obtained PAR
21019           from the X server atually being used.
21020
21021 2004-09-12  David Schleef  <ds@schleef.org>
21022
21023         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21024         #151887, #152102, #152247.
21025         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21026         * examples/seeking/cdparanoia.c: same
21027         * examples/seeking/cdplayer.c: same
21028         * examples/seeking/seek.c: same
21029         * examples/seeking/spider_seek.c: same
21030         * examples/seeking/vorbisfile.c: same
21031         * examples/stats/mp2ogg.c: same
21032         * ext/esd/esdsink.c: (gst_esdsink_class_init),
21033         (gst_esdsink_dispose): Dispose of element properly.
21034         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21035         fixes.
21036         * ext/nas/nassink.c: (gst_nassink_class_init),
21037         (gst_nassink_dispose): Dispose of element correctly.
21038         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21039         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21040         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21041         Fix 64-bit warning.
21042         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21043         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21044         Fix 64-bit warning.
21045
21046 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
21047
21048         * configure.ac : change speex detection as 1.1.6 now uses
21049           .pc/pkg-config and they changed their headers location.
21050
21051 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
21052
21053         * gst/matroska/matroska-mux.h:
21054         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21055         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21056         (gst_matroska_mux_write_data):
21057           Write multiple blocks/frames per cluster.
21058                 Write meta-seek information (seek heads).
21059
21060 2004-09-09  Scott Wheeler <wheeler@kde.org>
21061
21062         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21063         (gst_play_bin_set_property), (gst_play_bin_get_property),
21064         (gen_audio_element), (gen_audio_element):
21065           Add a volume element / property to the pipeline.
21066
21067 2004-09-07  Wim Taymans  <wim@fluendo.com>
21068
21069         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21070         Copy timestamps from the master pad to the output buffers.
21071
21072 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21073
21074         * ext/raw1394/gstdv1394src.c:
21075           throw errors when applicable
21076
21077 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
21078
21079         * gst/matroska/ebml-ids.h:
21080         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21081         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21082         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21083           automatically convert unix time <-> ebml time when reading/writing
21084           a date, use gst_ebml_write_uint to write CUETIME,
21085           not gst_ebml_write_date.
21086         * gst/matroska/matroska-ids.h:
21087         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21088         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21089         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21090         (gst_matroska_mux_write_data):
21091           Write track and segment UIDs, write muxing date, write
21092           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21093           Create cues for audio only files.
21094
21095 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21096
21097         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21098         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21099           Re-commit ALSA switches.
21100         * gst/adder/gstadder.c: (gst_adder_loop):
21101           64-bit fix (#151416).
21102         * gst/debug/progressreport.c: (gst_progressreport_report):
21103           64-bit fix (#151419).
21104         * gst/matroska/matroska-demux.c:
21105         (gst_matroska_demux_parse_contents):
21106           64-bit fix (#151420).
21107         * gst/playback/test3.c: (update_scale):
21108           64-bit fix (#151421).
21109
21110 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21111
21112         * configure.ac:
21113           bump nano to cvs
21114
21115 === release 0.8.4 ===
21116
21117 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21118
21119         * configure.ac: releasing 0.8.4, "Alias"
21120
21121 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21122
21123         * ext/theora/Makefile.am:
21124           fix makefile.  Fixes #151462.
21125
21126 2004-08-30  Wim Taymans  <wim@fluendo.com>
21127
21128         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21129         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21130         (gst_multifdsink_remove_client_link),
21131         (gst_multifdsink_client_queue_buffer),
21132         (gst_multifdsink_handle_client_write):
21133         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21134         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21135         Fix some memory leaks.
21136
21137 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21138
21139         Patch by: David Schleef
21140
21141         * configure.ac:
21142         * sys/Makefile.am:
21143           rename our detection macro for V4L2.  Fixes #151236.
21144
21145 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21146
21147         Patch by: David Schleef
21148
21149         * configure.ac:
21150           check to define LAMEPRESET.  Fixes #151232.
21151
21152 2004-08-27  David Schleef  <ds@schleef.org>
21153
21154         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21155         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21156         (gst_glimagesink_fixate):  Move local variable declarations to
21157         make gcc-2.95 happy.
21158
21159 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21160
21161         * configure.ac:
21162           bump nano for prerelease
21163
21164 2004-08-27  David Schleef  <ds@schleef.org>
21165
21166         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21167         * sys/sunaudio/gstsunaudiosrc.c:
21168         * sys/sunaudio/gstsunaudiosrc.h:
21169
21170 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21171
21172         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21173         handle EOS correctly
21174         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21175         * gst/matroska/matroska-mux.h:
21176         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21177         VFW compatibility mode
21178
21179 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21180
21181         patch by: Zaheer Abbas Merali
21182
21183         * ext/ogg/gstoggmux.c:
21184         * ext/vorbis/vorbisenc.c:
21185         * ext/vorbis/vorbisenc.h:
21186           handle NEWMEDIA
21187
21188 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21189
21190         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21191         fix byte order reversion on little endian machines.
21192         * gst/matroska/matroska-mux.c: (audiosink_templ),
21193         (gst_matroska_mux_audio_pad_link):
21194         add TTA codec to the list of supported codecs.
21195         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21196         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21197         (gst_matroska_mux_write_data):
21198         * gst/matroska/matroska-mux.h:
21199         write segment duration correctly, write muxing app string, fixes bugs
21200         #140897 and #140898.
21201         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21202         wait for all pads to be negotiated before starting to mux.
21203
21204 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21205
21206         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21207         * ext/lame/gstlame.h:
21208         Added new media support to lame
21209
21210 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21211
21212         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21213         send vorbis headers at the beginning of a stream, fixes bug #141554.
21214         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21215         bug #148950.
21216         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21217         (gst_matroska_demux_plugin_init):
21218         * gst/matroska/matroska-ids.h:
21219         enable demuxing of TTA audio streams, fixes bug #148951.
21220         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21221         enable typefinding for TTA audio files, fixes bug #148711.
21222         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21223         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21224         fixes playback of packed bitstream and xvid with bframes, bug #135407.
21225
21226 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
21227
21228         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21229         (gst_riff_read_element_data), (gst_riff_read_seek),
21230         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21231         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21232         <teuf@gnome.org>
21233
21234 2004-08-23 Iain <iaingnome@gmail.com>
21235
21236         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21237         tags. They appear to be handled differently to normal.
21238         (tag_list_to_id3_tag_foreach): Ditto.
21239
21240 2004-08-22  Wim Taymans  <wim@fluendo.com>
21241
21242         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21243         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21244         Make sure we never send -1 granulepos.
21245
21246 2004-08-20  Wim Taymans  <wim@fluendo.com>
21247
21248         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21249         (gst_ogg_mux_loop):
21250         I will accept bitchslappings with non sharp objects.
21251
21252 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21253
21254         * configure.ac:
21255         Clean up the test for lame presets
21256
21257 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21258
21259         * configure.ac:
21260         * ext/lame/Makefile.am:
21261         * ext/lame/gstlame.c: (gst_lame_class_init),
21262         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21263         Only enable lame presets if version of lame has presets in API
21264
21265 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
21266         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21267         * gst/udp/gstudpsrc.h:
21268           Don't call gst_pad_push in a get function. Fixes #150449
21269
21270 2004-08-18  Wim Taymans  <wim@fluendo.com>
21271
21272         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21273         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21274         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21275         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21276         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21277         (gst_fdset_wait):
21278         * gst/tcp/gstfdset.h:
21279         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21280         (gst_multifdsink_client_queue_buffer),
21281         (gst_multifdsink_handle_client_write):
21282         * gst/tcp/gstmultifdsink.h:
21283         Some extra checks in gstfdset.
21284         Only use send() when the fd is a socket. Don't try to
21285         read from write only fds.
21286
21287 2004-08-18  Wim Taymans  <wim@fluendo.com>
21288
21289         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21290         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21291         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21292         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21293         (gst_fdset_wait):
21294         Add more locking and bounds checking.
21295
21296 2004-08-18  Wim Taymans  <wim@fluendo.com>
21297
21298         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21299         Realloc test fdset in the lock and right before starting
21300         the poll call. Bump the limit to 4096.
21301
21302 2004-08-17  David Schleef  <ds@schleef.org>
21303
21304         * sys/sunaudio/Makefile.am:
21305         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21306         of rates and channels.  Make debugging less obnoxious.
21307
21308         Patch from Balamurali Viswanathan implementing a mixer for
21309         Sun audio.  (bug #144091):
21310         * sys/sunaudio/gstsunelement.c:
21311         * sys/sunaudio/gstsunelement.h:
21312         * sys/sunaudio/gstsunmixer.c:
21313         * sys/sunaudio/gstsunmixer.h:
21314
21315 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21316
21317         * gst/audioscale/gstaudioscale.c:
21318         * gst/audioscale/gstaudioscale.h:
21319         made audioscale resample from any sample rate to any sample rate
21320
21321 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21322
21323         * ext/libpng/gstpngdec.c:
21324           error out on unsupported types
21325
21326 2004-08-17  Iain <iaingnome@gmail.com>
21327
21328         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21329         mid_side and loose_mid_side properties if its a stereo stream.
21330
21331 2004-08-17  Wim Taymans  <wim@fluendo.com>
21332
21333         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21334         (theora_get_formats), (theora_dec_src_convert),
21335         (theora_dec_sink_convert), (theora_dec_src_query),
21336         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21337         Add a debug line.
21338
21339 2004-08-17  Wim Taymans  <wim@fluendo.com>
21340
21341         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21342         (gst_ogg_pad_push):
21343         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21344         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21345         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21346         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21347         Mark delta units in the muxer.
21348         Try to decode the packet after an out-of-sync error from
21349         libogg.
21350
21351 2004-08-17  Wim Taymans  <wim@fluendo.com>
21352
21353         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21354         (gst_multifdsink_init), (gst_multifdsink_add),
21355         (gst_multifdsink_client_queue_buffer),
21356         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21357         * gst/tcp/gstmultifdsink.h:
21358         Added option to send a keyframe to clients as the first buffer.
21359         Make timeout property writable.
21360
21361 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21362
21363         patch by: Wim Taymans
21364
21365         * gst/tcp/gstfdset.c:
21366         * gst/tcp/gstmultifdsink.c:
21367           fix index comparison, should include 0
21368
21369 2004-08-16  Wim Taymans  <wim@fluendo.com>
21370
21371         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21372         (gst_fdset_add_fd), (gst_fdset_remove_fd),
21373         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21374         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21375         (gst_fdset_wait):
21376           copy when reallocing for poll so the select arguments don't get
21377           changed during the call
21378
21379 2004-08-16  Wim Taymans  <wim@fluendo.com>
21380
21381         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21382         (gst_theora_enc_class_init), (theora_enc_sink_link),
21383         (theora_buffer_from_packet), (theora_enc_chain):
21384         Fix bug where buffers were not marked as keyframes
21385         correctly.
21386
21387 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21388
21389         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21390         (gst_lame_preset_get_type), (gst_lame_class_init):
21391         describe the enum values for vbr mode and presets more verbosely
21392
21393 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21394
21395         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21396         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21397         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21398         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21399         * ext/lame/gstlame.h:
21400         add preset property to lame so it can use lame presets
21401
21402 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21403
21404         * ext/lame/gstlame.c: (gst_lame_get_property):
21405         whoops forgot break, thanks teuf
21406
21407 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21408
21409         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21410         (gst_lame_class_init), (gst_lame_src_getcaps),
21411         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
21412         (gst_lame_get_property), (gst_lame_setup):
21413         * ext/lame/gstlame.h:
21414         fix lame's broken vbr stuff, allow it to resample if need be, and also
21415         make xing header optional
21416
21417 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21418
21419         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
21420         added getcaps function so samplerate doesnt get fixated to silly values
21421
21422 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21423
21424         * ext/lame/gstlame.c: (gst_lame_src_link):
21425         revert previous fix
21426
21427 2004-08-12  Johan Dahlin  <johan@gnome.org>
21428
21429         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
21430         checks. Doesn't matter what state we are in. Interfaces are a
21431         compile time thing, not runtime. It also broke the python bindings.
21432
21433 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21434
21435         * ext/lame/gstlame.c: (gst_lame_src_link):
21436         made source pad link function check if sinkpad is ok..fixes the problem
21437         where core fixates the output rate of lame stupidly
21438
21439 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
21440
21441         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
21442         * sys/v4l/v4l_calls.c:
21443         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
21444           fix fixate function to handle nonsimple caps.
21445           remove bogus check in _link
21446           cleanups
21447
21448 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21449
21450         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
21451         set default compression ratio parameter to 0.0 so bitrate parameter
21452         works :)
21453
21454 2004-08-11  David Schleef  <ds@schleef.org>
21455
21456         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
21457
21458 2004-08-11  David Schleef  <ds@schleef.org>
21459
21460         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
21461         before.
21462
21463 2004-08-11  David Schleef  <ds@schleef.org>
21464
21465         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
21466
21467 2004-08-11  David Schleef  <ds@schleef.org>
21468
21469         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
21470           license field
21471         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
21472         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
21473           LGPL.
21474         * gst/auparse/gstauparse.c: Fix plugin license field.
21475         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
21476         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
21477         * gst/rtp/gstrtp.c: Fix plugin license field.
21478
21479 2004-08-11  Wim Taymans  <wim@fluendo.com>
21480
21481         * gst/tcp/Makefile.am:
21482         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
21483         (ensure_size), (gst_fdset_new), (gst_fdset_free),
21484         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
21485         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
21486         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
21487         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21488         (gst_fdset_fd_can_write), (gst_fdset_wait):
21489         * gst/tcp/gstfdset.h:
21490         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21491         (gst_multifdsink_class_init), (gst_multifdsink_init),
21492         (gst_multifdsink_add), (gst_multifdsink_remove),
21493         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
21494         (gst_multifdsink_remove_client_link),
21495         (gst_multifdsink_handle_client_read),
21496         (gst_multifdsink_client_queue_data),
21497         (gst_multifdsink_client_queue_caps),
21498         (gst_multifdsink_client_queue_buffer),
21499         (gst_multifdsink_handle_client_write),
21500         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21501         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21502         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
21503         (gst_multifdsink_close):
21504         * gst/tcp/gstmultifdsink.h:
21505         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21506         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
21507         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
21508         (gst_tcpserversink_close):
21509         * gst/tcp/gsttcpserversink.h:
21510         Abstracted away the select call, implemented poll (yes we ran into
21511         the 1024 limit in production).
21512
21513 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21514
21515         * gst/tcp/gsttcp.c:
21516         * gst/tcp/gsttcpplugin.c:
21517           improve debuggging, remove assert
21518
21519 2004-08-10  Wim Taymans  <wim@fluendo.com>
21520
21521         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21522         (gst_client_status_get_type), (gst_multifdsink_class_init),
21523         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
21524         (gst_multifdsink_handle_client_read),
21525         (gst_multifdsink_handle_client_write),
21526         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21527         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21528         (gst_multifdsink_get_property):
21529         * gst/tcp/gstmultifdsink.h:
21530         * gst/tcp/gsttcp-marshal.list:
21531         Starting to prepare for specifying buffer time in other units
21532         than buffers. Expose remove reason in signal.
21533
21534 2004-08-10  Wim Taymans  <wim@fluendo.com>
21535
21536         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21537         (gst_multifdsink_remove), (gst_multifdsink_clear),
21538         (gst_multifdsink_remove_client_link),
21539         (gst_multifdsink_handle_client_read),
21540         (gst_multifdsink_client_queue_data),
21541         (gst_multifdsink_client_queue_buffer),
21542         (gst_multifdsink_handle_client_write),
21543         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
21544         (gst_multifdsink_chain), (gst_multifdsink_close):
21545         * gst/tcp/gstmultifdsink.h:
21546         Added more debugging info. Changed the way clients are
21547         removed from the lists. Fixed a bug where a bad file descriptor
21548         could cause many clients to be removed.
21549
21550 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21551
21552         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
21553           allow all pixel-aspect-ratios, not just 1:1
21554
21555 2004-08-09  David Schleef  <ds@schleef.org>
21556
21557         * sys/glsink/ARB_multitexture.h:  Remove old files.
21558         * sys/glsink/EXT_paletted_texture.h:
21559         * sys/glsink/NV_register_combiners.h:
21560         * sys/glsink/gstgl_nvimage.c:
21561         * sys/glsink/gstgl_pdrimage.c:
21562         * sys/glsink/gstgl_rgbimage.c:
21563         * sys/glsink/gstglsink.c:
21564         * sys/glsink/gstglsink.h:
21565         * sys/glsink/gstglxwindow.c:
21566         * sys/glsink/regcomb_yuvrgb.c:
21567
21568 2004-08-09  David Schleef  <ds@schleef.org>
21569
21570         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
21571         GL sink plugin.  (Bug #147302)
21572
21573         * configure.ac: Test for OpenGL
21574         * sys/Makefile.am: Use test for OpenGL
21575         * sys/glsink/Makefile.am:
21576         * sys/glsink/glimagesink.c: rewrite
21577         * sys/glsink/glimagesink.h: rewrite
21578
21579 2004-08-09  David Schleef  <ds@schleef.org>
21580
21581         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
21582         sane framerates.
21583         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
21584         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
21585         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
21586
21587 2004-08-09  Wim Taymans  <wim@fluendo.com>
21588
21589         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21590         (gst_multifdsink_add), (gst_multifdsink_get_stats),
21591         (gst_multifdsink_client_remove),
21592         (gst_multifdsink_handle_client_read),
21593         (gst_multifdsink_handle_client_write),
21594         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21595         Do a bit more logging, make the client_read code more robust.
21596
21597 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21598
21599         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
21600         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
21601         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
21602         (gst_jpegdec_init), (gst_jpegdec_chain):
21603         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
21604         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
21605           cleanups, debugging fixes and memleak plugging
21606
21607 2004-08-09  Wim Taymans  <wim@fluendo.com>
21608
21609         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21610         (theora_get_formats), (theora_dec_src_convert),
21611         (theora_dec_sink_convert), (theora_dec_src_query),
21612         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
21613         (theora_dec_change_state):
21614         Don't crash on missing header packets.
21615
21616 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21617
21618         * po/LINGUAS:
21619         * po/sq.po:
21620           Added Albanian translation (Laurent Dhima)
21621         * po/cs.po:
21622           updated
21623
21624 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21625
21626         * ext/lame/gstlame.c:
21627           fix/add debugging
21628
21629 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21630
21631         * sys/ximage/ximagesink.c:
21632         * sys/xvimage/xvimagesink.c:
21633           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
21634
21635 2004-08-06  Wim Taymans  <wim@fluendo.com>
21636
21637         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21638         (gst_multifdsink_add), (gst_multifdsink_get_stats),
21639         (gst_multifdsink_client_remove),
21640         (gst_multifdsink_handle_client_read),
21641         (gst_multifdsink_handle_client_write),
21642         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21643         Make sure we don't try to read more from a client that what
21644         ioctl says us or we deadlock.
21645
21646 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21647
21648         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
21649         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
21650         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
21651           decouple running_time and n_frames so it can handle changing
21652           framerate while running
21653
21654 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21655
21656         * po/nl.po:
21657         * po/sv.po:
21658           updated translations
21659
21660 2004-08-04  Benjamin Otte  <otte@gnome.org>
21661
21662         * gst/videotestsrc/gstvideotestsrc.c:
21663         (gst_videotestsrc_get_capslist), (generate_capslist),
21664         (plugin_init):
21665           generate the list of supported caps at startup and reuse it instead
21666           of always generating it
21667
21668 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21669
21670         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
21671           whoops, last checkin broke normal build
21672
21673 2004-08-03  Benjamin Otte  <otte@gnome.org>
21674
21675         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
21676         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
21677         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
21678         (gst_alsa_mixer_get_option):
21679         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
21680         (dvdnavsrc_print_event):
21681         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
21682         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
21683         (gst_ogg_mux_pad_unlink):
21684         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
21685         (gst_multipart_mux_pad_unlink):
21686         * gst/videofilter/gstvideobalance.c:
21687         (gst_videobalance_colorbalance_set_value):
21688         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
21689         (gst_videomixer_pad_unlink):
21690         * po/uk.po:
21691         * sys/oss/gstossmixer.c:
21692         * sys/v4l/gstv4lcolorbalance.c:
21693         * sys/v4l/gstv4ltuner.c:
21694         * sys/v4l/v4lsrc_calls.c:
21695         * sys/v4l2/gstv4l2colorbalance.c:
21696         * sys/v4l2/gstv4l2tuner.c:
21697           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
21698
21699 2004-08-03  Benjamin Otte  <otte@gnome.org>
21700
21701         * examples/dynparams/filter.c: (ui_control_create):
21702         * examples/gstplay/player.c: (print_tag):
21703         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
21704         * ext/gdk_pixbuf/gstgdkanimation.c:
21705         (gst_gdk_animation_iter_may_advance):
21706         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
21707         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
21708         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
21709         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
21710         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
21711         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
21712         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
21713         * gst/sine/demo-dparams.c: (main):
21714         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
21715         * testsuite/alsa/formats.c: (create_pipeline):
21716         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
21717           fixes for G_DISABLE_ASSERT and friends
21718         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
21719         (mp3_type_frame_length_from_header), (mp3_type_find),
21720         (plugin_init):
21721           require mp3 typefinding to have at least MIN_HEADERS valid headers
21722           add typefinding for AAC adts files
21723
21724 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
21725
21726         * sys/ximage/ximagesink.c:
21727         (gst_ximagesink_calculate_pixel_aspect_ratio):
21728         * sys/xvimage/xvimagesink.c:
21729         (gst_xvimagesink_calculate_pixel_aspect_ratio):
21730         Make sure we calculate pixel-aspect-ratio using floating point maths
21731
21732 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21733
21734         * po/uk.po:
21735           updated translation
21736
21737 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21738
21739         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21740         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
21741           add debugging for display PAR calculation
21742
21743 2004-08-02  David Schleef  <ds@schleef.org>
21744
21745         * configure.ac: Fix mikmod CFLAGS.
21746
21747 2004-07-27  Benjamin Otte  <otte@gnome.org>
21748
21749         * gst/audioscale/gstaudioscale.c:
21750         - fix templates to only support S16, it's the only format that works
21751         - make caps nego code use try_set_caps_nonfixed and fixation instead
21752         of try_set_caps twice, which is not nice for autopluggers
21753         - change rank to secondary, so autopluggers can pick it up after
21754         audioconvert
21755
21756 2004-08-02  Iain <iain@prettypeople.org>
21757
21758         * gst/interleave/interleave.c (interleave_init),
21759         (interleave_request_new_pad),
21760         (interleave_pad_removed),
21761         (interleave_buffered_loop): Use the real pad count, not the artificial
21762         one.
21763
21764 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21765
21766         * configure.ac: bump nano back to development
21767
21768 === release 0.8.3 ===
21769
21770 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21771
21772         * configure.ac: releasing 0.8.3, "Water"
21773
21774 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21775
21776         * sys/xvimage/xvimagesink.c:
21777         (gst_xvimagesink_calculate_pixel_aspect_ratio),
21778         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
21779         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
21780         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
21781         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
21782         * sys/xvimage/xvimagesink.h:
21783           apply similar PAR fixes as to ximagesink
21784
21785 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21786
21787         patch from: Benjamin Otte
21788
21789         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
21790           add link function to lame.  Fixes #148986.
21791
21792 2004-08-02  Johan Dahlin  <johan@gnome.org>
21793
21794         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
21795         fix debugging log
21796
21797 2004-07-30  David Schleef  <ds@schleef.org>
21798
21799         * gst/videomixer/Makefile.am: Fix things that should have been
21800         fixed in the last checkin.
21801
21802 2004-07-30  David Schleef  <ds@schleef.org>
21803
21804         * gst/multipart/Makefile.am: Fix things that should have been
21805         fixed in the last checkin.
21806
21807 2004-07-30  David Schleef  <ds@schleef.org>
21808
21809         * testsuite/multifilesink/Makefile.am: Fix unused variable.
21810
21811 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21812
21813         * configure.ac:
21814           bump nano for prerelease
21815         * po/af.po:
21816         * po/az.po:
21817         * po/cs.po:
21818         * po/en_GB.po:
21819         * po/hu.po:
21820         * po/nl.po:
21821         * po/sr.po:
21822         * po/sv.po:
21823         * po/uk.po:
21824           updates
21825
21826 2004-07-30  Wim Taymans  <wim@fluendo.com>
21827
21828         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21829         (gst_multifdsink_add), (gst_multifdsink_remove),
21830         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
21831         (gst_multifdsink_client_remove),
21832         (gst_multifdsink_handle_client_write),
21833         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21834         * gst/tcp/gstmultifdsink.h:
21835         Recover from a select with a bad file descriptor by removing
21836         the client.
21837
21838 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21839
21840         * configure.ac:
21841           fix requirement of core
21842         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
21843         (gst_play_pipeline_setup):
21844           don't use colorspace element.  do use hermescolorspace element.
21845           make macro to get a colorspace element.
21846           mark strings for translation.
21847         * po/POTFILES.in:
21848           add play.c
21849         * po/af.po:
21850         * po/az.po:
21851         * po/cs.po:
21852         * po/en_GB.po:
21853         * po/hu.po:
21854         * po/nl.po:
21855         * po/sr.po:
21856         * po/sv.po:
21857         * po/uk.po:
21858           update translations
21859
21860 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21861
21862         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
21863         fix default for newmedia flag
21864
21865 2004-07-30  Wim Taymans  <wim@fluendo.com>
21866
21867         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21868         (gst_theora_dec_init), (theora_get_formats),
21869         (theora_dec_src_convert), (theora_dec_sink_convert),
21870         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21871         (theora_dec_chain), (theora_dec_set_property),
21872         (theora_dec_get_property):
21873         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21874         (gst_theora_enc_class_init), (gst_theora_enc_init),
21875         (theora_enc_sink_link), (theora_enc_chain),
21876         (theora_enc_set_property), (theora_enc_get_property):
21877         Added cropping option to theora decoder.
21878         Added border option to theora encoder.
21879
21880 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21881
21882         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
21883         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
21884         (gst_pngenc_set_property):
21885         * ext/libpng/gstpngenc.h:
21886         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
21887
21888 2004-07-30  Wim Taymans  <wim@fluendo.com>
21889
21890         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
21891         (theora_enc_sink_link), (theora_enc_chain),
21892         (theora_enc_set_property), (theora_enc_get_property):
21893         Fix encoding of non-multiple-of-16 video.
21894
21895 2004-07-29  David Schleef  <ds@schleef.org>
21896
21897         * configure.ac: make test for audiofile more strict
21898
21899 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21900
21901         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
21902           give different names to typefind functions
21903
21904 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21905
21906         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21907         (gst_ximagesink_calculate_pixel_aspect_ratio),
21908         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
21909         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
21910         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
21911         (gst_ximagesink_get_property), (gst_ximagesink_init):
21912         * sys/ximage/ximagesink.h:
21913           allocate PAR's dynamically.
21914           use autodetected PAR if no object-set PAR is given.
21915           add workaround for directfb's X not setting physical size.
21916           fix to xvimagesink will follow tomorrow.
21917
21918 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21919
21920         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
21921         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
21922         (gst_shout2send_get_type), (gst_shout2send_set_clock),
21923         (gst_shout2send_class_init), (gst_shout2send_init),
21924         (set_shout_metadata), (gst_shout2send_set_metadata),
21925         (gst_shout2send_chain), (gst_shout2send_set_property),
21926         (gst_shout2send_get_property), (gst_shout2send_connect),
21927         (gst_shout2send_change_state):
21928         * ext/shout2/gstshout2.h:
21929         - fix for sending mp3 audio to icecast2 server, if pad link function not
21930         called before PAUSED state
21931         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
21932         - added tagging support for mp3 audio broadcasted
21933         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
21934         debug info
21935
21936 2004-07-28  Wim Taymans  <wim@fluendo.com>
21937
21938         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
21939         (gst_ogg_demux_push):
21940         Return query failure when we don't know the length of
21941         an ogg stream insteda of returning TRUE with a bogus value.
21942
21943 2004-07-28  Wim Taymans  <wim@fluendo.com>
21944
21945         * ext/theora/theoradec.c: (theora_get_formats),
21946         (theora_dec_src_convert), (theora_dec_sink_convert),
21947         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21948         (theora_dec_chain):
21949         Don't screw up the 1 Chroma for 1 luma sample situation when we
21950         have an odd offset/width by adding a black border in those cases.
21951
21952 2004-07-28  Wim Taymans  <wim@fluendo.com>
21953
21954         * ext/theora/theoradec.c: (theora_get_formats),
21955         (theora_dec_src_convert), (theora_dec_sink_convert),
21956         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21957         (theora_dec_chain):
21958         * ext/theora/theoraenc.c: (theora_enc_sink_link):
21959         Added first attempt at cropping of the image as required by the
21960         theora spec. We need more properties in the caps (offset_x,
21961         offset_y,stride) to implement this correctly.
21962
21963 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
21964
21965         * ext/dvdnav/README:
21966           Update the README to use dvddemux
21967         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21968           Ensure getcaps returns a subset of the template caps
21969         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
21970         (gst_mpeg2subt_init):
21971           Ensure getcaps returns a subset of the template caps
21972         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
21973         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
21974         (gst_dvd_demux_get_subpicture_stream),
21975         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
21976         * gst/mpegstream/gstdvddemux.h:
21977           Set the explicit caps on the current_video pad before pushing
21978           anything
21979         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
21980         (gst_mpeg_demux_get_audio_stream):
21981           Free caps used to gst_pad_set_explicit_caps, which takes a const
21982           GstCaps *
21983
21984 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21985
21986         * configure.ac: update GStreamer requirement to 0.8.4 because of
21987           GstFraction.
21988
21989 2004-07-28  Wim Taymans  <wim@fluendo.com>
21990
21991         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
21992         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
21993         Add the pad to the element after setting up the caps. This
21994         makes it a lot easier to autoplug.
21995
21996 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
21997
21998         * gst/median/gstmedian.c:
21999         * gst/mpeg2subt/gstmpeg2subt.c:
22000         * gst/mpegaudioparse/gstmpegaudioparse.c:
22001         * gst/mpegstream/gstdvddemux.c:
22002         * gst/mpegstream/gstmpegdemux.c:
22003         * gst/mpegstream/gstmpegpacketize.c:
22004         * gst/rtjpeg/gstrtjpeg.c:
22005         * gst/rtjpeg/gstrtjpegdec.c:
22006         * gst/rtjpeg/gstrtjpegenc.c:
22007         * gst/sine/gstsinesrc.c:
22008         * gst/smooth/gstsmooth.c:
22009         * gst/smpte/gstsmpte.c:
22010         * gst/smpte/gstsmpte.h:
22011         * gst/stereo/gststereo.c:
22012         * gst/videofilter/gstgamma.c:
22013         * gst/videofilter/gstvideobalance.c:
22014         * gst/videofilter/gstvideofilter.c:
22015         * gst/videofilter/gstvideoflip.c:
22016         * gst/videoscale/gstvideoscale.c:
22017         * gst/videoscale/videoscale.c:
22018         * gst/videotestsrc/gstvideotestsrc.c:
22019         * gst/videotestsrc/videotestsrc.c:
22020         * gst/wavenc/gstwavenc.c:
22021         * gst/wavparse/gstwavparse.c:
22022           fix local includes and 64 bits constants
22023
22024 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22025
22026         * win32/gst.sln:
22027         * gst-libs/gst/*/*.vcproj:
22028         * gst/*/*.vcproj:
22029           more working plugins
22030
22031 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22032
22033         * testsuite/alsa/Makefile.am:
22034         * testsuite/alsa/srcstate.c:
22035         add test for alsasrc changing state
22036
22037 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22038
22039         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22040         (gst_silence_get):
22041         * gst/silence/gstsilence.h:
22042         fix silence generation for 16bit raw audio
22043
22044 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22045
22046         * gst/matroska/matroska-demux.c:
22047         (gst_matroska_demux_parse_metadata),
22048         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22049         * gst/mpegaudio/common.c:
22050         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22051         (gst_videoscale_getcaps), (gst_videoscale_link),
22052         (gst_videoscale_src_fixate), (gst_videoscale_init),
22053         (gst_videoscale_finalize):
22054         * gst/videoscale/gstvideoscale.h:
22055         * gst/videotestsrc/gstvideotestsrc.c:
22056         (gst_videotestsrc_get_capslist):
22057         * gst/wavenc/gstwavenc.c:
22058         * sys/oss/gstossmixer.c: (fill_labels):
22059         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22060         (gst_ximagesink_handle_xevents),
22061         (gst_ximagesink_calculate_pixel_aspect_ratio),
22062         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22063         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22064         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22065         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22066         (gst_ximagesink_init), (gst_ximagesink_class_init):
22067         * sys/ximage/ximagesink.h:
22068         * sys/xvimage/xvimagesink.c:
22069         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22070         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22071         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22072         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22073         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22074         * sys/xvimage/xvimagesink.h:
22075           first batch of pixel aspect ratio commits.
22076
22077 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22078
22079         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22080         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22081         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22082           handle stride, needs work if we want to move stride handling
22083           upstream, but works correctly for our purposes.
22084
22085 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22086
22087         * gst/videoscale/README:
22088           add testing examples
22089         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22090         (gst_videoscale_chain):
22091         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22092         (gst_videoscale_get_size):
22093           add get_size function that handles stride like videotestsrc.
22094           fixes conversion for YUV formats for as much as I can test them.
22095
22096 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22097
22098         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22099         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22100         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22101         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22102         (gst_xvimagesink_xvimage_put):
22103           further cleanups, logging, error handling and synchronizing
22104
22105 2004-07-27  Wim Taymans  <wim@fluendo.com>
22106
22107         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22108         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22109         (gst_videomixer_pad_set_property),
22110         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22111         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22112         (gst_videomixer_class_init), (gst_videomixer_init),
22113         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22114         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22115         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22116         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22117         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22118         (gst_videomixer_loop), (plugin_init):
22119         Be a nicer negotiation citizen and provide a getcaps function on
22120         the srcpad. This also fixes a crash when resizing.
22121
22122 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22123
22124         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22125         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22126
22127 2004-07-27  Wim Taymans  <wim@fluendo.com>
22128
22129         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22130         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22131         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22132         (gst_pngenc_set_property):
22133         * ext/libpng/gstpngenc.h:
22134         Added snapshot property to pngenc.
22135         removed g_print from pngdec
22136
22137 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22138
22139         * gst/ac3parse/ac3parse.vcproj
22140         * gst/adder/adder.vcproj
22141         * gst/alpha/alpha.vcproj
22142         * gst/alpha/alphacolor.vcproj
22143         * gst/asfdemux/asf.vcproj
22144         * gst/audioconvert/audioconvert.vcproj
22145         * gst/audiorate/audiorate.vcproj
22146         * gst/audioscale/audioscale.vcproj
22147         * gst/auparse/auparse.vcproj
22148         * gst/avi/avi.vcproj
22149         * gst/cdxaparse/cdxaparse.vcproj
22150         * gst/chart/chart.vcproj
22151         * gst/colorspace/colorspace.vcproj
22152         * gst/cutter/cutter.vcproj
22153         * gst/debug/debug.vcproj
22154         * gst/debug/efence.vcproj
22155         * gst/debug/navigationtest.vcproj
22156         * gst/deinterlace/deinterlace.vcproj
22157         * gst/effectv/effectv.vcproj
22158         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22159         * gst/filter/filter.vcproj
22160         * gst/flx/flxdec.vcproj
22161         * gst/goom/goom.vcproj
22162         * gst/interleave/interleave.vcproj
22163         * gst/law/alaw.vcproj
22164         * gst/law/mulaw.vcproj
22165         * gst/matroska/matroska.vcproj
22166         * gst/median/median.vcproj
22167         * gst/mixmatrix/mixmatrix.vcproj
22168         * gst/mpeg1sys/mpeg1systemencode.vcproj
22169         * gst/mpeg1videoparse/mp1videoparse.vcproj
22170         * gst/mpeg2sub/mpeg2subt.vcproj
22171         * gst/mpegaudio/mpegaudio.vcproj
22172         * gst/mpegaudioparse/mpegaudioparse.vcproj
22173         * gst/mpegstream/mpegstream.vcproj
22174         * gst/multifilesink/multifilesink.vcproj
22175         * gst/multipart/multipart.vcproj
22176         * gst/oneton/oneton.vcproj
22177         * gst/overlay/overlay.vcproj
22178         * gst/passthrough/passthrough.vcproj
22179         * gst/qtdemux/qtdemux.vcproj
22180         * gst/realmedia/rmdemux.vcproj
22181         * gst/rtjpeg/rtjpeg.vcproj
22182         * gst/rtp/rtp.vcproj
22183         * gst/silence/silence.vcproj
22184         * gst/sine/sinesrc.vcproj
22185         * gst/smooth/smooth.vcproj
22186         * gst/smpte/smpte.vcproj
22187         * gst/spectrum/spectrum.vcproj
22188         * gst/speed/speed.vcproj
22189         * gst/stereo/stereo.vcproj
22190         * gst/switch/switch.vcproj
22191         * gst/tags/tagedit.vcproj
22192         * gst/tcp/tcp.vcproj
22193         * gst/typefind/typefindfunctions.vcproj
22194         * gst/udp/udp.vcproj
22195         * gst/videobox/videobox.vcproj
22196         * gst/videocrop/videocrop.vcproj
22197         * gst/videodrop/videodrop.vcproj
22198         * gst/videofilter/gamma.vcproj
22199         * gst/videofilter/videobalance.vcproj
22200         * gst/videofilter/videofilter.vcproj
22201         * gst/videofilter/videoflip.vcproj
22202         * gst/videoflip/videoflip.vcproj
22203         * gst/videomixer/videomixer.vcproj
22204         * gst/videorate/videorate.vcproj
22205         * gst/videoscale/videoscale.vcproj
22206         * gst/videotestsrc/videotestsrc.vcproj
22207         * gst/virtualdub/virtualdub.vcproj
22208         * gst/volenv/volenv.vcproj
22209         * gst/volume/volume.vcproj
22210         * gst/wavenc/wavenc.vcproj
22211         * gst/wavparse/wavparse.vcproj
22212         * gst/y4m/y4menc.vcproj
22213         * gst-libs/gst/audio/audio.vcproj
22214         * gst-libs/gst/audio/audiofilter.vcproj
22215         * gst-libs/gst/colorbalance/colorbalance.vcproj
22216         * gst-libs/gst/idct/idtc.vcproj
22217         * gst-libs/gst/media-info/media-info.vcproj
22218         * gst-libs/gst/mixer/mixer.vcproj
22219         * gst-libs/gst/navigation/navigation.vcproj
22220         * gst-libs/gst/play/play.vcproj
22221         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22222         * gst-libs/gst/resample/resample.vcproj
22223         * gst-libs/gst/riff/riff.vcproj
22224         * gst-libs/gst/tuner/tuner.vcproj
22225         * gst-libs/gst/video/video.vcproj
22226         * gst-libs/gst/xoverlay/xoverlay.vcproj
22227           avoid problems with math.h, fix release dependancy
22228           rename GStreamer-0.8.lib to libgstreamer.lib
22229
22230 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22231
22232         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22233         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22234         the atom is not available we have to unlock the mutex. Fixes #148023
22235
22236 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22237
22238         * gst-libs/gst/media-info/media-info.h:
22239           issue for a vararg macro with MSVC
22240
22241 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22242
22243         * gst/effectv/effectv.vcproj
22244         * gst-libs/gst/idct/idct.vcproj:
22245         * gst-libs/gst/media-info/media-info.vcproj:
22246         * gst-libs/gst/navigation/navigation.vcproj:
22247         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22248         * gst-libs/gst/video/video.vcproj:
22249         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22250           fixes for build problems
22251
22252 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22253
22254         * gst-libs/gst/audio/audio.def:
22255         * gst-libs/gst/audio/riff.def:
22256           add some definitions needed by plugins
22257
22258 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22259
22260         * gst/asfdemux/gstasfmux.c
22261           Fix some 64 bits constants to be glib friendly
22262
22263 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22264
22265         * gst/ac3parse/gstac3parse.c
22266         * gst/audioscale/gstaudioscale.c
22267         * gst/auparse/gstauparse.c
22268         * gst/colorspace/gstcolorspace.c
22269         * gst/colorspace/yuv2rgb.h
22270           local include fixes
22271
22272 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22273
22274         * win32/gst.sln
22275           add more plugins to the build
22276
22277 2004-07-26  Julien MOUTTE  <julien@moutte.net>
22278
22279         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22280         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22281
22282 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22283
22284         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22285         (gst_level_set_property), (gst_level_get_property),
22286         (gst_level_base_init), (gst_level_class_init):
22287           add debugging categories.  cleanups.
22288
22289 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22290
22291         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22292         (gst_videoscale_planar411), (gst_videoscale_planar400),
22293         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22294         (gst_videoscale_scale_nearest_str1),
22295         (gst_videoscale_scale_nearest_str2),
22296         (gst_videoscale_scale_nearest_str4),
22297         (gst_videoscale_scale_nearest_16bit),
22298         (gst_videoscale_scale_nearest_24bit):
22299           fixed stride issues
22300           tested with 320x240 -> 321, 322, 324 x240
22301           tested with YV12, I420, YUY2, UYVY
22302           fixed packed422rev (don't think it could have worked before)
22303           by testing with UYVY
22304
22305 2004-07-26  Benjamin Otte  <otte@gnome.org>
22306
22307         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22308         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22309         (plugin_init):
22310           add debugging category, add error checks like checking return values
22311           of setup calls, make sure it still works after
22312           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22313
22314 2004-07-26  Wim Taymans  <wim@fluendo.com>
22315
22316         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22317         (gst_mpeg_demux_get_audio_stream),
22318         (gst_mpeg_demux_process_private):
22319         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22320         Check for error codes from the negotiation functions. Make sure
22321         we really set the pad caps when a new pad is created.
22322
22323 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22324
22325         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22326         (gst_ffmpeg_caps_to_pix_fmt):
22327         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22328         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22329         (gst_ffmpegcolorspace_pad_link):
22330           don't make function do two things at the same time without reason.
22331
22332 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22333
22334         * gst/ac3parse/ac3parse.vcproj
22335         * gst/adder/adder.vcproj
22336         * gst/alpha/alpha.vcproj
22337         * gst/alpha/alphacolor.vcproj
22338         * gst/asfdemux/asf.vcproj
22339         * gst/audioconvert/audioconvert.vcproj
22340         * gst/audiorate/audiorate.vcproj
22341         * gst/audioscale/audioscale.vcproj
22342         * gst/auparse/auparse.vcproj
22343         * gst/avi/avi.vcproj
22344         * gst/cdxaparse/cdxaparse.vcproj
22345         * gst/chart/chart.vcproj
22346         * gst/colorspace/colorspace.vcproj
22347         * gst/cutter/cutter.vcproj
22348         * gst/debug/debug.vcproj
22349         * gst/debug/efence.vcproj
22350         * gst/debug/navigationtest.vcproj
22351         * gst/deinterlace/deinterlace.vcproj
22352         * gst/effectv/effectv.vcproj
22353         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22354         * gst/filter/filter.vcproj
22355         * gst/flx/flxdec.vcproj
22356         * gst/goom/goom.vcproj
22357         * gst/interleave/interleave.vcproj
22358         * gst/law/alaw.vcproj
22359         * gst/law/mulaw.vcproj
22360         * gst/matroska/matroska.vcproj
22361         * gst/median/median.vcproj
22362         * gst/mixmatrix/mixmatrix.vcproj
22363         * gst/mpeg1sys/mpeg1systemencode.vcproj
22364         * gst/mpeg1videoparse/mp1videoparse.vcproj
22365         * gst/mpeg2sub/mpeg2subt.vcproj
22366         * gst/mpegaudio/mpegaudio.vcproj
22367         * gst/mpegaudioparse/mpegaudioparse.vcproj
22368         * gst/mpegstream/mpegstream.vcproj
22369         * gst/multifilesink/multifilesink.vcproj
22370         * gst/multipart/multipart.vcproj
22371         * gst/oneton/oneton.vcproj
22372         * gst/overlay/overlay.vcproj
22373         * gst/passthrough/passthrough.vcproj
22374         * gst/qtdemux/qtdemux.vcproj
22375         * gst/realmedia/rmdemux.vcproj
22376         * gst/rtjpeg/rtjpeg.vcproj
22377         * gst/rtp/rtp.vcproj
22378         * gst/silence/silence.vcproj
22379         * gst/sine/sinesrc.vcproj
22380         * gst/smooth/smooth.vcproj
22381         * gst/smpte/smpte.vcproj
22382         * gst/spectrum/spectrum.vcproj
22383         * gst/speed/speed.vcproj
22384         * gst/stereo/stereo.vcproj
22385         * gst/switch/switch.vcproj
22386         * gst/tags/tagedit.vcproj
22387         * gst/tcp/tcp.vcproj
22388         * gst/typefind/typefindfunctions.vcproj
22389         * gst/udp/udp.vcproj
22390         * gst/videobox/videobox.vcproj
22391         * gst/videocrop/videocrop.vcproj
22392         * gst/videodrop/videodrop.vcproj
22393         * gst/videofilter/gamma.vcproj
22394         * gst/videofilter/videobalance.vcproj
22395         * gst/videofilter/videofilter.vcproj
22396         * gst/videofilter/videoflip.vcproj
22397         * gst/videoflip/videoflip.vcproj
22398         * gst/videomixer/videomixer.vcproj
22399         * gst/videorate/videorate.vcproj
22400         * gst/videoscale/videoscale.vcproj
22401         * gst/videotestsrc/videotestsrc.vcproj
22402         * gst/virtualdub/virtualdub.vcproj
22403         * gst/volenv/volenv.vcproj
22404         * gst/volume/volume.vcproj
22405         * gst/wavenc/wavenc.vcproj
22406         * gst/wavparse/wavparse.vcproj
22407         * gst/y4m/y4menc.vcproj
22408           more plugins supported under windows
22409
22410 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22411
22412         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22413         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
22414         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
22415         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22416         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
22417           Add debugging statements.  Use the sizes as returned by the
22418           *CreateImage calls.
22419
22420 2004-07-26  Johan Dahlin  <johan@gnome.org>
22421
22422         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
22423         the pad is negotiated.
22424
22425         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
22426
22427 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22428
22429         * gst-libs/gst/colorbalance/colorbalance.vcproj:
22430         * gst-libs/gst/idct/idct.vcproj:
22431         * gst-libs/gst/media-info/media-info.vcproj:
22432         * gst-libs/gst/mixer/mixer.vcproj:
22433         * gst-libs/gst/navigation/navigation.vcproj:
22434         * gst-libs/gst/play/play.vcproj:
22435         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22436         * gst-libs/gst/resample/resample.vcproj:
22437         * gst-libs/gst/tuner/tuner.vcproj:
22438         * gst-libs/gst/video/video.vcproj:
22439         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22440           more plugins supported under windows
22441
22442 2004-07-25 Iain <iain@prettypeople.org>
22443
22444         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
22445         pad now rather than when the pad is created because state changes wipe
22446         explicit caps (fixes #148043).
22447
22448 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
22449
22450         reviewed by Benjamin Otte  <otte@gnome.org>
22451
22452         * ext/mad/gstmad.c:
22453           fix mad plugin crashing on Sun (fixes #148289)
22454
22455 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22456
22457         * gst/avi/avi.def:
22458         * gst/avi/avi.vcproj:
22459         * gst/matroska/matroska.def:
22460         * gst/matroska/matroska.vcproj:
22461           remove unused .def files
22462
22463 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22464
22465         * gst-libs/gst/audio/gstaudiofilter.c:
22466           Clean the local include
22467
22468 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22469
22470         * win32/gst.sln:
22471         * gst-libs/gst/audio/audio.def:
22472         * gst-libs/gst/audio/audio.vcproj:
22473         * gst-libs/gst/audio/audiofilter.vcproj:
22474         * gst-libs/gst/audio/riff.def:
22475         * gst-libs/gst/audio/riff.vcproj:
22476         * gst-libs/gst/gst-libs.def:
22477         * gst-libs/gst/gst-libs.vcproj:
22478         * gst/avi/avi.vcproj:
22479         * gst/avi/avi.vcproj:
22480           Copy the files where needed after building, cleaner projects
22481
22482 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22483
22484         * gst/matroska/ebml-write.c:
22485           Fix some 64 bits constants to be glib friendly
22486
22487 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
22488
22489         * win32/gst.sln:
22490         * gst-libs/gst/gst-libs.def:
22491         * gst-libs/gst/gst-libs.vcproj:
22492         * gst/matroska/matroska.def:
22493         * gst/matroska/matroska.vcproj:
22494           Add the preliminary canvas to build plugins on Win32
22495
22496 2004-07-23  Benjamin Otte  <otte@gnome.org>
22497
22498         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22499           don't enfore negotiation from source side, it breaks
22500           sinesrc ! audioconvert ! osssink
22501
22502 2004-07-22  David Schleef  <ds@schleef.org>
22503
22504         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
22505         for ELF files, since they can easily be recognized as audio/mpeg.
22506         (bug #147441)
22507
22508 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22509
22510         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22511         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
22512         (gst_videoscale_scale_nearest_24bit),
22513         (gst_videoscale_scale_nearest_16bit):
22514           fix 16bit and 24bit for stride (24bit might need testing)
22515           don't pretend we do more than one algorithm
22516
22517 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22518
22519         * configure.ac:
22520         * gst/Makefile.am:
22521         * gst/multifilesink/Makefile.am:
22522         * gst/multifilesink/gstmultifilesink.c:
22523         (gst_multifilesink_get_formats),
22524         (gst_multifilesink_get_query_types), (_do_init),
22525         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
22526         (gst_multifilesink_init), (gst_multifilesink_dispose),
22527         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
22528         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
22529         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
22530         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
22531         (gst_multifilesink_chain), (gst_multifilesink_change_state),
22532         (gst_multifilesink_uri_get_type),
22533         (gst_multifilesink_uri_get_protocols),
22534         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
22535         (gst_multifilesink_uri_handler_init), (plugin_init):
22536         * gst/multifilesink/gstmultifilesink.h:
22537         * testsuite/Makefile.am:
22538         * testsuite/multifilesink/Makefile.am:
22539         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
22540         (gst_newmedia_class_init), (gst_newmedia_init),
22541         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
22542         (newfile_signal), (test_signal), (main):
22543         multifilesink plugin for creating new files every time a new media
22544         discontinuity event occurs
22545
22546 2004-07-22  Wim Taymans  <wim@fluendo.com>
22547
22548         * gst/alpha/Makefile.am:
22549         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
22550         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
22551         (gst_alpha_color_init), (gst_alpha_color_set_property),
22552         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
22553         (transform), (gst_alpha_color_chain),
22554         (gst_alpha_color_change_state), (plugin_init):
22555         Stupid plugin to to RGBA to AYUV conversion because none of
22556         the colorspace plugins can handle that yet.
22557
22558 2004-07-22  Wim Taymans  <wim@fluendo.com>
22559
22560         * examples/seeking/seek.c: (update_scale), (main):
22561         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22562         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
22563         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
22564         (gst_decode_bin_init), (gst_decode_bin_dispose),
22565         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
22566         (no_more_pads), (close_link), (type_found),
22567         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22568         (plugin_init):
22569         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22570         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22571         (gst_play_base_bin_dispose), (queue_overrun),
22572         (gen_preroll_element), (remove_prerolls), (unknown_type),
22573         (no_more_pads), (new_stream), (setup_source),
22574         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22575         (play_base_eos), (gst_play_base_bin_change_state),
22576         (gst_play_base_bin_add_element),
22577         (gst_play_base_bin_remove_element),
22578         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22579         (gst_play_base_bin_unlink_stream),
22580         (gst_play_base_bin_get_streaminfo):
22581         * gst/playback/gstplaybin.c: (gen_video_element),
22582         (gen_audio_element):
22583         * gst/playback/gststreaminfo.h:
22584         More playback updates, attempt to fix things after the state change
22585         breakage.
22586
22587 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22588
22589         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
22590         (gst_videoscale_scale_nearest_16bit):
22591           comment algorithm
22592
22593 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22594
22595         * gst/videotestsrc/gstvideotestsrc.c:
22596         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
22597         (gst_videotestsrc_init), (gst_videotestsrc_get),
22598         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
22599         (gst_videotestsrc_get_property):
22600         * gst/videotestsrc/gstvideotestsrc.h:
22601         * gst/videotestsrc/videotestsrc.c:
22602         * gst/videotestsrc/videotestsrc.h:
22603           cleanup and commenting
22604
22605 2004-07-21  Wim Taymans  <wim@fluendo.com>
22606
22607         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
22608         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
22609         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
22610         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
22611         (_find_chain_get_unknown_part), (_find_streams_check),
22612         (gst_ogg_demux_push), (gst_ogg_pad_push):
22613         * ext/theora/theoradec.c: (theora_get_formats),
22614         (theora_dec_src_convert), (theora_dec_sink_convert),
22615         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22616         (theora_dec_chain):
22617         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22618         (vorbis_dec_convert), (vorbis_dec_src_query),
22619         (vorbis_dec_src_event), (vorbis_dec_event):
22620         More seeking fixes, oggdemux now supports seeking to time and
22621         uses the downstream element to convert granulepos to time.
22622         Seeking in theora-only ogg files now works.
22623
22624 2004-07-21  Wim Taymans  <wim@fluendo.com>
22625
22626         * ext/theora/theoradec.c: (gst_theora_dec_init),
22627         (theora_get_formats), (theora_get_event_masks),
22628         (theora_get_query_types), (theora_dec_src_convert),
22629         (theora_dec_sink_convert), (theora_dec_src_query),
22630         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
22631         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22632         (vorbis_get_event_masks), (vorbis_get_query_types),
22633         (gst_vorbis_dec_init), (vorbis_dec_convert),
22634         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
22635         Added query/convert/formats functions to vorbis and theora decoders
22636         so that the outside world can use them too. Fixed seeking on an
22637         ogg/theora/vorbis file by disabling the seeking seeking on the
22638         theora srcpad.
22639
22640 2004-07-21  Julien MOUTTE  <julien@moutte.net>
22641
22642         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22643         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
22644         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
22645         images creation for both elements. We don't create the image on caps
22646         nego or renego, we just destroy the internal one if present if it does
22647         not match the needs. The chain function takes care of creating a new
22648         image when needed.
22649         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22650         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
22651         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22652         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
22653         the image format information. The buffer pool checks for the context
22654         image format and discard images with different formats.
22655         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
22656
22657 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22658
22659         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22660         (gst_ffmpegcolorspace_chain):
22661           no point in doing any chaining if the pad we want to push from
22662           isn't usable.
22663
22664 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22665
22666         * gst-libs/gst/riff/riff-media.c:
22667         (gst_riff_create_audio_caps_with_data):
22668           Fix double end-to-native symbol conversion (#148021).
22669
22670 2004-07-20  David Schleef  <ds@schleef.org>
22671
22672         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22673         Don't use an Atom that doesn't exist.
22674
22675 2004-07-20  Wim Taymans  <wim@fluendo.com>
22676
22677         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22678         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22679         (gst_multifdsink_client_remove),
22680         (gst_multifdsink_handle_client_write),
22681         (gst_multifdsink_queue_buffer):
22682         * gst/tcp/gstmultifdsink.h:
22683         More multifdsink stats. Avoid deadlock by releasing locks
22684         before sending out a signal.
22685
22686 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22687
22688         * po/LINGUAS:
22689         * po/hu.po:
22690           added Hungarian translation (Laszlo Dvornik)
22691
22692 2004-07-20  Wim Taymans  <wim@fluendo.com>
22693
22694         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22695         (gst_multifdsink_add), (gst_multifdsink_client_remove),
22696         (gst_multifdsink_handle_client_write),
22697         (gst_multifdsink_queue_buffer):
22698         * gst/tcp/gsttcp-marshal.list:
22699         Fixed the stupid marshal definition.
22700
22701 2004-07-20  Wim Taymans  <wim@fluendo.com>
22702
22703         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22704         (gst_multifdsink_init), (gst_multifdsink_add),
22705         (gst_multifdsink_client_remove),
22706         (gst_multifdsink_handle_client_write),
22707         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
22708         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
22709         (gst_multifdsink_init_send):
22710         * gst/tcp/gstmultifdsink.h:
22711         Added more stats, added timeout for a client, fixed some typos
22712         and added some comments.
22713
22714 2004-07-20  Wim Taymans  <wim@fluendo.com>
22715
22716         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22717         (gst_multifdsink_add), (gst_multifdsink_get_stats),
22718         (gst_multifdsink_client_remove),
22719         (gst_multifdsink_handle_client_write):
22720         * gst/tcp/gstmultifdsink.h:
22721         * gst/tcp/gsttcp-marshal.list:
22722         Added get_stats method that returns a GValueArray of
22723         stats values.
22724
22725 2004-07-19  Benjamin Otte  <otte@gnome.org>
22726
22727         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
22728           make sure longname, description and author are valid UTF-8
22729
22730 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22731
22732         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
22733         (gst_ximagesink_set_property):
22734         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
22735         (gst_xvimagesink_set_property):
22736           make sure SYNCHRONOUS is respected after getting the X context
22737
22738 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
22739
22740         * gst/matroska/matroska-demux.c:
22741         (gst_matroska_demux_handle_src_event),
22742         (gst_matroska_demux_parse_blockgroup):
22743         * gst/matroska/matroska-ids.h:
22744           add BlockReference tag and ignore it to clear out log.
22745           ignore NAVIGATION events to clear out log.
22746
22747 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
22748
22749         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
22750         (gst_matroska_demux_add_stream):
22751         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
22752           add debug categories
22753
22754 2004-07-16  Wim Taymans  <wim@fluendo.com>
22755
22756         * ext/libpng/Makefile.am:
22757         * ext/libpng/gstpng.c: (plugin_init):
22758         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
22759         (gst_pngdec_get_type), (gst_pngdec_base_init),
22760         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
22761         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
22762         * ext/libpng/gstpngdec.h:
22763         Added png decoder.
22764
22765 2004-07-16  Julien MOUTTE  <julien@moutte.net>
22766
22767         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
22768         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
22769         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
22770         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
22771         (gst_ximagesink_buffer_alloc):
22772         * sys/ximage/ximagesink.h:
22773         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22774         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22775         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
22776         (gst_xvimagesink_buffer_alloc):
22777         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
22778         again. Using internal data pointer of the x(v)image to store image's
22779         data to be coherent with the buffer alloc mechanism. Investigated the
22780         image destruction code to be sure that everything gets freed correctly.
22781
22782 2004-07-16  Wim Taymans  <wim@fluendo.com>
22783
22784         * gst-libs/gst/riff/riff-read.c:
22785         (gst_riff_read_strf_vids_with_data),
22786         (gst_riff_read_strf_auds_with_data):
22787         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
22788         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
22789         Make sure we don't create 0 sized subbuffers in riff-read.
22790         Signal the no more pads signal after reading the avi header.
22791
22792 2004-07-16  Wim Taymans  <wim@fluendo.com>
22793
22794         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22795         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
22796         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
22797         (gst_decode_bin_init), (gst_decode_bin_dispose),
22798         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
22799         (no_more_pads), (close_link), (type_found),
22800         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22801         (gst_decode_bin_change_state), (plugin_init):
22802         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22803         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22804         (gst_play_base_bin_dispose), (queue_overrun),
22805         (gen_preroll_element), (remove_prerolls), (unknown_type),
22806         (no_more_pads), (new_stream), (setup_source),
22807         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22808         (play_base_eos), (gst_play_base_bin_change_state),
22809         (gst_play_base_bin_add_element),
22810         (gst_play_base_bin_remove_element),
22811         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22812         (gst_play_base_bin_unlink_stream),
22813         (gst_play_base_bin_get_streaminfo):
22814         * gst/playback/gstplaybasebin.h:
22815         Better error recovery. Added configurable preroll queue size. Faster
22816         detection of no-more-pads.
22817
22818 2004-07-16  Wim Taymans  <wim@fluendo.com>
22819
22820         * gst-libs/gst/video/video.h:
22821         Added 32 bits RGBA. Not sure if we should use another mime-type
22822         for alpha rgb. Currently the presence of the alpha_mask property
22823         signals an alpha channel.
22824
22825 2004-07-16  Wim Taymans  <wim@fluendo.com>
22826
22827         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22828         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
22829         FPS seems to be 0.0 to MAX everywhere else.
22830
22831 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22832
22833         * gst-libs/gst/riff/riff-media.c:
22834         (gst_riff_create_video_caps_with_data):
22835           mp42/mp43 (no caps) exist too.
22836         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
22837           Set pixel_width/height; we've got them in-caps.
22838         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22839         * gst/wavparse/gstwavparse.c: (plugin_init):
22840           Both are valid primary.
22841         * sys/oss/gstossmixer.c:
22842           Remove i18n hack and enable translations.
22843
22844 2004-07-15  Benjamin Otte  <otte@gnome.org>
22845
22846         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22847         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
22848           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
22849
22850 2004-07-15  Benjamin Otte  <otte@gnome.org>
22851
22852         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
22853         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
22854         (gst_alsa_close_audio):
22855           disable some of the debugging code for now. Writing debugging to a
22856           buffer is broken in current alsalib releases.
22857
22858 2004-07-12  Benjamin Otte  <otte@gnome.org>
22859
22860         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
22861           use bufferpools
22862
22863 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22864
22865         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22866         (theora_dec_src_query), (theora_dec_event):
22867         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
22868           add debugging categories.  Remove \n's.
22869
22870 2004-07-13  Johan Dahlin  <johan@gnome.org>
22871
22872         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
22873         (gst_play_bin_get_property): Impl.
22874
22875 2004-07-13  Wim Taymans  <wim@fluendo.com>
22876
22877         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
22878         When trying to find the stream length, seek back N pages
22879         instead of just one, where N is the number of streams in
22880         the current chain.
22881
22882 2004-07-13  Wim Taymans  <wim@fluendo.com>
22883
22884         * gst-libs/gst/riff/riff-media.c:
22885         (gst_riff_create_audio_caps_with_data),
22886         (gst_riff_create_audio_caps),
22887         (gst_riff_create_audio_template_caps):
22888         * gst-libs/gst/riff/riff-media.h:
22889         * gst-libs/gst/riff/riff-read.c:
22890         (gst_riff_read_strf_vids_with_data),
22891         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
22892         * gst-libs/gst/riff/riff-read.h:
22893         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
22894         (gst_avi_demux_add_stream):
22895         Set codec_data on caps for avidemuxer.
22896
22897 2004-07-12  David Schleef  <ds@schleef.org>
22898
22899         * configure.ac: Fix test for Objective C
22900
22901 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
22902         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
22903         (gst_gdk_pixbuf_chain):
22904           Add svg and pcx to template caps, and ensure that getcaps returns a
22905           subset of the template caps.
22906           Copy each row manually for output, as gdkpixbuf may pad the
22907           rowstride to a 32-bit word boundary.
22908
22909 2004-07-12  Wim Taymans  <wim@fluendo.com>
22910
22911         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
22912         (gst_riff_create_video_template_caps):
22913         Fix the template caps to include some more media types.
22914
22915 2004-07-12  Wim Taymans  <wim@fluendo.com>
22916
22917         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22918         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
22919         (compare_ranks), (print_feature), (gst_decode_bin_init),
22920         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
22921         (try_to_link_1), (new_pad), (close_link), (type_found),
22922         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22923         (gst_decode_bin_change_state), (plugin_init):
22924         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22925         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22926         (gst_play_base_bin_dispose), (queue_overrun),
22927         (gen_preroll_element), (remove_prerolls), (no_more_pads),
22928         (new_stream), (setup_source), (gst_play_base_bin_set_property),
22929         (gst_play_base_bin_get_property), (play_base_eos),
22930         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
22931         (gst_play_base_bin_remove_element),
22932         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22933         (gst_play_base_bin_unlink_stream),
22934         (gst_play_base_bin_get_streaminfo):
22935         * gst/playback/gstplaybasebin.h:
22936         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
22937         (gst_play_bin_class_init), (gst_play_bin_init),
22938         (gst_play_bin_dispose), (gst_play_bin_set_property),
22939         (gst_play_bin_get_property), (gen_video_element),
22940         (gen_audio_element), (remove_sinks), (setup_sinks),
22941         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
22942         (gst_play_bin_send_event), (gst_play_bin_get_formats),
22943         (gst_play_bin_convert), (gst_play_bin_get_query_types),
22944         (gst_play_bin_query), (plugin_init):
22945         * gst/playback/test4.c: (main):
22946         More fixes on reusing of the element.
22947
22948 2004-07-11  Benjamin Otte  <otte@gnome.org>
22949
22950         * ext/mad/gstmad.c: (normal_seek):
22951           allow seeking for other methods than just SET
22952
22953 2004-07-11  Andy Wingo  <wingo@pobox.com>
22954
22955         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
22956         float, "any" caps -> buffer_frames=[0,MAX].
22957
22958         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
22959         doesn't intersect our caps with the template any more. Do it
22960         ourselves.
22961         (interleave_buffered_loop): Use g_newa instead of malloc/free.
22962
22963 2004-07-09  Wim Taymans  <wim@fluendo.com>
22964
22965         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22966         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
22967         (compare_ranks), (print_feature), (gst_decode_bin_init),
22968         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
22969         (try_to_link_1), (new_pad), (close_link), (type_found),
22970         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22971         (gst_decode_bin_change_state), (plugin_init):
22972         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22973         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22974         (gst_play_base_bin_dispose), (queue_overrun),
22975         (gen_preroll_element), (remove_prerolls), (no_more_pads),
22976         (new_stream), (setup_source), (gst_play_base_bin_set_property),
22977         (gst_play_base_bin_get_property), (play_base_eos),
22978         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
22979         (gst_play_base_bin_remove_element),
22980         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22981         (gst_play_base_bin_unlink_stream),
22982         (gst_play_base_bin_get_streaminfo):
22983         * gst/playback/gstplaybasebin.h:
22984         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
22985         (gst_play_bin_class_init), (gst_play_bin_init),
22986         (gst_play_bin_dispose), (gst_play_bin_set_property),
22987         (gst_play_bin_get_property), (gen_video_element),
22988         (gen_audio_element), (remove_sinks), (setup_sinks),
22989         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
22990         (gst_play_bin_send_event), (gst_play_bin_get_formats),
22991         (gst_play_bin_convert), (gst_play_bin_get_query_types),
22992         (gst_play_bin_query), (plugin_init):
22993         * gst/playback/test4.c: (main):
22994         Work on object reuse and seeking.
22995
22996 2004-07-09  Wim Taymans  <wim@fluendo.com>
22997
22998         * examples/seeking/seek.c: (iterate):
22999         Don't consume all CPU in the idle loop.
23000
23001 2004-07-09  Wim Taymans  <wim@fluendo.com>
23002
23003         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23004         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23005         Add pad to element *after* setting the pad functions so that
23006         the scheduler can use the correct ones.
23007
23008 2004-07-09  Wim Taymans  <wim@fluendo.com>
23009
23010         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23011         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23012         Sync to keyframe after seek
23013
23014 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23015
23016         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23017         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23018         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23019         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23020         * ext/libvisual/visual.c: (gst_visual_change_state):
23021         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23022         * ext/theora/theoradec.c: (theora_dec_change_state):
23023         * ext/theora/theoraenc.c: (theora_enc_change_state):
23024         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23025         * gst-libs/gst/navigation/navigation.c:
23026         * gst/adder/gstadder.c: (gst_adder_change_state):
23027         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23028         (gst_audio_convert_get_buffer):
23029         * gst/multipart/multipartdemux.c:
23030         (gst_multipart_demux_change_state):
23031         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23032         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23033         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23034         * gst/videoscale/gstvideoscale.c:
23035         (gst_videoscale_handle_src_event):
23036         * gst/volume/gstvolume.c: (volume_chain_int16):
23037           don't assert in state change, this should be done by the base
23038           GstElement class.
23039           various debugging fixes.
23040
23041 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23042
23043         * configure.ac:
23044         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23045         (gst_play_dispose), (gst_play_set_location),
23046         (gst_play_set_data_src), (gst_play_set_video_sink),
23047         (gst_play_set_audio_sink), (gst_play_set_visualization),
23048         (gst_play_connect_visualization), (gst_play_get_sink_element),
23049         (gst_play_get_all_by_interface):
23050         * gst-libs/gst/play/play.h:
23051           add new method to get elements implementing an interface.
23052           add various error logging
23053
23054 2004-07-08  Wim Taymans  <wim@fluendo.com>
23055
23056         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23057         (make_mpeg_pipeline), (make_mpegnt_pipeline),
23058         (make_playerbin_pipeline), (query_durations_elems),
23059         (query_durations_pads), (query_positions_elems),
23060         (query_positions_pads), (update_scale), (iterate), (stop_seek),
23061         (main):
23062         Added playbin seeking example.
23063
23064 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23065
23066         * gst-libs/gst/play/play.c: (gst_play_set_location),
23067         (gst_play_set_data_src), (gst_play_set_video_sink),
23068         (gst_play_set_audio_sink), (gst_play_set_visualization),
23069         (gst_play_connect_visualization), (gst_play_get_framerate):
23070           use a macro to look up elements from hash table
23071
23072 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23073
23074         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23075         (gst_play_get_length_callback), (gst_play_set_location),
23076         (gst_play_seek_to_time), (gst_play_set_data_src),
23077         (gst_play_set_video_sink), (gst_play_set_audio_sink),
23078         (gst_play_set_visualization), (gst_play_connect_visualization),
23079         (gst_play_get_sink_element):
23080         - add debugging info
23081         - fix looking up sink elements by iterating over complete caps
23082         - put everything except for source and autoplugger in a complete bin
23083
23084 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23085
23086         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23087         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23088         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23089         (gst_alsa_sink_write), (gst_alsa_sink_loop):
23090         * ext/alsa/gstalsasink.h:
23091         - add debugging info
23092         - clean up schizophrenia of data/buffer/event
23093         - fix double event unref error
23094
23095 2004-07-08  Wim Taymans  <wim@fluendo.com>
23096
23097         * gst/playback/Makefile.am:
23098         Add headers to noinst
23099
23100 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23101
23102         * tools/gst-launch-ext-m.m:
23103         * tools/gst-launch-ext.1.in:
23104           convert to the third millenium
23105
23106 2004-07-07  David Schleef  <ds@schleef.org>
23107
23108         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23109
23110 2004-07-07  Wim Taymans  <wim@fluendo.com>
23111
23112         * gst/playback/Makefile.am:
23113         * gst/playback/README:
23114         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23115         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23116         (compare_ranks), (print_feature), (gst_decode_bin_init),
23117         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23118         (try_to_link_1), (new_pad), (close_link), (type_found),
23119         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23120         (plugin_init):
23121         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23122         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23123         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23124         (gen_preroll_element), (no_more_pads), (new_stream),
23125         (setup_source), (gst_play_base_bin_set_property),
23126         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23127         (gst_play_base_bin_add_element),
23128         (gst_play_base_bin_remove_element),
23129         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23130         (gst_play_base_bin_unlink_stream),
23131         (gst_play_base_bin_get_streaminfo):
23132         * gst/playback/gstplaybasebin.h:
23133         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23134         (gst_play_bin_class_init), (gst_play_bin_init),
23135         (gst_play_bin_dispose), (gst_play_bin_set_property),
23136         (gst_play_bin_get_property), (gen_video_element),
23137         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23138         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23139         (gst_play_bin_get_formats), (gst_play_bin_convert),
23140         (gst_play_bin_get_query_types), (gst_play_bin_query),
23141         (plugin_init):
23142         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23143         (gst_stream_info_get_type), (gst_stream_info_class_init),
23144         (gst_stream_info_init), (gst_stream_info_new),
23145         (gst_stream_info_dispose), (gst_stream_info_set_property),
23146         (gst_stream_info_get_property):
23147         * gst/playback/gststreaminfo.h:
23148         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23149         (main):
23150         * gst/playback/test2.c: (main):
23151         * gst/playback/test3.c: (update_scale), (main):
23152         More playbin fixes. Added README. Do better element filtering.
23153         Added base class to preroll media. Added test apps.
23154
23155 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23156
23157         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23158         * ext/mpeg2dec/gstmpeg2dec.h:
23159           various debugging improvements.  Reset stream to next picture
23160           instead of sequence header, otherwise seeks cannot work.
23161
23162 2004-07-07  Wim Taymans  <wim@fluendo.com>
23163
23164         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23165         (gst_video_box_class_init), (gst_video_box_set_property),
23166         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23167         Use pad_alloc where possible.
23168
23169 2004-07-07  Wim Taymans  <wim@fluendo.com>
23170
23171         * sys/oss/gstosselement.c: (gst_osselement_reset),
23172         (gst_osselement_parse_caps):
23173         * sys/oss/gstosselement.h:
23174         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23175         Fix offset on osssrc.
23176
23177 2004-07-07  Wim Taymans  <wim@fluendo.com>
23178
23179         * ext/theora/theora.c: (plugin_init):
23180         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23181         (theora_dec_src_query), (theora_dec_chain):
23182         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23183         (theora_enc_sink_link), (theora_buffer_from_packet),
23184         (theora_push_packet), (theora_enc_chain):
23185         Fix theora granulepos calculation.
23186         Fix overflow in duration/position calculation.
23187         Bump rank to PRIMARY for theoradec.
23188         Use granulepos of last packet to calculate position.
23189         Set keyframe flag on buffers when needed.
23190
23191 2004-07-06  David Schleef  <ds@schleef.org>
23192
23193         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
23194         serious?  (Fixed, obviously.)
23195
23196 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23197
23198         * po/LINGUAS:
23199         * po/cs.po:
23200           added Czech translation (Miloslav Trmac)
23201
23202 2004-07-05  Wim Taymans  <wim@fluendo.com>
23203
23204         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23205         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23206         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23207         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23208         (close_link), (type_found), (gst_decode_bin_set_property),
23209         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23210         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23211         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23212         (gst_decode_bin_query), (plugin_init):
23213         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23214         (gst_play_bin_class_init), (gst_play_bin_init),
23215         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23216         (get_video_element), (new_pad), (setup_source),
23217         (gst_play_bin_set_property), (gst_play_bin_get_property),
23218         (gst_play_bin_change_state), (gst_play_bin_add_element),
23219         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23220         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23221         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23222         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23223         * gst/playback/test.c: (main):
23224         More fixes, cleaned up playbin, make it use decodebin. Added
23225         threaded property to playbin.
23226
23227 2004-07-05  Wim Taymans  <wim@fluendo.com>
23228
23229         * configure.ac:
23230         * gst/playback/Makefile.am:
23231         * gst/playback/decodetest.c: (main):
23232         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23233         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23234         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23235         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23236         (close_link), (type_found), (gst_decode_bin_set_property),
23237         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23238         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23239         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23240         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23241         (plugin_init):
23242         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23243         (gst_play_bin_class_init), (gst_play_bin_init),
23244         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23245         (collect_sink_pads), (find_compatibles), (close_pad_link),
23246         (try_to_link_1), (new_pad), (close_link), (type_found),
23247         (setup_source), (gst_play_bin_set_property),
23248         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23249         (compare_ranks), (gst_play_bin_collect_factories),
23250         (gst_play_bin_change_state), (gst_play_bin_add_element),
23251         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23252         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23253         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23254         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23255         * gst/playback/test.c: (main):
23256         Added some playback helper elements and some test apps, very alpha
23257         still.
23258
23259 2004-07-04  Benjamin Otte  <otte@gnome.org>
23260
23261         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23262           only restart audio when we indeed have an xrun to fix repeated
23263           xruns. Fix suggested by Giuliano Pochini.
23264
23265 2004-07-03  David Schleef  <ds@schleef.org>
23266
23267         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23268         call to gst_debug_log() if debugging is disabled (bug #145118)
23269
23270 2004-07-03  Benjamin Otte  <otte@gnome.org>
23271
23272         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23273           use our own functions for restarting the alsa device.
23274         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23275           I should apply patches myself - use MIN for the third argument, not
23276           the second, this fixes seeking
23277
23278 2004-07-02  David Schleef  <ds@schleef.org>
23279
23280         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23281         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
23282         do with the logic.
23283
23284 2004-07-02  David Schleef  <ds@schleef.org>
23285
23286         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
23287         output buffers.  Fix logic mistake.  (bug #144866)
23288
23289 2004-07-02  David Schleef  <ds@schleef.org>
23290
23291         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23292         on X.  (bug #144753)
23293
23294 2004-07-02  David Schleef  <ds@schleef.org>
23295
23296         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23297         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23298         (bug #144624)
23299         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23300         (gst_osselement_rate_probe_check): Add another workaround for
23301         buggy drivers (bug #145336)
23302
23303 2004-07-02  David Schleef  <ds@schleef.org>
23304
23305         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23306         Most systems don't have MSG_NOSIGNAL.
23307
23308 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23309
23310         * Makefile.am:
23311         * gst-libs/gst/colorbalance/Makefile.am:
23312         * gst-libs/gst/mixer/Makefile.am:
23313         * gst-libs/gst/play/Makefile.am:
23314         * gst-libs/gst/tuner/Makefile.am:
23315           (hopefully) fix both install and dist and make error message useful.
23316           needs testing across automakes.
23317
23318 2004-07-02  Benjamin Otte  <otte@gnome.org>
23319
23320         * ext/ogg/gstogg.c: (plugin_init):
23321           we require bytestream now
23322         * ext/ogg/gstoggdemux.c:
23323           huge diff to implement chain setup in a fast and generic way. This
23324           improves tag reading and startup of huge files (read: Theora videos)
23325           quite a bit. It probably contains bugs, too, so please test.
23326           Seeking is not improved to the fast method.
23327
23328 2004-06-29  Wim Taymans  <wim@fluendo.com>
23329
23330         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23331         * ext/ogg/gstoggmux.c:
23332         Fix memleak in oggdemux when running unconnected pads.
23333         doc update in mux, start working on keyframe mode.
23334
23335 2004-06-29  Benjamin Otte  <otte@gnome.org>
23336
23337         * sys/oss/gstosssink.c:
23338         * sys/oss/gstosssrc.c:
23339           advertise correct template caps - we indeed do non-native endianness
23340           and 8bit audio has no endianness
23341         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23342         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23343           avoid (wrong) duplications in getcaps function and return
23344           template caps
23345
23346 2004-06-29  Wim Taymans  <wim@fluendo.com>
23347
23348         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23349         (gst_multifdsink_class_init), (gst_multifdsink_add),
23350         (gst_multifdsink_remove), (gst_multifdsink_clear),
23351         (gst_multifdsink_client_remove),
23352         (gst_multifdsink_handle_client_read),
23353         (gst_multifdsink_client_queue_data),
23354         (gst_multifdsink_client_queue_caps),
23355         (gst_multifdsink_client_queue_buffer),
23356         (gst_multifdsink_handle_client_write),
23357         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23358         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23359         (gst_multifdsink_init_send), (gst_multifdsink_close):
23360         Fix wrong GList iteration that could crash the server when
23361         more then 2 clients disconnect at the same time. Read all the
23362         pending commands in one batch to recover from command storms under
23363         very heavy load.
23364
23365 2004-06-28  Wim Taymans  <wim@fluendo.com>
23366
23367         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23368         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23369         (gst_videomixer_pad_set_property),
23370         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23371         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23372         (gst_videomixer_class_init), (gst_videomixer_init),
23373         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23374         (pad_zorder_compare), (gst_videomixer_sort_pads),
23375         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23376         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23377         (gst_videomixer_update_queues), (gst_videomixer_loop),
23378         (plugin_init):
23379         Avoid divide by zero, choose masterpad as the pad with the highest
23380         framerate.
23381
23382 2004-06-27  Julien Moutte  <julien@moutte.net>
23383
23384         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23385         (gst_ximagesink_xwindow_new):
23386         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23387         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23388         function directly. We might want to call it from somewhere else one day.
23389
23390 2004-06-27  Julien Moutte  <julien@moutte.net>
23391
23392         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23393         (gst_ximagesink_xwindow_new):
23394         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23395         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23396         window decorations.
23397
23398 2004-06-27  Wim Taymans  <wim@fluendo.com>
23399
23400         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23401         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23402         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23403         (gst_dvdec_set_property), (gst_dvdec_get_property):
23404         * ext/dv/gstdvdec.h:
23405         Implement drop_factor property to lower the framerate with
23406         a factor.
23407
23408 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
23409
23410         * gst-libs/gst/colorbalance/Makefile.am:
23411         * gst-libs/gst/mixer/Makefile.am:
23412         * gst-libs/gst/play/Makefile.am:
23413         * gst-libs/gst/tuner/Makefile.am:
23414           unbreak Company's fix that didn't install the -enum.h files
23415
23416 2004-06-27  Wim Taymans  <wim@fluendo.com>
23417
23418         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
23419         (gst_dvdec_change_state):
23420         * ext/dv/gstdvdec.h:
23421         Fix timestamp, duration and offset of the buffers.
23422
23423 2004-06-27  Wim Taymans  <wim@fluendo.com>
23424
23425         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23426         (gst_multifdsink_class_init), (gst_multifdsink_add),
23427         (gst_multifdsink_remove), (gst_multifdsink_clear),
23428         (gst_multifdsink_client_remove),
23429         (gst_multifdsink_handle_client_read),
23430         (gst_multifdsink_client_queue_data),
23431         (gst_multifdsink_client_queue_caps),
23432         (gst_multifdsink_client_queue_buffer),
23433         (gst_multifdsink_handle_client_write),
23434         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23435         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23436         (gst_multifdsink_init_send), (gst_multifdsink_close):
23437         * gst/tcp/gstmultifdsink.h:
23438         * gst/tcp/gsttcpserversink.c:
23439         (gst_tcpserversink_handle_server_read),
23440         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
23441         More multifdsink fixes, more recovery policy fixes.
23442         Removed stupid g_print
23443
23444 2004-06-26  Wim Taymans  <wim@fluendo.com>
23445
23446         * gst/tcp/Makefile.am:
23447         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23448         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
23449         (gst_multifdsink_class_init), (gst_multifdsink_init),
23450         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
23451         (gst_multifdsink_handle_client_read),
23452         (gst_multifdsink_client_queue_data),
23453         (gst_multifdsink_client_queue_caps),
23454         (gst_multifdsink_client_queue_buffer),
23455         (gst_multifdsink_handle_client_write),
23456         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23457         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23458         (gst_multifdsink_chain), (gst_multifdsink_set_property),
23459         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
23460         (gst_multifdsink_close), (gst_multifdsink_change_state):
23461         * gst/tcp/gstmultifdsink.h:
23462         * gst/tcp/gsttcpplugin.c: (plugin_init):
23463         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
23464         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
23465         (gst_tcpserversink_handle_server_read),
23466         (gst_tcpserversink_handle_select),
23467         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
23468         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
23469         * gst/tcp/gsttcpserversink.h:
23470         Added multifdsink, made tcpserversink a subclass of fdsink, removed
23471         one of the locks, added recovery policy to multifdsink.
23472
23473 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23474
23475         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
23476           fix decision for when getting frames with same timestamp
23477         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23478         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23479         (gst_v4lsrc_get_property):
23480         * sys/v4l/gstv4lsrc.h:
23481           add latency offset property
23482
23483 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23484
23485         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
23486         (plugin_init):
23487           fix debugging. add category.
23488
23489 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23490
23491         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23492           fix wrong offsets
23493
23494 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23495
23496         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23497         (gst_alsa_src_get_time), (gst_alsa_src_loop),
23498         (gst_alsa_src_change_state):
23499           return a time that is in sync with the element's processing
23500
23501 2004-06-25  Wim Taymans  <wim@fluendo.com>
23502
23503         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
23504         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
23505         (gst_tcpserversink_client_remove),
23506         (gst_tcpserversink_handle_client_read),
23507         (gst_tcpserversink_client_queue_data),
23508         (gst_tcpserversink_client_queue_caps),
23509         (gst_tcpserversink_client_queue_buffer),
23510         (gst_tcpserversink_handle_client_write),
23511         (gst_tcpserversink_queue_buffer),
23512         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
23513         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
23514         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
23515         (gst_tcpserversink_close):
23516         * gst/tcp/gsttcpserversink.h:
23517         Serversink rewrite. Really do non blocking writes to clients and
23518         maintain an internal queue to handle slower clients while not
23519         disturbing fast clients.
23520
23521 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23522
23523         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
23524           better debug, don't override OFFSET and OFFSET_END
23525
23526 2004-06-25  Iain <iain@prettypeople.org>
23527
23528         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
23529         name=source for the wavparse pipeline.
23530
23531 2004-06-24  Johan Dahlin  <johan@gnome.org>
23532
23533         * ext/theora/theoraenc.c (theora_enc_chain): Call
23534         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
23535         streamheader caps are set correctly.
23536
23537 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23538
23539         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23540         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
23541           respect minimum bitrate; same could be done for max bitrate
23542
23543 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23544
23545         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23546         (gst_vorbisenc_setup):
23547           fix sample rate range
23548
23549 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23550
23551         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
23552         (gst_oggvorbisenc_setup):
23553         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
23554         (gst_vorbisenc_setup):
23555           resolve ambiguities in code and description
23556
23557 2004-06-24  Wim Taymans  <wim@fluendo.com>
23558
23559         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
23560         * ext/alsa/gstalsa.h:
23561         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23562         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
23563         Use alsa trigger_tstamp to get the timestamp of the first
23564         sample in the buffer for more precise sync. Some cleanups.
23565
23566 2004-06-24  Wim Taymans  <wim@fluendo.com>
23567
23568         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
23569         (gst_audiorate_init), (gst_audiorate_chain),
23570         (gst_audiorate_set_property), (gst_audiorate_get_property):
23571         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23572         (gst_videorate_chain):
23573         Added some logging, fixed an overflow bug in videorate.
23574
23575 2004-06-24  Benjamin Otte  <otte@gnome.org>
23576
23577         * ext/kio/Makefile.am:
23578           fix for builddir != srcdir and distcheck
23579
23580 2004-06-24  Benjamin Otte  <otte@gnome.org>
23581
23582         * gst-libs/gst/colorbalance/Makefile.am:
23583         * gst-libs/gst/mixer/Makefile.am:
23584         * gst-libs/gst/play/Makefile.am:
23585         * gst-libs/gst/tuner/Makefile.am:
23586         * gst/tcp/Makefile.am:
23587         * sys/dxr3/Makefile.am:
23588           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
23589           tarball.
23590           Also add all *.list files that were missing.
23591         * Makefile.am:
23592           add a distcheck hook to ensure the above doesn't happen again.
23593
23594 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
23595
23596         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
23597
23598 2004-06-23  Colin Walters  <walters@redhat.com>
23599
23600         * m4/Makefile.am: Distribute gst-fionread.m4.
23601
23602 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23603
23604         * configure.ac: back to dev
23605
23606 2004-06-23  Wim Taymans  <wim@fluendo.com>
23607
23608         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
23609         (gst_alsa_xrun_recovery):
23610         * ext/alsa/gstalsa.h:
23611         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23612         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
23613         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23614         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
23615         (gst_alsa_src_loop):
23616         Add clock to alsasrc. Take new capture timestamp when
23617         restarting after an overrun. Split up some functions between
23618         alsasrc and alsasink.
23619
23620 === release 0.8.2 ===
23621
23622 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23623
23624         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
23625         (gst_alsa_change_state), (gst_alsa_update_avail),
23626         (gst_alsa_xrun_recovery):
23627         * ext/alsa/gstalsa.h:
23628         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23629           merge back changes from release
23630
23631 2004-06-23  Wim Taymans  <wim@fluendo.com>
23632
23633         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
23634         (gst_audiorate_init), (gst_audiorate_chain),
23635         (gst_audiorate_set_property), (gst_audiorate_get_property):
23636         Implement sample dropping and notify
23637
23638 2004-06-22  Wim Taymans  <wim@fluendo.com>
23639
23640         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23641         (theora_enc_sink_link), (theora_buffer_from_packet),
23642         (theora_push_packet), (theora_enc_chain):
23643         Some cleanups, make sure the timestamps are correct.
23644
23645 2004-06-22  Wim Taymans  <wim@fluendo.com>
23646
23647         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
23648         (gst_alsa_change_state), (gst_alsa_update_avail),
23649         (gst_alsa_xrun_recovery):
23650         * ext/alsa/gstalsa.h:
23651         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
23652         Cleanups, take queued samples into account when reporting
23653         the time.
23654
23655 2004-06-22  Wim Taymans  <wim@fluendo.com>
23656
23657         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23658         (gst_videorate_init):
23659         Initialize the property as well.
23660
23661 2004-06-22  Wim Taymans  <wim@fluendo.com>
23662
23663         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23664         (gst_videorate_init), (gst_videorate_chain),
23665         (gst_videorate_set_property), (gst_videorate_get_property):
23666         Add property to make videorate silent.
23667         Add property to prefer new frames over old ones.
23668
23669 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23670
23671         * sys/osxvideo/Makefile.am:
23672         Workaround so that the osxvideo .so file gets linked with the
23673         Cocoa, OpenGL and QuickTime frameworks
23674
23675 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23676
23677         * sys/osxaudio/Makefile.am:
23678         Workaround so that the osxaudio .so file gets linked with the
23679         CoreAudio framework
23680
23681 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23682
23683         * configure.ac:
23684         Whoops, my fault...fixed build issues
23685
23686 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23687
23688         * configure.ac:
23689         Add objective-c support if running in Darwin/Mac OS X
23690         * sys/Makefile.am:
23691         * sys/osxvideo:
23692         * sys/osxvideo/Makefile.am:
23693         * sys/osxvideo/osxvideosink.h:
23694         * sys/osxvideo/osxvideosink.m:
23695         * sys/osxvideo/cocoawindow.h:
23696         * sys/osxvideo/cocoawindow.m:
23697         Add osxvideosink, a cocoa-based osx video sink
23698
23699
23700 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
23701         * ext/dvdnav/gst-dvd:
23702         Grab the gconf key from the right spot
23703         * gst/debug/gstnavseek.c: (gst_navseek_init),
23704         (gst_navseek_segseek), (gst_navseek_handle_src_event),
23705         (gst_navseek_chain):
23706         * gst/debug/gstnavseek.h:
23707           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
23708           and loop parameters of a segment seek.
23709         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
23710         (gst_videotestsrc_get_event_masks),
23711         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
23712         * gst/videotestsrc/gstvideotestsrc.h:
23713           Add seeking support to videotestsrc
23714           Initialise the timestamp_offset variable.
23715
23716 2004-06-18  Wim Taymans  <wim@fluendo.com>
23717
23718         * ext/sidplay/gstsiddec.cc:
23719         Fix negotiation and set correct end offset.
23720
23721 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23722
23723         * configure.ac: branch and prerelease
23724
23725 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
23726
23727         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
23728         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
23729         (gst_tcpclientsrc_init_receive):
23730         * gst/tcp/gsttcpclientsrc.h:
23731           read caps when connecting to server for GDP so we set them correctly
23732
23733 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
23734
23735         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
23736           notify drops and duplicates
23737         * gst/videoscale/videoscale.c: (videoscale_get_structure):
23738           no good reason to limit ourselves to 100x100
23739
23740 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
23741
23742         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23743         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
23744         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23745         (gst_v4lsrc_get_property):
23746         * sys/v4l/gstv4lsrc.h:
23747         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
23748         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
23749         (gst_v4l_set_audio):
23750         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
23751         (gst_v4lsrc_try_capture):
23752         * sys/v4l/v4lsrc_calls.h:
23753           change try_palette to more general try_capture
23754           add autoprobe option so we can turn off autoprobing
23755           various fixes
23756
23757 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
23758
23759         * configure.ac:
23760           add videorate
23761         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
23762         (gst_ximagesink_class_init):
23763         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
23764         (gst_xvimagesink_class_init):
23765           run them as finalize, not dispose, since dispose can be invoked
23766           multiple times
23767
23768 2004-06-17  Wim Taymans  <wim@fluendo.com>
23769
23770         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
23771         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
23772         * ext/alsa/gstalsa.h:
23773         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
23774         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
23775         (gst_alsa_src_change_state):
23776         * ext/alsa/gstalsasrc.h:
23777         Make the xrun code timestamp and offset the buffers correctly.
23778         moved the clock to the base class, use alsa methods to get time.
23779         Do correct timestamping on outgoing buffers.
23780
23781 2004-06-17  Wim Taymans  <wim@fluendo.com>
23782
23783         * gst/audiorate/Makefile.am:
23784         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
23785         (gst_audiorate_base_init), (gst_audiorate_class_init),
23786         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
23787         (gst_audiorate_set_property), (gst_audiorate_get_property),
23788         (gst_audiorate_change_state), (plugin_init):
23789         Added an audiorate converter that fills in gaps.
23790
23791 2004-06-17  Johan Dahlin  <johan@gnome.org>
23792
23793         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
23794
23795 2004-06-16  Wim Taymans  <wim@fluendo.com>
23796
23797         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
23798         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
23799         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
23800         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23801         (gst_v4lsrc_get_property):
23802         * sys/v4l/gstv4lsrc.h:
23803         Added a copy mode to v4lsrc where it will output a copied version
23804         of its internal hardware buffer.
23805         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
23806         can't | them.
23807
23808 2004-06-16  Wim Taymans  <wim@fluendo.com>
23809
23810         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23811         Timestamp fixes.
23812
23813 2004-06-16  Wim Taymans  <wim@fluendo.com>
23814
23815         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
23816         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
23817         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23818         (gst_v4lsrc_get_property):
23819         * sys/v4l/gstv4lsrc.h:
23820         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
23821         Added a sync mode enum property to control v4lsrc timestamp method
23822         Removed the use-fixed-fps property and moved functionality in
23823         the enum.
23824         Don't error on an error value from v4l-conf, it might not always
23825         be a real error.
23826
23827 2004-06-16  Wim Taymans  <wim@fluendo.com>
23828
23829         * gst/videorate/Makefile.am:
23830         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
23831         (gst_videorate_base_init), (gst_videorate_class_init),
23832         (gst_videorate_getcaps), (gst_videorate_link),
23833         (gst_videorate_init), (gst_videorate_chain),
23834         (gst_videorate_set_property), (gst_videorate_get_property),
23835         (gst_videorate_change_state), (plugin_init):
23836         Added a video timestamp corrector.
23837
23838 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23839
23840         fixed a potential leak with previous commit
23841
23842         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
23843
23844 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23845
23846         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
23847         Added missing refcount, fixes bug #144425
23848         Cheers Tim for finding the bug
23849
23850 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
23851
23852         * sys/v4l/gstv4l.c: (plugin_init):
23853         * sys/v4l/gstv4lcolorbalance.c:
23854         * sys/v4l/gstv4lcolorbalance.h:
23855         * sys/v4l/gstv4lelement.c:
23856         * sys/v4l/gstv4lelement.h:
23857         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
23858         * sys/v4l/gstv4lmjpegsink.h:
23859         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
23860         * sys/v4l/gstv4lmjpegsrc.h:
23861         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
23862         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
23863         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
23864         * sys/v4l/gstv4lsrc.h:
23865         * sys/v4l/gstv4ltuner.c:
23866         * sys/v4l/gstv4ltuner.h:
23867         * sys/v4l/gstv4lxoverlay.c:
23868         * sys/v4l/gstv4lxoverlay.h:
23869         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
23870         (gst_v4l_set_window), (gst_v4l_enable_overlay):
23871         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
23872         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
23873         (gst_v4l_set_audio):
23874         * sys/v4l/v4l_calls.h:
23875         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
23876         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
23877         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
23878         (gst_v4lmjpegsink_playback_init),
23879         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
23880         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
23881         (gst_v4lmjpegsink_playback_stop),
23882         (gst_v4lmjpegsink_playback_deinit):
23883         * sys/v4l/v4lmjpegsink_calls.h:
23884         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
23885         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
23886         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
23887         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
23888         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
23889         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
23890         * sys/v4l/v4lmjpegsrc_calls.h:
23891         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
23892         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
23893         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
23894         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
23895         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
23896         (gst_v4lsrc_try_palette):
23897         * sys/v4l/v4lsrc_calls.h:
23898           bunch of paranoia cleanups
23899
23900 2004-06-14  David Schleef  <ds@schleef.org>
23901
23902         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
23903         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
23904         Send discont events and change timestamps appropriately when
23905         we get a seek event.  (bug #144240)
23906         * ext/cdparanoia/gstcdparanoia.h:
23907
23908 2004-06-14  Benjamin Otte  <otte@gnome.org>
23909
23910         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
23911           snd_pcm_hw_params_set_rate  since the latter fails for no good
23912           reason on some setups.
23913
23914 2004-06-14  David Schleef  <ds@schleef.org>
23915
23916         * gst/volume/demo.c: (value_changed_callback): exp10() is not
23917         standard.  Thank you for playing.
23918
23919 2004-06-14  Wim Taymans  <wim@fluendo.com>
23920
23921         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
23922         Patch 1.3 broke the ordering of the colorspace info and
23923         made the plugin basically work by coincidence, reordered
23924         the info.
23925
23926 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23927
23928         * ext/lame/gstlame.c:
23929         * ext/mad/gstmad.c:
23930           sync caps.  Make sure mad can only output a list of rates, not
23931           a full range.  In the future, have three caps lists for each of the
23932           mpeg versions.  Change mpegversion to a double as well.
23933
23934 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23935
23936         * gst/volume/.cvsignore:
23937         * gst/volume/Makefile.am:
23938         * gst/volume/demo.c: (value_changed_callback), (idler),
23939         (setup_gui), (main):
23940           added small demo app
23941
23942 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
23943         * ext/esd/esdsink.c: (gst_esdsink_change_state):
23944         * ext/esd/esdsink.h:
23945         Close the esd connection on pause, because esd will just wait -
23946         blocking all other esd clients indefinitely.
23947
23948 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
23949
23950         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
23951           previous commit with GST_DEBUG
23952
23953 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23954
23955         * configure.ac:
23956           add a header check for a dvdread header in dvdnav.  Fixes #133002
23957
23958 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23959
23960         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
23961         * gst/tcp/gsttcpclientsink.h:
23962         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
23963         * gst/tcp/gsttcpclientsrc.h:
23964         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
23965         (gst_tcpserversink_handle_server_read),
23966         (gst_tcpserversink_init_send):
23967         * gst/tcp/gsttcpserversink.h:
23968         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
23969         * gst/tcp/gsttcpserversrc.h:
23970         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
23971         version of IP)
23972
23973 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23974
23975         * configure.ac:
23976         Added ogg library so that OSX detects libtheora properly
23977
23978 2004-06-11  Wim Taymans  <wim@fluendo.com>
23979
23980         * ext/theora/theoradec.c: (theora_dec_chain),
23981         (theora_dec_change_state):
23982         Don't try to decode frames before we received a keyframe.
23983
23984 2004-06-11  Wim Taymans  <wim@fluendo.com>
23985
23986         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
23987         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
23988         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
23989         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
23990         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
23991         Added property to set the maximum delay of a page.
23992
23993 2004-06-10  Wim Taymans  <wim@fluendo.com>
23994
23995         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
23996         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
23997         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
23998         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
23999         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24000         Added max-delay property to control the maximum amount
24001         of data to put in one page.
24002
24003 2004-06-10  Wim Taymans  <wim@fluendo.com>
24004
24005         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24006         (gst_theora_enc_init), (theora_enc_sink_link),
24007         (theora_buffer_from_packet), (theora_enc_set_property),
24008         (theora_enc_get_property):
24009         Set duration on encoded buffer, added some more properties
24010
24011 2004-06-10  Wim Taymans  <wim@fluendo.com>
24012
24013         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24014         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24015         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24016         * ext/theora/theoraenc.c: (theora_enc_chain):
24017         Fix refcounting bugs
24018
24019 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24020
24021         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24022         (gst_asf_demux_loop), (gst_asf_demux_process_file),
24023         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24024         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24025         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24026         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24027         (gst_asf_demux_change_state):
24028         * gst/asfdemux/gstasfdemux.h:
24029           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24030           feels like. I think we should set a new requirement for demuxers
24031           from now on to implement sane loop functions, data loops, query
24032           and seek functions before first commit into CVS. And this commit
24033           fixes all of the above.
24034
24035 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
24036
24037         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24038           vorbis comments are properly encoded in UTF-8 before adding them
24039           to a GstTagList
24040
24041 2004-06-09  Benjamin Otte  <otte@gnome.org>
24042
24043         * ext/alsa/gstalsa.c: (add_channels):
24044           handle min <= max correctly
24045         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24046         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24047           add fixation functions so we fixate correctly. No preferring of alaw
24048           anymore because it's the first structure.
24049         * ext/alsa/gstalsa.h:
24050         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24051         (gst_alsa_hw_params_dump):
24052           add functions to ease debugging in alsalib
24053         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24054         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24055         (gst_alsa_start_audio):
24056           only specify hw params if we really setup a format (fixes #134007 -
24057           or at least works around it)
24058
24059 2004-06-09  Wim Taymans  <wim@fluendo.com>
24060
24061         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24062         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24063         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24064         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24065         (gst_ogg_mux_loop):
24066         Use stream caps to setup the initial pages in the ogg stream.
24067         Correctly set the streamheader caps on the srcpad.
24068
24069 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24070
24071         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24072         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24073         (gst_v4lsrc_getcaps):
24074         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24075         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24076           add querying of fps lists for webcams.  Negotiating to a framerate
24077           now works.
24078
24079 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24080
24081         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24082         (theora_push_buffer), (theora_push_packet),
24083         (theora_set_header_on_caps), (theora_enc_chain):
24084           mark buffers and put on streamheader, raw theora streaming
24085           now works too, whee
24086
24087 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24088
24089         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24090         (gst_tcp_gdp_read_caps):
24091           do a looping read for caps and GDP headers too
24092
24093 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24094
24095         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24096         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24097           return EOS instead of NULL in _get
24098
24099 2004-06-08  Wim Taymans  <wim@fluendo.com>
24100
24101         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24102         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24103         (gst_tcp_gdp_write_caps):
24104         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24105         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24106         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24107         Memory leak fixes
24108
24109 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24110
24111         * ext/vorbis/Makefile.am:
24112         * ext/vorbis/vorbis.c: (plugin_init):
24113         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24114         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24115         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24116         (vorbis_parse_change_state):
24117         * ext/vorbis/vorbisparse.h:
24118           adding a vorbisparse element that marks the buffers, streaming
24119           raw vorbis using GDP now works, whee
24120
24121 2004-06-08  Wim Taymans  <wim@fluendo.com>
24122
24123         * ext/jpeg/Makefile.am:
24124         * ext/jpeg/README:
24125         * ext/jpeg/gstjpeg.c: (plugin_init):
24126         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24127         (gst_smokedec_base_init), (gst_smokedec_class_init),
24128         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24129         * ext/jpeg/gstsmokedec.h:
24130         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24131         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24132         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24133         (gst_smokeenc_resync), (gst_smokeenc_chain),
24134         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24135         * ext/jpeg/gstsmokeenc.h:
24136         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24137         (smokecodec_flush_destination), (smokecodec_term_destination),
24138         (smokecodec_init_source), (smokecodec_fill_input_buffer),
24139         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24140         (smokecodec_term_source), (smokecodec_encode_new),
24141         (smokecodec_decode_new), (smokecodec_info_free),
24142         (smokecodec_set_quality), (smokecodec_get_quality),
24143         (smokecodec_set_threshold), (smokecodec_get_threshold),
24144         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24145         (find_best_size), (abs_diff), (put), (smokecodec_encode),
24146         (smokecodec_parse_header), (smokecodec_decode):
24147         * ext/jpeg/smokecodec.h:
24148         Added a new simple jpeg based codec
24149
24150 2004-06-08  Wim Taymans  <wim@fluendo.com>
24151
24152         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24153         (gst_multipart_mux_loop):
24154         Fix memory leak
24155
24156 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24157
24158         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24159         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24160         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24161         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24162         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24163         * gst/tcp/gsttcpserversink.h:
24164           take streamheader into account
24165
24166 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24167
24168         * gst/level/Makefile.am:
24169         * gst/level/gstlevel.c: (gst_level_class_init):
24170           clean up marshal generation
24171
24172 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24173
24174         * gst/tcp/Makefile.am:
24175         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24176         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24177         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24178         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24179         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24180         (gst_tcpclientsrc_get_property):
24181         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24182         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24183         (gst_tcpserversink_handle_client_read),
24184         (gst_tcpserversink_handle_client_write),
24185         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24186         * gst/tcp/gsttcpserversink.h:
24187           add signals client-added and client-removed
24188         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24189         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24190         (gst_tcpserversrc_get_property):
24191         uniformized, change default protocol to NONE
24192         * gst/tcp/gsttcp-marshal.list: added
24193 2004-06-07  Benjamin Otte  <otte@gnome.org>
24194
24195         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24196           handle discont events if they happen before caps nego
24197
24198 2004-06-07  Wim Taymans  <wim@fluendo.com>
24199
24200         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24201         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24202         (gst_multipart_demux_plugin_init):
24203         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24204         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24205         (gst_multipart_mux_change_state):
24206         Small updates, fix a memleak
24207
24208 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24209
24210         * configure.ac: OSS portability
24211         * ext/arts/gst_arts.c: idem
24212         * sys/oss/gstosselement.c: idem
24213         * sys/oss/gstossmixer.c: idem
24214         * sys/oss/gstosssink.c: idem
24215         * sys/oss/gstosssrc.c: idem
24216         * sys/oss/oss_probe.c: idem
24217           - check for soundcard.h in different places for some BSD
24218
24219 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
24220
24221         * AUTHORS:
24222         Add me to the authors file
24223         * configure.ac:
24224         Increase the libdv requirement to >= version 0.100
24225         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24226         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24227         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24228         * ext/dv/gstdvdec.h:
24229         Add support for the new_media flag when sending DISCONT events
24230         Make the querying work when video pad is not linked
24231
24232 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24233
24234         reviewed by Benjamin Otte  <otte@gnome.org>
24235
24236         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24237           create a NULL-initialized array of pads, so we don't think they
24238           exist already. (fixes #143130)
24239
24240 2004-06-07  Benjamin Otte  <otte@gnome.org>
24241
24242         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24243         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24244         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24245           don't use // coments
24246
24247 2004-06-07  Benjamin Otte  <otte@gnome.org>
24248
24249         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24250           cast to GstClockTime to get higher granularity
24251         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24252           use gst_element_set_time_delay to get the exact time
24253         * ext/mad/gstmad.c: (gst_mad_chain):
24254           use the negotiated rate instead of the current frame's rate which
24255           might be wrong because of bit errors. This avoids emitting totally
24256           bogus timestamps and screwing sync.
24257         (fixes #143454)
24258
24259 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24260
24261         reviewed by Benjamin Otte  <otte@gnome.org>
24262
24263         * gst/adder/gstadder.c: (gst_adder_loop):
24264           properly error out when no negotiation has happened yet. (fixes
24265           #143032)
24266
24267 2004-06-06  Benjamin Otte  <otte@gnome.org>
24268
24269         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24270           forward correctly transformed offset in discont events. Based on
24271           patch by Arwed v. Merkatz. (fixes #142851)
24272
24273 2004-06-06  David Schleef  <ds@schleef.org>
24274
24275         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24276         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
24277         problems on several systems.
24278
24279 2004-06-06  Benjamin Otte  <otte@gnome.org>
24280
24281         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24282           use explicit caps on the srcpad
24283         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24284           properly error out if caps couldn't be set (fixes #142764)
24285
24286 2004-06-06  Benjamin Otte  <otte@gnome.org>
24287
24288         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24289         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24290         (gst_alsa_start_audio):
24291           - don't call set_periods_integer anymore, it breaks the
24292           configuration randomly
24293           - call snd_pcm_hw_params_set_access directly instead of using masks
24294           - don't fail if the sw_params can't be set, just use the default
24295           params and hope it works. Alsalib has weird issues when you touch
24296           sw_params and does no proper error reporting about what failed.
24297         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24298         (gst_alsa_close_audio):
24299           make our alsa debugging go via gst debugging and not conditionally
24300           defined
24301         * ext/alsa/gstalsa.h:
24302           add ALSA_DEBUG_FLUSH macro
24303         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24304         (plugin_init):
24305           wrap alsa errors to be printed via the gst debugging system and not
24306           spammed to stderr
24307
24308 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24309
24310         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24311         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24312         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24313         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24314         (qtdemux_parse_trak):
24315         * gst/qtdemux/qtdemux.h:
24316           Bitch. Also known as seeking, querying & co.
24317         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24318         (gst_osssink_change_state):
24319         * sys/oss/gstosssink.h:
24320           Resyncing is for weenies, this hack is no longer needed and was
24321           broken anyway (since it - unintendedly - always leaves resync to
24322           TRUE).
24323
24324 2004-06-05  Andrew Turner <zxombie@hotpop.com>
24325
24326         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24327         * gst/tcp/gsttcpclientsrc.h: idem
24328           - define MSG_NOSIGNAL if not done
24329           - include unistd.h for off_t
24330           (fixes #143749)
24331
24332 2004-06-05  Benjamin Otte  <otte@gnome.org>
24333
24334         * configure.ac:
24335         * ext/kio/Makefile.am:
24336           check for qt's moc preprocessor explicitly and use it
24337
24338 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24339
24340         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24341           don't get a signal for EPIPE on socket writes
24342           (somebody check if this works on other platforms)
24343
24344 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24345
24346         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24347         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24348           check error condition on available samples correctly
24349
24350 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24351
24352         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24353           avoid a segfault
24354         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24355         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24356         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24357         (gst_tcpserversrc_gdp_read_header):
24358          use ssize_t over size_t since the former is signed and thus the
24359          check for error codes can work
24360
24361 2004-06-02  Wim Taymans  <wim@fluendo.com>
24362
24363         reviewed by: Johan
24364
24365         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24366         (gst_multipart_mux_loop):
24367         Oops
24368
24369 2004-06-02  Wim Taymans  <wim@fluendo.com>
24370
24371         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24372         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24373         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24374         (gst_multipart_mux_change_state):
24375         Added configurable boundary specifier, added the value as a
24376         caps field as well.
24377
24378 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24379
24380         * gst/tcp/gsttcp.c:
24381         * gst/tcp/gsttcpclientsrc.c:
24382         * gst/tcp/gsttcpclientsrc.h:
24383         * gst/tcp/gsttcpserversrc.c:
24384           - portability fix, to compile on OSX
24385             (fixes #143146)
24386
24387         * sys/osxaudio/gstosxaudioelement.c:
24388         * sys/osxaudio/gstosxaudiosink.c:
24389         * sys/osxaudio/gstosxaudiosrc.c:
24390           - compilation warnings on OSX
24391             (fixes #143153)
24392
24393 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24394
24395         * ext/vorbis/vorbisdec.c : sign warning fixes
24396
24397         * gst-libs/gst/mixer/mixertrack.c :
24398           do no use defines which are glib 2.4 specific
24399
24400 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
24401
24402         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24403           buffer since libflac doesn't expect it (reports a sync error when
24404           it encounters that)
24405
24406
24407 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
24408
24409         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
24410         * gst-libs/gst/mixer/mixertrack.c:
24411         (gst_mixer_track_get_property), (get_mixer_track_init),
24412         (get_mixer_track_get_property): Added property accessors
24413         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
24414         * gst-libs/gst/mixer/mixeroptions.c:
24415         (gst_mixer_options_get_values): Added
24416         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
24417         * gst-libs/gst/mixer/mixer.c: Fixed comment
24418
24419
24420 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24421
24422         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24423           improve error messages on open
24424
24425
24426 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
24427
24428         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24429           check if v4l-conf is in path
24430
24431 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
24432
24433         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
24434           change assert to a more readable error message
24435
24436 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24437
24438         * gst-libs/gst/tuner/tunerchannel.h:
24439           - add a freq_multiplicator field to make the conversion
24440             between internal frequency unit and Hz
24441         * sys/v4l/gstv4lelement.c:
24442         * sys/v4l2/gstv4l2element.c:
24443           - change default video device to /dev/video0
24444         * sys/v4l/v4l_calls.c:
24445         * sys/v4l2/v4l2_calls.c:
24446           - we only expose frequency to the user in Hz instead of
24447             bastard v4lX unit (either 62.5kHz or 62.5Hz)
24448
24449 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
24450         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24451           Initialise b_o_s and e_o_s variables
24452         * gst-libs/gst/riff/riff-media.c:
24453         (gst_riff_create_video_caps_with_data):
24454           Add some unusual fourcc's from mplayer avi's
24455         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
24456           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
24457           autoplugging.
24458
24459 2004-05-28  Wim Taymans  <wim@fluendo.com>
24460
24461         * configure.ac:
24462         * gst/alpha/Makefile.am:
24463         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24464         (gst_alpha_get_type), (gst_alpha_base_init),
24465         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
24466         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
24467         (gst_alpha_chroma_key), (gst_alpha_chain),
24468         (gst_alpha_change_state), (plugin_init):
24469         A plugin to add an alpha channel to I420 video. Can optionally do
24470         chroma keying.
24471         * gst/multipart/Makefile.am:
24472         * gst/multipart/multipart.c: (plugin_init):
24473         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24474         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
24475         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
24476         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24477         (gst_multipart_demux_change_state),
24478         (gst_multipart_demux_plugin_init):
24479         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
24480         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
24481         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
24482         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
24483         (gst_multipart_mux_pad_unlink),
24484         (gst_multipart_mux_request_new_pad),
24485         (gst_multipart_mux_handle_src_event),
24486         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
24487         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
24488         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24489         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
24490         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
24491         send multipart jpeg images to a browser.
24492         * gst/videobox/Makefile.am:
24493         * gst/videobox/README:
24494         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
24495         (gst_video_box_get_type), (gst_video_box_base_init),
24496         (gst_video_box_class_init), (gst_video_box_init),
24497         (gst_video_box_set_property), (gst_video_box_get_property),
24498         (gst_video_box_sink_link), (gst_video_box_i420),
24499         (gst_video_box_ayuv), (gst_video_box_chain),
24500         (gst_video_box_change_state), (plugin_init):
24501         Crops or adds borders around an image. can do alpha channel
24502         borders as well.
24503         * gst/videomixer/Makefile.am:
24504         * gst/videomixer/README:
24505         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
24506         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
24507         (gst_videomixer_pad_get_sink_event_masks),
24508         (gst_videomixer_pad_get_property),
24509         (gst_videomixer_pad_set_property),
24510         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
24511         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
24512         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
24513         (gst_videomixer_base_init), (gst_videomixer_class_init),
24514         (gst_videomixer_init), (gst_videomixer_request_new_pad),
24515         (gst_videomixer_handle_src_event),
24516         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
24517         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
24518         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
24519         (gst_videomixer_loop), (gst_videomixer_get_property),
24520         (gst_videomixer_set_property), (gst_videomixer_change_state),
24521         (plugin_init):
24522         Generic video mixer plugin, can handle multiple inputs all with
24523         different framerates and video sizes. Is fully alpha channel
24524         aware.
24525
24526 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24527
24528         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24529           Select first track as master track. Not sure how else to handle
24530           that...
24531         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
24532           Discard discont events. Should fix #142962.
24533
24534 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24535
24536         * ext/alsa/Makefile.am:
24537         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
24538         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
24539         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
24540         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
24541         (gst_alsa_mixer_get_option):
24542         * ext/alsa/gstalsamixer.h:
24543         * ext/alsa/gstalsamixeroptions.c:
24544         (gst_alsa_mixer_options_get_type),
24545         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
24546         (gst_alsa_mixer_options_new):
24547         * ext/alsa/gstalsamixeroptions.h:
24548         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
24549         * ext/alsa/gstalsamixertrack.h:
24550           Add enumerations (as GstMixerOptions). Make correct distinction
24551           between input/output tracks. Add capture/playback private flag.
24552           Use flag to decide on whether to set capture or playback volumes
24553           or switches. Use playback and record switches.
24554         * gst-libs/gst/mixer/Makefile.am:
24555         * gst-libs/gst/mixer/mixer-marshal.list:
24556         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
24557         (gst_mixer_set_option), (gst_mixer_get_option),
24558         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
24559         (gst_mixer_volume_changed), (gst_mixer_option_changed):
24560         * gst-libs/gst/mixer/mixer.h:
24561         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
24562         (gst_mixer_options_class_init), (gst_mixer_options_init),
24563         (gst_mixer_options_dispose):
24564         * gst-libs/gst/mixer/mixeroptions.h:
24565           Add GstMixerOptions.
24566         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
24567           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
24568           broken device detection on computers with multiple OSS sound
24569           cards.
24570
24571 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24572
24573         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24574           fixate nicely even when the peer is not negotiating
24575
24576 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24577
24578         * gst/audioconvert/gstaudioconvert.c:
24579         (gst_audio_convert_parse_caps):
24580           make sure we don't allow depth > width
24581         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24582           fixate endianness to G_BYTE_ORDER as default
24583         * gst/audioscale/gstaudioscale.c:
24584           we don't handle another endianness as host-endianness
24585
24586 2004-05-25  David Schleef  <ds@schleef.org>
24587
24588         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
24589
24590 2004-05-24  Benjamin Otte  <otte@gnome.org>
24591
24592         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
24593         (gst_oggvorbisenc_setup):
24594           properly fail when we can't setup the vorbis encoder due to
24595           unsupported settings
24596         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
24597         (gst_vorbisenc_setup):
24598           same
24599         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
24600           fix case where warnings occured when one pad was unlinked while the
24601           other's link function was called
24602
24603 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24604
24605         * gst/tcp/Makefile.am:
24606           use GST_ENABLE_NEW
24607
24608 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24609
24610         * gst-libs/gst/resample/private.h:
24611           don't use optimizations that are #if 0'ed
24612
24613 2004-05-24  Wim Taymans  <wim@fluendo.com>
24614
24615         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
24616         Fix potential division by zero error and hopefully get
24617         the position query right to get correct timestamps on avi
24618         audio.
24619
24620 2004-05-24  Wim Taymans  <wim@fluendo.com>
24621
24622         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
24623         (gst_videoscale_scale_nearest_str2),
24624         (gst_videoscale_scale_nearest_str4),
24625         (gst_videoscale_scale_nearest_32bit),
24626         (gst_videoscale_scale_nearest_24bit),
24627         (gst_videoscale_scale_nearest_16bit):
24628         Fix the scaling algorithm and avoid a buffer overflow.
24629         removed the while loop in the scaling function as it
24630         was used for point sampling only.
24631
24632 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24633
24634         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
24635         (gst_id3_tag_class_init), (gst_id3_tag_init),
24636         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
24637         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
24638         (gst_id3_tag_send_tag_event):
24639           lots of fixes to make id3mux work and id3demux work correctly
24640
24641 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24642
24643         * ext/Makefile.am:
24644           add rules to build shout2send (was removed by accident
24645           when this module was no more marked experimental/broken)
24646
24647 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24648
24649         * ext/shout2/gstshout2.c:
24650         * ext/shout2/gstshout2.h:
24651           adding a "connection problem" signal to shout2send
24652           (fixes #142954)
24653
24654 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
24655
24656         * ext/kio/kioreceiver.cpp:
24657         * ext/kio/kioreceiver.h:
24658           fix sign comparison issues
24659
24660 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24661
24662         * gst/cdxaparse/gstcdxaparse.c:
24663         * gst/cdxaparse/gstcdxaparse.h:
24664           some renaming
24665           add some checks/sanity
24666           prepare for seek addition
24667
24668         * sys/sunaudio/gstsunaudio.c:
24669           remove exported dupe init function
24670
24671 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
24672
24673         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
24674         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
24675           Fix format conversion and position querying.
24676         * gst/debug/progressreport.c: (gst_progressreport_report):
24677           Don't output a bogus total value that we didn't query.
24678         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
24679           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
24680           only a blank window after xine has been used.
24681
24682 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24683
24684         * m4/as-arts.m4:
24685           sync with upstream version to fix test on FC2
24686           readd with -ko to preserve Id header
24687
24688 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24689
24690         * configure.ac:
24691           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
24692         * gst/tcp/gsttcpclientsrc.c: idem
24693         * gst/tcp/gsttcpserversink.c: idem
24694         * gst/tcp/gsttcpserversrc.c: idem
24695         * m4/gst-fionread.m4: idem
24696
24697         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
24698
24699         * configure.ac: enable speex plugin for speex 1.1.5+
24700         * ext/speex/gstspeexenc.c: fix cast warning
24701
24702         * ext/esd/README: fix typo
24703
24704 2004-05-20  David Schleef  <ds@schleef.org>
24705
24706         * configure.ac: Minor cosmetic change to convince the buildbot to
24707         reautogen.
24708         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
24709         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
24710         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
24711         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
24712         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
24713         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
24714         More hacking.  Plays audio now.
24715
24716 2004-05-20  David Schleef  <ds@schleef.org>
24717
24718         * configure.ac:
24719         * sys/Makefile.am:
24720
24721 2004-05-20  David Schleef  <ds@schleef.org>
24722
24723         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
24724         * sys/osxaudio/gstosxaudio.c:
24725         * sys/osxaudio/gstosxaudioelement.c:
24726         * sys/osxaudio/gstosxaudioelement.h:
24727         * sys/osxaudio/gstosxaudiosink.c:
24728         * sys/osxaudio/gstosxaudiosink.h:
24729         * sys/osxaudio/gstosxaudiosrc.c:
24730         * sys/osxaudio/gstosxaudiosrc.h:
24731
24732 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24733
24734         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
24735         (gst_vorbisenc_chain):
24736           put the codec headers on the caps as streamheader as well as
24737           pushing them out
24738
24739 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24740
24741         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
24742         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
24743         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
24744         split up push_packet into two functions
24745
24746 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24747
24748         * gst/tcp/.cvsignore:
24749           ignore enums
24750         * gst/tcp/Makefile.am:
24751         * gst/tcp/README:
24752         * gst/tcp/gsttcp.c:
24753         * gst/tcp/gsttcp.h:
24754         * gst/tcp/gsttcpclientsink.c:
24755         * gst/tcp/gsttcpclientsink.h:
24756         * gst/tcp/gsttcpclientsrc.c:
24757         * gst/tcp/gsttcpclientsrc.h:
24758         * gst/tcp/gsttcpplugin.c:
24759         * gst/tcp/gsttcpserversink.c:
24760         * gst/tcp/gsttcpserversink.h:
24761         * gst/tcp/gsttcpserversrc.c:
24762         * gst/tcp/gsttcpserversrc.h:
24763           add new tcp elements
24764
24765 2004-05-19  Wim Taymans  <wim@fluendo.com>
24766
24767         * gst/law/mulaw-conversion.c: (mulaw_encode):
24768         Fix overflow bug in ulaw encoding.
24769
24770 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24771
24772         * ext/mad/gstmad.c: (gst_mad_handle_event):
24773           don't unref the event twice
24774
24775 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24776
24777         * configure.ac:
24778           remove -Wno-sign-compare
24779
24780 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24781
24782         * configure.ac:
24783           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
24784           if you want to work against glib 2.2 and 2.4
24785
24786 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24787
24788         * gst/tcp/Makefile.am:
24789         * gst/tcp/gsttcp.c:
24790         * gst/tcp/gsttcp.h:
24791         * gst/tcp/gsttcpsink.h:
24792         * gst/tcp/gsttcpsrc.h:
24793           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
24794
24795 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24796
24797         * gst/debug/tests.c: (md5_get_value):
24798           fix segfault on gst-inspect
24799
24800 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24801
24802         * gst/debug/testplugin.c:
24803         * gst/debug/tests.c:
24804         * gst/debug/tests.h:
24805           add new extensible and configurable testing element. Current tests
24806           include buffer count, stream length, timestamp/duration matching and
24807           md5.
24808         * gst/debug/Makefile.am:
24809         * gst/debug/gstdebug.c: (plugin_init):
24810           add infrastructure for new element
24811
24812 2004-05-19  Johan Dahlin  <johan@gnome.org>
24813
24814         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
24815         ending of the array. Fixes gst-inspect segfault on ppc.
24816
24817 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24818
24819         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
24820
24821         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
24822
24823 2004-05-18  David Schleef  <ds@schleef.org>
24824
24825         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
24826         warnings (bugs, actually) noticed by gcc but not forte.
24827
24828 2004-05-18  David Schleef  <ds@schleef.org>
24829
24830         * sys/sunaudio/Makefile.am:
24831         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
24832
24833 2004-05-18  David Schleef  <ds@schleef.org>
24834
24835         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
24836         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
24837         to allow qtdemux to use non-seekable streams. (bug #142272)
24838
24839 2004-05-18  David Schleef  <ds@schleef.org>
24840
24841         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
24842         (gst_resample_sinc_ft_float): Remove use of static temporary
24843         buffer.  This code was obviously not supposed to last long, but
24844         it's stuck in our ABI, so it required a little hack to make it
24845         ABI-compatible.  Fixes #142585.
24846         * gst-libs/gst/resample/resample.h: same.
24847
24848 2004-05-18  David Schleef  <ds@schleef.org>
24849
24850         * configure.ac: Add sunaudio
24851         * examples/Makefile.am: make gstplay depend on gconf
24852         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
24853         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
24854         (convert_table_lookup), (img_convert): remove c99-isms
24855         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
24856           unsigned, to fix a warning on Solaris
24857         * gst/mpeg1sys/systems.c: bcopy->memcpy
24858         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
24859         * sys/Makefile.am: Add sunaudio
24860
24861 2004-05-18  Wim Taymans  <wim@fluendo.com>
24862
24863         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
24864         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
24865         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
24866         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
24867         (gst_ogg_mux_loop):
24868         Fix an ugly memleak where the muxer didn't flush enough ogg
24869         pages. This also resulted in badly muxed ogg files.
24870
24871 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24872
24873         * gst/asfdemux/asfheaders.c :
24874         * gst/asfdemux/asfheaders.h :
24875         * gst/asfdemux/gstasfdemux.c :
24876           - fix ASF_OBJ_PADDING guid
24877           - add 3 new object guids (language list, metadata,
24878             extended stream properties)
24879           - add a function to parse extended header objects
24880
24881 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24882
24883         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
24884           remove leftover debugging g_print
24885
24886 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24887
24888         * ext/mad/gstmad.c: (gst_mad_handle_event):
24889           Fix for when the first format in a discont event is not a
24890           byte-based one. Should fix #137710.
24891
24892 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24893
24894         * m4/a52.m4 : fix compilation with -Wall -Werror
24895         * m4/libfame.m4 : idem
24896         * m4/libmikmod.m4 : idem
24897
24898 2004-05-17  Benjamin Otte  <otte@gnome.org>
24899
24900         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24901           signal the new tags before giving up the reference
24902
24903 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24904
24905         * ext/shout2/gstshout2.c:
24906           use application/ogg instead of application/x-ogg (patch by Patrick
24907           Guimond, fixes #142432)
24908         * sys/oss/gstosselement.c: (gst_osselement_reset),
24909         (gst_osselement_sync_parms):
24910           don't set fragment size unless specified (fixes #142493)
24911
24912 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24913
24914         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
24915           fixes #142664
24916
24917 2004-05-17  Benjamin Otte  <otte@gnome.org>
24918
24919         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
24920           compute offsets correctly for internal buffers so timestamps are set
24921           correctly when we can't seek. Also handle cases where there are no
24922           offsets. (based on a patch by David Moore, fixes #142507)
24923
24924 2004-05-17  Benjamin Otte  <otte@gnome.org>
24925
24926         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24927           use correct variable when determining amount of data to skip so we
24928           don't skip into the void and segfault
24929
24930 2004-05-16  Benjamin Otte  <otte@gnome.org>
24931
24932         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
24933           Hi, I'm a memleak
24934
24935 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24936
24937         * gst/asfdemux/gstasfdemux.c:
24938           - fix a mem leak and always propagate tags
24939           - add WMV3 to known video codecs (but no decoder yet)
24940           - replace "surplus data" at end of audio header for what
24941             it is : codec specific data
24942           - fix a typo
24943
24944 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
24945
24946         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
24947
24948         * gst-libs/gst/audio/audioclock.c:
24949           Fix wrong return type (#142205).
24950
24951 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24952
24953         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
24954           Ignore CRCs by default (fixes #142566).
24955
24956 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24957
24958         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
24959         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
24960         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
24961         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
24962         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
24963         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
24964           Fix for cases where we fail to attach to a mixer.
24965
24966 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24967
24968         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
24969           Don't touch events after not owning them anymore.
24970         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
24971         (gst_wavparse_fmt), (gst_wavparse_other),
24972         (gst_wavparse_handle_seek), (gst_wavparse_loop),
24973         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
24974         (gst_wavparse_srcpad_event):
24975         * gst/wavparse/gstwavparse.h:
24976           Add seeking, fix querying.
24977
24978 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24979
24980         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24981           - process comments even if they don't end with \0\0
24982             g_convert would ignore them if present and works well without them
24983
24984 2004-05-16  Benjamin Otte  <otte@gnome.org>
24985
24986         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
24987           simplify caps
24988
24989 2004-05-16  Benjamin Otte  <otte@gnome.org>
24990
24991         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
24992           don't write to memory we might not write to - g_convert does that
24993           for us anyway (fixes #142613)
24994         (gst_asf_demux_audio_caps):
24995           comment out gst_util_dump_mem
24996
24997 2004-05-16  Benjamin Otte  <otte@gnome.org>
24998
24999         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25000           compute correct expected timestamps after seek (broken since
25001           last commit)
25002         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25003           rename element and debugging category to gdkpixbufscale
25004
25005 2004-05-16  Benjamin Otte  <otte@gnome.org>
25006
25007         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25008           add error checking to snd_pcm_delay and remove duplicate call to
25009           snd_pcm_delay that caused issues (see inline code comments)
25010         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25011           make more readable and fix return value when snd_pcm_delay fails
25012         (fixes #142586)
25013
25014 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
25015         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25016         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25017         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25018         (gst_pixbufscale_link), (gst_pixbufscale_init),
25019         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25020         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25021         (gst_pixbufscale_get_property), (pixbufscale_init):
25022         * ext/gdk_pixbuf/pixbufscale.h:
25023         Add these files I forgot earlier
25024
25025 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
25026         * ext/gdk_pixbuf/Makefile.am:
25027         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25028         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25029         Add new pixbufscale element to scale RGB video
25030         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25031         and HYPER interpolation correctly.
25032         * ext/theora/theoraenc.c: (theora_enc_chain),
25033         Discard buffer and return if explicit caps could not be set
25034         (theora_enc_get_property):
25035         Make _get return kbps for the bitrate consistent with
25036         the _set function.
25037
25038
25039 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25040
25041         * ext/libvisual/visual.c: (gst_visual_chain):
25042           add missing visual_audio_analyze
25043
25044 2004-05-14  David Schleef  <ds@schleef.org>
25045
25046         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25047         is killed while we're playing.
25048         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25049         gst_element_no_more_pads().
25050
25051 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25052
25053         * gst-libs/gst/riff/riff-read.c :
25054           - fix INFO tag extraction in RIFF/AVI files
25055             because gst_event_unref (event) also freed taglist
25056           - avoid a mem leak
25057
25058 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25059
25060         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25061         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25062
25063         * gst/auparse/gstauparse.c :
25064           - add code (commented for now) to support audio/x-adpcm on src pad
25065             (we have no decoder for those layout yet)
25066
25067         * gst/cdxaparse/gstcdxaparse.c :
25068         * gst/cdxaparse/gstcdxaparse.h :
25069           - partial rewrite using RiffRead (ripped iain's wavparse code)
25070
25071         * gst/rtp/gstrtpL16enc.c : typo
25072         * gst/rtp/gstrtpgsmenc.c : typo
25073
25074 2004-05-13  Benjamin Otte  <otte@gnome.org>
25075
25076         * configure.ac:
25077           check for exact version of libvisual, it's not supposed to be
25078           API/ABI stable yet
25079
25080 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25081
25082         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25083           signal no-more-pads
25084
25085 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25086
25087         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25088         Report which format was used for GST_FORMAT_DEFAULT
25089         * gst/debug/Makefile.am:
25090         * gst/debug/gstdebug.c: (plugin_init):
25091         * gst/debug/progressreport.c: (gst_progressreport_base_init),
25092         (gst_progressreport_class_init), (gst_progressreport_init),
25093         (gst_progressreport_report), (gst_progressreport_set_property),
25094         (gst_progressreport_get_property), (gst_progressreport_chain),
25095         (gst_progressreport_plugin_init):
25096         Add progressreport element for testing.
25097
25098 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
25099
25100         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25101         * sys/v4l/gstv4lsrc.h:
25102         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25103         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25104         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25105         (gst_v4lsrc_grab_frame):
25106           add more debugging
25107           send a discont at start
25108
25109 2004-05-12  Colin Walters  <walters@redhat.com>
25110
25111         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25112         inflooping if we can't find a chunk.  Or in other words, don't blow
25113         chunks if we don't have a chunk to blow.
25114
25115 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25116         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25117         Remove old debug output
25118         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25119         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25120         (gst_dvdec_set_property), (gst_dvdec_get_property):
25121         Change the quality setting to an enum, so it works from gst-launch
25122         Don't renegotiate a non-linked pad. Allows audio only decoding.
25123         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25124         (gst_deinterlace_link), (gst_deinterlace_init):
25125         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25126         (gst_videodrop_link):
25127         Some caps negotiation fixes
25128
25129 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25130
25131         * ext/tarkin/gsttarkin.c :
25132           - Change RANK from NONE to PRIMARY
25133         * ext/gdk_pixbuf/gstgdkpixbuf.c :
25134           - Change RANK from NONE to MARGINAL
25135         * ext/divx/gstdivxenc.c :
25136           - Change RANK from PRIMARY to NONE (encoder/spider issue)
25137
25138 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25139
25140         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25141         (gst_vorbisenc_push_packet):
25142           copy a function that was added between 1.0 and 1.0.1 until we
25143           depend on worthwhile features of post-1.0
25144
25145 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25146
25147         * configure.ac:
25148           enable shout2 by default
25149         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25150         (gst_shout2send_base_init), (gst_shout2send_init),
25151         (gst_shout2send_connect), (gst_shout2send_change_state):
25152         * ext/shout2/gstshout2.h:
25153           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25154           #142262)
25155         * ext/theora/theora.c: (plugin_init):
25156           don't set rank on encoders
25157
25158 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
25159
25160         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25161           Use codec_data property instead of flag1 and flag2 for wma
25162
25163 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25164
25165         * gst/cdxaparse/gstcdxaparse.c :
25166           - Add mpegversion to CAPS to make it link
25167           - Rank is as GST_RANK_SECONDARY instead of NONE
25168         * gst/auparse/gstauparse.c :
25169           - Document all audio encoding we can encounter from Solaris 9
25170             headers and libsndfile information.
25171           - Increase max. rate from 48000 to 192000 (to match other elements)
25172           - Don't try to play junk data between header and samples
25173
25174 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25175
25176         * ext/libvisual/visual.c: (gst_visual_getcaps):
25177           use the right caps depending on endianness (I hope)
25178         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25179           use GST_RANK_NONE for all non-decoding elements or spider gets
25180           mighty confused
25181
25182 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25183
25184         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25185           Fix some odd cases and fix BE metadata parsing of unicode16 text.
25186
25187 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25188
25189         * gst/switch/gstswitch.c: (gst_switch_release_pad),
25190         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25191         (gst_switch_loop), (gst_switch_get_type):
25192           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25193           HEADERS. Had to be said.
25194
25195 2004-05-10  David Schleef  <ds@schleef.org>
25196
25197         * configure.ac: Add prototype Dirac support.
25198         * ext/Makefile.am:
25199         * ext/dirac/Makefile.am:
25200         * ext/dirac/gstdirac.cc:
25201         * ext/dirac/gstdiracdec.cc:
25202
25203 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25204
25205         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25206         (gst_auparse_init), (gst_auparse_chain),
25207         (gst_auparse_change_state):
25208           Hack around spider. Remove me some day please.
25209
25210 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25211
25212         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25213           Fix for some uninitialized variables in previous patch, also
25214           makes it work. Fixes #142286 while we're at it.
25215
25216 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25217
25218         * gst/auparse/gstauparse.c:
25219                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25220                 only unsupported formats are ADPCM/CCITT G.72x
25221                 reviewed by Ronald
25222         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25223
25224 2004-05-10  Wim Taymans  <wim@fluendo.com>
25225
25226         * ext/vorbis/Makefile.am:
25227         * ext/vorbis/README:
25228         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25229         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25230         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25231         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25232         (gst_oggvorbisenc_convert_sink),
25233         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25234         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25235         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25236         (get_constraints_string), (update_start_message),
25237         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25238         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25239         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25240         * ext/vorbis/oggvorbisenc.h:
25241         * ext/vorbis/vorbis.c: (plugin_init):
25242         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25243         (raw_caps_factory), (gst_vorbisenc_class_init),
25244         (gst_vorbisenc_init), (gst_vorbisenc_setup),
25245         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25246         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25247         * ext/vorbis/vorbisenc.h:
25248         Added a raw vorbis encoder to be used with the oggmuxer.
25249         We still need the old encoder for some gnome applications,
25250         read the README to find out how that works.
25251         The raw encoder is called "rawvorbisenc" until 0.9.
25252
25253 2004-05-10  Wim Taymans  <wim@fluendo.com>
25254
25255         * ext/ogg/gstogg.c: (plugin_init):
25256         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25257         (gst_ogg_print):
25258         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25259         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25260         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25261         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25262         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25263         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25264         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25265         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25266         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25267         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25268         Added an ogg muxer.
25269         Small typo fixes in the demuxer.
25270
25271 2004-05-10  Wim Taymans  <wim@fluendo.com>
25272
25273         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25274         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25275         (theora_enc_change_state), (theora_enc_set_property),
25276         (theora_enc_get_property):
25277         Mark the last packet with an EOS flag which is not really needed
25278         in gstreamer.
25279         Do some better video framerate initialisation.
25280         Update the buffer timestamp.
25281
25282 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
25283
25284         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25285         Return the result of the parent state change call
25286
25287 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25288
25289         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25290         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25291         * gst/law/alaw-encode.c : (idem)
25292         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25293         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25294         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25295
25296 2004-05-09  Benjamin Otte  <otte@gnome.org>
25297
25298         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25299           don't use a fixed buffer size when writing variable length data to
25300           it. Fixes memory corruption and makes alsasrc work
25301
25302 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25303
25304         * ext/gnomevfs/gstgnomevfssink.c:
25305         (_gst_boolean_allow_overwrite_accumulator),
25306         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25307           Run glib's default signal handler (??) in RUN_CLEANUP rather than
25308           RUN_LAST, and don't use that to set the accumulator value because
25309           then it's always FALSE.
25310
25311 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25312
25313         * gst-libs/gst/riff/riff-media.c:
25314         (gst_riff_create_video_caps_with_data),
25315         (gst_riff_create_audio_caps),
25316         (gst_riff_create_audio_template_caps):
25317         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25318           Fix for unaligned RIFF files (i.e. where all the chunks together
25319           in a LIST chunk are not of the same size as the size given in
25320           the LIST chunk header). Fixes several odd WAVE files. Also fix
25321           ADPCM (block_align property) in audio, so that wavparse based
25322           on this works now as it used to stand-alone.
25323
25324 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
25325
25326         reviewed by Benjamin Otte  <otte@gnome.org>
25327
25328         * ext/a52dec/gsta52dec.c:
25329         * ext/divx/gstdivxdec.c:
25330         * ext/divx/gstdivxenc.c:
25331         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25332         * ext/faac/gstfaac.c: (gst_faac_base_init):
25333         * ext/faad/gstfaad.c: (gst_faad_base_init):
25334         * ext/ivorbis/vorbisfile.c:
25335         * ext/lame/gstlame.c:
25336         * ext/libfame/gstlibfame.c:
25337         * ext/mpeg2enc/gstmpeg2enc.cc:
25338         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25339         * ext/sidplay/gstsiddec.cc:
25340         * ext/speex/gstspeexdec.c:
25341         * ext/speex/gstspeexenc.c:
25342         * ext/xvid/gstxviddec.c:
25343         * ext/xvid/gstxvidenc.c:
25344           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25345           (fixes #142193)
25346
25347 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25348
25349         * ext/alsa/gstalsa.c: (device_list),
25350         (gst_alsa_class_probe_devices):
25351         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25352           Fix alsa oddness in mixer after the combination of using mixer
25353           in source/sink elements and using hw:x,y instead of just hw:x.
25354
25355 2004-05-09  Benjamin Otte  <otte@gnome.org>
25356
25357         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25358         (gst_wavparse_create_sourcepad):
25359           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25360           sourcepads
25361
25362 2004-05-09  Benjamin Otte  <otte@gnome.org>
25363
25364         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25365           allow discont events before caps nego
25366
25367 2004-05-08  Benjamin Otte  <otte@gnome.org>
25368
25369         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25370           don't leak events
25371
25372 2004-05-08  Benjamin Otte  <otte@gnome.org>
25373
25374         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25375         (gst_level_change_state), (gst_level_init):
25376         * gst/level/gstlevel.h:
25377           figure out if we're initialized directly instead of keeping a
25378           variable that's wrong in 90% of cases
25379           don't initialize pads and then leak them and use a new unitialized
25380           pad. (fixes #142084)
25381           these were bugs so n00bish I didn't find them for an hour :/
25382
25383 2004-05-08 Iain <iain@prettypeople.org>
25384
25385         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25386         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25387         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25388         return the length that was read.
25389         (gst_riff_read_strf_auds): Allow fmt tags as well.
25390
25391 2004-05-07  David Schleef  <ds@schleef.org>
25392
25393         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25394         signed char assumption in faad.h.
25395
25396 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25397
25398         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25399           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25400
25401 2004-05-07  Colin Walters  <walters@redhat.com>
25402
25403         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25404         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25405         function.
25406         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25407         Add dispose function.
25408
25409 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
25410         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
25411           Fix caps nego and pad templates. RGB mode caps should
25412           work now.
25413         * ext/dvdnav/gst-dvd:
25414           Move mpeg2dec inside the thread because otherwise the
25415           queue rejects cap changes mid-stream
25416         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
25417         (gst_mpeg2dec_flush_decoder):
25418           For mpeg2dec > 0.4.0, call the flush function instead of
25419           manually extracting all in-flight frames.
25420         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
25421         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
25422           Change mime type video/dv go video/x-dv to match the
25423           rest of gst-plugins
25424
25425 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25426
25427         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25428         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
25429         (gst_alsa_sink_class_init):
25430         * ext/alsa/gstalsasink.h:
25431         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
25432         (gst_alsa_src_class_init):
25433         * ext/alsa/gstalsasrc.h:
25434           Make alsasink/src a subclass of alsamixer so that mixer stuff
25435           shows up in gst-rec. Needs some finetuning.
25436
25437 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25438
25439         * ext/lame/gstlame.c: (gst_lame_chain):
25440           simplify
25441         * ext/mad/gstmad.c: (gst_mad_handle_event):
25442           fix event leak
25443         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25444           be able to detect mp3 files < 4096 bytes
25445
25446 2004-05-06  Wim Taymans  <wim@fluendo.com>
25447
25448         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25449         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25450         (theora_enc_set_property), (theora_enc_get_property):
25451         Also encode the first frame, cleanup some code.
25452
25453 2004-05-06  Wim Taymans  <wim@fluendo.com>
25454
25455         * ext/mpeg2enc/gstmpeg2enc.cc:
25456         Forward events first before deciding that negotiation was
25457         not performed.
25458
25459 2004-05-06  Wim Taymans  <wim@fluendo.com>
25460
25461         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
25462         First process the events before deciding that negotiation
25463         was not performed.
25464
25465 2004-05-06  Wim Taymans  <wim@fluendo.com>
25466
25467         * ext/theora/Makefile.am:
25468         * ext/theora/theora.c: (plugin_init):
25469         * ext/theora/theoradec.c: (theora_dec_change_state):
25470         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
25471         (gst_theora_enc_class_init), (gst_theora_enc_init),
25472         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
25473         (theora_enc_chain), (theora_enc_change_state),
25474         (theora_enc_set_property), (theora_enc_get_property):
25475         Added a theora encoder, grouped the encoder and decoder into the
25476         same plugin.
25477
25478 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
25479
25480         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25481         (gst_jpegenc_chain):
25482         fix DURATION on outgoing buffers
25483         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
25484         debug using time formats
25485         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
25486         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
25487         (gst_xvimagesink_sink_link):
25488         windows with width/height 0 generate X errors, so don't allow them
25489
25490 2004-05-05  Wim Taymans  <wim@fluendo.com>
25491
25492         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
25493         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
25494         (gst_mpeg2dec_negotiate_format):
25495         * ext/mpeg2dec/gstmpeg2dec.h:
25496           removed the static pad template so that we can add the
25497           more accurate framerate value to the caps.
25498
25499
25500 2004-05-04  Benjamin Otte  <otte@gnome.org>
25501
25502         * configure.ac:
25503           check for kdemacros.h, too (should fix #141821)
25504         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
25505           don't crash if no header was sent, but nicely error out (fixes part
25506           of #141554)
25507
25508 2004-05-04  Wim Taymans  <wim@fluendo.com>
25509
25510         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
25511         parent dispose function to avoid segfault on destroy.
25512
25513 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
25514
25515         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25516         (plugin_init):
25517         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
25518         (gst_xvimagesink_sink_link):
25519         clean up debugging caps
25520         also recreate xvimage when format has changed
25521
25522 2004-05-04  Benjamin Otte  <otte@gnome.org>
25523
25524         * ext/libvisual/Makefile.am:
25525         * ext/libvisual/visual.c: (gst_visual_class_init),
25526         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
25527         (gst_visual_srclink), (gst_visual_chain),
25528         (gst_visual_change_state), (plugin_init):
25529           use a GstAdapter to correctly adapt buffer sizes - allows using a
25530           framerate
25531
25532 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25533
25534         * sys/v4l/gstv4lelement.h:
25535         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
25536         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
25537         (gst_v4lsrc_buffer_free):
25538         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
25539         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
25540         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
25541         (gst_v4lsrc_requeue_frame):
25542         move some debugging categories around
25543         query for fps index and set accordingly if found
25544
25545 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25546
25547         * ext/lame/gstlame.c:
25548         correct defaults that lame_init puts out of range
25549
25550 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25551
25552         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
25553         (gst_divxenc_class_init):
25554         fix range since -1 is the default
25555         * gst/mpeg1sys/gstmpeg1systemencode.c:
25556         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
25557         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
25558         (gst_rtjpegdec_chain):
25559         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
25560         (gst_rtjpegenc_chain):
25561         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
25562         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
25563         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
25564         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
25565         * sys/v4l/gstv4lsrc.c:
25566         * sys/v4l/v4l_calls.c: (gst_v4l_open):
25567         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25568         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25569         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
25570         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
25571           remove gst_info calls
25572
25573 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25574
25575         * Makefile.am:
25576         * po/af.po:
25577         * po/az.po:
25578         * po/en_GB.po:
25579         * po/nl.po:
25580         * po/sr.po:
25581         * po/sv.po:
25582           Updated translations
25583
25584 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25585
25586         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
25587           refactor/comment code
25588
25589 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25590
25591         * gst/asfdemux/Makefile.am:
25592         * gst/asfdemux/asfheaders.c:
25593         * gst/asfdemux/asfheaders.h:
25594         * gst/asfdemux/gstasf.c: (plugin_init):
25595         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
25596         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
25597         (gst_asf_demux_setup_pad):
25598         * gst/asfdemux/gstasfdemux.h:
25599         * gst/asfdemux/gstasfmux.c:
25600         * gst/asfdemux/gstasfmux.h:
25601           Add tagging support to demuxer, split out registration in its own
25602           file instead of in demux (hacky), and prevent having some tables
25603           in our memory multiple times (in asfheaders.h).
25604
25605 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25606
25607         * gst/matroska/matroska-demux.c:
25608         (gst_matroska_demux_parse_metadata):
25609         * gst/matroska/matroska-ids.h:
25610           Basic tag reading support.
25611
25612 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25613
25614         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
25615           Really detect ac-3 audio.
25616         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
25617           really detect matroska files (off-by-1).
25618
25619 2004-04-30  David Schleef  <ds@schleef.org>
25620
25621         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25622         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
25623         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
25624         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
25625         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
25626         hackage -- parse a lot more atoms, extract a few tags.  One might even
25627         mistake this for tag support.  Maybe it is.
25628         * gst/qtdemux/qtdemux.h:
25629
25630 2004-04-30  Colin Walters  <walters@verbum.org>
25631
25632         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
25633
25634 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
25635
25636         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25637         (gst_ffmpegcolorspace_getcaps):
25638           remove broken nego fix
25639
25640 2004-04-30  Benjamin Otte  <otte@gnome.org>
25641
25642         * configure.ac:
25643         * ext/Makefile.am:
25644         * ext/libvisual/Makefile.am:
25645         * ext/libvisual/visual.c:
25646           add initial support for libvisual (http://libvisual.sourceforge.net)
25647           libvisual is still quite alpha, so expect crashes in there :)
25648
25649 2004-04-29  David Schleef  <ds@schleef.org>
25650
25651         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
25652         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
25653         up qtdemux to make it spit out codec_data.  Do _not_ look at this
25654         code; you will no longer respect me.
25655
25656 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25657
25658         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
25659         * ext/alsa/gstalsa.h :
25660         change alsa pcm device discovery to find more than 1 device
25661         per card. code review by Ronald.
25662
25663 2004-04-29  David Schleef  <ds@schleef.org>
25664
25665         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
25666         Add a check for a driver bug on FreeBSD.  (bug #140565)
25667
25668 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
25669
25670         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
25671         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25672         (gst_jpegenc_getcaps):
25673           move format setting to inner loop
25674         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25675         (gst_ffmpegcolorspace_getcaps):
25676           use GST_PAD_CAPS if available so that we use already negotiated
25677           caps
25678         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25679         (qtdemux_parse_moov), (qtdemux_parse):
25680           extra debugging
25681         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
25682         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
25683           move hardcoded path to DEFINE
25684
25685 2004-04-28  David Schleef  <ds@schleef.org>
25686
25687         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
25688         (bug #140064)
25689
25690 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25691
25692         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
25693           Don't probe for playback device if we're a source element. Fixes
25694           #139658.
25695
25696 2004-04-29  Benjamin Otte  <otte@gnome.org>
25697
25698         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
25699         (gst_id3_tag_chain):
25700           rewrite buffer offset
25701
25702 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25703
25704         * configure.ac:
25705         * ext/Makefile.am:
25706         * ext/dts/Makefile.am:
25707         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
25708         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
25709         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
25710         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
25711         (gst_dtsdec_loop), (gst_dtsdec_change_state),
25712         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
25713         (plugin_init):
25714         * ext/dts/gstdtsdec.h:
25715           New DTS decoder.
25716         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
25717         (gst_faad_srcconnect):
25718           Add ESDS atom handling (.m4a).
25719
25720 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25721
25722         * ext/divx/gstdivxdec.c: (plugin_init):
25723           Remove comment that makes no sense.
25724         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
25725           Fix for obvious typo that resulted in warnings during gst-register.
25726         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
25727         (gst_xviddec_sink_link):
25728           Fix caps negotiation a bit better.
25729         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
25730           We call this 'codec_data', not 'esds'.
25731
25732 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25733
25734         * gst/monoscope/gstmonoscope.c:
25735           make sure we only provide 256x128
25736         * gst/monoscope/monoscope.c: (monoscope_init):
25737           assert size of 256x128
25738
25739 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
25740
25741         * Makefile.am:
25742         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
25743         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
25744           fixate to max width and height of device
25745
25746 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
25747
25748         * Makefile.am:
25749         * sys/v4l/gstv4l.c:
25750         * sys/v4l/gstv4lsrc.c:
25751         * sys/v4l/v4l_calls.c:
25752         * sys/v4l/v4lsrc_calls.c:
25753           fix for qc-usb driver which fakes having more than one buffer
25754           by handing the same buffer twice, which confused GStreamer's/v4lsrc
25755           buffer_free override
25756           add debugging
25757
25758 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
25759
25760         * Makefile.am:
25761         * gst/videotestsrc/gstvideotestsrc.c:
25762         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
25763         (gst_videotestsrc_init), (gst_videotestsrc_get),
25764         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
25765         * gst/videotestsrc/gstvideotestsrc.h:
25766           add num-buffers property
25767
25768         2004-04-26  Benjamin Otte  <otte@gnome.org>
25769
25770         * ext/mad/gstid3tag.c: (plugin_init):
25771           set id3mux rank to NONE so it doesn't confuse spider
25772           require audio/mpeg,mpegversion=1 in id3mux
25773
25774 2004-04-26  Benjamin Otte  <otte@gnome.org>
25775
25776         * configure.ac:
25777           detect faad correctly as non-working if it's indeed non-working
25778
25779 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
25780
25781         * Makefile.am:
25782         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25783         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
25784         fix _getcaps so it only negotiates to its supported format
25785
25786 2004-04-25  Benjamin Otte  <otte@gnome.org>
25787
25788         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
25789           fix memleak
25790
25791 2004-04-23  Benjamin Otte  <otte@gnome.org>
25792
25793         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
25794           audio/x-raw-int with height rules! not. Now it's depth.
25795
25796 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25797
25798         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
25799         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
25800         (gst_wavparse_loop):
25801           Missing variable initialization. Add handling of DVI ADPCM. Fix
25802           mis-parsing of LIST chunks. This works around a bug where we mis-
25803           parse non-aligning LIST chunks (so LIST chunks where the contents
25804           don't align with the actual LIST size). The correct fix is to use
25805           rifflib, I'm not going to fix wavparse - too much work. All this
25806           fixes #104878.
25807
25808 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25809
25810         reviewed by Benjamin Otte  <otte@gnome.org>
25811
25812         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
25813           fix shoutcast not working (fixes #140844)
25814
25815 2004-04-22  Benjamin Otte  <otte@gnome.org>
25816
25817         * ext/hermes/gsthermescolorspace.c:
25818         (gst_hermes_colorspace_caps_remove_format_info):
25819         * gst/colorspace/gstcolorspace.c:
25820         (gst_colorspace_caps_remove_format_info):
25821         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25822         (gst_ffmpegcolorspace_caps_remove_format_info):
25823           s/gst_caps_simplify/gst_caps_do_simplify/
25824
25825 2004-04-22  Benjamin Otte  <otte@gnome.org>
25826
25827         * gst-libs/gst/riff/riff-media.c:
25828         (gst_riff_create_video_caps_with_data):
25829           mpegversion is an int
25830         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
25831           don't try to create pad templates with NULL caps, use any caps
25832           instead.
25833
25834 2004-04-20  David Schleef  <ds@schleef.org>
25835
25836         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
25837         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
25838         (bug #140384)
25839
25840 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
25841
25842         reviewed by David Schleef
25843
25844         * ext/mad/gstid3tag.c: Add stdlib.h
25845         * gst/rtp/gstrtpgsmenc.c: same
25846         * gst/tags/gstid3tag.c: same
25847         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
25848         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
25849         GST_DISABLE_LOADSAVE use.
25850         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
25851         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
25852         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
25853         atol(3)).
25854         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
25855         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
25856         strtoul(3)).
25857         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
25858         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
25859         $(ID3_CFLAGS).
25860         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
25861         $(LIBFAME_CFLAGS).
25862
25863 2004-04-20  David Schleef  <ds@schleef.org>
25864
25865         * gst/realmedia/rmdemux.c:  This was supposed to part of the
25866         last checkin.  Same idea.
25867
25868 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
25869
25870         reviewed by David Schleef
25871
25872         * configure.ac: bump required gstreamer version to 0.8.1.1
25873         because of following changes [--ds]
25874
25875         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
25876         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
25877         (gst_riff_read_header):  Use GST_READ_UINT*
25878         macros to access possibly unaligned memory.
25879
25880         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
25881         (mp3_type_find):  Use GST_READ_UINT*
25882         macros to access possibly unaligned memory.
25883         (mp3_type_find, mpeg1_parse_header, qt_type_find)
25884         (speex_type_find): Likewise
25885
25886         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
25887
25888         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
25889         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
25890         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
25891         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
25892         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
25893         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
25894         macros to access possibly unaligned memory.
25895
25896         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
25897         Likewise.
25898
25899         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
25900         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
25901
25902         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
25903         Likewise.
25904
25905         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
25906         (gst_mpeg2subt_chain_subtitle): Likewise.
25907
25908         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
25909         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
25910         Likewise.
25911
25912         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
25913         Likewise.
25914
25915         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
25916         Likewise.
25917
25918         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
25919         Likewise.
25920
25921 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25922
25923         * configure.ac:
25924           update required version of GStreamer because of GST_TIME_FORMAT
25925
25926 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25927
25928         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
25929           remove leftover g_print
25930         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25931           don't try setting only a subset of the caps. We don't want to kill
25932           autoplugging on purpose
25933
25934 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25935
25936         * sys/ximage/ximagesink.c: (plugin_init):
25937         * sys/xvimage/xvimagesink.c: (plugin_init):
25938           add debugging categories
25939
25940 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25941
25942         * po/en_GB.po:
25943         * po/LINGUAS:
25944           Adding en_GB translation (Gareth Owen)
25945
25946 2004-04-20  David Schleef  <ds@schleef.org>
25947
25948         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
25949         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
25950         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
25951         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
25952         A number of new features and hacks to extract the esds atom and
25953         put it into the caps.  (bug #137724)
25954
25955 2004-04-19  David Schleef  <ds@schleef.org>
25956
25957         * gconf/Makefile.am: Fix for non-GNU make
25958         * gst-libs/gst/Makefile.am: Change directory order to handle
25959         GstPlay linking with gstinterfaces
25960         * gst-libs/gst/audio/make_filter: make use of tr portable
25961         * gst-libs/gst/play/Makefile.am: Add intended \
25962         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
25963         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
25964         function prototype instead of void *.
25965         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
25966         macro.
25967         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25968         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
25969         * gst/videofilter/make_filter: make use of tr portable
25970         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
25971
25972 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
25973
25974         * po/LINGUAS:
25975         * po/uk.po:
25976           Added Ukrainian translation (Maxim V. Dziumanenko)
25977
25978 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25979
25980         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
25981         (gst_gsmdec_link), (gst_gsmdec_chain):
25982           Fix capsnego, simplify chain function slightly.
25983         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
25984           Add GSM.
25985
25986 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25987
25988         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
25989         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
25990         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
25991           Hack to make wavparse work with spider (always -> sometimes pad).
25992           Fixes #135862 && #140411.
25993
25994 2004-04-18  Benjamin Otte  <otte@gnome.org>
25995
25996         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
25997         (gst_osselement_rate_probe_check),
25998         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
25999           get rid of \n in debug output
26000
26001 2004-04-17  Iain <iain@prettypeople.org>
26002
26003         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26004         not just EOS.
26005
26006 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26007
26008         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26009         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26010         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26011         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26012         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26013         (gst_id3_tag_change_state), (plugin_init):
26014           deprecate id3tag element and replace with id3demux/id3mux.
26015           great side effect: this ugly file is now even uglier, yay!
26016         * ext/mad/gstmad.h:
26017           remove non-available function
26018           update for new get_type
26019
26020 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26021
26022         * configure.ac:
26023           require mpeg2dec >= 0.4.0
26024
26025 2004-04-17  Benjamin Otte  <otte@gnome.org>
26026
26027         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26028         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26029         (gst_xvimagesink_set_xwindow_id):
26030           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26031           assorted cleanup fixes.
26032
26033 2004-04-16  David Schleef  <ds@schleef.org>
26034
26035         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26036         * sys/xvimage/xvimagesink.h: same
26037
26038 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26039
26040         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26041           Fix GST_ELEMENT_ERROR with (NULL)
26042
26043 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26044
26045         * gst-libs/gst/riff/riff-media.c:
26046         (gst_riff_create_video_caps_with_data):
26047           Add div[3456] as fourccs for DivX 3 (fixes #140137).
26048
26049 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26050
26051         * gst-libs/gst/riff/riff-media.c:
26052         (gst_riff_create_video_caps_with_data),
26053         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26054         (gst_riff_create_video_template_caps),
26055         (gst_riff_create_audio_template_caps):
26056         * gst-libs/gst/riff/riff-media.h:
26057         * gst-libs/gst/riff/riff-read.c:
26058         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26059         * gst-libs/gst/riff/riff-read.h:
26060         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26061           Add MS RLE support. I added some functions to read out strf chunks
26062           into strf chunks and the data behind it. This is usually color
26063           palettes (as in RLE, but also in 8-bit RGB). Also use those during
26064           caps creation. Lastly, add ADPCM (similar to wavparse - which
26065           should eventually be rifflib based).
26066         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26067         (gst_matroska_demux_init), (gst_matroska_demux_reset):
26068         * gst/matroska/matroska-demux.h:
26069           Remove placeholders for some prehistoric tagging system. Didn't add
26070           support for any tag system really anyway.
26071         * gst/qtdemux/qtdemux.c:
26072           Add support for audio/x-m4a (MPEG-4) through spider.
26073         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26074         (gst_wavparse_loop):
26075           ADPCM support (#135862). Increase max. buffer size because we
26076           cannot split buffers for ADPCM (screws references) and I've seen
26077           files with 2048 byte chunks. 4096 seems safe for now.
26078
26079 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26080
26081         * configure.ac: bump nano to 1
26082
26083 === release 0.8.1 ===
26084
26085 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26086
26087         * configure.ac: releasing 0.8.1, "Comforting Sounds"
26088
26089 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26090
26091         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26092           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26093           Fixes #140058
26094
26095 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26096
26097         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26098           lower rank of dvddemux so that it's not used for mpeg playback.
26099
26100 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26101
26102         * configure.ac:
26103           save libs correctly when checking mad
26104
26105 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26106
26107         * ext/mad/gstid3tag.c: (plugin_init):
26108           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
26109
26110 2004-04-13  David Schleef  <ds@schleef.org>
26111
26112         * common/m4/gst-feature.m4: Call -config scripts with
26113         --plugin-libs if it is supported.
26114         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26115         JPEG images are image/jpeg.
26116         * gst/debug/Makefile.am:
26117         * gst/debug/negotiation.c: (gst_negotiation_class_init),
26118         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26119         (gst_negotiation_update_caps), (gst_negotiation_get_property),
26120         (gst_negotiation_plugin_init): Add a property that acts like
26121         filter caps.
26122         * testsuite/gst-lint:  Move license checking to be a standard
26123         test.
26124
26125 2004-04-13  David Schleef  <ds@schleef.org>
26126
26127         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26128         patch from Sebastien Cote (bug #139958)
26129
26130 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26131
26132         * examples/gstplay/Makefile.am:
26133         * examples/gstplay/player.c: (main):
26134           make the commandline player example use gconf settings
26135
26136 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26137
26138         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26139         (gst_cacasink_sinkconnect), (gst_cacasink_init),
26140         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26141           init/end library during state transition, not object
26142           creation/disposal.  get rid of custom dispose handler.
26143
26144
26145 2004-04-12  Christian Schaller <Uraeus@gnome.org>
26146
26147         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26148         be a symlink
26149
26150 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26151
26152         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26153           Handle JUNK chunks inside data section. Prevents warnings.
26154
26155 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26156
26157         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26158         (gst_riff_create_video_template_caps):
26159           Add MS video v1.
26160         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26161         (gst_avi_demux_stream_data):
26162           Add support for "rec-list" chunks.
26163
26164 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26165
26166         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26167           Fix another codecname mismatch.
26168
26169 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26170
26171         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26172           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26173           so that MJPEG plays back.
26174
26175 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26176
26177         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26178         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26179         * gst/mpeg1videoparse/gstmp1videoparse.h:
26180           Fix for some slight mis-cuts in buffer parsing, and for some
26181           potential overflows or faults-causers. Adds disconts. Also fixes
26182           #139105 while we're at it.
26183
26184 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26185
26186         * configure.ac:
26187         * sys/v4l2/gstv4l2element.h:
26188           Workaround for missing struct v4l2_buffer declaration in Suse 9
26189           and Mandrake 10 linux/videodev2.h header file (#135919).
26190
26191 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26192
26193         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26194           Bail out if no filename was given.
26195
26196 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26197
26198         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26199         (gst_v4l2_fourcc_from_structure):
26200           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26201           Y41B somewhere).
26202
26203 2004-04-09  Benjamin Otte  <otte@gnome.org>
26204
26205         * ext/gnomevfs/gstgnomevfssink.c:
26206         (_gst_boolean_allow_overwrite_accumulator),
26207         (gst_gnomevfssink_class_init):
26208           fix erase signal - if any handler returns false the file will not be
26209           overwritten. If no handler is connected, the file will not be
26210           overwritten either.
26211           renamed signal to "allow-overwrite"
26212         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26213           free string when adding it to ID3 failed
26214         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26215           unref event when done
26216         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26217           free caps
26218         * gst/typefind/gsttypefindfunctions.c:
26219         (mpeg_video_stream_type_find):
26220           fix invalid read
26221
26222 2004-04-08  David Schleef  <ds@schleef.org>
26223
26224         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26225         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26226
26227 2004-04-08  David Schleef  <ds@schleef.org>
26228
26229         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26230         we don't support (bug #139532)
26231
26232 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
26233
26234         * ext/mad/gstmad.c: (gst_mad_handle_event),
26235         (gst_mad_check_caps_reset), (gst_mad_chain),
26236         (gst_mad_change_state):
26237           only set explicit caps if they haven't been set before for
26238           this stream.  MPEG-audio sample rate/channels aren't allowed
26239           to change in-stream.
26240           Fixes #139382
26241
26242 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26243
26244         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26245         (_gst_boolean_did_something_accumulator),
26246         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26247         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26248         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26249         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26250         (gst_gnomevfssink_change_state):
26251           Fix erase signal. Don't erase by default. Remove handoff signal.
26252           Remove erase property. Don't segfault. General cleanup.
26253
26254 2004-04-07  Benjamin Otte  <otte@gnome.org>
26255
26256         * gst-libs/gst/gconf/test-gconf.c: (main):
26257           add missing gst_init
26258
26259 2004-04-07  Benjamin Otte  <otte@gnome.org>
26260
26261         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26262           free the mutexes, too
26263
26264 2004-04-07  Benjamin Otte  <otte@gnome.org>
26265
26266         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26267           actually free the URI string
26268         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26269           compute offset correctly when passing discont events
26270         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26271           don't leak discont events
26272         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26273           add some missing breaks so caps aren't copied randomly
26274         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26275           if we realloc memory, we better use it
26276
26277 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26278
26279         * ext/mad/gstmad.c: (normal_seek):
26280           fix GST_FORMAT_TIME usage
26281
26282 2004-04-05  David Schleef  <ds@schleef.org>
26283
26284         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
26285         a deprecated function (hack!)
26286
26287 2004-04-05  Benjamin Otte  <otte@gnome.org>
26288
26289         * ext/esd/esdmon.c: (gst_esdmon_get):
26290           fix nonterminated vararg and memleak
26291
26292 2004-04-05  Benjamin Otte  <otte@gnome.org>
26293
26294         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26295         (gst_ladspa_init), (gst_ladspa_force_src_caps),
26296         (gst_ladspa_set_property), (gst_ladspa_get_property),
26297         (gst_ladspa_instantiate), (gst_ladspa_activate),
26298         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26299           clean up debugging
26300
26301 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
26302
26303         reviewed by Benjamin Otte  <otte@gnome.org>
26304
26305         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26306           check for broken LADSPA parameters (fixes #138635)
26307
26308 2004-04-05  Benjamin Otte  <otte@gnome.org>
26309
26310         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26311           advertise buffer-frames correctly on sinkpads
26312
26313 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26314
26315         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26316         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26317         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26318         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26319         (gst_mad_check_caps_reset), (gst_mad_chain):
26320         add more debugging, only reset caps when we're not in error state
26321
26322 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26323
26324         * ext/mad/gstmad.c: add debugging category, comment + cleanups
26325
26326 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26327
26328         reviewed by Benjamin Otte  <otte@gnome.org>
26329
26330         * configure.ac:
26331           fix == in test(1) operator
26332
26333 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26334
26335         reviewed by Benjamin Otte  <otte@gnome.org>
26336
26337         * configure.ac:
26338           fix --export-symblos-regex to a working regex.
26339
26340 2004-04-04  Benjamin Otte  <otte@gnome.org>
26341
26342         * sys/oss/.cvsignore:
26343           add for oss_probe
26344
26345 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
26346
26347         reviewed by Benjamin Otte  <otte@gnome.org>
26348
26349         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26350           add missing 'new_media' argument (fixes #138168)
26351         * gst/matroska/matroska-demux.c:
26352         (gst_matroska_demux_handle_seek_event):
26353           add vararg terminator (fixes #138169)
26354
26355 2004-04-02  David Schleef  <ds@schleef.org>
26356
26357         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
26358         disted (bug #138914)
26359
26360 2004-04-01  Benjamin Otte  <otte@gnome.org>
26361
26362         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26363         (gst_alsa_close_audio):
26364           handle case better where a soundcard can't pause
26365         * ext/ogg/gstoggdemux.c:
26366           don't crash when we get events but don't have pads yet
26367
26368 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26369
26370         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26371           throw an error if we couldn't probe any caps.
26372
26373 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26374
26375         * ext/dvdnav/gst-dvd:
26376         Add a really simple sample DVD player
26377
26378 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26379
26380         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26381         (gst_a52dec_push), (gst_a52dec_handle_event),
26382         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26383         (gst_a52dec_change_state):
26384         * ext/a52dec/gsta52dec.h:
26385           Use a debug category, Output timestamps correctly
26386           Emit tag info, Handle events, tell liba52dec about cpu
26387           capabilities so it can use MMX etc.
26388         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26389           Fix a crasher accessing invalid memory
26390         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26391         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26392         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26393         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26394         (dvdnavsrc_query):
26395           Some support for byte-format seeking.
26396           Small fixes for still frames and menu button overlays
26397         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26398         (gst_mpeg2dec_alloc_buffer):
26399           Use a debug category. Adjust the report level of several items to
26400           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26401           so it doesn't lose the GstBuffer pointer
26402         * gst/debug/Makefile.am:
26403         * gst/debug/gstdebug.c: (plugin_init):
26404         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26405         (gst_navseek_base_init), (gst_navseek_class_init),
26406         (gst_navseek_init), (gst_navseek_seek),
26407         (gst_navseek_handle_src_event), (gst_navseek_set_property),
26408         (gst_navseek_get_property), (gst_navseek_chain),
26409         (gst_navseek_plugin_init):
26410         * gst/debug/gstnavseek.h:
26411           Add the navseek debug element for seeking back and forth in a
26412           video stream using arrow keys.
26413         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
26414         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
26415         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
26416         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
26417         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
26418         (gst_mpeg2subt_parse_header), (gst_get_nibble),
26419         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
26420         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
26421         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
26422         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
26423         * gst/mpeg2sub/gstmpeg2subt.h:
26424           Pretty much a complete rewrite. Now a loopbased element. May still
26425           require work to properly synchronise subtitle buffers.
26426         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
26427         (gst_dvd_demux_send_subbuffer):
26428         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
26429           Don't attempt to create subbuffers of size 0
26430           Reduce a couple of error outputs to warnings.
26431         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
26432         (gst_y4mencode_chain):
26433         Output the y4m frame header correctly.
26434
26435 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26436
26437         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26438           throw errors instead of allowing SIGFPE
26439
26440 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26441
26442         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
26443         (gst_gconf_render_bin_from_key):
26444           leak plugging and style fixing
26445
26446 2004-03-31  David Schleef  <ds@schleef.org>
26447
26448         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
26449         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
26450         (bug #138225)
26451         * gst/debug/Makefile.am:
26452         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
26453         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
26454         plugin.
26455         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
26456         (gst_negotiation_base_init), (gst_negotiation_class_init),
26457         (gst_negotiation_init), (gst_negotiation_getcaps),
26458         (gst_negotiation_pad_link), (gst_negotiation_chain),
26459         (gst_negotiation_set_property), (gst_negotiation_get_property),
26460         (gst_negotiation_plugin_init):  New element to talk about random
26461         negotiation things happening in a pipeline.
26462
26463 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26464
26465         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26466           fix integer addition with help of Stefan Kost
26467
26468 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26469
26470         * po/nl.po: updated Dutch translation (Elros Cyriatan)
26471
26472 2004-03-30  David Schleef  <ds@schleef.org>
26473
26474         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
26475         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
26476         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
26477         (bug #137504)
26478         * ext/mpeg2dec/gstmpeg2dec.h:
26479
26480 2004-03-30  David Schleef  <ds@schleef.org>
26481
26482         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
26483
26484 2004-03-30  David Schleef  <ds@schleef.org>
26485
26486         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
26487         Michael Petullo) to handle .mov
26488
26489 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26490
26491         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
26492         (gst_osselement_rate_check_rate):
26493           probe caps correctly for sound cards that only support one format
26494
26495 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26496
26497         * ext/kio/kiosrc.cpp: (process_events):
26498           update handling event processing if inside KDE - untested
26499
26500 2004-03-29  David Schleef  <ds@schleef.org>
26501
26502         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
26503         by 2 to not interfere with other colorspaces.
26504         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
26505         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
26506         one to not interfere with ffmpeg_colorspace.
26507
26508 2004-03-29  David Schleef  <ds@schleef.org>
26509
26510         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
26511         aren't in the caps.
26512         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
26513         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
26514
26515 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26516
26517         * gst-libs/gst/riff/riff-media.c:
26518           fail on error, don't try to set stuff on NULL caps
26519
26520 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26521
26522         * configure.ac:
26523         * ext/Makefile.am:
26524         * ext/kio/Makefile.am:
26525         * ext/kio/kioreceiver.cpp:
26526         * ext/kio/kioreceiver.h:
26527         * ext/kio/kiosrc.cpp:
26528         * ext/kio/kiosrc.h:
26529           add experimental kiosrc plugin
26530         * ext/alsa/gstalsaplugin.c: (plugin_init):
26531           initialize debugging category only when we're sure registering the
26532           plugins worked.
26533
26534 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26535
26536         * examples/gstplay/player.c: (main):
26537         * gst-libs/gst/play/play.c: (gst_play_class_init),
26538         (gst_play_set_location), (gst_play_set_data_src),
26539         (gst_play_set_video_sink), (gst_play_set_audio_sink),
26540         (gst_play_set_visualization), (gst_play_connect_visualization):
26541           check return values of element_set_state and return FALSE where
26542           failed
26543
26544 2004-03-29  Benjamin Otte  <otte@gnome.org>
26545
26546         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26547           try harder to check if an event is really a discont
26548
26549 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26550
26551         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
26552         * po/az.po:
26553
26554 2004-03-28  Benjamin Otte  <otte@gnome.org>
26555
26556         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
26557         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26558         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
26559           get rid of non-standard "..." ranges in case statements.
26560
26561 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
26562
26563         * gst/mpegstream/gstmpegdemux.c:
26564         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
26565         specific functionality split to the new dvddemux element.
26566         * gst/mpegstream/gstdvddemux.c:
26567         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
26568         streams, derived from mpegdemux.
26569         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
26570         up. SCR based timestamp rewriting can be turned off (will probably
26571         completely disappear soon).
26572         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
26573         hacking. General cleanup. All printf statements replaced by
26574         debugging messages. Almost complete libdvdnav support.
26575         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
26576         by events. New properties for audio and subpicture languages.
26577         (dvdnavsrc_update_highlight): Now uses events.
26578         (dvdnavsrc_user_op): Cleaned up.
26579         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
26580         based). Lots of cleanup, and propper support for most libdvdnav
26581         events.
26582         (dvdnavsrc_make_dvd_event): New function.
26583         (dvdnavsrc_make_dvd_nav_packet_event): New function.
26584         (dvdnavsrc_make_clut_change_event): New function.
26585
26586 2004-03-26  Benjamin Otte  <otte@gnome.org>
26587
26588         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
26589           fix bug where typefinding would claim it's theora whenever less then
26590           7 bytes of data were available
26591
26592 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26593
26594         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
26595         (gst_alawdec_base_init), (gst_alawdec_class_init),
26596         (gst_alawdec_init), (gst_alawdec_chain):
26597         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
26598         (gst_alawenc_base_init), (gst_alawenc_class_init),
26599         (gst_alawenc_init), (gst_alawenc_chain):
26600         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
26601         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
26602         (gst_mulawdec_init), (gst_mulawdec_chain):
26603         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
26604         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
26605         (gst_mulawenc_init), (gst_mulawenc_chain):
26606           Fix capsnego in all four, remove the unused property functions and
26607           simplify the chain functions slightly. I guess we could use macros
26608           or something similar for those, since the code is so similar, but
26609           I'm currently too lazy...
26610
26611 2004-03-24  David Schleef  <ds@schleef.org>
26612
26613         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26614         (gst_osselement_close_audio), (gst_osselement_probe_caps),
26615         (gst_osselement_get_format_structure),
26616         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
26617         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
26618         (gst_osselement_rate_int_compare): Add code to handle rate probing
26619         (bug #120883)
26620         * sys/oss/gstosselement.h: same
26621         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
26622         Use rate probing provided by osselement.
26623         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
26624
26625 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26626
26627         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
26628         (gst_xvidenc_get_property):
26629           ulong/int mess-up.
26630
26631 2004-03-24  David Schleef  <ds@schleef.org>
26632
26633         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
26634         (gst_speexdec_init):
26635         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
26636         (gst_speexenc_init):  Create the pad template correctly (from
26637         the static pad template, not a NULL pointer.)
26638
26639 2004-03-25  Benjamin Otte  <otte@gnome.org>
26640
26641         * gst/debug/Makefile.am:
26642         * gst/debug/breakmydata.c:
26643           add element that quasi-randomly changes bytes in the stream.
26644           Intended use is robustness checking of demuxers and decoders in
26645           media tests.
26646
26647 2004-03-24  Benjamin Otte  <otte@gnome.org>
26648
26649         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
26650         (gst_alsa_probe_hw_params):
26651         * ext/alsa/gstalsa.h:
26652           debugging output fixes
26653
26654 2004-03-24  Benjamin Otte  <otte@gnome.org>
26655
26656         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
26657           don't g_return_if_fail if element is PLAYING, fail silently as every
26658           other element.
26659         * gst/effectv/gstquark.c: (gst_quarktv_chain):
26660           only fix needed for cast lvalue issues in gst-plugins
26661         * gst/volenv/gstvolenv.c: (gst_volenv_init):
26662           add proxy_getcaps
26663
26664 2004-03-24  Benjamin Otte  <otte@gnome.org>
26665
26666         * gst/level/gstlevel.c: (gst_level_init):
26667           add proxying getcaps function, so level doesn't advertise impossible
26668           caps
26669
26670 2004-03-24  David Schleef  <ds@schleef.org>
26671
26672         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26673         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
26674         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
26675         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
26676         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
26677         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
26678         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
26679         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
26680         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
26681         messages.  Divide the chunk size by the compression ratio
26682         (needed for MACE audio)
26683
26684 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26685
26686         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26687           Fix buffer overflow read error.
26688
26689 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26690
26691         * ext/alsa/gstalsa.h:
26692           Remove unused entry.
26693         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26694           Add cinepak.
26695         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
26696         (gst_videodrop_link), (gst_videodrop_chain):
26697           Fix, sort of. Was horribly broken with new capsnego. Bah...
26698
26699 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
26700
26701         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
26702         (plugin_init):
26703         Add a monkeysaudio typefind function
26704
26705 2004-03-23  Johan Dahlin  <johan@gnome.org>
26706
26707         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
26708         (gst_play_video_fixate): Check so the structure has the field
26709         before trying to fixate them, this makes it possible to have
26710         fakesinks for video and audio output without printing errors on
26711         the output console.
26712
26713 2004-03-22  David Schleef  <ds@schleef.org>
26714
26715         * sys/oss/Makefile.am:
26716         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
26717         (check_rate), (add_rate):  Rate probing test app.
26718
26719 2004-03-21  Benjamin Otte  <otte@gnome.org>
26720
26721         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
26722         (_fixate_caps_to_int), (gst_audio_convert_fixate):
26723           add a fixation function that pretty much does the right thing (fixes
26724           #137556)
26725
26726 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
26727
26728         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
26729
26730 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
26731
26732         reviewed by: Benjamin Otte  <otte@gnome.org>
26733
26734         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
26735           terminate gst_event_new_discontinuous correctly (fixes parts of
26736           #137711)
26737
26738 2004-03-19  David Schleef  <ds@schleef.org>
26739
26740         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
26741         since it doesn't depend on X, and it's part of our ABI.
26742
26743 2004-03-19  Iain <iain@prettypeople.org>
26744
26745         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
26746         is_int in the structure, not the local variable.
26747
26748 2004-03-19  David Schleef  <ds@schleef.org>
26749
26750         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
26751         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
26752         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
26753         Improvements in caps negotiation.
26754
26755 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
26756
26757         * po/LINGUAS:
26758         * po/af.po:
26759           adding Afrikaans (Petri Jooste)
26760
26761 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
26762
26763         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26764         (gst_ffmpegcolorspace_chain):
26765         throw error instead of g_critical (#137588)
26766
26767 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
26768
26769         * Makefile.am:
26770         * configure.ac:
26771           dist common and m4 correctly
26772         * po/sv.po:
26773
26774 2004-03-17  David Schleef  <ds@schleef.org>
26775
26776         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
26777         (bug #137348)
26778
26779 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
26780
26781         * po/LINGUAS:
26782         * po/sv.po:
26783           adding Swedish translation (Christian Rose)
26784
26785 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
26786
26787         * Makefile.am: use release.mak
26788
26789 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26790
26791         * common/ChangeLog:
26792         * common/gst-autogen.sh:
26793           add some explanation about the version detection
26794         * configure.ac:
26795           fix X check
26796
26797 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26798
26799         * configure.ac: bump nano to 1
26800
26801 === release 0.8.0 ===
26802
26803 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26804
26805         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
26806
26807 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26808
26809         * configure.ac:
26810           update libtool version
26811         * gst-libs/gst/media-info/Makefile.am:
26812           actually use libtool version
26813
26814 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26815
26816         * configure.ac: fix speex detection to work with 1.0 but not 1.1
26817
26818 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26819
26820         * configure.ac:
26821         * gst-plugins.spec.in:
26822         * pkgconfig/Makefile.am:
26823         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
26824         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
26825         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
26826         * pkgconfig/gstreamer-libs.pc.in:
26827         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
26828         * pkgconfig/gstreamer-play-uninstalled.pc.in:
26829         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
26830         * pkgconfig/gstreamer-plugins.pc.in:
26831           remove @VERSION@ from some of the pc files since core and plugins
26832           are decoupled.
26833           created gstreamer-plugins.pc as it's a better name, but keeping
26834           -libs around for now to get fixes upstream done first.
26835
26836 2004-03-15  Julien MOUTTE <julien@moutte.net>
26837
26838         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
26839         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
26840         * gst-libs/gst/play/play.h:
26841
26842 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26843
26844         * *.c, *.cc: don't mix tabs and spaces
26845
26846 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26847
26848         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
26849           use the new ffmpegcolorspace
26850         * gst-plugins.spec.in:
26851           package new colorspace and media-info
26852         * configure.ac:
26853         * pkgconfig/Makefile.am:
26854           fix some more disting issues
26855         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
26856         * pkgconfig/gstreamer-media-info.pc.in:
26857           generate media-info pc files
26858
26859 2004-03-15  Johan Dahlin  <johan@gnome.org>
26860
26861         * *.h: Revert indenting
26862
26863 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26864
26865         * configure.ac:
26866           adding ffmpegcolorspace element
26867         * gst/ffmpegcolorspace/Makefile.am:
26868         * gst/ffmpegcolorspace/avcodec.h:
26869         * gst/ffmpegcolorspace/common.h:
26870         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
26871         * gst/ffmpegcolorspace/dsputil.h:
26872         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
26873         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26874         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
26875         (gst_ffmpeg_caps_to_pix_fmt):
26876         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
26877         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26878         (gst_ffmpegcolorspace_caps_remove_format_info),
26879         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
26880         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
26881         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
26882         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
26883         (gst_ffmpegcolorspace_set_property),
26884         (gst_ffmpegcolorspace_get_property),
26885         (gst_ffmpegcolorspace_register):
26886         * gst/ffmpegcolorspace/imgconvert.c:
26887         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
26888         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
26889         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
26890         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
26891         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
26892         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
26893         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
26894         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
26895         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
26896         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
26897         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
26898         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
26899         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
26900         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
26901         (img_get_alpha_info), (deinterlace_line),
26902         (deinterlace_line_inplace), (deinterlace_bottom_field),
26903         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
26904         * gst/ffmpegcolorspace/imgconvert_template.h:
26905         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
26906         * gst/ffmpegcolorspace/mmx.h:
26907         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
26908           adding ffmpegcolorspace element supplied by Ronald after cleaning
26909           up and pulling in the right bits of upstream source.
26910           I'm sure a better C/compiler wizard could do some cleaning up (for
26911           example use GLIB's malloc stuff), but as a first pass this
26912           works very well
26913
26914 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26915
26916         * ext/alsa/gstalsa.h:
26917           I assume Ronald forgot to commit the change to have cardname
26918           as a struct member.  Expect some public spanking at the next
26919           opportunity.
26920
26921 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26922
26923         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
26924         (gst_alsa_open_audio), (gst_alsa_close_audio):
26925         * ext/alsa/gstalsa.c:
26926           Don't open the device if we're a mixer (= padless).
26927         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
26928         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
26929         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
26930           Open mixer during state change rather than during object
26931           initialization. Also, get a device name. Currently in a somewhat
26932           hackish fashion, but I didn't really find something better.
26933
26934 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26935
26936         * *.c, *.h: run gst-indent
26937
26938 2004-03-14  Benjamin Otte  <otte@gnome.org>
26939
26940         * gst/modplug/gstmodplug.cc:
26941         * gst/modplug/gstmodplug.h:
26942           set correct timestamps on outgoing buffers
26943
26944 2004-03-14  Benjamin Otte  <otte@gnome.org>
26945
26946         * gst/modplug/gstmodplug.cc:
26947           handle events - don't do crap when a discont arrives that's not
26948           necessary
26949           This allows correct loading and playback of mods in Rhythmbox
26950
26951 2004-03-14  Benjamin Otte  <otte@gnome.org>
26952
26953         * configure.ac:
26954         * gst-libs/gst/gconf/Makefile.am:
26955         * pkgconfig/Makefile.am:
26956           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
26957           they get rebuilt properly
26958         * configure.ac:
26959           when checking for vorbis, try pkgconfig first.
26960         * gst/modplug/gstmodplug.cc:
26961           add fixate function
26962
26963 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26964
26965         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26966           Fix for obvious mistake, where we first shift the offset and then
26967           read a samplesize element assuming the old offset. Note that this
26968           part still has something weird, i.e. my movies containing those
26969           don't actually play well, but at least there's something that looks
26970           like sound now.
26971
26972 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
26973         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
26974         (plugin_init):
26975         Add a typefind function for speex format
26976
26977 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26978
26979         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
26980         (gst_asf_demux_setup_pad):
26981           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
26982           instead of 0. Reason is simple: some elements have a fps range
26983           of 1-max instead of 0-max. So now ASF video actually works.
26984
26985 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26986
26987         * po/LINGUAS:
26988         * po/sr.po:
26989           adding serbian as a language
26990
26991 2004-03-13  Benjamin Otte  <otte@gnome.org>
26992
26993         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
26994           return taglist correctly from _get function, don't gst_pad_push it.
26995           (fixes #137042)
26996
26997 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
26998         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26999
27000 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27001
27002         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27003         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27004         (gst_alsa_mixer_track_new):
27005         * ext/alsa/gstalsamixertrack.h:
27006           Fix ancient leftovers... MixerTrack is a GObject.
27007
27008 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27009
27010         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27011         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27012           Don't block during probing...
27013
27014 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27015
27016         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27017         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27018         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27019         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27020         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27021         (gst_alsa_open_audio), (gst_alsa_close_audio):
27022         * ext/alsa/gstalsa.h:
27023           Add propertyprobe interface implementation, add some device-name
27024           property, all this so that it looks good in gnome-volume-control.
27025
27026 2004-03-12  David Schleef  <ds@schleef.org>
27027
27028         * configure.ac: the Hermes library controls hermescolorspace, not
27029         colorspace.
27030         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27031         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27032         not /* */
27033         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27034         * ext/sdl/sdlvideosink.h: ditto.
27035         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27036
27037 2004-03-12  Benjamin Otte  <otte@gnome.org>
27038
27039         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27040         (gst_x_overlay_got_xwindow_id):
27041         * gst-libs/gst/xoverlay/xoverlay.h:
27042           replace XID with unsigned long to get rid of the xlibs dependency in
27043           XOverlay (fixes #137004)
27044
27045 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27046         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27047         (gst_agingtv_setup):
27048         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27049         (gst_dicetv_base_init), (gst_dicetv_class_init),
27050         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27051         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27052         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27053         (gst_edgetv_setup), (gst_edgetv_rgb32):
27054         * gst/effectv/gsteffectv.c:
27055         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27056         (gst_quarktv_set_property):
27057         * gst/effectv/gstrev.c: (gst_revtv_get_type),
27058         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27059         (gst_revtv_setup), (gst_revtv_rgb32):
27060         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27061         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27062         (gst_shagadelictv_init), (gst_shagadelictv_setup),
27063         (gst_shagadelictv_rgb32):
27064         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27065         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27066         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27067         * gst/effectv/gstwarp.c:
27068         Port everything that can be ported to videofilter and fix up the caps.
27069         Can someone with a big-endian machine please check these?
27070
27071 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27072
27073         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27074         (gst_osssink_chain), (gst_osssink_change_state):
27075           Latest fixes for A/V sync, audio playback and such. This is about
27076           all... MPEG playback issues are mostly related to the async build-
27077           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27078
27079 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27080
27081         patch from: Stephane Loeuillet
27082
27083         * configure.ac:
27084           use pkg-config for some libraries, falling back to the old .m4 way
27085           (fixes #131270)
27086         * m4/libdv.m4:
27087           removed
27088
27089 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27090
27091         * configure.ac:
27092         * tools/Makefile.am:
27093         * tools/Makefile.in:
27094         * tools/gst-launch-ext-m.m:
27095         * tools/gst-launch-ext.1.in:
27096         * tools/gst-visualise-m.m:
27097         * tools/gst-visualise.1:
27098         * tools/gst-visualise.1.in:
27099           reorganizing generation of script tools
27100
27101 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27102
27103         * ext/divx/gstdivxdec.c:
27104           Downgrade priority. We prefer ffdec_mpeg4.
27105         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27106         (gst_faad_chain), (gst_faad_change_state):
27107           Fix capsnego. Doesn't work for some sounds because we don't have
27108           a 5:1 to stereo element.
27109         * ext/xvid/gstxvid.c: (plugin_init):
27110           Add priority.
27111         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27112         (gst_osssink_change_state):
27113           Add discont handling.
27114
27115 2004-03-09  Colin Walters  <walters@verbum.org>
27116
27117         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27118         conversion.
27119
27120 2004-03-09  Benjamin Otte  <otte@gnome.org>
27121
27122         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27123           the signals take 2 arguments
27124
27125 2004-03-09  David Schleef  <ds@schleef.org>
27126
27127         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27128         (gst_alsa_fixate): Add fixate function.  (bug #136686)
27129         * ext/alsa/gstalsa.h:
27130         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27131
27132 2004-03-09  Benjamin Otte  <otte@gnome.org>
27133
27134         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27135         (gst_mikmod_change_state):
27136         * ext/mikmod/gstmikmod.h:
27137           make mikmod's loop function not loop infinitely and call
27138           gst_element_yield anymore
27139         * gst/modplug/gstmodplug.cc:
27140           fix pad negotiation (fixes #136590)
27141
27142 2004-03-09  David Schleef  <ds@schleef.org>
27143
27144         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
27145         doesn't conflict with the internal colorspace plugin.
27146         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
27147         satisfy the crappy-ass shell shipped by a certain vendor.
27148         * gst/videofilter/make_filter: same (bug #135299)
27149
27150 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27151
27152         * configure.ac: bump nano to 1
27153
27154 === release 0.7.6 ===
27155
27156 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27157
27158         * configure.in: releasing 0.7.6, "There"
27159
27160 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27161
27162         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27163         * pkgconfig/gstreamer-play.pc.in:
27164           synchronize the two
27165
27166 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27167
27168         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27169         (cdparanoia_open), (cdparanoia_event):
27170           fix/add error handling
27171         * po/POTFILES.in:
27172           add cdparanoia source
27173         * tools/Makefile.am:
27174           make scripts executable
27175
27176 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27177
27178         * configure.ac:
27179         * ext/vorbis/Makefile.am:
27180         * sys/Makefile.am:
27181           remove id3types, vorbisfile and xvideosink from the build (#133783)
27182
27183 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27184
27185         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27186           Fix metadata read crash (#136537).
27187
27188 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27189
27190         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27191         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27192           adding mime types, fixing the one-stop function
27193
27194 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27195
27196         * ext/nas/nassink.c and /ext/nas/nassink.h:
27197         More NAS love from Arwed von Merkatz
27198         So lets all sing 'Can you feel the NAS tonight'
27199
27200 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27201
27202         * tools/gst-launch-ext.in:
27203         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27204
27205 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27206
27207         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27208         (gst_mpeg2dec_init):
27209         remove the user_data pad for now, because it is being used in
27210         fixating causing MPEG playback to fixate on 1000 Hz for playback.
27211         If someone knows how to fix this properly, please do.
27212
27213 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27214
27215         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27216         (gst_osssink_get_time):
27217         add a warning, IMO this won't get triggered anymore, remove later
27218
27219 2004-03-07  David Schleef  <ds@schleef.org>
27220
27221         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
27222         format (bug #136470)
27223
27224 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27225
27226         * gst-libs/Makefile.am:
27227         * gst-libs/gst/media-info/Makefile.am:
27228         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27229         (error_callback), (gst_media_info_error_create),
27230         (gst_media_info_error_element), (gmip_init), (gmip_reset),
27231         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27232         * gst-libs/gst/media-info/media-info-priv.h:
27233         * gst-libs/gst/media-info/media-info-test.c: (main):
27234         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27235         (gst_media_info_class_init), (gst_media_info_instance_init),
27236         (gst_media_info_set_source), (gst_media_info_read_with_idler),
27237         (gst_media_info_read_idler), (gst_media_info_read):
27238         * gst-libs/gst/media-info/media-info.h:
27239         fixed, should work now
27240
27241 2004-03-07  Christian Schaller <Uraeus@gnome.org>
27242
27243         * ext/nas/nassink.c:
27244         A bunch of NAS fixes from Arwed von Merkatz
27245
27246 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27247
27248         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27249         (qtdemux_parse_trak):
27250           Fix crash (j might be greater than n_samples, in which case we're
27251           writing outside the allocated space for the array) and memleak.
27252
27253 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27254
27255         * sys/oss/gstosssink.c: (gst_osssink_chain):
27256           And another caller that couldn't handle delay < 0 (unsigned
27257           integer overflow). Video now continues playing on an audio
27258           buffer underrun, and the clock continues working. Audio still
27259           stalls.
27260
27261 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27262
27263         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27264         (gst_osssink_get_time):
27265           get_delay() may return values lower than 0. In those cases, we
27266           should not actually cast to *unsigned* int64, that will break
27267           stuff horribly. In my case, it screwed up A/V sync in movies
27268           in totem rather badly.
27269
27270 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27271
27272         * ext/faac/gstfaac.c: (gst_faac_chain):
27273         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27274         * ext/libpng/gstpngenc.c: (user_write_data):
27275         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27276         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27277         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27278         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27279         Fix several misuse of gst_buffer_merge (it doesn't take ownership
27280         of any buffer), should fix some leaks. I hope I didn't unref buffers
27281         that shouldn't be...
27282
27283 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27284
27285         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27286         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27287         (error_callback), (gmi_reset), (gmi_seek_to_track),
27288         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27289         (gmip_find_type_post), (gmip_find_stream_post),
27290         (gmip_find_track_streaminfo_post):
27291         * gst-libs/gst/media-info/media-info-priv.h:
27292         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27293         (info_print), (main):
27294         * gst-libs/gst/media-info/media-info.c:
27295         (gst_media_info_error_create), (gst_media_info_error_element),
27296         (gst_media_info_instance_init), (gst_media_info_get_property),
27297         (gst_media_info_new), (gst_media_info_set_source),
27298         (gst_media_info_read_idler), (gst_media_info_read):
27299         * gst-libs/gst/media-info/media-info.h:
27300           first pass at making this work again.  This seems to work on
27301           tagged ogg/vorbis and mp3 files.
27302
27303 2004-03-06  Benjamin Otte  <otte@gnome.org>
27304
27305         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27306           fix huge leak: gst_buffer_merge doesn't unref the first argument
27307           itself.
27308
27309 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27310
27311         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27312           report layer/mode/emphasis
27313
27314 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27315
27316         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27317
27318 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27319
27320         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27321           signal serial
27322
27323 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27324
27325         * ext/vorbis/vorbis.c: (plugin_init):
27326         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27327         (gst_vorbis_dec_init), (vorbis_dec_event):
27328         add debug category
27329         make vorbisdec handle _BYTE and _TIME queries
27330
27331 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27332
27333         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27334           from the xing header
27335
27336 2004-03-06  Benjamin Otte  <otte@gnome.org>
27337
27338         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27339         (gst_audio_convert_link), (gst_audio_convert_change_state),
27340         (gst_audio_convert_buffer_from_default_format):
27341           do conversions from/to float correctly, fix some caps nego errors,
27342           export correct supported caps in template and getcaps, use correct
27343           caps in try_set_caps functions
27344
27345 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27346
27347         For some reason, I only committed a ChangeLog entry yesterday and
27348         not the corresponding code...
27349         * ext/mad/gstmad.c: Fix detection of Xing headers
27350         * gst/tags/gstid3tag.c: Changes to support TLEN tags
27351
27352 2004-03-06  Benjamin Otte  <otte@gnome.org>
27353
27354         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27355         (gst_ogg_demux_src_query):
27356           make sure to handle the case where there's no current chain
27357           gracefully.
27358
27359 2004-03-05  David Schleef  <ds@schleef.org>
27360
27361         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27362         Add fixate function. (bug #131128)
27363         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27364         (gst_sdlvideosink_fixate):  Add fixate function.
27365         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27366         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27367         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27368         Fix missing break that was causing ulaw to be interpreted as
27369         raw int.
27370
27371 2004-03-05  David Schleef  <ds@schleef.org>
27372
27373         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27374         Fix code that ignores return value of gst_buffer_merge().
27375         (bug #114560)
27376         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27377         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27378         * testsuite/gst-lint:  Check for above.
27379
27380 2004-03-05  David Schleef  <ds@schleef.org>
27381
27382         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
27383         caps and throw an element error.  (bug #136334)
27384
27385 2004-03-05  David Schleef  <ds@schleef.org>
27386
27387         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27388         (gst_faad_chain): Fix negotiation.
27389         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27390         key and button events.
27391         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27392         dung heap of code.
27393         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27394         depends on gconf
27395         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27396         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27397         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27398         function to encourage better negotiation, particularly between
27399         audioconvert and osssink.
27400         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27401         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
27402         more important.
27403         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
27404         typefinding.
27405         * gst/vbidec/vbiscreen.c:  Add glib header
27406         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
27407
27408 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
27409
27410         * ext/mad/gstmad.c: Fix detection of Xing headers
27411         * gst/tags/gstid3tag.c: Changes to support TLEN tags
27412
27413 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27414
27415         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
27416         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
27417           debug updates
27418
27419 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27420
27421         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27422         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
27423         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
27424         files, and report the parsed length as a GST_TAG_DURATION tag.
27425         * gst/tags/gstid3tag.c: support TLEN (duration) tag
27426
27427 2004-03-05  Benjamin Otte  <otte@gnome.org>
27428
27429         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
27430           convert channels correctly. convert correctly to unsigned.
27431
27432 2004-03-05  Julien MOUTTE <julien@moutte.net>
27433
27434         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
27435         we have a window before clearing it.
27436
27437 2004-03-05  Julien MOUTTE <julien@moutte.net>
27438
27439         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
27440         have a window before clearing it.
27441
27442 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27443
27444         * gconf/gstreamer.schemas.in:
27445         * gst-libs/gst/gconf/Makefile.am:
27446           version installation path the same way as for 0.6
27447         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27448         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27449         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27450           remove comment that was fixed
27451
27452 2004-03-05  David Schleef  <ds@schleef.org>
27453
27454         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
27455         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
27456         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
27457         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
27458         Add prototype code for handling seeking and querying.
27459
27460 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27461
27462         * examples/gstplay/player.c: (main):
27463           Initialize variables to NULL. Prevents a segfault because the
27464           (uninitialized) variable is not NULL, resulting in a crash on
27465           trying to reach error->message.
27466
27467 2004-03-05  Benjamin Otte  <otte@gnome.org>
27468
27469         * gst/audioconvert/gstaudioconvert.c:
27470         (gst_audio_convert_buffer_to_default_format):
27471         make float=>int conversion work correctly even in cornercases.
27472
27473 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
27474
27475         * debian/README.Debian:
27476         * debian/build-deps:
27477         * debian/changelog:
27478         * debian/control:
27479         * debian/control.in:
27480         * debian/copyright:
27481         * debian/gstreamer-a52dec.files:
27482         * debian/gstreamer-aa.files:
27483         * debian/gstreamer-alsa.files:
27484         * debian/gstreamer-alsa.manpages:
27485         * debian/gstreamer-arts.files:
27486         * debian/gstreamer-artsd.files:
27487         * debian/gstreamer-audiofile.files:
27488         * debian/gstreamer-avifile.files:
27489         * debian/gstreamer-cdparanoia.files:
27490         * debian/gstreamer-colorspace.files:
27491         * debian/gstreamer-doc.files:
27492         * debian/gstreamer-dv.files:
27493         * debian/gstreamer-dvd.files:
27494         * debian/gstreamer-esd.files:
27495         * debian/gstreamer-festival.files:
27496         * debian/gstreamer-flac.files:
27497         * debian/gstreamer-gconf.conffiles:
27498         * debian/gstreamer-gconf.files:
27499         * debian/gstreamer-gconf.postinst:
27500         * debian/gstreamer-gnomevfs.files:
27501         * debian/gstreamer-gsm.files:
27502         * debian/gstreamer-http.files:
27503         * debian/gstreamer-jack.files:
27504         * debian/gstreamer-jpeg.files:
27505         * debian/gstreamer-mad.files:
27506         * debian/gstreamer-mikmod.files:
27507         * debian/gstreamer-misc.files:
27508         * debian/gstreamer-mpeg2dec.files:
27509         * debian/gstreamer-oss.files:
27510         * debian/gstreamer-plugin-apps.files:
27511         * debian/gstreamer-plugin-apps.manpages:
27512         * debian/gstreamer-plugin-libs-dev.files:
27513         * debian/gstreamer-plugin-libs.files:
27514         * debian/gstreamer-plugin-template.postinst:
27515         * debian/gstreamer-plugin-template.postrm:
27516         * debian/gstreamer-sdl.files:
27517         * debian/gstreamer-sid.files:
27518         * debian/gstreamer-vorbis.files:
27519         * debian/gstreamer-x.files:
27520         * debian/mk.control:
27521         * debian/rules:
27522         Debian package info not maintained here.
27523
27524 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27525
27526         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
27527         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
27528         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
27529         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
27530         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
27531         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
27532         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
27533         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
27534         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
27535         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
27536         * gst-libs/gst/colorbalance/colorbalance.c:
27537         (gst_color_balance_class_init):
27538         * gst-libs/gst/colorbalance/colorbalancechannel.c:
27539         (gst_color_balance_channel_class_init):
27540         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27541         * gst-libs/gst/play/play.c: (gst_play_class_init):
27542         * gst-libs/gst/propertyprobe/propertyprobe.c:
27543         (gst_property_probe_iface_init):
27544         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
27545         * gst-libs/gst/tuner/tunerchannel.c:
27546         (gst_tuner_channel_class_init):
27547         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
27548         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
27549         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
27550         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
27551         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
27552         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
27553         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
27554         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
27555         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
27556           fix signals to use - instead of _
27557         * ext/libcaca/gstcacasink.h:
27558         * ext/sdl/sdlvideosink.h:
27559           fix header rename
27560
27561 2004-03-04  David Schleef  <ds@schleef.org>
27562
27563         * testsuite/gst-lint:  Add a check for bad signal names.
27564
27565 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
27566
27567         reviewed by David Schleef
27568
27569         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
27570         modified the alpha channel and caused a warning. (bug #136192)
27571
27572 2004-04-03  Christian Schaller <Uraeus@gnome.org>
27573
27574         * gst-plugins.spec.in:
27575         Change names of plugins to actually be correct. Try to keep things
27576         alphabetical to avoid getting beat up by Thomas
27577
27578 2004-03-03  Julien MOUTTE <julien@moutte.net>
27579
27580         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
27581         Using ximagesink as a default if no gconf key found. We should
27582         probably consider using alsasink instead of osssink for the audio
27583         part.
27584
27585 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
27586
27587         * configure.ac:
27588           fix --with-plugins, don't think it ever worked before
27589         * gst-plugins.spec.in:
27590           even more updates
27591
27592 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27593
27594         * ext/sdl/sdlvideosink.h:
27595         * sys/ximage/ximagesink.h:
27596         * sys/xvideo/xvideosink.h:
27597         * sys/xvimage/xvimagesink.h:
27598           Fix for move of gstvideosink.h -> videosink.h.
27599
27600 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
27601
27602         * gst-libs/gst/xwindowlistener/Makefile.am:
27603           this is a plugin library, not a library
27604
27605 2004-03-01  David Schleef  <ds@schleef.org>
27606
27607         * AUTHORS:  Added some names.  Add yourself if you're still
27608         missing.
27609
27610 2004-03-01  David Schleef  <ds@schleef.org>
27611
27612         * MAINTAINERS: Add
27613
27614 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27615
27616         * gst-plugins.spec.in: clean up spec file
27617
27618 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27619
27620         * gst-libs/gst/video/Makefile.am:
27621         * gst-libs/gst/video/gstvideosink.c:
27622         * gst-libs/gst/video/gstvideosink.h:
27623           rename gstvideosink.h to videosink.h to match other headers
27624         * gst/mixmatrix/Makefile.am:
27625           fix plugin filename
27626         * gst/tags/Makefile.am: fix plugin filename
27627
27628 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27629
27630         * gst/tags/Makefile.am: fix plugin filename
27631
27632 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27633
27634         * examples/gstplay/player.c: (got_time_tick), (main):
27635           add error handler
27636           display time_tick more readably
27637         * gst/mixmatrix/Makefile.am:
27638           fix plugin file name
27639
27640 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
27641
27642         * sys/oss/gstosselement.c: (gst_osselement_probe),
27643         (device_combination_append), (gst_osselement_class_probe_devices):
27644         * sys/oss/gstosselement.h:
27645           Reworked enumeration of oss dsps and mixers so that gst-mixer works
27646           on my system using alsa oss emulation, fixes bug #135597
27647
27648 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27649
27650         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
27651         (gst_videodrop_chain), (gst_videodrop_change_state):
27652         * gst/videodrop/gstvideodrop.h:
27653           Work based on timestamp of input data, not based on the expected
27654           framerate from the input. The consequence is that this element now
27655           not only scales framerates, but also functions as a framerate
27656           corrector or framerate stabilizer/constantizer.
27657
27658 2004-02-27  David Schleef  <ds@schleef.org>
27659
27660         patches from jmmv@menta.net (Julio M. Merino Vidal)
27661
27662         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
27663         GST_ELEMENT_ERROR call (bug #135634)
27664         * gst/interleave/interleave.c: (interleave_buffered_loop),
27665         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
27666         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
27667         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27668         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
27669         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
27670         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
27671         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
27672         Fix GST_ELEMENT_ERROR call.
27673         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
27674         GST_ELEMENT_ERROR call.
27675
27676 2004-02-27  Benjamin Otte  <otte@gnome.org>
27677
27678         * gst-libs/gst/audio/audio.h:
27679           add macro to make sure header isn't included twice
27680         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
27681           don't use gst_buffer_free
27682         * gst/playondemand/filter.func:
27683           don't use gst_data_free. Free data only once.
27684
27685 2004-02-26  David Schleef  <ds@schleef.org>
27686
27687         * gst-libs/gst/colorbalance/Makefile.am:
27688         * gst-libs/gst/mixer/Makefile.am:
27689         * gst-libs/gst/tuner/Makefile.am:
27690         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
27691         should not be disted, -marshal.h files should not be installed,
27692         and -enum.h files _should_ be installed.  Fix to make this the
27693         case.
27694
27695 === release 0.7.5 ===
27696
27697 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
27698
27699         * configure.ac: release 0.7.5, "Under The Sea"
27700
27701 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
27702
27703         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27704         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
27705         * gst/videoscale/gstvideoscale.c:
27706         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
27707           assorted debug/warning fixes
27708
27709 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
27710
27711         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
27712         (gst_videoscale_init), (gst_videoscale_chain),
27713         (gst_videoscale_set_property), (plugin_init):
27714         * gst/videoscale/gstvideoscale.h:
27715         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
27716         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
27717         (gst_videoscale_planar400), (gst_videoscale_packed422),
27718         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
27719         (gst_videoscale_24bit), (gst_videoscale_16bit),
27720         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
27721         (gst_videoscale_scale_plane_slow),
27722         (gst_videoscale_scale_point_sample),
27723         (gst_videoscale_scale_nearest),
27724         (gst_videoscale_scale_nearest_str2),
27725         (gst_videoscale_scale_nearest_str4),
27726         (gst_videoscale_scale_nearest_32bit),
27727         (gst_videoscale_scale_nearest_24bit),
27728         (gst_videoscale_scale_nearest_16bit):
27729         add debugging category and use it properly
27730         fix use of GST_PTR_FORMAT
27731
27732 2004-02-25  Andy Wingo  <wingo@pobox.com>
27733
27734         * gst/interleave/interleave.c (interleave_buffered_loop): Always
27735         push only when channel->buffer is NULL. Prevents segfaults doing
27736         the state change after a nonlocal exit, like a scheme exception.
27737
27738         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
27739         Handle the case where the intersected caps is empty.
27740
27741 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
27742
27743         * gst/law/mulaw-decode.c: (mulawdec_link):
27744         * gst/law/mulaw.c: (plugin_init):
27745           fix mulawdec so it actually works again
27746
27747 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
27748
27749         reviewed by: David Schleef  <ds@schleef.org>
27750
27751         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
27752         (gst_gamma_init), (gst_gamma_set_property),
27753         (gst_gamma_get_property), (gst_gamma_calculate_tables),
27754         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
27755         for RGB, with separate r g and b correction factors. (#131167)
27756
27757 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27758
27759         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27760           only signal tags for bitrate if they're > 0 (#134894)
27761
27762 2004-02-24  David Schleef  <ds@schleef.org>
27763
27764         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
27765         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
27766         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
27767         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
27768         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
27769         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
27770         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
27771         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
27772         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
27773         category.  Attempt to fix timestamp calculation.
27774
27775 2004-02-24  Johan Dahlin  <johan@gnome.org>
27776
27777         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
27778
27779 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27780
27781         * configure.ac:
27782         * gconf/Makefile.am:
27783         * gconf/gstreamer.schemas:
27784         * gst-libs/gst/gconf/Makefile.am:
27785         * gst-libs/gst/gconf/gconf.c:
27786           version gconf schemas and install locations
27787
27788 2004-02-23  Benjamin Otte  <otte@gnome.org>
27789
27790         * ext/xine/xineinput.c: (gst_xine_input_dispose):
27791         (gst_xine_input_subclass_init):
27792           call parent dispose.
27793           change pad template for CD reader correctly
27794         * ext/xine/Makefile.am:
27795         * ext/xine/gstxine.h:
27796         * ext/xine/xine.c: (plugin_init):
27797         * ext/xine/xineaudiosink.c:
27798           wrap audio sinks, too
27799         * gst-libs/gst/resample/private.h:
27800         * gst-libs/gst/resample/resample.c: (gst_resample_init),
27801         (gst_resample_reinit), (gst_resample_scale),
27802         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
27803         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
27804         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
27805         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
27806         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
27807         * gst-libs/gst/resample/resample.h:
27808         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27809         (gst_audioscale_class_init), (gst_audioscale_link),
27810         (gst_audioscale_get_buffer), (gst_audioscale_init),
27811         (gst_audioscale_chain), (gst_audioscale_set_property),
27812         (gst_audioscale_get_property):
27813         * gst/audioscale/gstaudioscale.h:
27814           s/resample_*/gst_resample_*/i to not clobber namespaces
27815
27816 2004-02-23  Julien MOUTTE  <julien@moutte.net>
27817
27818         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
27819         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
27820         (gst_riff_create_video_template_caps),
27821         (gst_riff_create_audio_template_caps),
27822         (gst_riff_create_iavs_template_caps):
27823         * gst-libs/gst/riff/riff-media.h:
27824         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
27825         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
27826         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
27827         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27828         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
27829         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
27830         (gst_matroska_demux_plugin_init): First batch implementing audio and
27831         video codec tags in demuxers.
27832
27833 2004-02-22  Benjamin Otte  <otte@gnome.org>
27834
27835         * ext/xine/Makefile.am:
27836         * ext/xine/gstxine.h:
27837         * ext/xine/xine.c: (plugin_init):
27838         * ext/xine/xineinput.c:
27839           add input plugin wrapper. Playback from files, http, mms and cdda
27840           works.
27841         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
27842           remove leftover G_GNUC_UNUSED
27843         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
27844         (gst_asf_demux_identify_guid):
27845           improve debugging output
27846
27847 2004-02-22  Benjamin Otte  <otte@gnome.org>
27848
27849         reported by: Padraig O'Briain <padraig.obriain@sun.com>
27850
27851         * autogen.sh:
27852           replace test -e with test -x for mkinstalldirs to be more portable.
27853           (fixes #134816)
27854
27855 2004-02-22  Benjamin Otte  <otte@gnome.org>
27856
27857         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
27858
27859         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
27860           set rank to PRIMARY
27861         * gst/volume/gstvolume.c: (plugin_init):
27862           set rank to NONE
27863         fixes #134960
27864
27865 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
27866
27867         reviewed by Benjamin Otte  <otte@gnome.org>
27868
27869         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
27870           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
27871
27872 2004-02-22  Benjamin Otte  <otte@gnome.org>
27873
27874         * configure.ac:
27875           export [_]*{gst,Gst,GST}.* symbols from plugins
27876
27877 2004-02-22  Christophe Fergeau <teuf@gnome.org>
27878
27879         reviewed by: Benjamin Otte  <otte@gnome.org>
27880
27881         * ext/lame/gstlame.c: (add_one_tag):
27882         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27883         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
27884         (gst_vorbisenc_metadata_set1):
27885         * gst/tags/gstid3tag.c:
27886         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
27887           apply fixes from bugs #135042 (lame can't write tags) and #133817
27888           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
27889
27890 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
27891
27892         * configure.ac: Export only gst_plugin_desc from plugins.
27893          Note that this change only makes any effect with Linux using libtool
27894          1.5.2 or higher. Otherwise it is silently ignored, but it would build
27895          fine. And don't try to have several versions of libtool in different
27896          directories.
27897
27898 2004-02-20  Andy Wingo  <wingo@pobox.com>
27899
27900         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
27901         interleave respectively.
27902
27903         * gst/interleave/deinterleave.c: New plugin: deinterleave
27904         (replaces on oneton).
27905         * gst/interleave/interleave.c: New plugin: interleave.
27906         * gst/interleave/plugin.h: Support file.
27907         * gst/interleave/plugin.c: Support file.
27908
27909         * configure.ac: Remove intfloat and oneton, add interleave.
27910
27911         * ext/sndfile/gstsf.c: Handle events better.
27912
27913         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
27914         and float2int operation. int2float has scheduling problems as
27915         noted in in2float_chain.
27916
27917 2004-02-20  Benjamin Otte  <otte@gnome.org>
27918
27919         * ext/xine/Makefile.am:
27920         * ext/xine/gstxine.h:
27921         * ext/xine/xine.c:
27922         * ext/xine/xineaudiodec.c:
27923         * ext/xine/xinecaps.c:
27924           add first version of xine plugin wrapper. Currently only wraps the
27925           QDM2 win32 DLL, and even that only in proof-of-concept quality.
27926         * configure.ac:
27927         * ext/Makefile.am:
27928           add xine plugin wrapper, disabled by default. Use --enable-xine to
27929           build. Note that it'll segfault on gst-register if you don't remove
27930           the goom and tvtime post plugins from xine.
27931         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27932         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
27933           add extradata parsing for QDM2.
27934           change around debugging prints.
27935
27936 2004-02-19  Benjamin Otte  <otte@gnome.org>
27937
27938         * ext/lame/gstlame.c: (gst_lame_chain):
27939         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
27940           use gst_tag_list_insert when you want to insert tags
27941
27942 2004-02-18  David Schleef  <ds@schleef.org>
27943
27944         * configure.ac:  Move massink to gst-rotten
27945         * ext/Makefile.am:
27946         * ext/mas/Makefile.am:
27947         * ext/mas/massink.c:
27948         * ext/mas/massink.h:
27949
27950 2004-02-18  David Schleef  <ds@schleef.org>
27951
27952         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
27953         typefinding, since it seems to be worse than nothing.
27954         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
27955         atom to recognize .mp4 and .m4a files as video/quicktime.
27956
27957 2004-02-18  David Schleef  <ds@schleef.org>
27958
27959         * gst/sine/demo-dparams.c: (quit_live),
27960         (dynparm_log_value_changed), (dynparm_value_changed), (main):
27961         Use double dparams, not float.
27962         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
27963         (gst_sinesrc_init): Change sync default to FALSE, since multiple
27964         sync'd elements don't really work correctly.
27965         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
27966         (volume_update_volume), (volume_get_property):  Change dparam
27967         to double.
27968
27969 2004-02-18  Julien MOUTTE  <julien@moutte.net>
27970
27971         * sys/ximage/ximagesink.c:
27972         (gst_ximagesink_xwindow_update_geometry),
27973         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
27974         (gst_ximagesink_change_state), (gst_ximagesink_expose),
27975         (gst_ximagesink_init): Rework the way software video scaling works. So
27976         now we check on each chain call if the video frames are feeling the
27977         window. If not we try to renegotiate caps. On failure we memorize that
27978         and we won't try again for that PLAYING sessions.
27979         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
27980         failure.
27981         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
27982         synchronous flag.
27983
27984 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27985
27986         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27987           break up _link so we can give a better debug message for errors
27988
27989 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27990
27991         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
27992           set up debug category
27993
27994 2004-02-18  Julien MOUTTE <julien@moutte.net>
27995
27996         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
27997         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
27998         the way renegotiation work. The event handling function is not taking
27999         care of external windows and renegotiate method check for pad flags
28000         NEGOTIATING. Should fix : #133209
28001
28002 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28003
28004         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28005         pad is negotiating before trying renegotiation.
28006
28007 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28008
28009         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28010           pass on all possible mime types as typefind hints
28011
28012 2004-02-17  Julien MOUTTE <julien@moutte.net>
28013
28014         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28015         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28016         possible SHM leak if we crash. All other apps using XShm are doing
28017         that.
28018
28019 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28020
28021         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28022         (gst_ximagesink_expose): Renegotiate size on expose.
28023         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28024         size on expose.
28025
28026 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28027
28028         * testsuite/alsa/sinesrc.c:
28029           cosmetic fix to fix compile issue with gcc 2.95.4
28030
28031 2004-02-16  Julien MOUTTE <julien@moutte.net>
28032
28033         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28034         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28035         failed opening the audio device.
28036         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28037         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28038         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28039         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28040         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28041         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28042         (gst_ximagesink_change_state), (gst_ximagesink_chain),
28043         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28044         Removing some useless g_return_if_fail like wingo suggested.
28045         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28046         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28047         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28048         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28049         (gst_xvimagesink_update_colorbalance),
28050         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28051         (gst_xvimagesink_xcontext_clear),
28052         (gst_xvimagesink_get_fourcc_from_caps),
28053         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28054         (gst_xvimagesink_set_xwindow_id),
28055         (gst_xvimagesink_colorbalance_list_channels),
28056         (gst_xvimagesink_colorbalance_set_value),
28057         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28058         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28059
28060 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28061
28062         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28063           throw error when not negotiated instead of asserting
28064
28065 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28066
28067         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28068         correct data refcounting.
28069
28070 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28071
28072         * gst/switch/gstswitch.c: (gst_switch_change_state),
28073         (gst_switch_class_init): Cleaning the sinkpads correctly on state
28074         change, mostly the EOS flag.
28075
28076 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28077
28078         * examples/gstplay/player.c: (got_eos), (main): Adding some
28079         output for debugging.
28080         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28081         timeouts if we go to any state different from PLAYING.
28082         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28083         more EOS bugs in riff lib.
28084
28085 2004-02-14  Julien MOUTTE  <julien@moutte.net>
28086
28087         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28088         visualization until i find a way to fix switch correctly.
28089         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28090         EOS arrives.
28091         * gst/switch/gstswitch.c: (gst_switch_release_pad),
28092         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28093         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28094         Reworked switch to get a more correct behaviour with events and refing
28095         of data stored in sinkpads.
28096         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28097         we don't pull from a pad in EOS.
28098
28099 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28100
28101         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28102           remove v1 tag even if we can't read it (makes sure we don't detect
28103           it again)
28104
28105 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28106
28107         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28108         (gst_alsa_xrun_recovery):
28109         * ext/alsa/gstalsa.h:
28110           try xrun recovery when wait failed. Make xrun recovery function
28111           return TRUE/FALSE to indicate success. (might fix #134354)
28112
28113 2004-02-13  David Schleef  <ds@schleef.org>
28114
28115         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28116         (dynparm_value_changed), (main): Convert from float to double.
28117         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28118
28119 2004-02-13  David Schleef  <ds@schleef.org>
28120
28121         * gst/silence/gstsilence.c: (gst_silence_class_init),
28122         (gst_silence_set_clock), (gst_silence_get),
28123         (gst_silence_set_property), (gst_silence_get_property):
28124         * gst/silence/gstsilence.h: Add sync property.
28125         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28126         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28127         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28128         * gst/sine/gstsinesrc.h: Add sync property.
28129
28130 2004-02-13  David Schleef  <ds@schleef.org>
28131
28132         * gst/intfloat/gstint2float.c: (conv_f32_s16),
28133         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
28134
28135 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28136
28137         * configure.ac:
28138         * ext/Makefile.am:
28139         * gst-libs/ext/Makefile.am:
28140           move ffmpeg plugin to gst-ffmpeg module
28141
28142 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28143
28144         * configure.ac: use GST_ARCH to detect architecture
28145
28146 2004-02-12  Julien MOUTTE  <julien@moutte.net>
28147
28148         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28149
28150 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
28151
28152         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28153           classify LADSPA plugins based on number of src/sink pads
28154           (#133663, Stefan Kost)
28155         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28156           fix dparams registration
28157           (#133528, Stefan Kost)
28158         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28159           fix use of isprint and use g_ascii_isprint instead
28160           (#133316, Stefan Kost)
28161
28162 2004-02-11  David Schleef  <ds@schleef.org>
28163
28164         Convert a few inner loops to use liboil.  This is currently
28165         optional, and is only enabled if liboil is present (duh!).
28166         * configure.ac: Check for liboil-0.1
28167         * gst/intfloat/Makefile.am:
28168         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28169         (gst_int2float_chain_gint16):
28170         * gst/videofilter/Makefile.am:
28171         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28172         (tablelookup_u8), (gst_videobalance_planar411):
28173         * gst/videotestsrc/Makefile.am:
28174         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28175         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28176         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28177         (paint_hline_RGB565), (paint_hline_xRGB1555):
28178
28179 2004-02-11  David Schleef  <ds@schleef.org>
28180
28181         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28182         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28183         (gst_colorspace_getcaps), (gst_colorspace_link),
28184         (gst_colorspace_base_init), (gst_colorspace_init),
28185         (gst_colorspace_chain), (gst_colorspace_change_state),
28186         (plugin_init): Merge Ronald's patch (bug #117897) and update
28187         for new caps and negotiation.  Seems to work, although it
28188         shows off bugs in lcs.
28189
28190 2004-02-11  David Schleef  <ds@schleef.org>
28191
28192         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28193         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28194
28195 2004-02-11  David Schleef  <ds@schleef.org>
28196
28197         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28198         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28199         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28200         Add server and port properties
28201
28202 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28203
28204         * m4/a52.m4:
28205         * m4/aalib.m4:
28206         * m4/as-ffmpeg.m4:
28207         * m4/as-liblame.m4:
28208         * m4/as-slurp-ffmpeg.m4:
28209         * m4/check-libheader.m4:
28210         * m4/esd.m4:
28211         * m4/freetype2.m4:
28212         * m4/gconf-2.m4:
28213         * m4/glib.m4:
28214         * m4/gst-alsa.m4:
28215         * m4/gst-artsc.m4:
28216         * m4/gst-ivorbis.m4:
28217         * m4/gst-matroska.m4:
28218         * m4/gst-sdl.m4:
28219         * m4/gst-shout2.m4:
28220         * m4/gst-sid.m4:
28221         * m4/gtk.m4:
28222         * m4/libdv.m4:
28223         * m4/libfame.m4:
28224         * m4/libmikmod.m4:
28225         * m4/ogg.m4:
28226         * m4/vorbis.m4:
28227           fix underquotedness of macros (#133800)
28228         * m4/as-avifile.m4:
28229         * m4/xmms.m4:
28230           removed because no longer used
28231
28232 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28233
28234         * configure.ac:
28235           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28236           by autopoint (fixes #132996)
28237
28238 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28239
28240         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28241         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28242         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28243         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28244           fix memleaks
28245
28246 2004-02-11  David Schleef  <ds@schleef.org>
28247
28248         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28249         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28250         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28251         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28252         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28253         (gst_jpegenc_class_init), (gst_jpegenc_init),
28254         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28255         (gst_jpegenc_chain), (gst_jpegenc_set_property),
28256         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
28257         * ext/jpeg/gstjpegenc.h: Fix negotiation.
28258
28259 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28260
28261         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28262         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28263         * ext/mikmod/gstmikmod.h:
28264           fix caps negotiation in mikmod
28265         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28266           output debug information
28267
28268 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28269
28270         * gst-libs/gst/colorbalance/Makefile.am:
28271         * gst-libs/gst/navigation/Makefile.am:
28272         * gst-libs/gst/xoverlay/Makefile.am:
28273           remove unused GST_OPT_CFLAGS from Makefiles
28274           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28275
28276 2004-02-07  David Schleef  <ds@schleef.org>
28277
28278         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28279         push events to pads that haven't been created (#133508)
28280
28281 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
28282
28283         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28284         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28285         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28286         (gst_dvdec_loop), (gst_dvdec_change_state):
28287         Second attempt at committing a working dvdec element.
28288
28289 2004-02-06  David Schleef  <ds@schleef.org>
28290
28291         Build fixes for OS X: (see #129600)
28292         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28293         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28294         (gst_riff_read_strf_iavs):
28295         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28296         (gst_avi_demux_stream_odml):
28297         * gst/playondemand/Makefile.am:
28298         * gst/rtp/rtp-packet.c:
28299
28300 2004-02-05  David Schleef  <ds@schleef.org>
28301
28302         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28303         last change, because it Just Doesn't Compile.
28304
28305 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28306
28307         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28308           skip undecodable id3v2 tag instead of keeping it
28309
28310 2004-02-05  David Schleef  <ds@schleef.org>
28311
28312         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28313         Unref leaked buffer.  (Noticed by Ronald)
28314
28315 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
28316
28317         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28318         Sync requires with other checks.  >= vs =.
28319
28320 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
28321
28322         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28323         (gst_dvdec_video_link), (gst_dvdec_loop):
28324         * ext/dv/gstdvdec.h:
28325           rework the caps negotiation so that dvdec works again instead
28326           of just segfaulting.
28327
28328 === release 0.7.4 ===
28329
28330 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28331
28332         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28333         * configure.ac: changed for release
28334
28335 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28336
28337         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28338         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28339         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28340         * pkgconfig/gstreamer-play-uninstalled.pc.in:
28341           reworked patch by David Lehn to fix libdir and includedir for
28342           uninstalled libraries
28343           removed play and gconf from gstreamer-libs since they have their
28344           own pkgconfig files
28345
28346 2004-02-04  David Schleef  <ds@schleef.org>
28347
28348         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28349         memleak.
28350
28351 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28352
28353         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28354           use correct GST_TAG_ENCODER tag
28355
28356 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28357
28358         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28359           be sure to stop the clock when going to paused
28360         * sys/oss/gstosssink.c: (gst_osssink_change_state):
28361           reset number of transmitted when going to ready.
28362         fixes #132935
28363
28364 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
28365
28366         reviewed by Benjamin Otte
28367
28368         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28369           extract track count (fixes #133410)
28370
28371 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28372
28373         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28374           that should be !=, not == (fixes #132519)
28375
28376 2004-02-04  David Schleef  <ds@schleef.org>
28377
28378         Make sure set_explicit_caps() is called before adding pad.
28379         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28380         * gst/id3/gstid3types.c: (gst_id3types_loop):
28381         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28382         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28383
28384 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28385
28386         * configure.ac:
28387           bump nano to 2, first prerelease
28388           put back AM_PROG_LIBTOOL
28389
28390 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28391
28392         * testsuite/alsa/Makefile.am:
28393           these are user test apps, not automatic testsuite tests
28394
28395 2004-02-04  David Schleef  <ds@schleef.org>
28396
28397         Convert GST_DEBUG_CAPS() to GST_DEBUG():
28398         * gst/mpeg1videoparse/gstmp1videoparse.c:
28399         (mp1videoparse_parse_seq):
28400         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28401         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28402         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28403         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28404         (gst_xvideosink_getcaps):
28405         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28406         * testsuite/gst-lint: more tests
28407
28408 2004-02-04  David Schleef  <ds@schleef.org>
28409
28410         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
28411         with the code that they would expand to.
28412         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
28413         (gst_flacdec_get_src_query_types),
28414         (gst_flacdec_get_src_event_masks):
28415         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
28416         (gst_gnomevfssrc_get_query_types),
28417         (gst_gnomevfssrc_get_event_mask):
28418
28419 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28420
28421         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28422         (gst_sinesrc_dispose):
28423           fix memleak by properly disposing sinesrc
28424
28425 2004-02-04  Julien MOUTTE  <julien@moutte.net>
28426
28427         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
28428         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
28429         an overlay to redraw the image because it has been exposed.
28430         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
28431         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
28432         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
28433         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
28434         interface
28435         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
28436         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
28437         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
28438         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
28439         interface
28440
28441 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28442
28443         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28444           more memleak fixage
28445
28446 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28447
28448         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28449         * gst/typefind/gsttypefindfunctions.c:
28450           fix memleaks shown by gst-typefind
28451
28452 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28453
28454         * common/glib-gen.mak:
28455           add hack rule to touch .Plo files
28456         * gst-libs/gst/colorbalance/Makefile.am:
28457         * gst-libs/gst/mixer/Makefile.am:
28458         * gst-libs/gst/play/Makefile.am:
28459         * gst-libs/gst/tuner/Makefile.am:
28460           remove glib_root variable
28461
28462 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28463
28464         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
28465           set explicit caps before adding the element, so the autopluggers can
28466           plug correctly.
28467         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28468         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
28469         (mpeg_video_type_find), (mpeg_video_stream_type_find),
28470         (dv_type_find):
28471           fix memleaks in typefind functions. gst_type_find_suggest takes a const
28472           argument.
28473
28474 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28475
28476         * gst-libs/gst/colorbalance/Makefile.am:
28477         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
28478         * gst-libs/gst/colorbalance/colorbalance.c:
28479         * gst-libs/gst/colorbalance/colorbalance.h:
28480         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
28481         * gst-libs/gst/mixer/Makefile.am:
28482         * gst-libs/gst/mixer/mixer-marshal.list:
28483         * gst-libs/gst/mixer/mixer.c:
28484         * gst-libs/gst/mixer/mixer.h:
28485         * gst-libs/gst/mixer/mixermarshal.list:
28486         * gst-libs/gst/play/Makefile.am:
28487         * gst-libs/gst/play/play.h:
28488         * gst-libs/gst/tuner/Makefile.am:
28489         * gst-libs/gst/tuner/tuner-marshal.list:
28490         * gst-libs/gst/tuner/tuner.c:
28491         * gst-libs/gst/tuner/tuner.h:
28492         * gst-libs/gst/tuner/tunermarshal.list:
28493           use new glib-gen.mak snippet to clean up Makefile.am
28494           fix various bugs in Makefile.am's
28495
28496 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28497
28498         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
28499           handle chain parsing correctly in the multichain case
28500         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
28501         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
28502         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
28503         (theora_dec_chain):
28504           handle events and queries correctly
28505
28506 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28507
28508         * .cvsignore:
28509         Ignore generated file _stdint.h.
28510
28511 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28512
28513         * gst-libs/gst/colorbalance/Makefile.am:
28514         * gst-libs/gst/colorbalance/colorbalance.h:
28515         * gst-libs/gst/mixer/Makefile.am:
28516         * gst-libs/gst/mixer/mixer.h:
28517         * gst-libs/gst/play/Makefile.am:
28518         * gst-libs/gst/play/play.h:
28519         * gst-libs/gst/tuner/Makefile.am:
28520         * gst-libs/gst/tuner/tuner.h:
28521         Generate enum type code with glib-mkenums.
28522         * gst-libs/gst/colorbalance/.cvsignore:
28523         * gst-libs/gst/mixer/.cvsignore:
28524         * gst-libs/gst/play/.cvsignore:
28525         * gst-libs/gst/tuner/.cvsignore:
28526         Ignore generated files.
28527
28528 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28529
28530         * gst-libs/gst/audio/.cvsignore:
28531         Ignore generated file.
28532         * gst-libs/gst/audio/Makefile.am:
28533         Do not install example filter.
28534
28535 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28536
28537         * examples/switch/.cvsignore:
28538         Ignore generated file.
28539
28540 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28541
28542         * common/m4/ax_create_stdint_h.m4:
28543         * configure.ac:
28544           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
28545           _stdint.h.
28546         * Makefile.am:
28547           remove generated _stdint.h in DISTCLEANFILES
28548         * ext/a52dec/gsta52dec.c:
28549           include _stdint.h for a52dec. (should fix #133064)
28550
28551 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
28552
28553         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
28554         (gst_tag_to_vorbis_comments):
28555         Add replaygain support to vorbistag
28556
28557 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
28558         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
28559         (gst_ffmpeg_caps_to_extradata):
28560           Fix SVQ3 caps flag properties
28561           Use glib macro for bytes swap
28562
28563 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28564
28565         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
28566         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
28567         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
28568         * ext/sndfile/gstsf.c: (plugin_init):
28569         * gst/avi/gstavi.c: (plugin_init):
28570         * sys/dxr3/dxr3init.c: (plugin_init):
28571         * sys/oss/gstossaudio.c: (plugin_init):
28572         * sys/v4l/gstv4l.c: (plugin_init):
28573         * sys/v4l2/gstv4l2.c: (plugin_init):
28574           remove textdomain calls
28575         * po/nl.po:
28576           update Dutch translation
28577
28578 2004-02-02  Julien MOUTTE  <julien@moutte.net>
28579
28580         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28581         (gst_play_set_audio_sink): Moving volume in the audio thread for
28582         instantaneous volume change. Maybe i will add another volume in front
28583         of visualization later, not sure yet though.
28584
28585 2004-02-02  Julien MOUTTE  <julien@moutte.net>
28586
28587         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28588         (gst_ximagesink_handle_xevents): Better X events handling, only take
28589         the latest events for configure and motion.
28590         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
28591
28592 2004-02-02  Jon Trowbridge  <trow@gnu.org>
28593
28594         reviewed by: David Schleef  <ds@schleef.org>
28595
28596         Fix memory leaks:
28597         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
28598         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
28599
28600 2004-02-02  David Schleef  <ds@schleef.org>
28601
28602         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
28603         of lines.
28604         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
28605         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28606         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
28607         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
28608         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
28609         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
28610         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
28611         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
28612         (gst_float2_2_int_link):
28613         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
28614         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
28615         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
28616         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
28617         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
28618         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
28619         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
28620         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
28621         * testsuite/gst-lint: Add tests for bzero and ;;
28622
28623 2004-02-02  David Schleef  <ds@schleef.org>
28624
28625         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
28626
28627 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28628
28629         * ext/aalib/gstaasink.c: (gst_aasink_open):
28630         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
28631         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28632         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
28633         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
28634         (gst_afsink_close_file):
28635         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
28636         (gst_afsrc_close_file):
28637         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
28638         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
28639         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
28640         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
28641         * ext/esd/esdmon.c: (gst_esdmon_get):
28642         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
28643         * ext/faac/gstfaac.c: (gst_faac_chain):
28644         * ext/faad/gstfaad.c: (gst_faad_chain):
28645         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
28646         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28647         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
28648         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
28649         (gst_flacdec_loop):
28650         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28651         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28652         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
28653         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
28654         (gst_gnomevfssink_close_file):
28655         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
28656         (gst_gnomevfssrc_open_file):
28657         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
28658         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
28659         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
28660         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
28661         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
28662         * ext/mad/gstmad.c: (gst_mad_chain):
28663         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
28664         * ext/mpeg2dec/gstmpeg2dec.c:
28665         * ext/mpeg2enc/gstmpeg2enc.cc:
28666         * ext/mplex/gstmplex.cc:
28667         * ext/mplex/gstmplexibitstream.cc:
28668         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
28669         (gst_ogg_demux_push):
28670         * ext/raw1394/gstdv1394src.c:
28671         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
28672         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
28673         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
28674         (gst_sf_loop):
28675         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
28676         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
28677         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
28678         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
28679         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28680         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
28681         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
28682         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
28683         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
28684         (gst_riff_read_element_data), (gst_riff_read_seek),
28685         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
28686         * gst/adder/gstadder.c: (gst_adder_loop):
28687         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
28688         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
28689         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
28690         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
28691         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
28692         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
28693         * gst/goom/gstgoom.c: (gst_goom_chain):
28694         * gst/id3/gstid3types.c: (gst_id3types_loop):
28695         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
28696         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
28697         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
28698         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
28699         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
28700         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
28701         (gst_ebml_read_float), (gst_ebml_read_header):
28702         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
28703         (gst_matroska_demux_parse_blockgroup):
28704         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
28705         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
28706         * gst/oneton/gstoneton.c: (gst_oneton_chain):
28707         * gst/silence/gstsilence.c: (gst_silence_get):
28708         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
28709         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
28710         * gst/speed/gstspeed.c: (speed_loop):
28711         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
28712         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
28713         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
28714         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
28715         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28716         (gst_wavparse_loop):
28717         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
28718         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
28719         (dxr3audiosink_close):
28720         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
28721         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
28722         (dxr3videosink_close), (dxr3videosink_write_data):
28723         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
28724         * sys/oss/gstosssink.c: (gst_osssink_chain):
28725         * sys/oss/gstosssrc.c: (gst_osssrc_get):
28726         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
28727         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
28728         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
28729         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
28730         (gst_v4l_set_window), (gst_v4l_enable_overlay):
28731         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
28732         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
28733         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
28734         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
28735         (gst_v4l_set_audio):
28736         * sys/v4l/v4l_calls.h:
28737         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
28738         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
28739         (gst_v4lmjpegsink_playback_init),
28740         (gst_v4lmjpegsink_playback_start):
28741         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
28742         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
28743         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
28744         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
28745         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
28746         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
28747         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
28748         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
28749         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
28750         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
28751         (gst_v4l2_get_output), (gst_v4l2_set_output),
28752         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
28753         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
28754         (gst_v4l2_set_attribute):
28755         * sys/v4l2/v4l2_calls.h:
28756         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
28757         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
28758         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
28759         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
28760         (gst_v4l2src_capture_stop):
28761         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
28762         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
28763         (gst_ximagesink_chain):
28764         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
28765         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
28766         (gst_xvideosink_xwindow_new):
28767         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
28768         (gst_xvimagesink_chain):
28769
28770 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28771
28772         * gst/volume/gstvolume.c: (gst_volume_set_volume),
28773         (gst_volume_get_volume), (volume_class_init), (volume_init),
28774         (volume_chain_int16), (volume_update_volume):
28775         * gst/volume/gstvolume.h:
28776           make code more readable by removing magic numbers
28777           make mixer interface export 0-100 range
28778           make it internally map to 0.0-1.0 range so users don't distort
28779           output by putting the sliders at full volume
28780
28781 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28782
28783         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
28784         (gst_play_state_change), (gst_play_seek_to_time):
28785         block the tick callback for 0.5 secs after doing a seek
28786
28787 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28788
28789         * gst-libs/gst/play/play.c: (gst_play_new):
28790           check for GError
28791
28792 2004-02-01  Julien MOUTTE  <julien@moutte.net>
28793
28794         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
28795         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
28796         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
28797         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
28798         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
28799         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
28800
28801 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
28802
28803         * configure.ac:
28804         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28805           check for a function added in vorbis 1.1
28806
28807 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28808
28809         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
28810         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
28811           really start/stop clock only on PLAYING <=> PAUSED
28812         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28813           remove \n from debugging lines
28814         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
28815           make it work when seeking does not
28816         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28817           reset on DISCONT
28818
28819 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28820
28821         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
28822           start clock on PAUSED=>PLAYING, not later
28823         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
28824           extract correct time for different discont formats
28825         (gst_alsa_sink_get_time):
28826           don't segfault when no format is negotiated yet, just return 0
28827         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28828         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
28829         (gst_ogg_pad_push):
28830           handle flush and discont events correctly
28831         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
28832           handle discont events correctly
28833
28834 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
28835
28836         * gst-libs/gst/play/play.c: (gst_play_error_quark),
28837         (gst_play_error_create), (gst_play_error_plugin),
28838         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
28839         * gst-libs/gst/play/play.h:
28840           add error handling during creation
28841         * examples/gstplay/player.c: (main):
28842           use new gst_play_new
28843
28844
28845 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28846
28847         * ext/theora/theoradec.c: (theora_dec_chain):
28848           make comments work
28849         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
28850         (vorbis_dec_src_event), (vorbis_dec_chain):
28851           add encoder tag, fix tag reading to be more error tolerant, change
28852           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
28853           gst_pad_event_default.
28854         * gst/tags/gstvorbistag.c:
28855         (gst_tag_list_from_vorbiscomment_buffer):
28856           undefine function specific define at end of function
28857
28858 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
28859
28860         * ext/flac/gstflac.c: (plugin_init):
28861         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
28862         * ext/flac/gstflacdec.h:
28863         * ext/flac/gstflacenc.h:
28864           Fix typos
28865
28866 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
28867
28868         * examples/gstplay/player.c: s/gstplay.h/play.h/
28869
28870 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28871
28872         * gst-libs/gst/play/Makefile.am:
28873         * gst-libs/gst/play/gstplay.c:
28874         * gst-libs/gst/play/gstplay.h:
28875         * gst-libs/gst/play/play.c:
28876           more surgery, operation complete
28877
28878 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28879
28880         * gst-libs/gst/play/play.old.c:
28881         * gst-libs/gst/play/play.old.h:
28882           after CVS surgery by moving, remove
28883         * gst-libs/gst/play/playpipelines.c:
28884           remove
28885
28886         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
28887           add negotiation error
28888
28889 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28890
28891         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28892         (gst_ogg_demux_push):
28893           add some seeking debug info
28894           send a flush when seeking
28895
28896 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28897
28898         * configure.ac:
28899           use AC_C_INLINE
28900         * configure.ac:
28901         * ext/Makefile.am:
28902         * ext/theora/Makefile.am:
28903         * ext/theora/theoradec.c:
28904           add theora video decoder. Does just do simple decoding for now and
28905           has been tested against Theora cvs only. It only works when theora
28906           is compiled with --enable-static.
28907         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
28908           always reset packetno on DISCONT
28909
28910 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28911
28912         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28913           Fix audio.
28914
28915 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28916
28917         * gst/mpegaudioparse/gstmpegaudioparse.c:
28918         (mp3_type_frame_length_from_header):
28919           Fix header parsing - stolen from ffmpeg (thank you! :) ).
28920
28921 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28922
28923         * ext/esd/esdsink.c: (gst_esdsink_init):
28924           Since we have static pad template caps, we don't need to negotiate;
28925           either the core errors out or we know the format.
28926
28927 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28928
28929         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
28930         (gst_riff_read_seek):
28931         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
28932         (gst_ebml_read_seek):
28933           Fix event handling.
28934
28935 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28936
28937         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
28938           removee video/x-theora from vp3 decoder, it doesn't handle raw
28939           theora streams
28940         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
28941           fix bug with finalizing element that never went to PAUSED
28942         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
28943           length and position queries were swapped
28944         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
28945         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
28946         (vorbis_dec_src_event):
28947           implement querying time and bytes
28948
28949 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
28950
28951         * just about every source file:
28952           gst_element_error -> GST_ELEMENT_ERROR
28953
28954 2004-01-29  Julien MOUTTE  <julien@moutte.net>
28955
28956         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
28957         emiting FLUSH and even before DISCONT.
28958         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
28959         get the best instant seeking as possible yay!
28960
28961 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
28962
28963         * gst/mpeg1videoparse/gstmp1videoparse.c:
28964         (gst_mp1videoparse_real_chain):
28965           Committed wrong version last week... Grr... Didn't notice until now.
28966
28967 2004-01-29  Julien MOUTTE <julien@moutte.net>
28968
28969         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
28970         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
28971         have_xwindow_id signal in xwindow_create.
28972
28973 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28974
28975         * ext/ogg/gstoggdemux.c:
28976           lots of changes - mainly support for chained bitstreams, seeking,
28977           querying and bugfixes of course
28978         * ext/vorbis/Makefile.am:
28979         * ext/vorbis/vorbisdec.c:
28980         * ext/vorbis/vorbisdec.h:
28981           add vorbisdec raw vorbis decoder
28982         * ext/vorbis/vorbis.c: (plugin_init):
28983           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
28984         * gst/intfloat/Makefile.am:
28985         * gst/intfloat/float22int.c:
28986         * gst/intfloat/float22int.h:
28987         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
28988           add float2intnew plugin. It converts multichannel interleaved float to
28989           multichannel interleaved int. The name should probably be changed.
28990         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
28991         (plugin_init):
28992           add typefinding for raw theora video so oggdemux can detect it.
28993
28994 2004-01-28  Julien MOUTTE  <julien@moutte.net>
28995
28996         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
28997         sink element first.
28998         * gst/videoscale/gstvideoscale.c:
28999         (gst_videoscale_handle_src_event): Fixing src event handler.
29000
29001 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29002
29003         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29004         (gst_v4lsrc_open), (gst_v4lsrc_close),
29005         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29006         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29007         * sys/v4l/gstv4lsrc.h:
29008         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29009         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29010           Implement resizing... Hack. But that's why v4l is b0rked...
29011
29012 2004-01-28  Julien MOUTTE <julien@moutte.net>
29013
29014         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29015         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29016         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29017         (gst_ximagesink_xwindow_destroy):
29018         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29019         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29020         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29021         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29022         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29023         correctly cleaning the image created to check xshm calls on succes,
29024         added a lot of XSync calls in X11 functions, and fixed a segfault when
29025         no image format was defined before negotiation happened.
29026
29027 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29028
29029         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29030           use gst_element_get_time to get correct time
29031
29032 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29033
29034         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29035         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29036         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29037         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29038         (gst_xvimagesink_check_xshm_calls),
29039         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29040         X plugins are now able to detect that XShm calls will fail even if the
29041         server claims that it has XShm support (remote displays most of the
29042         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29043         so that we use non XShm functions. This feature is almost useless for
29044         xvimagesink as Xv is not supported on remote displays anyway, but
29045         it might happen than even on the local display XShm calls fail.
29046
29047 2004-01-27  David Schleef  <ds@schleef.org>
29048
29049         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29050         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29051         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
29052         changed esdsink to only use 44100,16,2, since esd sucks at rate
29053         conversion and esdsink has had difficulty negotiating.
29054
29055 2004-01-27  Julien MOUTTE <julien@moutte.net>
29056
29057         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29058         (gst_play_seek_to_time): Fixing the way to get current position.
29059
29060 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29061
29062         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29063           use gst_element_get_time to get correct time
29064
29065 2004-01-27  Julien MOUTTE <julien@moutte.net>
29066
29067         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29068         fix ever... Inverting 2 lines of code make spider autoplug correctly
29069         tagged mp3 !
29070
29071 2004-01-27  David Schleef  <ds@schleef.org>
29072
29073         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29074         Use gst_pad_try_set_caps_nonfixed().
29075
29076 2004-01-27  David Schleef  <ds@schleef.org>
29077
29078         * gst/ac3parse/gstac3parse.c: update to checklist 5
29079         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
29080         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29081         * gst/audioscale/gstaudioscale.c: same
29082         * gst/auparse/gstauparse.c: same
29083         * gst/avi/gstavidemux.c: same
29084
29085 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29086
29087         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29088           stop processing after EOS
29089
29090 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29091
29092         * gst/asfdemux/asfheaders.h:
29093         * gst/asfdemux/gstasfdemux.c:
29094         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29095         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29096         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29097           lot's of fixes to make data extraction simpler and get the code
29098           architecture and compiler independant. Add debugging category
29099         * gst/goom/gstgoom.c: (gst_goom_change_state):
29100           reset channel count on PAUSED=>READY, not READY=>PAUSED
29101
29102 2004-01-26  Colin Walters  <walters@verbum.org>
29103
29104         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29105         code to pull a bigger buffer in iradio mode.  This as a side effect
29106         makes typefinding work.
29107
29108 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29109
29110         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29111         Fix SVQ3 decoding on PPC
29112
29113 2004-01-26  Julien MOUTTE <julien@moutte.net>
29114
29115         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29116         that one managed to stay there... Fixed.
29117
29118 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29119
29120         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29121         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29122         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29123         (qtdemux_video_caps):
29124         * gst/qtdemux/qtdemux.h:
29125         Add SVQ3 specific flags to qtdemux and ffmpeg
29126
29127 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29128
29129         * gst-libs/gst/audio/audio.h:
29130           remove buffer-frames from audio caps
29131         * gst/audioconvert/gstaudioconvert.c:
29132           fix plugin to really work.
29133
29134 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29135
29136         * gst-libs/gst/mixer/mixer.c:
29137         * gst-libs/gst/propertyprobe/propertyprobe.c:
29138         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29139         (gst_tuner_find_channel_by_name):
29140         * gst-libs/gst/tuner/tuner.h:
29141           Add gtk-doc style comments. Also fix a function name.
29142
29143 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29144
29145         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29146         (gst_divxdec_negotiate):
29147           Fix for new capsnego - also fixes gst-player with divxdec.
29148
29149 2004-01-25  Julien MOUTTE  <julien@moutte.net>
29150
29151         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29152         (gst_play_identity_handoff), (gst_play_set_location),
29153         (gst_play_set_visualization), (gst_play_connect_visualization): Another
29154         try in visualization implementation. Still have an issue with switch
29155         blocking when pulling from video_queue and only audio comes out of
29156         spider.
29157         * gst/switch/gstswitch.c: (gst_switch_release_pad),
29158         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29159         release method. And check if the pad is usable before pulling.
29160
29161 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29162
29163         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29164         (gst_videobalance_init),
29165         (gst_videobalance_colorbalance_list_channels),
29166         (gst_videobalance_colorbalance_set_value),
29167         (gst_videobalance_colorbalance_get_value),
29168         (gst_videobalance_update_properties),
29169         (gst_videobalance_update_tables_planar411),
29170         (gst_videobalance_planar411):
29171         * gst/videofilter/gstvideobalance.h:
29172           Implement lookup-tables. +/- 10x faster.
29173
29174 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29175
29176         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29177         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29178           The index reading was broken. The rest worked fine, but the whole
29179           goal of my rewrite was to make avidemux readable, and this was
29180           not at all readable. Please use typed variables.
29181
29182 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29183
29184         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29185           Additional pad usability check.
29186         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29187         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29188         (gst_mp1videoparse_real_chain):
29189           Fix MPEG video stream parsing. The original plugin had several
29190           issues, including not timestamping streams where the source was
29191           not timestamped (this happens with PTS values in mpeg system
29192           streams, but MPEG video is also a valid stream on its own so
29193           that needs timestamps too). We use the display time code for that
29194           for now. Also, if one incoming buffer contains multiple valid
29195           frames, we push them all on correctly now, including proper EOS
29196           handling. Lastly, several potential segfaults were fixed, and we
29197           properly sync on new sequence/gop headers to include them in next,
29198           not previous frames (since they're header for the next frame, not
29199           the previous). Also see #119206.
29200         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29201         (bpf_from_header):
29202           Move caps setting so we only do it after finding several valid
29203           MPEG-1 fraes sequentially, not right after the first one (which
29204           might be coincidental).
29205         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29206         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29207         (plugin_init):
29208           Add unsynced MPEG video stream typefinding, and change some
29209           probability values so we detect streams rightly. The idea is as
29210           follows: I can have an unsynced system stream which contains
29211           video. In the current code, I would randomly get a type for either
29212           system or video stream type found, because the probabilities are
29213           being calculated rather randomly. I now use fixed values, so we
29214           always prefer system stream if that was found (and that is how it
29215           should be). If no system stream was found, we can still identity                the stream as video-only.
29216
29217 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29218
29219         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29220         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29221           don't write to buffer. Extract data without the need of
29222           __attribute__ ((packed))
29223
29224 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29225
29226         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29227         (mpeg1_sys_type_find):
29228           Fix MPEG-1 stream typefinding.
29229
29230 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29231
29232         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29233           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29234
29235 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29236
29237         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29238         * ext/esd/gstesd.c: (plugin_init):
29239           private debugging, better error reporting
29240
29241 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29242
29243         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29244         (gst_riff_read_init), (gst_riff_read_change_state):
29245         * gst-libs/gst/riff/riff-read.h:
29246           Remove stuff fromold metadata system.
29247
29248 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29249
29250         * ext/ogg/gstoggdemux.c:
29251           Fix wrong file comment.
29252         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29253         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29254           Add metadata reading properly.
29255
29256 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29257
29258         * ext/Makefile.am:
29259           Fix nas DIST_SUBDIRS
29260           Uraeus:
29261           Fix bug where make distcheck doesn't get run on adding stuff to
29262           the build.
29263
29264 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29265
29266         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29267         * ext/divx/gstdivxdec.h:
29268           Fix divx3 ("msmpeg4") playback using divxdec.
29269
29270 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29271
29272         * gst/typefind/gsttypefindfunctions.c:
29273         (mp3_type_frame_length_from_header): fix bug in length computation
29274         (mp3_type_find): improve debugging output
29275
29276 2004-01-23  Julien MOUTTE  <julien@moutte.net>
29277
29278         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29279         (gst_play_set_location), (gst_play_seek_to_time),
29280         (gst_play_set_audio_sink), (gst_play_set_visualization),
29281         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29282         the pipeline from scratch. Visualization is back and switch went out as
29283         i realized it was not possible to use the way i wanted.
29284         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29285         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29286         clearing in state change from READY to NULL. So that one can clean the
29287         X ressources keeping the element.
29288         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29289         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29290         (gst_xvimagesink_colorbalance_set_value),
29291         (gst_xvimagesink_colorbalance_get_value),
29292         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29293         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29294         change from READY to NULL and fixed some stupid bugs in colorbalance
29295         get/set values. Also added the following feature : when nobody tries to
29296         set some values to the colorbalance levels before the xcontext is
29297         grabbed, then when creating channels list from Xv attributes we set the
29298         internal values to the Xv defaults. This way we handle buggy Xv drivers
29299         that set default hue values far from the middle of the range (Thanks
29300         to Jon Trowbridge for pointing that issue).
29301         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29302         colorbalance levels have been set before xcontext is grabbed.
29303
29304 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29305
29306         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29307           Fix the ossmixer case where we shouldn't open /dev/dsp* because
29308           it might block operations (which is bad for a mixer).
29309
29310 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29311
29312         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29313         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29314         (gmip_find_type_pre):
29315         * gst-libs/gst/media-info/media-info-priv.h:
29316         * gst-libs/gst/media-info/media-info.c:
29317         (gst_media_info_instance_init), (gst_media_info_read_idler):
29318         add fakesink to get caps on decoder src pad again
29319         fix callback prototype to match new have_type signal signature
29320
29321 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29322
29323         * gst/adder/gstadder.c: (gst_adder_link):
29324           fix non-compile and cut-n-paste code
29325
29326 2004-01-21  David Schleef  <ds@schleef.org>
29327
29328         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29329         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29330         (gst_swfdec_init), (gst_swfdec_change_state):
29331         * ext/swfdec/gstswfdec.h:
29332         Fix negotiation.
29333         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29334         (gst_adder_request_new_pad): Fix negotiation.
29335         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29336         Add a fixate function.
29337         * gst/intfloat/gstfloat2int.c:
29338         * gst/intfloat/gstfloat2int.h:
29339         * gst/intfloat/gstint2float.c:
29340         * gst/intfloat/gstint2float.h:
29341         Completely rewrite the negotiation.  Doesn't quite work yet,
29342         due to some buffer-frames problem.
29343
29344 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
29345
29346         * ext/gnomevfs/gstgnomevfssrc.c:
29347         * sys/v4l2/v4l2_calls.h:
29348           fix includes for distcheck
29349
29350 2004-01-21  Christian Schaller <uraeus@gnome.org>
29351
29352         * ext/nas/
29353         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29354         based on earlier patch from Laurent Vivier
29355
29356 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
29357
29358         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29359         Fix wma caps property
29360         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29361         Fix typo (flags1 and flags2)
29362
29363 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29364
29365         * gst-libs/gst/media-info/media-info-priv.c:
29366         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29367         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29368         (gmip_find_stream), (gmip_find_track_metadata),
29369         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29370         (gmip_find_track_format):
29371         * gst-libs/gst/media-info/media-info-priv.h:
29372         * gst-libs/gst/media-info/media-info-test.c: (main):
29373         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29374         (gst_media_info_read_idler), (gst_media_info_read):
29375         * gst-libs/gst/media-info/media-info.h:
29376           register debugging category and use it for debugging
29377
29378 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29379
29380         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29381         (gst_vorbisfile_new_link):
29382           signal streaminfo through tags
29383
29384 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29385
29386         * ext/mplex/gstmplex.cc:
29387         * ext/mplex/gstmplexibitstream.cc:
29388           g++ doesn't like NULL in our i18n/error macros, should be
29389           either (NULL) or ("").
29390
29391 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29392
29393         * sys/dxr3/dxr3audiosink.c:
29394         * sys/dxr3/dxr3init.c:
29395         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29396         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29397           Fix more error error error errors (missing includes here).
29398
29399 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29400
29401         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29402           fix thomas' error errors.
29403
29404 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29405
29406         * ext/mpeg2enc/gstmpeg2enc.cc:
29407           fix error errors.
29408
29409 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29410
29411         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29412         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29413           Fix for new error system.
29414
29415 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29416
29417         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29418           fix for new error reporting
29419
29420 2004-01-20  David Schleef  <ds@schleef.org>
29421
29422         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
29423         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
29424         (gst_ximagesink_set_xwindow_id): Change to using a framerate
29425         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
29426         and neither is 100+, most likely.
29427         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
29428         (gst_xvimagesink_getcaps): same
29429
29430 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29431
29432         * configure.ac:
29433           Up version requirement to 2.0.3 (not yet released) to avoid symbol
29434           clashes with ffmpeg.
29435
29436 2004-01-20  Julien MOUTTE  <julien@moutte.net>
29437
29438         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
29439         (gst_switch_init): Fixed switch element : proxying link and setting
29440         caps from src to sink on request.
29441
29442 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29443
29444         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29445         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29446         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29447         fix element_error
29448
29449 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29450
29451         * sys/v4l/v4l_calls.h:
29452         * sys/v4l2/v4l2_calls.h:
29453           element_error fixes
29454
29455 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29456
29457         * gst-libs/gst/gst-i18n-plugin.h:
29458           add locale.h
29459           remove config.h inclusion
29460
29461 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29462
29463         * autogen.sh:
29464           adding autopoint invocation
29465         * Makefile.am:
29466         * configure.ac:
29467         * gst-libs/gst/gettext.h:
29468           adding gettext bits
29469         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29470         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29471         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29472         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29473         (gst_gnomevfssink_close_file):
29474         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
29475         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
29476         * gst-libs/gst/gst-i18n-plugin.h:
29477         * gst/avi/gstavi.c: (plugin_init):
29478         * sys/dxr3/dxr3init.c: (plugin_init):
29479         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
29480         * sys/oss/gstossaudio.c: (plugin_init):
29481         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29482         * sys/v4l/gstv4l.c: (plugin_init):
29483         * sys/v4l/v4l_calls.c: (gst_v4l_open):
29484         * sys/v4l2/gstv4l2.c: (plugin_init):
29485         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29486         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
29487         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
29488         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
29489         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
29490         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
29491           make sure locale and translation domain are set
29492           fix translated strings
29493         * po/.cvsignore:
29494         * po/LINGUAS:
29495         * po/Makevars:
29496         * po/POTFILES.in:
29497         * po/nl.po:
29498           put translation files into place
29499         * sys/xvideo/imagetest.c: (main):
29500         * ext/dv/demo-play.c: (main):
29501           fix unnecessary translations
29502
29503 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29504
29505         * ext/sndfile/gstsf.c:
29506         * gst/avi/gstavimux.c:
29507         * ext/audiofile/gstafsink.c:
29508         * ext/audiofile/gstafsrc.c:
29509         * ext/gnomevfs/gstgnomevfssink.c:
29510         * ext/gnomevfs/gstgnomevfssrc.c:
29511         * sys/oss/gstosselement.c:
29512         * sys/v4l/v4l_calls.h:
29513           fix i18n include
29514
29515 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29516
29517         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29518         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29519         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29520         (gst_v4l2_get_output), (gst_v4l2_set_output),
29521         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29522         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29523         (gst_v4l2_set_attribute):
29524         update to new error handling
29525
29526 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29527
29528         * ext/sidplay/gstsiddec.cc:
29529         * gst/modplug/gstmodplug.cc:
29530           parenthese NULL because C++ seems angry about it
29531
29532 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29533
29534         * gst-libs/gst/gst-i18n-plugin.h:
29535           add skeleton i18n stuff, but needs to be further implemented
29536
29537 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
29538
29539         * examples/gstplay/player.c: (main):
29540         * ext/aalib/gstaasink.c: (gst_aasink_open):
29541         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29542         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29543         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29544         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29545         (gst_afsink_close_file):
29546         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29547         (gst_afsrc_close_file):
29548         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29549         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29550         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29551         * ext/esd/esdmon.c: (gst_esdmon_get):
29552         * ext/esd/esdsink.c: (gst_esdsink_chain):
29553         * ext/faac/gstfaac.c: (gst_faac_chain):
29554         * ext/faad/gstfaad.c: (gst_faad_chain):
29555         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29556         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29557         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29558         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29559         (gst_flacdec_loop):
29560         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29561         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29562         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29563         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29564         (gst_gnomevfssink_close_file):
29565         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29566         (gst_gnomevfssrc_open_file):
29567         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29568         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29569         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29570         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29571         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29572         * ext/mad/gstmad.c: (gst_mad_chain):
29573         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29574         * ext/mpeg2dec/gstmpeg2dec.c:
29575         * ext/mpeg2enc/gstmpeg2enc.cc:
29576         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29577         * ext/mplex/gstmplex.cc:
29578         * ext/mplex/gstmplexibitstream.cc:
29579         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29580         (gst_ogg_demux_push), (gst_ogg_pad_push):
29581         * ext/raw1394/gstdv1394src.c:
29582         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29583         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29584         * ext/sidplay/gstsiddec.cc:
29585         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29586         (gst_sf_loop):
29587         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29588         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29589         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29590         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29591         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29592         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29593         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29594         * gst-libs/gst/Makefile.am:
29595         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29596         (gst_riff_read_element_data), (gst_riff_read_seek),
29597         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29598         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
29599         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29600         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29601         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29602         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29603         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29604         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29605         * gst/goom/gstgoom.c: (gst_goom_chain):
29606         * gst/id3/gstid3types.c: (gst_id3types_loop):
29607         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29608         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29609         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29610         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29611         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29612         (gst_ebml_read_float), (gst_ebml_read_header):
29613         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29614         (gst_matroska_demux_parse_blockgroup):
29615         * gst/modplug/gstmodplug.cc:
29616         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29617         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29618         * gst/oneton/gstoneton.c: (gst_oneton_chain):
29619         * gst/silence/gstsilence.c: (gst_silence_get):
29620         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29621         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29622         * gst/speed/gstspeed.c: (speed_loop):
29623         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29624         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29625         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29626         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29627         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29628         (gst_wavparse_loop):
29629         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29630         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29631         (dxr3audiosink_close):
29632         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29633         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29634         (dxr3videosink_close), (dxr3videosink_write_data):
29635         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29636         * sys/oss/gstosselement.h:
29637         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
29638         (gst_osssink_chain):
29639         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29640         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29641         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29642         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29643         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
29644         (gst_v4l_enable_overlay):
29645         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29646         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29647         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29648         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29649         (gst_v4l_set_audio):
29650         * sys/v4l/v4l_calls.h:
29651         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29652         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29653         (gst_v4lmjpegsink_playback_init),
29654         (gst_v4lmjpegsink_playback_start):
29655         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
29656         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
29657         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
29658         (gst_v4lmjpegsrc_requeue_frame):
29659         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29660         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29661         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29662         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29663         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29664         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29665         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29666         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29667         (gst_v4l2src_capture_stop):
29668         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29669         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29670         (gst_ximagesink_chain):
29671         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29672         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29673         (gst_xvideosink_xwindow_new):
29674         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29675         (gst_xvimagesink_chain):
29676         use new error signal, function and categories
29677
29678 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
29679
29680         * configure.ac:
29681         * ext/Makefile.am:
29682         * ext/musicbrainz/gsttrm.c:
29683         * ext/musicbrainz/gsttrm.h:
29684         * ext/musicbrainz/Makefile.am:
29685         Add a trm plugin
29686
29687 2004-01-18  Julien MOUTTE  <julien@moutte.net>
29688
29689         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
29690         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
29691         synchronous property for debugging.
29692         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
29693         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29694         (gst_xvimagesink_set_property): Moving a pointer declaration to a
29695         smaller block, fixing indent.
29696
29697 2004-01-16  David Schleef  <ds@schleef.org>
29698
29699         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
29700         property affects the video stream.
29701         * sys/xvimage/xvimagesink.c:
29702         * sys/xvimage/xvimagesink.h:
29703         Add synchronous property for debugging.  Should probably be
29704         disabled in non-CVS builds.  Make sure that the Xv attribute
29705         exists before we set it (crash!).  Fix a silly float bug that
29706         caused colorbalance to just not work.
29707
29708 2004-01-17  Christian Schaller <Uraeus@gnome.org>
29709
29710         * tools/gst-launch-ext.in - update for new plugins
29711
29712 2004-01-16  David Schleef  <ds@schleef.org>
29713
29714         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
29715         already-freed caps.
29716
29717 2994-01-16  Christian Schaller <Uraeus@gnome.org>
29718
29719         * Update spec for new colorspace plugin and libcaca plugin
29720         * Fix compilation of libcaca plugin (clock -> id)
29721
29722 2004-01-16  Julien MOUTTE <julien@moutte.net>
29723
29724         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
29725         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
29726         (gst_xvimagesink_set_xwindow_id),
29727         (gst_xvimagesink_colorbalance_set_value),
29728         (gst_xvimagesink_colorbalance_get_value),
29729         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
29730         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
29731         correct colorbalance properties. They can now be set when the element
29732         is still in NULL state. The values will be committed to the Xv Port
29733         when xcontext is initialized.
29734         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
29735         brightness int values in the GstXvImagesink structure.
29736
29737 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29738
29739         * gst-libs/gst/Makefile.am:
29740           restructure so having local patches works easier.
29741
29742 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29743
29744         * ext/mpeg2enc/Makefile.am:
29745         * ext/mpeg2enc/gstmpeg2enc.cc:
29746         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29747           Bugfix with respect to EOS handling.
29748
29749 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29750
29751         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
29752           Link with right caps (else, it segfaults).
29753         * ext/mplex/gstmplexjob.cc:
29754           Fix for slight API change in 1.6.1.93 release of mjpegtools.
29755
29756 2004-01-15  David Schleef  <ds@schleef.org>
29757
29758         * gst-libs/gst/audio/Makefile.am:
29759         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
29760         from the template.
29761         * gst-libs/gst/audio/gstaudiofilter.c:
29762         * gst-libs/gst/audio/gstaudiofilter.h:
29763         Add bytes_per_sample and size and n_samples calculation.
29764         * gst-libs/gst/audio/gstaudiofilterexample.c:
29765         Remove, now autogenerated.
29766         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
29767         Moved from gstaudiofilterexample, object name changed, code added
29768         so that it actually works.
29769         * gst-libs/gst/audio/make_filter:
29770         Script to build an audiofilter subclass from the template.
29771         * gst/colorspace/Makefile.am:
29772         * gst/colorspace/yuv2yuv.c:
29773         Remove file, since it's GPL, and we don't use it.
29774
29775 2004-01-15  Julien MOUTTE  <julien@moutte.net>
29776
29777         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
29778         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
29779         them use the buffer free function to test how the buffer was allocated.
29780
29781 2004-01-15  David Schleef  <ds@schleef.org>
29782
29783         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
29784         that handles osssink fallback.
29785         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
29786         (gst_audio_convert_getcaps):
29787         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
29788         Add audio/x-qdm2 for QDM2 audio.
29789         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29790         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
29791         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29792         Decrease minimum size to 16x16.
29793         * gst/wavparse/gstwavparse.c:
29794         Convert disabled pad template caps to new caps.
29795         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
29796         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29797         (gst_xvimagesink_chain): Throw element error when display cannot
29798         be opened.  Increase minimum framerate to 1.0.  Check the data
29799         free function on a buffer to make sure it is the type we expect
29800         before manipulating it.
29801
29802 2004-01-15  Julien MOUTTE <julien@moutte.net>
29803
29804         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
29805         (gst_videobalance_colorbalance_set_value): Implement passthru if
29806         settings are in the middle.
29807         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
29808
29809 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29810
29811         * gst/videofilter/Makefile.am:
29812         * gst/volume/Makefile.am:
29813           Since we use videofilter symbols, link to it.
29814
29815 2004-01-15  Julien MOUTTE <julien@moutte.net>
29816
29817         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
29818         mixer interface type to HARDWARE.
29819         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
29820         type to SOFTWARE.
29821         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
29822         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
29823         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
29824         (gst_volume_interface_init), (gst_volume_list_tracks),
29825         (gst_volume_set_volume), (gst_volume_get_volume),
29826         (gst_volume_set_mute), (gst_volume_mixer_init),
29827         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
29828         (volume_init): Implementing mixer interface.
29829         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
29830         * sys/oss/gstosselement.c: (gst_osselement_get_type),
29831         (gst_osselement_change_state): Removing some trailing commas in
29832         structures.
29833         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
29834         interface type to HARDWARE.
29835         * sys/v4l/gstv4lcolorbalance.c:
29836         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
29837         type to HARDWARE.
29838         * sys/v4l2/gstv4l2colorbalance.c:
29839         (gst_v4l2_color_balance_interface_init): Setting colorbalance
29840         interface type to HARDWARE.
29841         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
29842         same code than ximagesink for event handling.
29843
29844 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29845
29846         * ext/snapshot/Makefile.am:
29847         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
29848         (gst_snapshot_chain):
29849         * ext/snapshot/gstsnapshot.h:
29850           This has to be a joke... Snapshot should be connected to a tee,
29851           colorspace element before it and EOS after that, where the other
29852           src of the tee receives normal data.
29853           The current way is *wrong*.
29854
29855 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29856
29857         * ext/hermes/gsthermescolorspace.c:
29858           Fix another compile error. Same as below.
29859
29860 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29861
29862         * gst/colorspace/gstcolorspace.c:
29863         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
29864         (gst_colorspace_i420_to_yv12):
29865           Fix compiling... Didn't test if it actually works.
29866
29867 2004-01-15  David Schleef  <ds@schleef.org>
29868
29869         * configure.ac:
29870         * gst/colorspace/Makefile.am:
29871         * gst/colorspace/gstcolorspace.c:
29872         * gst/colorspace/gstcolorspace.h:
29873         * gst/colorspace/yuv2rgb.c:
29874         * gst/colorspace/yuv2rgb.h:
29875         Duplicate the ext/hermes colorspace plugin, and remove Hermes
29876         code and GPL code.  Fix for new caps negotiation.  Rewrite
29877         much of the format handling code, and some of the conversion
29878         code.  Basically, rewrote almost everything.  This element
29879         handles I420, YV12 to RGB conversions.
29880         * ext/hermes/Makefile.am:
29881         * ext/hermes/gsthermescolorspace.c:
29882         Rename colorspace to hermescolorspace.  Fix negotiation issues.
29883         Remove non-Hermes related code.  This element handles lots of
29884         RGB to RGB conversions, but no YUV.
29885         * ext/hermes/gstcolorspace.c:
29886         * ext/hermes/gstcolorspace.h:
29887         * ext/hermes/rgb2yuv.c:
29888         * ext/hermes/yuv2rgb.c:
29889         * ext/hermes/yuv2rgb.h:
29890         * ext/hermes/yuv2rgb_mmx16.s:
29891         * ext/hermes/yuv2yuv.c:
29892         * ext/hermes/yuv2yuv.h:
29893         Remove old code.
29894
29895 2004-01-14  Colin Walters  <walters@verbum.org>
29896
29897         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
29898         they've already been.
29899
29900 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29901
29902         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
29903           assume tag mode when pad is not connected
29904
29905 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29906
29907         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29908           Don't update the time of the clock
29909         (gst_alsa_sink_loop):
29910           sync to the clock given to alsasink, not the own clock
29911         * sys/oss/gstosssink.c: (gst_osssink_chain):
29912           sync to the clock
29913         (gst_osssink_change_state):
29914           activate the clock
29915         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
29916         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
29917           remove bogus code that made DISCONT events unhandled
29918         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
29919           explicitly case to double in _set_simple. (fixes 2nd warning in bug
29920           #131502)
29921         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
29922         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
29923         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
29924           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
29925           2nd warning in bug #131502)
29926
29927 2004-01-14  Julien MOUTTE  <julien@moutte.net>
29928
29929         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
29930         (gst_videobalance_colorbalance_set_value),
29931         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
29932         for colorbalance interface implementation.
29933         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29934         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
29935         (gst_ximagesink_dispose), (gst_ximagesink_init),
29936         (gst_ximagesink_class_init): Adding DISPLAY property.
29937         * sys/ximage/ximagesink.h: Adding display_name to store display.
29938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29939         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
29940         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
29941         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
29942         properties (they still need polishing though for gst-launch use : no
29943         xcontext yet, i ll do that tomorrow).
29944         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
29945
29946 2004-01-14  Julien MOUTTE  <julien@moutte.net>
29947
29948         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29949         (gst_play_set_location), (gst_play_set_visualization): Preparing
29950         switch integration, adding videobalance in the pipeline.
29951
29952 2004-01-14  Julien MOUTTE <julien@moutte.net>
29953
29954         * gst-libs/gst/colorbalance/colorbalance.c:
29955         (gst_color_balance_class_init): Adding a default type.
29956         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
29957         the type.
29958         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
29959         (gst_videobalance_dispose), (gst_videobalance_class_init),
29960         (gst_videobalance_init), (gst_videobalance_interface_supported),
29961         (gst_videobalance_interface_init),
29962         (gst_videobalance_colorbalance_list_channels),
29963         (gst_videobalance_colorbalance_set_value),
29964         (gst_videobalance_colorbalance_get_value),
29965         (gst_videobalance_colorbalance_init): Implementing colorbalance
29966         interface.
29967         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
29968         list.
29969         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
29970         bug which was triggering a BadAccess X error when setting an overlay
29971         before pad was really negotiated.
29972         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
29973         Using the colorbalance type macro.
29974
29975 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29976
29977         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
29978         (gst_flacenc_chain):
29979           handle tags correctly
29980         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
29981           extract ID3v1 tags correctly
29982
29983 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29984
29985         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
29986         (plugin_init):
29987           Improve matroska typefinding for odd-typed headers...
29988
29989 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29990
29991         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
29992           Fix for using incremental number on padnames.
29993
29994 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29995
29996         * ext/divx/gstdivxdec.c:
29997         * ext/divx/gstdivxenc.c:
29998           Set category to divx4linux instead of divx (too generic).
29999         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30000         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30001         (gst_wavparse_loop), (gst_wavparse_change_state):
30002         * gst/wavparse/gstwavparse.h:
30003           fix parsing of WAV files with non-standard fmt-tag size and fix
30004           skipping of unrecognized chunks... Someone please fix this thing
30005           to use rifflib so all this is automated.
30006         * sys/v4l/Makefile.am:
30007         * sys/v4l2/Makefile.am:
30008           Add X_CFLAGS because we depend on X (for overlay).
30009
30010 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
30011
30012         * ext/mpeg2dec/gstmpeg2dec.c:
30013           Don't issue a timestamp unless we tagged the frame
30014           with a PTS.
30015
30016 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30017
30018         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30019           Query the audio element to get the time, not the clock. We're
30020           interested in the element's time here.
30021
30022 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30023
30024         * ext/aalib/gstaasink.c: (gst_aasink_chain):
30025         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30026         * ext/esd/esdsink.c: (gst_esdsink_chain):
30027         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30028         * ext/mas/massink.c: (gst_massink_chain):
30029         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30030         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30031         (gst_matroska_demux_parse_metadata):
30032         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30033         (gst_mpeg_parse_release_locks):
30034         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30035         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30036         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30037         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30038         (gst_osssink_change_state):
30039         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30040         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30041         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30042         (gst_xvideosink_release_locks):
30043         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30044           use element time.
30045         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30046         (gst_alsa_clock_stop):
30047         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30048         (gst_audio_clock_get_internal_time):
30049           simplify for use with new clocking code.
30050         * testsuite/alsa/Makefile.am:
30051         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30052           fix testsuite for new caps system
30053
30054 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30055
30056         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30057         * ext/flac/gstflacenc.c: (add_one_tag):
30058           length is already host endian, no need to convert. Fixes playback of
30059           tagged files on PPC. (bug #128384)
30060
30061 2004-01-13  Julien MOUTTE <julien@moutte.net>
30062
30063         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30064         colorbalance interface stating if it is hardware based or software
30065         based.
30066         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30067         Removing a trailing comma.
30068         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30069         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30070         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30071         the documentation seems to be wrong on the -1000 to 1000 interval.
30072
30073 2004-01-12  David Schleef  <ds@schleef.org>
30074
30075         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30076         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30077         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30078         Fix negotiation.  Add a bufferalloc function for the sink pad,
30079         and generally clean up some of the code.
30080
30081 2004-01-12  Julien MOUTTE <julien@moutte.net>
30082
30083         * gst-libs/gst/colorbalance/colorbalancechannel.c:
30084         (gst_color_balance_channel_dispose): Adding safety check in dispose
30085         method.
30086         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30087         (gst_xvimagesink_xcontext_clear),
30088         (gst_xvimagesink_interface_supported),
30089         (gst_xvimagesink_colorbalance_list_channels),
30090         (gst_xvimagesink_colorbalance_set_value),
30091         (gst_xvimagesink_colorbalance_get_value),
30092         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30093         Adding colorbalance interface support to set XV parameters such as
30094         HUE, BRIGHTNESS, CONTRAST, SATURATION.
30095         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30096         interface.
30097
30098 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30099
30100         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30101         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30102         (gst_audio_convert_init), (gst_audio_convert_set_property),
30103         (gst_audio_convert_get_property), (gst_audio_convert_chain),
30104         (gst_audio_convert_link),
30105         (gst_audio_convert_buffer_to_default_format),
30106         (gst_audio_convert_buffer_from_default_format), (plugin_init):
30107           - implement _getcaps and use it
30108           - improve linking
30109           - remove float caps since no float conversion is actually done
30110           - remove properties and arguments that were to be used for rate
30111             conversion
30112
30113 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30114
30115         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30116         (gst_audio_structure_set_int):
30117         * gst-libs/gst/audio/audio.h:
30118           add helper functions for _getcaps matching the standard audio
30119           templates
30120
30121 2004-01-12  David Schleef  <ds@schleef.org>
30122
30123         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30124         Test that pad is negotiated before getting its caps.
30125
30126 2004-01-12  Julien MOUTTE <julien@moutte.net>
30127
30128         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30129         analyzing the pads of an element the bin is mostly in READY state so
30130         no caps were negotiated. This helper function needs to work with
30131         _get_caps directly then. I was not freeing them though, added that to
30132         fix the mem leak.
30133
30134 2004-01-12  Julien MOUTTE <julien@moutte.net>
30135
30136         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30137         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30138         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30139         than the free_func.
30140
30141 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30142
30143         * sys/oss/gstossaudio.c: (plugin_init):
30144         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30145         * sys/oss/gstosselement.h:
30146           make an oss debugging category
30147           make failure more descriptive
30148
30149 2004-01-11  David Schleef  <ds@schleef.org>
30150
30151         * ext/ffmpeg/gstffmpeg.c:
30152         * ext/ffmpeg/gstffmpegcodecmap.c:
30153         * ext/ffmpeg/gstffmpegdec.c:
30154         * ext/ffmpeg/gstffmpegenc.c:
30155         * ext/ffmpeg/gstffmpegprotocol.c:
30156         * ext/gdk_pixbuf/gstgdkanimation.c:
30157         * ext/jpeg/gstjpeg.c:
30158         * ext/libpng/gstpng.c:
30159         * ext/mpeg2dec/perftest.c:
30160         * ext/speex/gstspeex.c:
30161         * gst-libs/gst/resample/dtos.c:
30162         * gst/intfloat/gstintfloatconvert.c:
30163         * gst/oneton/gstoneton.c:
30164         * gst/rtjpeg/RTjpeg.c:
30165         * gst/rtp/gstrtp.c:
30166         * sys/dxr3/dxr3init.c:
30167         * sys/glsink/gstgl_nvimage.c:
30168         * sys/glsink/gstgl_pdrimage.c:
30169         * sys/glsink/gstglsink.c:
30170         * testsuite/gst-lint:
30171         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30172
30173 2004-01-11  David Schleef  <ds@schleef.org>
30174
30175         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30176         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30177         * ext/gdk_pixbuf/gstgdkanimation.c:
30178         (gst_gdk_animation_iter_create_pixbuf):
30179         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30180         (gst_gdk_pixbuf_chain):
30181         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30182         * ext/jack/gstjack.c: (gst_jack_change_state):
30183         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30184         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30185         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30186         * gst/videofilter/gstvideofilter.c:
30187         (gst_videofilter_set_output_size):
30188         Remove all usage of gst_pad_get_caps(), and replace it with
30189         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30190
30191 2004-01-11  David Schleef  <ds@schleef.org>
30192
30193         * configure.ac:
30194         * ext/Makefile.am: Fixes to make ext/libcaca compile.
30195         * ext/divx/gstdivxdec.c:
30196         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30197         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30198         handle images that span multiple buffers.  Now work with both
30199         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30200         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30201         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30202         video/video.h changes
30203         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30204         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30205         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30206         of GstData free function.
30207         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30208         same.
30209
30210 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30211
30212         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30213         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30214         (gst_v4l2element_get_property):
30215         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30216           add norm, channel and frequency properties.
30217         * sys/v4l2/gstv4l2tuner.c:
30218           fixes for tuner interface changes
30219         * sys/v4l2/gstv4l2element.h:
30220         * sys/v4l2/gstv4l2src.c:
30221         * sys/v4l2/gstv4l2src.h:
30222         * sys/v4l2/v4l2src_calls.c:
30223         * sys/v4l2/v4l2src_calls.h:
30224           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30225
30226 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30227
30228         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30229         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30230         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30231         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30232         * gst-libs/gst/tuner/tuner.h:
30233           GObjects aren't const.
30234           Add find_by_name functions.
30235           Add checks to _changed functions.
30236         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30237         (gst_v4l_tuner_get_norm):
30238           Fixes for above.
30239
30240 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30241
30242         * gst-libs/gst/video/video.h:
30243           Fix caps template names to be understandable.
30244           Prefix everything with GST_VIDEO.
30245         * ext/aalib/gstaasink.c:
30246         * ext/divx/gstdivxdec.c:
30247         * ext/divx/gstdivxenc.c:
30248         * ext/gdk_pixbuf/gstgdkpixbuf.c:
30249         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30250         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30251         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30252         * ext/libcaca/gstcacasink.c:
30253         * ext/libpng/gstpngenc.c: (raw_caps_factory):
30254         * ext/snapshot/gstsnapshot.c:
30255         * ext/swfdec/gstswfdec.c:
30256         * ext/xvid/gstxviddec.c:
30257         * ext/xvid/gstxvidenc.c:
30258         * gst/chart/gstchart.c:
30259         * gst/deinterlace/gstdeinterlace.c:
30260         * gst/effectv/gsteffectv.c:
30261         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30262         * gst/goom/gstgoom.c:
30263         * gst/median/gstmedian.c:
30264         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30265         (gst_monoscope_srcconnect), (gst_monoscope_chain):
30266         * gst/overlay/gstoverlay.c:
30267         * gst/smooth/gstsmooth.c:
30268         * gst/smpte/gstsmpte.c:
30269         * gst/synaesthesia/gstsynaesthesia.c:
30270         * gst/videocrop/gstvideocrop.c:
30271         * gst/videodrop/gstvideodrop.c:
30272         * gst/y4m/gsty4mencode.c:
30273         * sys/qcam/gstqcamsrc.c:
30274         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30275           Make them work with new video.h file.
30276         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30277         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30278         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30279         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30280           Make it work with new buffer allocation system.
30281
30282 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30283
30284         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30285         pad_alloc_buffer implementation to use ->srcpad
30286         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30287         pad_alloc_buffer implementation to use ->srcpad
30288         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
30289         pad_alloc_buffer implementation to use ->srcpad
30290         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30291         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30292         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30293         a reference to everything we need.
30294         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30295         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30296         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30297         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30298         a reference to everything we need.
30299         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30300
30301 2004-01-11  David Schleef  <ds@schleef.org>
30302
30303         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30304         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30305         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30306         structure members.
30307         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30308         value during a resize/renegotiation.
30309         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30310         gst_pad_alloc_buffer();
30311         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30312         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30313         structure members.
30314         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30315         Fix for rename of buffer private structure members.
30316         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30317         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30318         Fix for rename of buffer private structure members.
30319         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30320         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30321         Fix for rename of buffer private structure members.
30322
30323 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
30324
30325         reviewed by: David Schleef <ds@schleef.org>
30326
30327         * gst/videofilter/Makefile.am:
30328         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
30329         from the patch by ds to fit in with recent make_filter changes.
30330
30331 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30332
30333         * configure.ac: Adding examples/switch/Makefile
30334         * examples/Makefile.am: Adding examples/switch
30335         * examples/switch/Makefile.am: Adding switcher example.
30336         * examples/switch/switcher.c: (got_eos), (idle_iterate),
30337         (switch_timer), (main): Adding an example demonstrating switch usage
30338         with 2 videotestsrc showing different patterns.
30339         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30340         (gst_switch_init): Fixing switch with the new caps system.
30341
30342 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30343
30344         * gst-libs/gst/video/video.h:
30345           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30346           They should probably be like
30347           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30348
30349 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30350
30351         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30352         (qtdemux_parse_trak):
30353           fix audio chunk size/timestamp calculation
30354
30355 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30356
30357         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30358           fix SVQ3 caps
30359
30360 2004-01-11  Steve Baker  <steve@stevebaker.org>
30361
30362         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30363         (gst_agingtv_base_init), (gst_agingtv_class_init),
30364         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30365         (gst_agingtv_set_property), (gst_agingtv_get_property):
30366         Port agingTV to videofilter
30367
30368 2004-01-09  Julien MOUTTE <julien@moutte.net>
30369
30370         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30371         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30372
30373 2004-01-09  Julien MOUTTE <julien@moutte.net>
30374
30375         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30376         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30377         * gst-libs/gst/xoverlay/xoverlay.c:
30378         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30379         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30380         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30381         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30382         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30383         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30384         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30385         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30386         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30387         interface implementation to handle xid being 0 and fix some bugs
30388         triggered by Benjamin's testcase.
30389         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30390         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30391         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30392         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30393         interface implementation to handle xid being 0 and fix some bugs
30394         triggered by Benjamin's testcase.
30395
30396 2004-01-09  David Schleef  <ds@schleef.org>
30397
30398         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
30399         mouse pointer events.  It works.
30400
30401 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30402
30403         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30404           Use explicit caps - fix capsnego.
30405         * ext/xvid/gstxviddec.c:
30406         * ext/xvid/gstxvidenc.c:
30407           Remove macro-inside-macro which caused compile errors.
30408         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30409           Error out if it's not a RIFF file. Else we error out without
30410           gst_element_error() which is not good...
30411
30412 2004-01-08  David Schleef  <ds@schleef.org>
30413
30414         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30415         Fix pad_link function to handle formats that ffmpeg returns
30416         as multiple caps structures.
30417         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
30418         Only complain if source buffer is _smaller_ than expected.
30419         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
30420         (gst_videoscale_handle_src_event): Resize navigation events
30421         when passing them upstream.
30422         * gst/videotestsrc/gstvideotestsrc.c:
30423         * gst/videotestsrc/gstvideotestsrc.h:
30424         * gst/videotestsrc/videotestsrc.c:
30425         * gst/videotestsrc/videotestsrc.h:
30426         Rewrite many of the buffer painting functions to handle odd
30427         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
30428         been verified to work with my video card.
30429         * testsuite/gst-lint:  Add check for elements calling
30430         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
30431
30432 2004-01-08  David Schleef  <ds@schleef.org>
30433
30434         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
30435         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
30436
30437 2004-01-08  Julien MOUTTE  <julien@moutte.net>
30438
30439         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
30440         configure event is not emiting the desired size signal. That fixes
30441         aspect ratio issues with gst-player.
30442
30443 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30444
30445         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
30446           Fix capsnego.
30447
30448 2004-01-08  Julien MOUTTE  <julien@moutte.net>
30449
30450         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
30451         public method to fire size signal.
30452
30453 2004-01-07  Julien MOUTTE  <julien@moutte.net>
30454
30455         * examples/gstplay/Makefile.am: Adding the interface library.
30456         * gst-libs/gst/play/Makefile.am: Adding the interface library.
30457         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
30458         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
30459         GST_IS_X_OVERLAY before signal connect.
30460         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
30461         Removing the have_video_size signal.
30462         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
30463         and associated public method.
30464         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30465         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
30466         signal.
30467         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
30468         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
30469         signal.
30470         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
30471         Using XOverlay public method to fire size signal.
30472
30473 2004-01-07  David Schleef  <ds@schleef.org>
30474
30475         * gst/videofilter/Makefile.am:
30476         * gst/videofilter/gstvideotemplate.c:
30477         * gst/videofilter/make_filter:
30478         Create gstvideoexample.c in a srcdir!=builddir friendly way.
30479         Convert make_filter to /bin/sh script.
30480
30481 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
30482
30483         * gst/modplug/gstmodplug.cc: fix element description
30484
30485 2004-01-07  Julien MOUTTE  <julien@moutte.net>
30486
30487         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
30488         (got_video_size): Adding some new lines in g_print calls.
30489         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30490         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
30491         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
30492         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
30493         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
30494         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
30495         Complete code review, reverting some stuff i disagree with, adding
30496         some fixes : time synchronization on invalid timestamps, renegotiation
30497         of private window.
30498         * sys/ximage/ximagesink.h:
30499         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
30500         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
30501         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
30502         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
30503         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
30504         (gst_xvimagesink_buffer_new),
30505         (gst_xvimagesink_navigation_send_event),
30506         (gst_xvimagesink_set_xwindow_id),
30507         (gst_xvimagesink_get_desired_size),
30508         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
30509         stuff i disagree with, adding some fixes : Renegotiation of private
30510         window, implementing get_desired_size.
30511
30512 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30513
30514         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
30515         (gst_afsink_handle_event):
30516         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
30517         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
30518         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
30519         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
30520         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
30521           Fix for instantiate-test (see core). Also remove dead code from
30522           jpegenc (which still needs fixing, but that's lower on my TODO
30523           list...).
30524         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
30525           Never return NULL as caps.
30526
30527 2004-01-07  David Schleef  <ds@schleef.org>
30528
30529         * configure.ac:
30530         * ext/Makefile.am:
30531         * ext/librfb/Makefile.am:
30532         * ext/librfb/gstrfbsrc.c:
30533         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
30534         is the protocol used by VNC.
30535
30536 2004-01-07  David Schleef  <ds@schleef.org>
30537
30538         * gst/videofilter/gstvideotemplate.c:
30539         * gst/videofilter/gstvideotemplate.h:
30540         * gst/videofilter/make_filter:
30541         Merge videotemplate header into source file.
30542         * gst/effectv/Makefile.am:
30543         * gst/effectv/gsteffectv.c: (plugin_init):
30544         * gst/effectv/gstwarp.c:
30545         Make warpTV a subclass of videofilter.
30546
30547 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30548
30549         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
30550           Add guard against invalid utf-8 conversions in mad. Just in case.
30551
30552 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30553
30554         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30555           Fix for bug shown by poisoning
30556
30557 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30558
30559         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30560         (gst_v4lmjpegsrc_buffer_free):
30561         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30562         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
30563         (gst_v4lsrc_buffer_free):
30564           Fix for removed bufferpools.
30565
30566 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
30567
30568         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30569         Fix caps negotiation.
30570
30571         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
30572         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
30573         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
30574         (dvdnavsrc_event):
30575         * ext/mpeg2dec/gstmpeg2dec.c:
30576         * gst-libs/gst/navigation/navigation.c:
30577         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
30578         * gst-libs/gst/navigation/navigation.h:
30579         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
30580         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
30581         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
30582         Super-simple first version of mouse and keyboard events. Clicking
30583         on a DVD menu now works, although it may not take you where you
30584         expected.
30585
30586         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30587         * gst/videotestsrc/gstvideotestsrc.c:
30588         (gst_videotestsrc_src_fixate):
30589         These fixate functions were broken - they never actually
30590         fixated :)
30591
30592 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30593
30594         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
30595         (gst_icecastsend_init):
30596           fix for new caps system.
30597         * gst-libs/gst/mixer/mixertrack.h:
30598         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
30599           Add 'master track' flag (for tools like ACME that only want to
30600           change the main volume).
30601
30602 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
30603
30604         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
30605         (gst_xvid_csp_to_caps):
30606         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
30607         * ext/xvid/gstxvidenc.c:
30608         ifdef out ARGB type when it isn't available
30609         in xvidcore 1.0.0beta2
30610
30611 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30612
30613         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30614           When we have received a new SCR right in the first buffer after
30615           a seek (so in the same cycle that handles the discont), we should
30616           handle the buffer instead of unreffing it, else we lose data.
30617
30618 2004-01-06  Iain <iain@prettypeople.org>
30619
30620         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
30621           buffer-frames caps too.
30622
30623         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
30624           caps that we need, don't destroy them all and rebuild them. And when
30625           creating src pads, use the src pad template rather than the sink...
30626
30627 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30628
30629         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
30630           Add pad to element *after* setting functions such as event handler.
30631           Without this, the scheduler (opt) will link pads, set the event
30632           handler from the default event function (dispatcher in gstpad.c)
30633           and *after* that, we will set our own event function, which will
30634           thus never be used (and thus mpegdemux doesn't handle events).
30635
30636 2004-01-04  David Schleef  <ds@schleef.org>
30637
30638         Fix the fixate functions to handle new prototype:
30639         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30640         * gst/videotestsrc/gstvideotestsrc.c:
30641         (gst_videotestsrc_src_fixate):
30642         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30643         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
30644         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
30645
30646 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30647
30648         * sys/ximage/ximagesink.h:
30649         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30650         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
30651         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
30652         (gst_ximagesink_xoverlay_init):
30653           assorted fixes to make (re)embedding work
30654         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
30655         (gst_ximagesink_get_desired_size):
30656           implement desired size additions to XOverlay
30657
30658 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30659
30660         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
30661         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
30662         (gst_x_overlay_got_desired_size):
30663         * gst-libs/gst/xoverlay/xoverlay.h:
30664           Add optional "desired size" signal and querying.
30665
30666 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30667
30668         * gst/matroska/matroska-demux.c:
30669         (gst_matroska_demux_parse_blockgroup):
30670           Fix EBML-laced block parsing. Diffs are relative to previous
30671           lace, not the first lace. Thanks to Mosu from the Matroska
30672           team for detecting this.
30673         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30674         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
30675         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
30676         (gst_wavparse_change_state):
30677         * gst/wavparse/gstwavparse.h:
30678           Quickfix for capsnego.
30679
30680 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30681
30682         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
30683           Fix indenting, fix pad creation.
30684
30685 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30686
30687         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
30688         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
30689         (gst_xviddec_sink_link):
30690           Implement src_getcaps() so proper size caps is negotiated.
30691
30692 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30693
30694         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
30695           Finish flac decoder on EOS. See #116178.
30696
30697 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30698
30699         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
30700         (gst_matroska_demux_add_stream):
30701         * gst/matroska/matroska-ids.h:
30702           Add getcaps() function to fix capsnego...
30703
30704 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30705
30706         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
30707         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
30708         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30709           Fix more integer overflows. Again, see #126967.
30710
30711 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30712
30713         * ext/mpeg2dec/gstmpeg2dec.c:
30714           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
30715           #130416.
30716
30717 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30718
30719         * configure.ac:
30720         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
30721         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
30722         * ext/xvid/gstxvid.h:
30723         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
30724         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
30725         (gst_xviddec_src_link), (gst_xviddec_sink_link),
30726         (gst_xviddec_change_state):
30727         * ext/xvid/gstxviddec.h:
30728         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
30729         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
30730         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
30731         (gst_xvidenc_link), (gst_xvidenc_set_property),
30732         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
30733         * ext/xvid/gstxvidenc.h:
30734           Update xvid plugin to latest xvid (1.0.0-beta3) API.
30735
30736 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30737
30738         * gst/rtp/rtp-packet.c:
30739           Add sys/types.h include, since OS X doesn't define in_addr_t
30740           in netinet/in.h, like it does on Linux (see #129600).
30741
30742 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
30743
30744         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
30745
30746         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
30747           Correct logic of dispose function (see #129306).
30748
30749 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30750
30751         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
30752         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30753         (gst_mpeg_parse_init):
30754         * gst/mpegstream/gstmpegparse.h:
30755           Remove clock (which was never provided, i.e. dead code), and
30756           also fix integer overflows at high PTS values (see #126967).
30757
30758 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30759
30760         * ext/flac/gstflacdec.c:
30761         * ext/libpng/gstpngenc.h:
30762         * ext/mikmod/gstmikmod.h:
30763           OS X fixes (see #126628).
30764
30765 2004-01-02  David Schleef  <ds@schleef.org>
30766
30767         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
30768         (gst_alsa_src_base_init): Remove bogus "src" request pad.
30769         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
30770         (gst_mpeg_parse_class_init): Move pad template registration
30771         to class_init, since the derived class (mpegdemux) doesn't
30772         want them.
30773
30774 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30775
30776         * sys/ximage/Makefile.am:
30777         * sys/xvideo/Makefile.am:
30778         * sys/xvimage/Makefile.am:
30779           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
30780           after installation (see #127664).
30781
30782 2004-01-02  David Schleef  <ds@schleef.org>
30783
30784         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
30785         (gst_ffmpegenc_connect):  Negotiation fixes.
30786         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
30787         Remove inappropriate gst_caps_free().
30788         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30789         Reenable Ronald's internal resize code, since the core handles
30790         it correctly now.
30791
30792 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30793
30794         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
30795         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
30796         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
30797           Fix pad template stuff.
30798
30799 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30800
30801         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
30802         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
30803           fix signed integer reading/writing.
30804
30805 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30806
30807         * ext/alsa/README:
30808           Remove outdated document
30809
30810 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
30811
30812         * gst/cutter/gstcutter.c: (gst_cutter_init):
30813           src pad was being created twice - oops.
30814
30815 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30816
30817         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30818           Comment out internal resize. It doesn't handle the resulting
30819           XEvent internally, does another try_set_caps() which leads to
30820           a really nice loop.
30821           Real fix will come when Julien and Dave are awake. ;).
30822
30823 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30824
30825         * ext/mpeg2enc/gstmpeg2enc.cc:
30826           fix const/nonconst compile issue.
30827
30828 2004-01-02  David Schleef  <ds@schleef.org>
30829
30830         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
30831         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
30832         Add fixate function and a check for bad formats.
30833
30834 2004-01-01  David Schleef  <ds@schleef.org>
30835
30836         Negotiation fixes:
30837         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
30838         (gst_audiofilter_init):
30839         * gst/debug/efence.c: (gst_efence_init):
30840         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
30841         (gst_deinterlace_init):
30842         * gst/volume/gstvolume.c: (volume_connect):
30843
30844 2004-01-01  David Schleef  <ds@schleef.org>
30845
30846         Convert elements to use gst_pad_use_explicit_caps() where
30847         appropriate:
30848         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
30849         * ext/audiofile/gstafparse.c: (gst_afparse_init),
30850         (gst_afparse_open_file):
30851         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
30852         (gst_afsrc_open_file):
30853         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
30854         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
30855         (gst_ffmpegdec_chain):
30856         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30857         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
30858         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
30859         (gst_gdk_pixbuf_chain):
30860         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
30861         (gst_jpegdec_chain):
30862         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
30863         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
30864         (gst_mikmod_negotiate):
30865         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
30866         (gst_mpeg2dec_negotiate_format):
30867         * ext/mpeg2enc/gstmpeg2enc.cc:
30868         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30869         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
30870         (gst_speexdec_sinkconnect):
30871         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
30872         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
30873         (gst_vorbisfile_new_link):
30874         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
30875         (gst_ac3parse_chain):
30876         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
30877         (gst_asf_demux_setup_pad):
30878         * gst/auparse/gstauparse.c: (gst_auparse_init),
30879         (gst_auparse_chain):
30880         * gst/id3/gstid3types.c: (gst_id3types_loop):
30881         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30882         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
30883         (mp1videoparse_parse_seq):
30884         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
30885         (bpf_from_header):
30886         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
30887         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
30888         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
30889         (gst_mpeg_parse_send_data):
30890         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30891         (gst_qtdemux_add_stream):
30892         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
30893         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30894         (gst_wavparse_parse_fmt):
30895
30896 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30897
30898         * configure.ac:
30899           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
30900           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
30901           it therefore uses the wrong include paths. Too bad... Note
30902           that 1.6.1.93 is not release yet. ;).
30903           Also add a check for mplex, which is now using the lib'ified
30904           mplex from mjpegtools, too.
30905         * ext/ffmpeg/gstffmpegcodecmap.c:
30906           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
30907           issues. I don't think ffmpeg handles 3ivx correctly, so this
30908           probably won't work. But it won't hurt either.
30909         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
30910         (gst_ffmpegdec_chain):
30911         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
30912         (gst_ffmpegenc_chain_audio):
30913           Fix memleak in audio encoding. Close codec if open fails, this
30914           calls the cleanup routines so we can re-use the context.
30915         * ext/mpeg2enc/gstmpeg2enc.cc:
30916           Fix pad template names/types, fix memory issue with getcaps().
30917         * ext/mpeg2enc/gstmpeg2encoder.cc:
30918         * ext/mpeg2enc/gstmpeg2encoder.hh:
30919           Fix compile issue with new caps system (const thingy).
30920         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30921         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
30922           We read a first frame right on initing, so that we have a caps
30923           when we init the output. This caps is cached in padprivate and
30924           read as first frame.
30925         * ext/mplex/Makefile.am:
30926         * ext/mplex/gstmplex.cc:
30927         * ext/mplex/gstmplex.h:
30928         * ext/mplex/gstmplex.hh:
30929         * ext/mplex/gstmplexibitstream.cc:
30930         * ext/mplex/gstmplexibitstream.hh:
30931         * ext/mplex/gstmplexjob.cc:
30932         * ext/mplex/gstmplexjob.hh:
30933         * ext/mplex/gstmplexoutputstream.cc:
30934         * ext/mplex/gstmplexoutputstream.hh:
30935           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
30936           had issues, didn't do capsnego, supported only a subset of the
30937           mplex features and required a mplex fork in our local CVS. Plus
30938           that it worked agaist a very old mplex version. Rewriting was
30939           faster than updating it.
30940         * gst-libs/ext/Makefile.am:
30941         * gst-libs/ext/mplex/INSTRUCT:
30942         * gst-libs/ext/mplex/Makefile.am:
30943         * gst-libs/ext/mplex/README:
30944         * gst-libs/ext/mplex/TODO:
30945         * gst-libs/ext/mplex/ac3strm_in.cc:
30946         * gst-libs/ext/mplex/audiostrm.hh:
30947         * gst-libs/ext/mplex/audiostrm_out.cc:
30948         * gst-libs/ext/mplex/aunit.hh:
30949         * gst-libs/ext/mplex/bits.cc:
30950         * gst-libs/ext/mplex/bits.hh:
30951         * gst-libs/ext/mplex/buffer.cc:
30952         * gst-libs/ext/mplex/buffer.hh:
30953         * gst-libs/ext/mplex/fastintfns.h:
30954         * gst-libs/ext/mplex/format_codes.h:
30955         * gst-libs/ext/mplex/inputstrm.cc:
30956         * gst-libs/ext/mplex/inputstrm.hh:
30957         * gst-libs/ext/mplex/lpcmstrm_in.cc:
30958         * gst-libs/ext/mplex/mjpeg_logging.cc:
30959         * gst-libs/ext/mplex/mjpeg_logging.h:
30960         * gst-libs/ext/mplex/mjpeg_types.h:
30961         * gst-libs/ext/mplex/mpastrm_in.cc:
30962         * gst-libs/ext/mplex/mpegconsts.cc:
30963         * gst-libs/ext/mplex/mpegconsts.h:
30964         * gst-libs/ext/mplex/mplexconsts.hh:
30965         * gst-libs/ext/mplex/multplex.cc:
30966         * gst-libs/ext/mplex/outputstream.hh:
30967         * gst-libs/ext/mplex/padstrm.cc:
30968         * gst-libs/ext/mplex/padstrm.hh:
30969         * gst-libs/ext/mplex/stillsstream.cc:
30970         * gst-libs/ext/mplex/stillsstream.hh:
30971         * gst-libs/ext/mplex/systems.cc:
30972         * gst-libs/ext/mplex/systems.hh:
30973         * gst-libs/ext/mplex/vector.cc:
30974         * gst-libs/ext/mplex/vector.hh:
30975         * gst-libs/ext/mplex/videostrm.hh:
30976         * gst-libs/ext/mplex/videostrm_in.cc:
30977         * gst-libs/ext/mplex/videostrm_out.cc:
30978         * gst-libs/ext/mplex/yuv4mpeg.cc:
30979         * gst-libs/ext/mplex/yuv4mpeg.h:
30980         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
30981         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
30982           We don't fork mjpegtools' mplex in our CVS anymore.
30983         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
30984         (gst_avi_demux_add_stream):
30985         * gst/avi/gstavidemux.h:
30986           Add getcaps() function for proper caps nego. This makes some
30987           parts of AVI playback/reading work.
30988         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
30989           Resize window on new capsnego. This is probably wrong, but
30990           I'm still committing it because with current capsnego, the
30991           first successfull capsnego is auto-fixated, therefore rounded
30992           down to the lowest values in the caps. this results in a 16x16
30993           XWindow that is not reized when real capsnego finishes.
30994           Dave, I see more cases of this, do you know a proper solution?
30995         * tools/gst-launch-ext.in:
30996           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
30997
30998 2003-12-31  David Schleef  <ds@schleef.org>
30999
31000         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31001         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31002           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31003
31004 2003-12-30  David Schleef  <ds@schleef.org>
31005
31006         * ext/ffmpeg/gstffmpegcolorspace.c:
31007         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31008         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31009         (gst_ffmpegcsp_chain): Negotiation fixes
31010         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31011         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31012         (gst_audio_convert_link), (gst_audio_convert_channels):
31013         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31014         (gst_audioscale_link), (gst_audioscale_get_buffer),
31015         (gst_audioscale_chain): Negotiation fixes
31016         * gst/audioscale/gstaudioscale.h:
31017         * gst/videofilter/gstvideofilter.c:
31018         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31019         (gst_videofilter_link), (gst_videofilter_init),
31020         (gst_videofilter_set_output_size), (gst_videofilter_setup),
31021         (gst_videofilter_find_format_by_structure):
31022         * gst/videofilter/gstvideofilter.h: Negotiation fixes
31023         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31024         (gst_videoscale_link):
31025         * gst/videoscale/videoscale.c: (videoscale_get_structure),
31026         (videoscale_find_by_structure), (gst_videoscale_setup):
31027         * gst/videoscale/videoscale.h: Negotiation fixes
31028         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31029         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31030         function, restrict resizing to a multiple of 4 (hack until
31031         everyone supports odd sizes correctly).
31032
31033 2003-12-29  Colin Walters  <walters@verbum.org>
31034
31035         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31036         signed.
31037
31038 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
31039
31040         * ext/sndfile/gstsf.c: (gst_sf_loop):
31041           Fix warning about discarding const qualifier
31042
31043 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
31044
31045         * gst/cutter/gstcutter.c:
31046         * gst/videoscale/gstvideoscale.c:
31047         * gst/volenv/gstvolenv.c:
31048         * gst-libs/gst/audio/audio.c:
31049         * gst-libs/gst/video/video.c:
31050           Fix warnings
31051
31052 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31053
31054         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31055           Don't send ALSA debugging to stderr.
31056         * ext/alsa/gstalsa.h:
31057           Use GST_WARNING instead of g_warning when ALSA functions fail.
31058
31059 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31060
31061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31062           Free XVAdapterInfo correctly.
31063
31064 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31065
31066         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31067         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31068           Make id3tag use correct caps nego.
31069
31070 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
31071
31072         * ext/ivorbis/vorbis.c:
31073         * ext/ivorbis/vorbisenc.h:
31074         * ext/ivorbis/vorbisfile.c:
31075           Modify so that it uses the new caps things
31076
31077 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31078
31079         * testsuite/spider/spider1.c: (main):
31080         * testsuite/spider/spider2.c: (main):
31081         * testsuite/spider/spider3.c: (main):
31082           Make tests compile again. They probably don't work.
31083
31084 2003-12-24  Colin Walters  <walters@verbum.org>
31085
31086         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31087         we can't fixate the caps anymore.
31088
31089 2003-12-23  David Schleef  <ds@schleef.org>
31090
31091         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31092         * sys/oss/gstosssink.c: (gst_osssink_init),
31093         (gst_osssink_sink_fixate): Add fixate function.
31094
31095 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31096
31097         * ext/ffmpeg/gstffmpegcodecmap.c:
31098         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31099         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31100         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31101         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31102         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31103         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31104         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31105           fix typo in RGB masks, and move back to "old" colorspace
31106           capsnego code until whoever wrote this new crap has actually
31107           tested it so that it works.
31108           And yes, this works, keep it that way please.
31109
31110 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31111
31112         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31113         (gst_divxdec_init), (gst_divxdec_negotiate):
31114         * ext/divx/gstdivxdec.h:
31115         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31116         (gst_divxenc_init):
31117         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31118         (gst_faac_sinkconnect), (gst_faac_srcconnect):
31119         * ext/mpeg2enc/gstmpeg2enc.cc:
31120         * ext/mpeg2enc/gstmpeg2encoder.cc:
31121         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31122         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31123         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31124         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31125         (dxr3spusink_init):
31126         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31127         (dxr3videosink_init):
31128           Fix caps breakage after Dave's caps branch merge.
31129
31130 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31131
31132         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31133           Fix for 24bpp display.
31134
31135 2003-12-23  Colin Walters  <walters@verbum.org>
31136
31137         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31138         a GnomeVFSHandle directly.
31139
31140 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31141
31142         * gst/volume/Makefile.am:
31143         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31144         (volume_base_init), (volume_init):
31145           Reenable volume element and fix to work with new caps stuff.
31146           Rhythmbox needs this.
31147
31148 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31149
31150         * gst/qtdemux/qtdemux.c: (plugin_init):
31151           qtdemux requires bytestream
31152
31153 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31154
31155         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31156           Fix remaining caps handling errors due to CAPS merge.
31157
31158 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31159
31160         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31161         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31162         (gst_faad_srcconnect):
31163           Port to new caps system.
31164
31165 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31166
31167         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31168         (got_video_size), (main): using g_print instead of g_message.
31169         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31170         signal which was not emitted because of "switch" element added to the
31171         bin but not connected. (Removing from the bin temporarily)
31172
31173 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31174
31175         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31176         find X development files. I don't understand the previous tests and
31177         they fail on my debian/ppc unstable. This one works.
31178         * examples/gstplay/player.c: (main): Set the pipeline to READY before
31179         exiting.
31180         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31181         (gst_play_set_video_sink), (gst_play_set_audio_sink),
31182         (gst_play_set_visualization): Add some safety checks in set_ methods
31183         and state_change. This was throwing some ugly CRITICAL messages when
31184         pipeline was getting disposed and casts were failing.
31185
31186 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31187
31188         * configure.ac:
31189           Improve mpeg2enc detection. This is for distributions that do
31190           ship mjpegtools, but without mpeg2enc. Also does object check
31191           for might there ever be ABI incompatibility.
31192         * ext/mpeg2enc/gstmpeg2enc.cc:
31193           Add Andrew as second maintainer (he's helping me), and also add
31194           an error if no caps was set. This happens if I pull before capsnego
31195           and that's something I should solve sometime else.
31196         * gst/matroska/matroska-demux.c:
31197         (gst_matroska_demux_parse_blockgroup):
31198           Fix time parsing.
31199         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31200         (gst_matroska_mux_track_header):
31201           Add caps to templates.
31202         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31203           Add mpegversion=1 to prevent confusion with MPEG/AAC.
31204         * gst/mpegstream/gstmpegdemux.c:
31205           Remove layer since it causes warnings about unfixed caps.
31206         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31207           Fix obvious typo (we error out if caps were set, we should of
31208           course error out if *no* caps were set).
31209         * sys/oss/gstosselement.c: (gst_osselement_convert):
31210           Fix format conversion, we confused bits/bytes.
31211         * sys/oss/gstosselement.h:
31212           Improve documentation for 'bps'.
31213         * sys/v4l/TODO:
31214           Remove stuff about plugins that need removing - this was done
31215           ages ago.
31216         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31217         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31218         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31219         (gst_v4lsrc_src_query):
31220         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31221         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31222           Add get_query_types(), get_formats() and query() functions.
31223
31224 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
31225
31226         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31227           * moved CVS to freedesktop.org