gst/subparse/: Add support for MPL2 subtitle format (#413799).
[platform/upstream/gstreamer.git] / ChangeLog
1 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
2
3         Patch by: Kamil Pawlowski  <kamilpe gmail com>
4
5         * gst/subparse/Makefile.am:
6         * gst/subparse/gstsubparse.c:
7         (gst_sub_parse_data_format_autodetect),
8         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
9         (gst_subparse_type_find):
10         * gst/subparse/gstsubparse.h:
11         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
12         * gst/subparse/mpl2parse.h:
13           Add support for MPL2 subtitle format (#413799).
14
15 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16
17         * configure.ac:
18           We require core CVS for the new buffer metadata copy functions.
19
20 2007-03-09  Wim Taymans  <wim@fluendo.com>
21
22         * gst-libs/gst/tag/gstid3tag.c:
23         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
24         Fixes #414496.
25
26 2007-03-09  Wim Taymans  <wim@fluendo.com>
27
28         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
29         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
30         Improve adapter usage and comments.
31
32 2007-03-09  Wim Taymans  <wim@fluendo.com>
33
34         * ext/pango/gsttextrender.c: (gst_text_render_chain):
35         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
36         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
37         Use new metadata copy function.
38
39         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
40         (gst_ffmpegcsp_transform):
41         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
42         Basetransform copied the metadata for us.
43
44 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
45
46         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
47         (gst_text_overlay_video_event):
48           Some more logging. Only accept newsegment events in TIME format and
49           send a WARNING message if they are not in TIME format.
50
51         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
52         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
53         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
54         * gst/subparse/gstsubparse.h:
55           No need to allocate GstSegment structure dynamically, just put it
56           into the instance structure; ignore newsegment events in BYTE
57           format and in particular don't let it overwrite our saved TIME
58           segment from the last seek.
59
60 2007-03-09  Michael Smith  <msmith@fluendo.com>
61
62         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
63           Replace AC3 typefinder with one that isn't terrible, and actually
64           works usefully.
65
66 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
67
68         * gst/audioconvert/gstaudioconvert.c:
69         (gst_audio_convert_transform):
70           fix error category and translatable string
71           
72
73 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
74
75         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
76         * pkgconfig/gstreamer-plugins-base.pc.in:
77           Fix up utils => pbutils here too.
78
79 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
80
81         * gst/subparse/gstsubparse.c: (handle_buffer):
82           Break out of loop in chain function as soon as possible if we get
83           a non-OK flow return.
84
85 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
86
87         * tests/check/elements/alsa.c: (GST_START_TEST):
88         Unref the mixer if the state change fails too (if the
89         alsa devices are inaccessible, for example)
90
91 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
92
93         * tests/check/Makefile.am:
94         Don't test libvisual elements in the states check, because libvisual
95         seems to leak internally.
96
97         Re-enable the alsa and states tests now that there's new suppressions
98         in gst.supp.
99
100         * tests/check/elements/alsa.c: (GST_START_TEST):
101         Don't leak the alsamixer we instantiated.
102
103 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
104
105         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
106         (gst_ximagesink_change_state), (gst_ximagesink_reset),
107         (gst_ximagesink_finalize):
108         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
109         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
110         Move some cleanup stuff from the state change handler into a _reset()
111         function that can be called from _finalize(). This ensures that things
112         get freed even if (for some reason) the NULL->READY state transition
113         fails in the parent class.
114         Even if a parent state change fails, process our downward state change
115         logic instead of bailing out early.
116         Free the correct xcontext pointer in ximagesink's xcontext_clear.
117
118 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
119
120         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
121         Extra log line.
122
123         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
124         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
125         Use pango_font_description_set_family_static instead of 
126         pango_font_description_set_family to save a string copy (it was
127         leaking due to the strdup anyway)
128
129         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
130         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
131         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
132         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
133         Chain up in finalize.
134
135 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
136
137         * gst-libs/gst/interfaces/mixertrack.c:
138         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
139         (gst_mixer_track_set_property):
140           API: add "untranslated-label" property which should be set by
141           implementations at construct time (#414645).
142
143         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
144         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
145           Set "untranslated-label" when constructing mixer track objects.
146
147         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
148           Unit test to check the above.
149
150 2007-03-07  Wim Taymans  <wim@fluendo.com>
151
152         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
153         Fix confusing debug message.
154
155 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
156
157         * gst-plugins-base.doap:
158         update doap file with new version
159
160 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
161
162         * configure.ac:
163         Back to CVS
164
165 === release 0.10.12 ===
166
167 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
168
169         * configure.ac:
170           releasing 0.10.12, "Zombie Horde"
171
172 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
173
174         * configure.ac:
175         Bump version to 0.10.11.4 pre-release
176
177 2007-03-06  Wim Taymans  <wim@fluendo.com>
178
179         * gst-libs/gst/audio/gstbaseaudiosink.c:
180         (gst_base_audio_sink_async_play):
181         Fix regression that made GStreamer skip the first samples of audio.
182         Fixes #414684.
183
184 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
185
186         * configure.ac:
187         Bump version to 0.10.11.3 pre-release
188
189 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
190
191         * po/POTFILES.in:
192           Update paths for the rename from utils to pbutils to fix the build.
193
194 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
195
196         * gst-libs/gst/pbutils/Makefile.am:
197           Change directory to install headers in from gst/utils to gst/pbutils
198           as well.
199
200 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
201
202         * configure.ac:
203         * docs/libs/gst-plugins-base-libs-docs.sgml:
204         * docs/libs/gst-plugins-base-libs-sections.txt:
205         * gst-libs/gst/Makefile.am:
206         * gst-libs/gst/interfaces/mixer.c:
207         * gst-libs/gst/pbutils/Makefile.am:
208         * gst-libs/gst/pbutils/descriptions.c:
209         (gst_pb_utils_get_source_description),
210         (gst_pb_utils_get_sink_description),
211         (gst_pb_utils_get_decoder_description),
212         (gst_pb_utils_get_encoder_description),
213         (gst_pb_utils_get_element_description),
214         (gst_pb_utils_add_codec_description_to_tag_list),
215         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
216         * gst-libs/gst/pbutils/descriptions.h:
217         * gst-libs/gst/pbutils/install-plugins.c:
218         * gst-libs/gst/pbutils/install-plugins.h:
219         * gst-libs/gst/pbutils/missing-plugins.c:
220         (gst_missing_uri_source_message_new),
221         (gst_missing_uri_sink_message_new),
222         (gst_missing_element_message_new),
223         (gst_missing_decoder_message_new),
224         (gst_missing_encoder_message_new),
225         (gst_missing_plugin_message_get_description):
226         * gst-libs/gst/pbutils/missing-plugins.h:
227         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
228         * gst-libs/gst/pbutils/pbutils.h:
229         * gst-libs/gst/utils/Makefile.am:
230         * gst-libs/gst/utils/base-utils.c:
231         * gst-libs/gst/utils/base-utils.h:
232         * gst-libs/gst/utils/descriptions.c:
233         * gst-libs/gst/utils/descriptions.h:
234         * gst-libs/gst/utils/install-plugins.c:
235         * gst-libs/gst/utils/install-plugins.h:
236         * gst-libs/gst/utils/missing-plugins.c:
237         * gst-libs/gst/utils/missing-plugins.h:
238         * gst-plugins-base.spec.in:
239         * gst/playback/Makefile.am:
240         * gst/playback/gstdecodebin.c:
241         * gst/playback/gstdecodebin2.c:
242         * gst/playback/gstplaybasebin.c: (setup_subtitle),
243         (gen_source_element):
244         * gst/playback/gstplaybin.c: (plugin_init):
245         * tests/check/Makefile.am:
246         * tests/check/libs/pbutils.c: (GST_START_TEST),
247         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
248         * tests/check/libs/utils.c:
249           rename utils to pbutils
250
251 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
252
253         * docs/plugins/Makefile.am:
254         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
255         * docs/plugins/gst-plugins-base-plugins-sections.txt:
256         * docs/plugins/inspect/plugin-decodebin2.xml:
257         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
258         Add documentation for decodebin2 that indicates that the API
259         is still unstable.
260
261 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
262
263         * configure.ac:
264         Update to 0.10.11.2 (0.10.12 pre-release)
265
266 2007-03-01  Wim Taymans  <wim@fluendo.com>
267
268         * gst-libs/gst/audio/gstbaseaudiosink.c:
269         (gst_base_audio_sink_async_play):
270         base time is irrelevant here.
271
272 2007-03-01  Wim Taymans  <wim@fluendo.com>
273
274         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
275         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
276         Improve debugging.
277
278         * gst-libs/gst/audio/gstbaseaudiosink.c:
279         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
280         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
281         Improve latency and clock slaving calculations.
282         Improve slave clock calibration.
283
284         * gst-libs/gst/audio/gstringbuffer.c:
285         (gst_ring_buffer_commit_full):
286         When we are asked to render N sample to 0 bytes, return N.
287
288 2007-03-01  Wim Taymans  <wim@fluendo.com>
289
290         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
291         (gst_alsasink_write), (gst_alsasink_reset):
292         * ext/alsa/gstalsasink.h:
293         Remove unused dispose function.
294         Rename lock to not interfere with alsasrc lock.
295
296         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
297         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
298         (gst_alsasrc_read), (gst_alsasrc_reset):
299         * ext/alsa/gstalsasrc.h:
300         Implement finalize function.
301         Use lock to protect alsa access.
302         Implement _reset.
303         Fine tune sw params.
304
305 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
306
307         * configure.ac:
308           Convert to new AG_GST style.
309
310 2007-02-28  Wim Taymans  <wim@fluendo.com>
311
312         Patch by: Ed Catmur <ed at catmur dot co dot uk>
313
314         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
315         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
316         Fix race condition when rapidly switching visualisations in playbin.
317         Fixes #401029.
318
319 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
320
321         * tests/check/Makefile.am:
322         Include local stuff before system installed things in LDFLAGS and
323         CFLAGS.
324
325 2007-02-28  Wim Taymans  <wim@fluendo.com>
326
327         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
328         Improve debugging.
329
330 2007-02-28  Wim Taymans  <wim@fluendo.com>
331
332         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
333         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
334         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
335         Fix duration and timestamping, taking latency into account.
336         Implement latency query.
337
338 2007-02-28  Wim Taymans  <wim@fluendo.com>
339
340         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
341         (gst_audio_clock_new):
342         Fix clock name.
343
344         * gst-libs/gst/audio/gstbaseaudiosink.c:
345         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
346         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
347         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
348         (gst_base_audio_src_create):
349         Improve latency query code.
350         Use proper clock names.
351
352 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
353
354         * tests/check/generic/states.c: (GST_START_TEST):
355           Copy the states.c test from core again
356         * tests/check/Makefile.am:
357           ignore cdio and cdparanoiasrc
358
359 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
360
361         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
362         (double_hq), (audio_convert_get_func_index), (check_default),
363         (audio_convert_prepare_context), (audio_convert_convert):
364           Also make valgrind happy and avoid copying data in some cases.
365
366 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
367
368         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
369         (double_hq), (audio_convert_get_func_index),
370         (audio_convert_prepare_context), (audio_convert_convert):
371         * gst/audioconvert/gstaudioconvert.c:
372         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
373         (gst_audio_convert_transform_caps):
374         * tests/check/elements/audioconvert.c: (GST_START_TEST),
375         (audioconvert_suite):
376           Don't run inplace if that overwrites source data as we go. Add more
377           tests. Fixes #339837 even more.
378
379 2007-02-27  Julien MOUTTE  <julien@moutte.net>
380
381         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
382         (msg_segment_done): Fix various seeking bugs (Slider was not
383         updating when doing a non flushing seek, Reverse playback 
384         on segment seek was wrong).
385
386 2007-02-26  Wim Taymans  <wim@fluendo.com>
387
388         * tests/examples/seek/seek.c: (stop_seek):
389         When we stop scrubbing, don't leave the pipeline PLAYING when we
390         requested a PAUSED state.
391
392 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
393
394         Patch by: René Stadler <mail at renestadler de>
395
396         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
397           Parse date strings in vorbis comments that have an invalid (zero)
398           month or day (#410396).
399
400         * tests/check/libs/tag.c: (GST_START_TEST):
401           Test case for the above.
402
403 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
404
405         Patch by: Loïc Minier <lool+gnome at via ecp fr>
406
407         * configure.ac:
408         * ext/alsa/Makefile.am:
409         * gst/audiotestsrc/Makefile.am:
410           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
411
412 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
413
414         * gst/playback/gstplaybin.c:
415           Improve docs: point out that the application needs to assist playbin
416           with buffering.
417
418 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
419
420         * gst-libs/gst/utils/install-plugins.c:
421         * gst-libs/gst/utils/missing-plugins.c:
422         * tests/check/libs/utils.c: (missing_msg_check_getters):
423           Change GStreamer marker prefix in detail string from 'gstreamer.net'
424           to just 'gstreamer'. Document the caps string component of the
425           decoder/encoder detail a bit better, since not everyone will be
426           familiar with the GStreamer media type/caps system (but they better
427           enjoy nested itemized lists).
428
429 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
430
431         * gst-libs/gst/netbuffer/gstnetbuffer.c:
432         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
433           Fix copying of GstNetBuffer (would crash before, or at least lead to
434           invalid memory access, #410772), for now by copying the GstBuffer copy
435           code from the core over here so we can copy the GstBuffer fields on a
436           provided buffer instance (of type GstNetBuffer in this case). Would be
437           better to fix this with some support by the core though (and in the long
438           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
439
440         * tests/check/Makefile.am:
441           Enable unit test for GstNetBuffer.
442
443 2007-02-22  Andy Wingo  <wingo@pobox.com>
444
445         * gst-libs/gst/audio/gstbaseaudiosink.c
446         (gst_base_audio_sink_init): Disable pull-mode activation until we
447         figure out how to make audio sinks go to PLAYING.
448
449 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
450
451         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
452         (double_hq), (audio_convert_get_func_index),
453         (audio_convert_prepare_context), (audio_convert_convert):
454         * gst/audioconvert/audioconvert.h:
455         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
456         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
457         * gst/audioconvert/gstchannelmix.h:
458         * tests/check/elements/audioconvert.c: (GST_START_TEST):
459           Add float as an intermediate format, as well as float mixing. Enable
460           test that was failing before. Fixes #339837
461
462 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
463
464         * tests/examples/seek/seek.c: (do_seek):
465         Undo the previous commit: -1 as a stop time implies that the stop
466         time is the end of file, clearing any previously configured segment.
467
468 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
469
470         * tests/examples/seek/seek.c: (do_seek):
471         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
472
473 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
474
475         * gst/volume/gstvolume.c: (volume_process_int16),
476         (volume_process_int16_clamp), (volume_set_caps):
477           Unbreak volume, value remains gint.
478
479 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
480
481         * gst/volume/gstvolume.c: (volume_choose_func),
482         (volume_update_real_volume), (gst_volume_set_volume),
483         (gst_volume_init), (volume_process_double), (volume_process_float),
484         (volume_process_int16), (volume_process_int16_clamp),
485         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
486         * gst/volume/gstvolume.h:
487           Extend float audio support (double) and some int->uint cleanups.
488
489 2007-02-20  Edward Hervey  <edward@fluendo.com>
490
491         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
492         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
493         (sort_end_pads), (gst_decode_group_expose),
494         (gst_decode_group_hide):
495         Don't free groups from the streaming threads. Just put them aside and
496         free them in dispose.
497
498 2007-02-20  Edward Hervey  <edward@fluendo.com>
499
500         * gst/playback/gstdecodebin2.c: (connect_element),
501         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
502         (sort_end_pads), (gst_decode_group_expose):
503         Handle dynamic pads within groups.
504         Sort pads before exposing them in order to make playbin happy.
505         There still is a race with the multiqueue filling up. This should be
506         solved separately.
507         Fixes #398721
508
509 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
510
511         * gst-libs/gst/utils/base-utils.c:
512         * gst-libs/gst/utils/descriptions.c:
513         * gst-libs/gst/utils/install-plugins.c:
514         * gst-libs/gst/utils/missing-plugins.c:
515           Some more docs (and descriptions for two subtitle formats).
516
517 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
518
519         * gst-libs/gst/audio/audio.c:
520           Fix documentation.
521
522 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
523
524         Patch by: Yves Lefebvre  <ivanohe abacom com>
525
526         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
527           Don't leak caps. Fixes #408278.
528
529 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
530
531         * ext/cdparanoia/gstcdparanoiasrc.h:
532         * ext/ogg/gstoggdemux.h:
533         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
534         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
535         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
536         * gst-libs/gst/audio/audio.h:
537         * gst-libs/gst/audio/gstaudiofilter.h:
538         * gst-libs/gst/interfaces/videoorientation.h:
539         * gst/adder/gstadder.h:
540           More docs coverage and some ChangeLog surgery (add missing names)
541
542 2007-02-15  Wim Taymans  <wim@fluendo.com>
543
544         * sys/ximage/ximagesink.c:
545         (gst_ximagesink_calculate_pixel_aspect_ratio):
546         * sys/xvimage/xvimagesink.c:
547         (gst_xvimagesink_calculate_pixel_aspect_ratio):
548         Small constifications.
549
550 2007-02-15  Wim Taymans  <wim@fluendo.com>
551
552         * gst-libs/gst/audio/gstbaseaudiosink.c:
553         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
554         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
555         (gst_base_audio_sink_async_play),
556         (gst_base_audio_sink_change_state):
557         Answer latency query.
558         Use configured latency when syncing.
559         Fix clock slaving.
560
561         * gst-libs/gst/audio/gstbaseaudiosrc.c:
562         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
563         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
564         Fix possible memleak.
565         Implement latency query.
566         Small cleanups.
567
568 2007-02-15  Wim Taymans  <wim@fluendo.com>
569
570         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
571         Ignore errors in reset, these are not fatal. They also grab the element
572         lock which is already taking when this function is called. Fixes
573         #405451.
574
575 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
576
577         * configure.ac:
578           Remove 'tests/examples/xerror/Makefile' from output files again.
579
580 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
581
582         * configure.ac:
583         * docs/plugins/Makefile.am:
584           Also crossref against gst-plugins-base-libs.
585
586 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
587
588         * configure.ac:
589         * docs/libs/Makefile.am:
590         * docs/plugins/Makefile.am:
591           Add crossreferences to glib/gobject/gstream docs.
592
593         * gst-libs/gst/audio/audio.h:
594           Source formatting.
595
596         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
597           Add own debug category.
598
599 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
600
601         Patch by: René Stadler <mail at renestadler de>
602
603         * gst-libs/gst/tag/gstvorbistag.c:
604           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
605           (#403597).
606
607 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
608
609         * gst/playback/gstplaybasebin.c: (setup_source):
610           When we have external subtitles and wait for the subtitle decodebin
611           to get up and running, we set up a (sync) bus handler for the
612           subtitle decodebin, so we can stop waiting when it posts an error
613           message. However, we should do that before we set the subtitle
614           decodebin's state to playing, otherwise things are racy and we might
615           miss error messages posted before we had a chance to set up the bus.
616           This should finally fix totem hanging on .txt pseudo-subtitle files.
617           
618 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
619
620         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
621           Use gst_gdouble_to_guint64 for conversions.
622         * win32/common/config.h.in:
623           Add a define for GST_INSTALL_PLUGINS_HELPER
624         * win32/common/libgstaudio.def:
625         * win32/common/libgstcdda.def:
626         * win32/common/libgstnetbuffer.def:
627         * win32/common/libgstrtp.def:
628         * win32/common/libgutils.def:
629           Add new exported functions.
630         * win32/vs6/gst_plugins_base.dsw:
631         * win32/vs6/libgstdecodebin.dsp:
632         * win32/vs6/libgstnetbuffer.dsp:
633         * win32/vs6/libgstplaybin.dsp:
634         * win32/vs6/libgstrtp.dsp:
635         * win32/vs6/libgstvorbis.dsp:
636         * win32/vs6/libgstcdda.dsp:
637         * win32/vs6/libgstgdp.dsp:
638         * win32/vs6/libgstutils.dsp:
639           Update and add new project files.
640
641 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
642
643         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
644         (subrip_remove_unhandled_tags), (parse_subrip):
645           For SubRip (.srt) subtitles, ignore all markup tags we don't
646           handle (like font tags, for example).
647
648         * tests/check/elements/subparse.c:
649           Add test for this.
650
651 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
652
653         * gst/playback/gstdecodebin.c: (add_fakesink),
654         (gst_decode_bin_change_state):
655         * gst/playback/gstdecodebin2.c: (add_fakesink),
656         (gst_decode_bin_change_state):
657           Don't error out if there is no fakesink in the NULL to READY state
658           change, since when decodebin is re-used, we're only adding the
659           fakesink element in READY to PAUSED.
660
661         * tests/check/elements/decodebin.c:
662         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
663         (decodebin_suite):
664           Minimal unit test to make sure we can use the same decodebin
665           instance twice (at least with audiotestsrc input).
666
667 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
668
669         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
670           Try to get devic-name from device string first, and from handle only
671           as fallback (seems to yield better results and is more robust
672           against buggy probing code on the application side).
673
674 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
675
676         Based on patch by: Julien Puydt <julien.puydt at laposte net>
677
678         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
679         (gst_alsa_find_device_name):
680         * ext/alsa/gstalsa.h:
681         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
682         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
683           Improve device-name detection a bit, especially in the case where
684           the device is not actually open (#405020, #405024). Move common code
685           into gstalsa.c instead of duplicating it.
686
687 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
688
689         * gst/audioconvert/gstaudioconvert.c:
690           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
691
692 2007-02-06  Julien MOUTTE  <julien@moutte.net>
693
694         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
695         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
696         (gst_xvimagesink_interface_supported),
697         (gst_xvimagesink_probe_get_properties),
698         (gst_xvimagesink_probe_probe_property),
699         (gst_xvimagesink_probe_needs_probe),
700         (gst_xvimagesink_probe_get_values),
701         (gst_xvimagesink_property_probe_interface_init),
702         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
703         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
704         (gst_xvimagesink_get_type):
705         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
706         for XVAdaptors so that one can choose the adaptor to use with 
707         gstreamer-properties.
708
709 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
710
711         * gst/audioconvert/gstaudioconvert.c:
712           Also mention that a conversion from double to float is suboptimal still.
713
714 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
715
716         * gst-libs/gst/audio/gstaudiofilter.c:
717         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
718           Clear our formats structure and free the caps contained in it when
719           shutting down.
720
721 2007-02-05  Andy Wingo  <wingo@pobox.com>
722
723         * gst-libs/gst/audio/gstbaseaudiosink.c
724         (gst_base_audio_sink_callback): Update basesink->offset so that we
725         pull monotonically increasing offsets instead of, um, seeking back
726         to 0 each time. Fixes alsasrc ! alsasink!
727
728 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
729
730         * gst/videoscale/gstvideoscale.c:
731           A width and height of 1 makes us crash, so increase minimum size to
732           2x2 pixels until someone feels like fixing this (#404512).
733
734 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
735
736         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
737           Add small test to make sure request pads are cleaned up properly
738           even if oggmux never changes state out of NULL.
739
740 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
741
742         * tests/check/libs/utils.c: (GST_START_TEST):
743           Fix unit test. Turns out things work much better when you
744           NULL-terminate string arrays. Should make p5 build bot happy again.
745
746 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
747
748         * gst-libs/gst/audio/Makefile.am:
749         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
750         (gst_audio_filter_template_base_init),
751         (gst_audio_filter_template_class_init),
752         (gst_audio_filter_template_init),
753         (gst_audio_filter_template_set_property),
754         (gst_audio_filter_template_get_property),
755         (gst_audio_filter_template_setup),
756         (gst_audio_filter_template_filter),
757         (gst_audio_filter_template_filter_inplace), (plugin_init):
758           Oops, forgot to commit fixed-up example.
759
760 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
761
762         * docs/libs/gst-plugins-base-libs-sections.txt:
763         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
764         (gst_audio_filter_class_init), (gst_audio_filter_init),
765         (gst_audio_filter_set_caps),
766         (gst_audio_filter_class_add_pad_templates):
767         * gst-libs/gst/audio/gstaudiofilter.h:
768           Port GstAudioFilter to 0.10. This change technically breaks
769           API and ABI (and thus also every library developer's heart),
770           but seems justifiable on the grounds that the base class was
771           completely unusable before (ie. would crash immediately when
772           actually used). Fixes #403963 (and eventually also #403572).
773           Also document all of this a bit.
774
775 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
776
777         * gst-libs/gst/utils/install-plugins.c:
778         (gst_install_plugins_spawn_child):
779         * tests/check/libs/utils.c:
780         (test_base_utils_install_plugins_do_callout):
781           Lowering log level to see why things fail on the p5 build bot;
782           fix some typos in unit test messages.
783
784 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
785
786         * tests/check/libs/utils.c:
787         (test_base_utils_install_plugins_do_callout):
788           Don't hard-code temp directory for test helper; use GLib functions
789           to write out file and do error checking etc.
790
791 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
792
793         * gst-libs/gst/utils/Makefile.am:
794         * gst-libs/gst/utils/base-utils.h:
795         * gst-libs/gst/utils/install-plugins.c:
796         (gst_install_plugins_context_set_xid),
797         (gst_install_plugins_context_new),
798         (gst_install_plugins_context_free),
799         (gst_install_plugins_get_helper),
800         (gst_install_plugins_spawn_child),
801         (gst_install_plugins_return_from_status),
802         (gst_install_plugins_installer_exited),
803         (gst_install_plugins_async), (gst_install_plugins_sync),
804         (gst_install_plugins_return_get_name),
805         (gst_install_plugins_installation_in_progress):
806         * gst-libs/gst/utils/install-plugins.h:
807           API: add API for applications to initiate installation of missing
808           plugins, ie. gst_install_plugins_async() primarily.
809           Based on libgimme-codec by Ryan Lortie.
810
811         * configure.ac:
812           Add --with-install-plugins-helper configure option so distros can specify
813           the path of the helper script or program to call when plugin installation
814           is requested (distros: please do any argument munging in this helper
815           script instead of patching GStreamer to pass arguments differently
816           to another program directly).
817
818         * docs/libs/gst-plugins-base-libs-docs.sgml:
819         * docs/libs/gst-plugins-base-libs-sections.txt:
820           Build and document new API.
821
822         * tests/check/libs/utils.c: (result_cb),
823         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
824         (libgstbaseutils_suite):
825           Some simple checks for the new API.
826
827 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
828
829         * tests/check/elements/audioconvert.c: (test_float_conversion):
830           Add small test for 32bit float <=> 64bit float conversion (works
831           only one way so far, 32=>64 produces structured noise).
832
833 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
834
835         * gst/audioconvert/gstaudioconvert.c:
836         (set_structure_widths_32_and_64), (make_lossless_changes):
837           We don't support floats with a width of 40, 48 or 56 bits.
838
839 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
840
841         * gst/audioconvert/audioconvert.c: (float), (double),
842         (audio_convert_get_func_index):
843         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
844         (make_lossless_changes):
845           Support for 64-bit float audio in audioconvert (#339837)
846
847 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
848
849         Patch by: Holger Wansing  <linux wansing-online de>
850
851         * po/LINGUAS:
852         * po/de.po:
853           Add German translation (#352069).
854
855 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
856
857         reviewed by: Wim Taymans <wim@fluendo.com>
858
859         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
860         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
861         Use newly added GstCollectPads API to free the allocated resources in
862         the GstOggPad structures (#402393).
863
864 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
865
866         * gst/playback/gstplaybin.c: (gen_vis_element):
867           Add audioresample+audioconvert in front of the visualisation
868           element, so that elements like libvisual 0.4 that don't support all
869           samplerates can work.
870
871           Fixes: #402505
872
873 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
874
875         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
876         (gst_play_base_bin_get_streaminfo_value_array):
877           Take some locks and make a copy of the streaminfo value array we
878           maintain while holding the lock, so that the application can
879           retrieve the stream-info as a value array in a thread-safe way.
880
881 2007-01-30  Wim Taymans  <wim@fluendo.com>
882
883         * gst/audioconvert/gstaudioconvert.c:
884         Don't fail on 0 sized buffers. Fixes #396835.
885
886 2007-01-29  David Schleef  <ds@schleef.org>
887
888         * gst/typefind/gsttypefindfunctions.c:
889           Detect BBCD as video/x-dirac, so we can play raw dirac
890           streams.
891
892 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
893
894         * ext/theora/theoraenc.c: (theora_enc_chain):
895           Check return value of theora_encode_header(), or we might try to
896           allocate a random number of bytes. theora_encode_header() can fail
897           if libtheora has been compiled with encoding support disabled.
898           Fixes #398110.
899
900 2007-01-29  Wim Taymans  <wim@fluendo.com>
901
902         * tests/check/gst/.cvsignore:
903         Do as buildbot says.
904
905 2007-01-29  Wim Taymans  <wim@fluendo.com>
906
907         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
908         Fix strides in libvisual. Gst uses X strides.
909         Inspired by: <ed at catmur dot co dot uk> and 
910         <tim at centricular dot net>
911         Fixes #401118.
912
913 2007-01-27  Wim Taymans  <wim@fluendo.com>
914
915         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
916         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
917         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
918         (gst_ogg_demux_perform_seek),
919         (gst_ogg_demux_bisect_forward_serialno),
920         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
921         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
922         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
923         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
924         * ext/ogg/gstoggdemux.h:
925         Properly propagate streaming errors when we are scanning the file for
926         chains so that we don't crash when shut down. Might fix some crashers
927         when quickly switching oggs in RB such as #332503 and #378436.
928
929 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
930
931         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
932           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
933           error code as well.
934
935 2007-01-25  Wim Taymans  <wim@fluendo.com>
936
937         * gst/playback/gstplaybasebin.c: (remove_source):
938         Don't try to disconnect a signal from a finalized object.
939
940 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
941
942         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
943           Cast lock macro parameters to make sure we're actually accessing the
944           lock member at the right class level. Free list itself in _dispose()
945           as well and NULL it in case dispose gets called multiple times.
946
947 2007-01-25  Edward Hervey  <edward@fluendo.com>
948
949         * gst/playback/gstdecodebin2.c:
950         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
951         Free GstDecodeGroups no longer used.
952         (gst_decode_group_expose):
953         Don't unlock too many times !
954         (deactivate_free_recursive):
955         Free iterator once we're done with it.
956         Fix for recursively deactivating elements (stop at ghostpads).
957
958 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
959
960         * gst/playback/gstplaybin.c: (handoff):
961           Fix up caps on the frame buffer before we save it and potentially
962           make it accessible to other threads via g_object_get; also use
963           gst_buffer_replace() instead of gst_mini_object_replace().
964
965 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
966
967         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
968           Make getting the current frame thread-safe.
969
970 2007-01-25  Edward Hervey  <edward@fluendo.com>
971
972         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
973         (gst_decode_group_new), (gst_decode_group_free):
974         Set queues to bigger sizes to cope with HD contents.
975         Fix some mutex freeing and add comment about MT safe methods.
976
977 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
978
979         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
980         (gst_text_overlay_text_event):
981           Don't unnecessarily ref (and then leak) upstream events if the text
982           pad is not linked. Fixes #399948.
983
984         * tests/check/gst-plugins-base.supp:
985           Add suppression for pango on edgy/x86 for textoverlay test.
986
987 2007-01-24  Wim Taymans  <wim@fluendo.com>
988
989         * gst-libs/gst/rtp/gstrtpbuffer.h:
990         Add some more fixed payloads.
991
992 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
993
994         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
995           Error out properly if we get an error from libogg while reading the
996           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
997
998 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
999
1000         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1001           Don't leak mutex.
1002
1003         * tests/check/elements/playbin.c:
1004         (test_sink_usage_video_only_stream),
1005         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1006         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1007         (test_missing_suburisource_handler),
1008         (test_missing_primary_decoder), (playbin_suite):
1009           Run all tests once with decodebin and once with decodebin2.
1010           One test does not pass yet with decodebin2.
1011
1012 2007-01-23  Edward Hervey  <edward@fluendo.com>
1013
1014         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1015         Fix the cases where oggmux doesn't properly figure out that all
1016         sinkpads have gone EOS, and therefore doesn't push out the remaining
1017         buffers and the final EOS event.
1018         Fixes #363379
1019
1020 2007-01-23  Julien MOUTTE  <julien@moutte.net>
1021
1022         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1023         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1024         Don't lock on navigation event push, just on keysym to string.
1025         Fixes #397673 again.
1026
1027 2007-01-22  Edward Hervey  <edward@fluendo.com>
1028
1029         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1030         (get_current_group), (group_demuxer_event_probe),
1031         (gst_decode_group_expose), (deactivate_free_recursive),
1032         (gst_decode_group_free):
1033         Cleanups.
1034         Don't forget to emit 'no-more-pads' once a group is exposed.
1035         Cleanup elements from a DecodeGroup once we remove it.
1036         Protect call to gst_decode_group_expose() with the decodebin lock.
1037
1038 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1039
1040         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1041         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1042         Looking at Xorg code i can't figure out if that XKeysymToString
1043         function is thread sensible or not. Lock it just in case as
1044         recommended by Radek Doulik <rodo at ximian dot com>.
1045
1046 2007-01-22  Julien MOUTTE  <julien@moutte.net>
1047
1048         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1049         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1050         Lock that X Call as well. Fixes #397673.
1051
1052 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1053
1054         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1055           Don't go into an endless loop if the file starts with 00 00 01 2X,
1056           like quicktime redirect files might. Fixes #396042.
1057
1058         * tests/check/Makefile.am:
1059         * tests/check/gst/.cvsignore:
1060         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1061         (typefindfunctions_suite):
1062           Add unit test for the above.
1063
1064 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1065
1066         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1067           On second thought, use "depth" field rather than "bpp" field.
1068
1069 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1070
1071         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1072           Camtasia caps apparently need a bpp field (#398875).
1073
1074 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1075
1076         * gst/playback/gstplaybasebin.c: (setup_subtitle),
1077         (gen_source_element), (gst_play_base_bin_change_state):
1078           Attempt at a better error message in case we don't have the required
1079           URI handler installed; post missing-plugin message also when we're
1080           missing an URI handler for the subtitle URI; clean up properly also
1081           when an error occurs and we never made it to PAUSED state.
1082
1083         * tests/check/elements/playbin.c: (GST_START_TEST),
1084         (playbin_suite):
1085           Check that we're also getting a missing-plugin messsage for a
1086           missing subtitle URI handler (and clean up properly).
1087
1088 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1089
1090         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1091           Plug a few reference leaks.
1092
1093 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1094
1095         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1096           Lower probability a bit if the marker isn't right at the start,
1097           to decrease the chance of false positives.
1098
1099 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1100
1101         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1102           Small mpeg2 system stream typefinding improvement: make typefinder
1103           probe a bit into the stream instead of just looking for a marker
1104           at the beginning. Fixes #397810.
1105
1106 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
1107
1108         * gst/audioconvert/gstchannelmix.c:
1109           Remove compatibility cruft for prehistoric GLib versions.
1110
1111 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
1112
1113         * gst/playback/Makefile.am:
1114         * gst/playback/gstdecodebin.c: (close_pad_link):
1115         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1116         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1117         (gst_play_base_bin_handle_message_func), (unknown_type):
1118           Let decodebin be the element to post missing-plugin messages for
1119           missing decoders (rather than playbin); make playbin implement
1120           GstBin::handle_message so we can suppress missing-plugin messages
1121           for types we're not handling on purpose (don't want to bring up an
1122           installer in those cases).
1123
1124 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
1125
1126         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1127         * gst-libs/gst/tag/gstvorbistag.c:
1128         (gst_tag_list_to_vorbiscomment_buffer):
1129         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1130           Fix potentially unaligned access (#397207).
1131
1132 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1133
1134         * tests/examples/seek/seek.c: (set_scale), (update_scale),
1135         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1136         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1137         (main):
1138           Allow to toggle looping while it plays. Fix callback prototype. Clean
1139           up code a bit more. Add copyright header.
1140
1141 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
1142
1143         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1144           Red and blue mask was swapped (spotted by Dan Williams).
1145
1146 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
1147
1148         * gst-libs/gst/tag/gstid3tag.c:
1149         * gst-libs/gst/tag/gstvorbistag.c:
1150           Use new beats-per-minute tag from core.
1151
1152 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
1153
1154         * po/POTFILES.in:
1155           Add new files with translatable strings, so they actually make it
1156           into the template file one day.
1157
1158 2007-01-12  Andy Wingo  <wingo@pobox.com>
1159
1160         * gst-libs/gst/audio/gstbaseaudiosink.c
1161         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1162         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1163         stuff, as the base class handles this now. Actually tell the ring
1164         buffer to start.
1165         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1166         How did this work before? Maybe I'm not as awesome a programmer as
1167         I think.
1168
1169         * gst-libs/gst/audio/gstbaseaudiosrc.c
1170         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1171         of a pad function.
1172
1173 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1174
1175         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1176           Remove more fields so that the application can better blacklist
1177           formats that have been tried before.
1178
1179 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1180
1181         * gst-libs/gst/audio/mixerutils.h:
1182           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1183           used when compiling with c++ compilers as well.
1184
1185 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1186
1187         * gst/typefind/gsttypefindfunctions.c:
1188           Fix comment.
1189
1190 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
1191
1192         * gst/playback/gstplaybin.c: (post_missing_element_message),
1193         (gen_video_element), (gen_text_element), (gen_audio_element),
1194         (gen_vis_element):
1195           Post missing-plugin messages also when we error out because
1196           converters, textoverlay or auto*sinks are missing (#161922).
1197
1198 2007-01-10  Wim Taymans  <wim@fluendo.com>
1199
1200         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1201         (is_demuxer_element), (new_caps):
1202         * gst/playback/gstplaybasebin.c: (source_new_pad):
1203         Fix the case where we try to ref a NULL element when we delay a link
1204         because of unfixed caps.
1205         Set the state of autoplugged decodebins to PAUSED.
1206         RTSP now works in playbin, we can remove it from the blacklist.
1207
1208 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1209
1210         * gst/playback/Makefile.am:
1211         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1212         (unknown_type), (setup_subtitle), (gen_source_element):
1213         * gst/playback/gstplaybin.c: (plugin_init):
1214           Post missing-plugin messages on the bus for missing sources and
1215           missing decoders/demuxers/depayloaders; fix error code used when
1216           we're missing an URI handler source; for media types that we are not
1217           handling on purpose at the moment, don't print "don't know how to
1218           handle xyz" messages to the terminal or post missing-plugin
1219           messages on the bus.
1220
1221         * tests/check/elements/playbin.c: (create_playbin),
1222         (GST_START_TEST), (gst_codec_src_uri_get_type),
1223         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1224         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1225         (gst_codec_src_init_type), (gst_codec_src_base_init),
1226         (gst_codec_src_create), (gst_codec_src_class_init),
1227         (gst_codec_src_init), (plugin_init), (playbin_suite):
1228           Add some tests for the missing-plugin stuff.
1229
1230 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1231
1232         * configure.ac:
1233         * gst-libs/gst/Makefile.am:
1234         * gst-libs/gst/utils/Makefile.am:
1235         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1236         * gst-libs/gst/utils/base-utils.h:
1237         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1238         (find_format_info), (caps_are_rtp_caps),
1239         (gst_base_utils_get_source_description),
1240         (gst_base_utils_get_sink_description),
1241         (gst_base_utils_get_decoder_description),
1242         (gst_base_utils_get_encoder_description),
1243         (gst_base_utils_get_element_description),
1244         (gst_base_utils_add_codec_description_to_tag_list),
1245         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1246         * gst-libs/gst/utils/descriptions.h:
1247         * gst-libs/gst/utils/missing-plugins.c:
1248         (missing_structure_get_type), (copy_and_clean_caps),
1249         (gst_missing_uri_source_message_new),
1250         (gst_missing_uri_sink_message_new),
1251         (gst_missing_element_message_new),
1252         (gst_missing_decoder_message_new),
1253         (gst_missing_encoder_message_new),
1254         (missing_structure_get_string_detail),
1255         (missing_structure_get_caps_detail),
1256         (gst_missing_plugin_message_get_installer_detail),
1257         (gst_missing_plugin_message_get_description),
1258         (gst_is_missing_plugin_message):
1259         * gst-libs/gst/utils/missing-plugins.h:
1260           API: add new libgstbaseutils library with functions
1261           - to create and parse missing-plugins messages
1262           - that provide (translated) descriptions for caps/decoders/sources/etc.
1263           Closes #392393.
1264
1265         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1266         * pkgconfig/gstreamer-plugins-base.pc.in:
1267           Add new lib.
1268
1269         * docs/libs/gst-plugins-base-libs-docs.sgml:
1270         * docs/libs/gst-plugins-base-libs-sections.txt:
1271           Generate docs for new lib and API.
1272
1273         * tests/check/Makefile.am:
1274         * tests/check/libs/.cvsignore:
1275         * tests/check/libs/utils.c: (missing_msg_check_getters),
1276         (GST_START_TEST), (libgstbaseutils_suite):
1277           Add some basic unit tests.
1278
1279 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1280
1281         * ext/ogg/Makefile.am:
1282           Dist gstoggdemux.h to fix 'make distcheck'.
1283
1284         * sys/v4l/Makefile.am:
1285           Fix 'make distcheck' even more.
1286
1287 2007-01-09  Wim Taymans  <wim@fluendo.com>
1288
1289         * docs/plugins/Makefile.am:
1290         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1291         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1292         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1293         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1294         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1295         (gst_ogg_demux_perform_seek):
1296         * ext/ogg/gstoggdemux.h:
1297         Added docs.
1298         Add some more comments.
1299         Small cleanups.
1300
1301 2007-01-09  Wim Taymans  <wim@fluendo.com>
1302
1303         * ext/theora/theoradec.c:
1304         * ext/vorbis/vorbisdec.c:
1305         * gst-libs/gst/audio/gstringbuffer.c:
1306         (gst_ring_buffer_commit_full):
1307         * gst-libs/gst/audio/gstringbuffer.h:
1308         * gst-libs/gst/rtp/gstrtpbuffer.c:
1309         * gst-libs/gst/tag/gstvorbistag.c:
1310         Small documentation updates/fixes
1311
1312 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1313
1314         * configure.ac:
1315           Require core CVS HEAD for Andy's basesrc/sink API additions.
1316
1317 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1318
1319         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
1320
1321         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1322         (plugin_init):
1323           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1324           on flac.sf.net (there appear to be other versions of the first
1325           ogg page in the wild) (#391365).
1326
1327 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1328
1329         * configure.ac:
1330           Check if localtime_r() is available.
1331
1332         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1333           If localtime_r() is not available, fall back to localtime(). Should
1334           fix build on MingW (#393310).
1335
1336 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
1337
1338         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1339         * gst/subparse/gstsubparse.h:
1340           Remove spurious 1000 subtrahend when calculating the timestamp from
1341           the frame number and the frame rate . Also, use the frames/second
1342           value specified in the first line of the file, if one is specified
1343           there. Should fix #357503.
1344
1345         * tests/check/elements/subparse.c: (do_test),
1346         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1347         (subparse_suite):
1348           Add some basic unit tests for the microdvd subtitle format.
1349
1350 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1351
1352         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1353         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1354         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1355         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1356         (gst_xvimagesink_set_xwindow_id),
1357         (gst_xvimagesink_set_event_handling),
1358         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1359         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1360         Patch by : Young-Ho Cha <ganadist at chollian dot net>
1361         Fixes : #390076.
1362         Add an adaptor property to select a specific XV adaptor.
1363         * sys/xvimage/xvimagesink.h:
1364
1365 2007-01-07  Julien MOUTTE  <julien@moutte.net>
1366
1367         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1368         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1369         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1370         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1371         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1372         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1373         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1374         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1375         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1376         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1377         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1378         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1379         Use flow_lock much more to protect every access to xwindow.
1380         Try to catch erros while creating images in case some drivers are
1381         just generating an XError when the requested image is too big.
1382         Should fix : #354698, #384008, #384060.
1383         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1384         Implement some stress testing of setting window xid.
1385
1386 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
1387
1388         * win32/common/libgsaudio.def:
1389           Add new exported function.
1390         * win32/common/libgstogg.dsp:
1391           Add gstoggaviparse.c to the build.
1392         * win32/common/libgstvideoscale.dsp:
1393           Add vs_4tap.c to the build.
1394         * win32/common/libgstvorbis.dsp:
1395           Add vorbistag.c to the build.
1396         
1397 2007-01-06  Andy Wingo  <wingo@pobox.com>
1398
1399         * gst-libs/gst/audio/gstbaseaudiosink.c
1400         (gst_base_audio_sink_class_init)
1401         (gst_base_audio_sink_init): 
1402         (gst_base_audio_sink_activate_pull): Add an activate_pull function
1403         to baseaudiosink, and tell basesink that we can work in pull mode.
1404         This way the ring buffer thread drives the pipeline directly, if
1405         pull mode is possible. There is some lingering nastiness regarding
1406         capsnego, however.
1407         (gst_base_audio_sink_callback): Implement the callback to pull
1408         data. This interface is a bit light, though -- it should get a
1409         GstFlowReturn return value at least.
1410
1411 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1412
1413         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1414         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1415         * gst/playback/gstdecodebin2.c:
1416         (gst_decode_group_check_if_blocked):
1417           Printf format and missing argument fixes.
1418
1419 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
1420
1421         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1422         (gst_ogm_parse_change_state):
1423         Activate pads before adding them to the element.
1424
1425 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1426
1427         * tests/examples/seek/scrubby.c: (main):
1428         * tests/examples/seek/seek.c: (main):
1429           Call g_thread_init() first thing in main() (see #391278).
1430
1431 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1432
1433         * tests/check/Makefile.am:
1434         * tests/check/libs/.cvsignore:
1435         * tests/check/libs/netbuffer.c: (GST_START_TEST),
1436         (netbuffer_suite):
1437           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1438           for the time being, since it's broken, see #393099.
1439
1440 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
1441
1442         * tests/check/Makefile.am:
1443           Update to use GST_PLUGINS_BASE_CFLAGS as well.
1444
1445 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
1446
1447         * configure.ac:
1448           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1449           so that GST_BASE_CFLAGS can go inbetween them, making sure
1450           we use uninstalled gst-libs headers
1451         * docs/libs/Makefile.am:
1452         * ext/alsa/Makefile.am:
1453         * ext/cdparanoia/Makefile.am:
1454         * ext/gnomevfs/Makefile.am:
1455         * ext/libvisual/Makefile.am:
1456         * ext/ogg/Makefile.am:
1457         * ext/theora/Makefile.am:
1458         * ext/vorbis/Makefile.am:
1459         * gst-libs/gst/audio/Makefile.am:
1460         * gst-libs/gst/cdda/Makefile.am:
1461         * gst-libs/gst/interfaces/Makefile.am:
1462         * gst-libs/gst/riff/Makefile.am:
1463         * gst-libs/gst/rtp/Makefile.am:
1464         * gst-libs/gst/tag/Makefile.am:
1465         * gst/adder/Makefile.am:
1466         * gst/audioconvert/Makefile.am:
1467         * gst/audiorate/Makefile.am:
1468         * gst/audioresample/Makefile.am:
1469         * gst/playback/Makefile.am:
1470         * gst/tcp/Makefile.am:
1471         * gst/videoscale/Makefile.am:
1472         * gst/volume/Makefile.am:
1473         * sys/ximage/Makefile.am:
1474         * sys/xvimage/Makefile.am:
1475         * tests/icles/Makefile.am:
1476           adapt
1477
1478 2007-01-04  Julien MOUTTE  <julien@moutte.net>
1479
1480         * gst-libs/gst/interfaces/xoverlay.c:
1481         (gst_x_overlay_handle_events):
1482         * gst-libs/gst/interfaces/xoverlay.h:
1483         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1484         (gst_ximagesink_set_xwindow_id),
1485         (gst_ximagesink_set_event_handling),
1486         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1487         (gst_ximagesink_get_property), (gst_ximagesink_init),
1488         (gst_ximagesink_class_init):
1489         * sys/ximage/ximagesink.h:
1490         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1491         (gst_xvimagesink_set_xwindow_id),
1492         (gst_xvimagesink_set_event_handling),
1493         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1494         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1495         (gst_xvimagesink_class_init):
1496         * sys/xvimage/xvimagesink.h:
1497         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1498         Add a method to the XOverlay interface to allow disabling of 
1499         event handling in x[v]imagesink elements. This will let X events
1500         propagate to parent windows which can be usefull in some cases.
1501         Be carefull that the application is then responsible of pushing
1502         navigation events and expose events to the video sink.
1503         Fixes: #387138.
1504
1505 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
1506
1507         * gst-libs/gst/tag/gstvorbistag.c:
1508         * tests/check/libs/tag.c: (GST_START_TEST):
1509           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1510           (fixes #392070).
1511
1512 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
1513
1514         * configure.ac:
1515         * docs/Makefile.am:
1516         * docs/design/Makefile.am:
1517           Dist design docs.
1518
1519 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1520
1521         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1522         typo. Fixes: #390063.
1523
1524 2006-12-27  Julien MOUTTE  <julien@moutte.net>
1525
1526         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1527         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1528         caps leak.
1529         * win32/common/config.h: Updated.
1530
1531 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
1532
1533         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1534         (setup_gdpdepay_streamheader):
1535         * tests/check/elements/gdppay.c: (cleanup_gdppay),
1536         (setup_gdppay_streamheader):
1537           Fix the dp tests, but activating the pads for the streamheader tests
1538           too and cleaning up conditionaly
1539
1540 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
1541
1542         * gst/ffmpegcolorspace/avcodec.h:
1543         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1544         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1545         (gst_ffmpegcsp_avpicture_fill):
1546         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1547         (img_get_alpha_info):
1548         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1549         other end of the word. Fixes: #387073.
1550
1551         Add some inconsequential branch hints in a couple of places.
1552
1553 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
1554
1555         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1556         (gst_ffmpeg_caps_to_smpfmt):
1557           The "signed" field in raw audio caps is of boolean type, trying to
1558           extract the value with _get_int() will fail (fix to keep in sync with
1559           the copy in gst-ffmpeg)
1560
1561 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
1562
1563         * tests/check/elements/audioresample.c: (cleanup_audioresample):
1564         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1565         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1566         (cleanup_gdpdepay):
1567         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1568         * tests/check/elements/subparse.c: (teardown_subparse):
1569         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1570         * tests/check/elements/videorate.c: (cleanup_videorate):
1571         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1572         * tests/check/elements/volume.c: (cleanup_volume):
1573         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1574         (cleanup_vorbisdec):
1575         * tests/check/elements/vorbistag.c: (setup_vorbistag),
1576         (cleanup_vorbistag):
1577           consistent pad (de)activation
1578
1579 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1580
1581         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1582           Forgot to register the extensions.
1583
1584 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
1585
1586         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1587         (plugin_init):
1588           Add typefinder for VIVO files (my christmas present to the 90s).
1589
1590 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1591
1592         * gst/playback/gstdecodebin.c: (type_found):
1593           Special-case the text/plain media type: we only want to recognise it
1594           as a 'raw' decoded media type if it comes from a demuxer or subtitle
1595           parser, but not if the entire stream is of text/plain type. If the
1596           entire stream is text/plain, we should just error out.
1597
1598           This fixes playback of audio files with lyrics in totem. Totem can't
1599           distinguish between text files and subtitle files and passes any
1600           .txt file with the same basename as the main file to playbin as
1601           suburi, and playbin will then throw a 'subtitle found, but no video
1602           stream' error, which isn't entirely helpful. See #380342.
1603
1604           Also, with this change we'll show a slightly more correct error
1605           message in case totem passes a playlist file to us (although a
1606           custom error message wording instead of the default text would
1607           probably not be a bad idea either).
1608
1609           Same problem also needs to be fixed for playbin+decodebin2.
1610
1611         * tests/check/Makefile.am:
1612         * tests/check/elements/decodebin.c: (src_handoff_cb),
1613         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1614         (decodebin_suite):
1615           Add simple unit test for decodebin for the above.
1616
1617 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1618
1619         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1620         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1621           Refuse to change state to READY when we failed to create any of the
1622           required elements in our instance init function.
1623
1624 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
1625
1626         * docs/libs/gst-plugins-base-libs-sections.txt:
1627           Small docs fixes/updates.
1628
1629         * gst-libs/gst/video/gstvideosink.h:
1630           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1631           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1632           removed from the base sink API between 0.9.6 and 0.9.7).
1633           API: add GST_VIDEO_SINK_CAST and use it for the height/width
1634           accessor macros, so we don't do a runtime GObject type check every
1635           time we use them.
1636
1637 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
1638
1639         * Makefile.am:
1640         * gst-plugins-base.doap:
1641         * gst-plugins-base.spec.in:
1642           add doap file
1643
1644 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
1645
1646         Patch by: Jens Granseuer <jensgr at gmx net>
1647
1648         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1649         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1650         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1651         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1652         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1653           Declare variables at the beginning of a block. Fixes #383195.
1654
1655 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
1656
1657         * configure.ac:
1658         Bump version nano - back to CVS.
1659
1660
1661 === release 0.10.11 ===
1662
1663 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
1664
1665         * configure.ac:
1666           releasing 0.10.11, "Dumb things"
1667
1668 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
1669
1670         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1671         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1672         Handle the case where an element has multiple pads with 
1673         unfixed caps as well as still possibly producing more dynamic 
1674         pads by storing each case as a distinct entry in the dynamic list.
1675         Fixes #38223 again.
1676
1677 2006-12-04  Wim Taymans  <wim@fluendo.com>
1678
1679         * gst/playback/gstdecodebin.c: (close_pad_link):
1680         Fix #382223, add more dynamic caps handling.
1681
1682 2006-12-04  Wim Taymans  <wim@fluendo.com>
1683
1684         reviewed by: <delete if not using a buddy>
1685
1686         * gst-libs/gst/audio/gstringbuffer.h:
1687         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1688         (gst_netaddress_set_ip4_interface),
1689         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1690         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1691         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1692         (gst_netaddress_get_ttl):
1693         * gst-libs/gst/netbuffer/gstnetbuffer.h:
1694         * gst/playback/gstdecodebin.c: (close_pad_link):
1695         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1696         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1697         * win32/common/config.h:
1698
1699 2006-12-01  Michael Smith  <msmith@fluendo.com>
1700
1701         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1702           Delete bad debug code.
1703           Fixes #381219
1704
1705 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
1706
1707         * gst/videoscale/vs_4tap.c:
1708         * win32/MANIFEST:
1709         * win32/common/config.h:
1710         * win32/vs8/libgstvideoscale.vcproj:
1711         Fix compilation on win32 under VS8
1712         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1713         Partially fixes #381175
1714
1715 2006-11-30  Michael Smith  <msmith@fluendo.com>
1716
1717         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1718         (GST_START_TEST):
1719           It would be very bad if, after a discont buffer, we thought every
1720           single following buffer was also discont. So, add to the test to
1721           ensure that this isn't the case.
1722           
1723         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1724           ... it was the case. So fix it.
1725
1726 2006-11-28  Wim Taymans  <wim@fluendo.com>
1727
1728         * gst/playback/gstplaybasebin.c: (check_queue_event):
1729         Improve debug.
1730
1731         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1732         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1733         padtemplate caps. Refixes #357577.
1734
1735 2006-11-28  Wim Taymans  <wim@fluendo.com>
1736
1737         * gst/playback/gstplaybasebin.c: (check_queue_event),
1738         (queue_threshold_reached), (queue_out_of_data),
1739         (gen_preroll_element):
1740         Add event probe to see when EOS is in a queue and we can disable the
1741         underrun signals. Fixes #357577.
1742
1743 2006-11-28  Edward Hervey  <edward@fluendo.com>
1744
1745         * gst/playback/Makefile.am:
1746         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
1747         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
1748         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
1749         (gst_decode_bin_init), (gst_decode_bin_dispose),
1750         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
1751         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
1752         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
1753         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
1754         (connect_element), (expose_pad), (type_found),
1755         (pad_added_group_cb), (pad_removed_group_cb),
1756         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
1757         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
1758         (are_raw_caps), (multi_queue_overrun_cb),
1759         (multi_queue_underrun_cb), (gst_decode_group_new),
1760         (get_current_group), (group_demuxer_event_probe),
1761         (gst_decode_group_control_demuxer_pad),
1762         (gst_decode_group_control_source_pad),
1763         (gst_decode_group_check_if_blocked),
1764         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
1765         (gst_decode_group_hide), (gst_decode_group_free),
1766         (gst_decode_group_set_complete), (source_pad_blocked_cb),
1767         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
1768         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
1769         (plugin_init):
1770         New decodebin2 element.
1771         Closes #370092
1772         * gst/playback/gstplay-marshal.list:
1773         Added marshallers for new signals in decodebin2
1774         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
1775         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
1776         is set.
1777
1778 2006-11-28  Wim Taymans  <wim@fluendo.com>
1779
1780         * gst/playback/gstplaybasebin.c: (setup_source),
1781         (gst_play_base_bin_change_state):
1782         Disable rtsp:// uris for the release, it's not good enough yet.
1783         Remove unused var.
1784
1785 2006-11-26  Wim Taymans  <wim@fluendo.com>
1786
1787         * ext/theora/theoradec.c: (gst_theora_dec_reset),
1788         (theora_dec_push_forward), (theora_dec_push_reverse),
1789         (theora_handle_data_packet), (theora_dec_decode_buffer),
1790         (theora_dec_flush_decode), (theora_dec_chain_reverse),
1791         (theora_dec_chain_forward), (theora_dec_chain):
1792         Implement reverse playback.
1793
1794         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
1795         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
1796         (vorbis_dec_chain_forward):
1797         Clear buffers used for reverse playback in _reset.
1798         No need to set the eos flag, we clip samples using the segment.
1799
1800 2006-11-24  Wim Taymans  <wim@fluendo.com>
1801
1802         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1803         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
1804         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
1805         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
1806         Some cleanups.
1807         Handle continued pages in reverse mode.
1808
1809 2006-11-24  Wim Taymans  <wim@fluendo.com>
1810
1811         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
1812         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
1813         (vorbis_dec_flush_decode):
1814         Small cleanups.
1815         Don't try to add invalid timestamps.
1816         Clipping will unref the buffer.
1817
1818 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
1819
1820         * gst/adder/gstadder.h:
1821         * gst/audiotestsrc/gstaudiotestsrc.h:
1822           remove obsolete _factory_init protos
1823
1824 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
1825
1826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
1827           Fix spacing in debug message.
1828
1829 2006-11-23  Wim Taymans  <wim@fluendo.com>
1830
1831         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
1832         (gst_ogg_demux_chain):
1833         Don't just ignore return values from _pad_push().
1834         Small debug improvements.
1835
1836 2006-11-23  Michael Smith  <msmith@fluendo.com>
1837
1838         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
1839           If our incoming buffer is marked as DISCONT, then increment the page
1840           number (so that the discontinuity is marked in the final ogg
1841           bitstream) and flush the previous page.
1842
1843 2006-11-22  Michael Smith  <msmith@fluendo.com>
1844
1845         * ext/theora/gsttheoraenc.h:
1846         * ext/theora/theoraenc.c: (gst_theora_enc_init),
1847         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
1848         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
1849         (theora_enc_chain), (theora_enc_change_state):
1850           Mark discontinuities of > 3/4 of a frame, reinit encoder.
1851
1852         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1853         (GST_START_TEST), (theoraenc_suite):
1854           Enable discontinuity test, fix it.
1855
1856 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
1857
1858         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1859         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
1860         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
1861         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
1862         (gst_text_overlay_change_state):
1863         * ext/pango/gsttextoverlay.h:
1864           Some textoverlay fixes: for one, in the video chain function,
1865           actually wait for a text buffer to come in if there is none at the
1866           moment and there should be one; also, deal more gracefully with
1867           incoming buffers that do not have a timestamp or duration; discard
1868           text buffer when not needed any longer. Fixes #341681.
1869
1870         * tests/check/Makefile.am:
1871         * tests/check/elements/.cvsignore:
1872         * tests/check/elements/textoverlay.c:
1873         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
1874         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
1875         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
1876         (test_video_waits_for_text_send_text_newsegment_thread),
1877         (test_video_waits_for_text_shutdown_element),
1878         (test_render_continuity_push_video_buffers_thread),
1879         (textoverlay_suite):
1880           Add some unit tests for textoverlay.
1881
1882 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
1883
1884         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1885           Avoid integer underflow when the found probability for mp3 is
1886           smaller than the 'penalty' we subtract if there's not a clean
1887           mp3 header sync at offset 0.
1888
1889 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
1890
1891         * docs/libs/gst-plugins-base-libs-sections.txt:
1892           Add some new symbols to the docs
1893
1894 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
1895
1896         * tests/check/Makefile.am:
1897         * tests/check/elements/ffmpegcolorspace.c:
1898         (ffmpegcolorspace_suite):
1899           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
1900           (for now not for valgrinding though, since it takes too long).
1901
1902 2006-11-20  Wim Taymans  <wim@fluendo.com>
1903
1904         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1905         (gst_ffmpeg_pixfmt_to_caps):
1906         Fix RGBA32 caps. Fixes #357038.
1907
1908 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
1909
1910         * gst-libs/gst/interfaces/mixertrack.h:
1911           Add FIXME so we can add some padding here in 0.11
1912
1913 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
1914
1915         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1916           Fix GstBaseRTPAudioPayload structure so the whole GObject
1917           inheritance business actually works (parent class instance structure
1918           must always come first in the derived class instance structure).
1919
1920 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
1921
1922         * gst/videotestsrc/Makefile.am:
1923         * tests/check/Makefile.am:
1924           Make sure our checks and the videotestsrc plugin link against the
1925           local uninstalled gst libs and not any installed gst libs that
1926           might happen to exist as well.
1927
1928         * tests/check/elements/adder.c: (message_received),
1929         (test_event_message_received), (test_play_twice_message_received):
1930         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
1931           Fix compiler warnings when compiling against core with disabled
1932           debugging system.
1933
1934 2006-11-16  Michael Smith  <msmith@fluendo.com>
1935
1936         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
1937         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
1938           Fix audiorate, so that it accurately sets offsets and timestamps.
1939           Doesn't change the fundamental algorithmic decisions; so should be
1940           safe.
1941
1942         * tests/check/Makefile.am:
1943           Enable audiorate test now that it passes.
1944
1945 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
1946
1947         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
1948           clear xv when going to NULL, remove // commented non-existant proto
1949
1950         * tests/examples/seek/seek.c: (main):
1951           add missing tooltip description for scrub and play_scrub
1952
1953 2006-11-14  David Schleef  <ds@schleef.org>
1954
1955         * configure.ac:
1956           Bump liboil requirement to 0.3.8.
1957         * gst-libs/gst/riff/riff-media.c:
1958           Add Dirac fourcc.
1959         * gst/videoscale/vs_image.h:
1960         * gst/videoscale/vs_scanline.h:
1961           Use liboil's stdint.h.
1962         * gst/videotestsrc/videotestsrc.c:
1963           Remove liboil related ifdef's, since they aren't needed now, and
1964           won't work with future versions.
1965
1966 2006-11-14  David Schleef  <ds@schleef.org>
1967
1968         * gst/videoscale/Makefile.am:
1969         * gst/videoscale/gstvideoscale.c:
1970         * gst/videoscale/gstvideoscale.h:
1971         * gst/videoscale/vs_4tap.c:
1972         * gst/videoscale/vs_4tap.h:
1973         * gst/videoscale/vs_image.c:
1974         * gst/videoscale/vs_image.h:
1975         * gst/videoscale/vs_scanline.c:
1976         * gst/videoscale/vs_scanline.h:
1977           Add a 4-tap image scaler.  Theoretically looks much prettier.
1978           The tap calculation could use some improvement.
1979
1980 2006-11-14  Wim Taymans  <wim@fluendo.com>
1981
1982         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
1983
1984         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
1985         (gst_riff_parse_strf_iavs):
1986         * gst/subparse/gstsubparse.c: (convert_encoding):
1987         * gst/tcp/gstmultifdsink.c:
1988         (gst_multi_fd_sink_handle_client_write):
1989         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
1990         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
1991         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
1992         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
1993         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1994         (gst_ximagesink_ximage_new):
1995         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
1996         Various gsize and gssize printf fixes. Fixes #372507.
1997
1998 2006-11-13  Wim Taymans  <wim@fluendo.com>
1999
2000         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2001         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2002         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2003         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2004         (vorbis_dec_chain_forward), (vorbis_dec_chain):
2005         * ext/vorbis/vorbisdec.h:
2006         First stab at vorbis reverse playback.
2007
2008 2006-11-13  Wim Taymans  <wim@fluendo.com>
2009
2010         * gst-libs/gst/audio/gstbaseaudiosink.c:
2011         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2012         * gst-libs/gst/audio/gstbaseaudiosink.h:
2013         Make the clock sync code more accurate wrt resampling and playback
2014         at different rates.
2015         
2016         * gst-libs/gst/audio/gstringbuffer.c:
2017         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2018         * gst-libs/gst/audio/gstringbuffer.h:
2019         Use better algorithm to interpolate sample rates. 
2020
2021 2006-11-13  Michael Smith  <msmith@fluendo.com>
2022
2023         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2024           Improve a debug line slightly.
2025
2026         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2027           Call gst_riff_init() in plugin_init, to avoid getting errors from
2028           the debug system (unrelated changes to another plugin made this turn
2029           up; not sure why).
2030
2031 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
2032
2033         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
2034
2035         * win32/common/libgsttag.def:
2036           Add missing symbol (#366492).
2037
2038 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
2039
2040         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2041           Don't unref a NULL pad.
2042
2043 2006-11-09  Wim Taymans  <wim@fluendo.com>
2044
2045         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2046         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2047         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2048         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2049         (gst_ogg_demux_loop):
2050         Implement first stab at reverse playback.
2051
2052 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
2053
2054         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2055         (gst_riff_create_video_template_caps):
2056           add h263/h264 variants to the caps, Fixes #363118
2057
2058 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
2059
2060         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2061         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2062           Use g_strerror instead of strerror so we get UTF-8.
2063
2064 2006-11-03  David Schleef  <ds@schleef.org>
2065
2066         * ext/ogg/gstoggdemux.c:
2067         * ext/ogg/gstoggmux.c:
2068           Add/remove KW-DIRAC header here, since it is ogg-specific.
2069
2070 2006-11-03  Michael Smith  <msmith@fluendo.com>
2071
2072         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2073           Recognise more mpeg4 elementary video streams.
2074
2075 2006-11-02  Edward Hervey  <edward@fluendo.com>
2076
2077         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2078         Lower the probability of mp3 typefinding functions if we don't find a
2079         valid mp3 header at the start of the file.
2080         Closes #369482
2081
2082 2006-11-02  Wim Taymans  <wim@fluendo.com>
2083
2084         * ext/theora/gsttheoradec.h:
2085         * ext/theora/theoradec.c: (gst_theora_dec_init),
2086         (theora_dec_sink_event), (theora_dec_chain_forward),
2087         (theora_dec_flush_decode), (theora_dec_chain_reverse),
2088         (theora_dec_chain):
2089         Document and partially implement an algorithm for doing reverse playback
2090         of theora video.
2091
2092 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
2093
2094         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
2095
2096         * win32/common/config.h:
2097         * win32/common/interfaces-enumtypes.c:
2098         * win32/common/libgsttag.def:
2099         * win32/vs8/gst-plugins-base.sln:
2100         * win32/vs8/libgstaudioresample.vcproj:
2101         * win32/vs8/libgstinterfaces.vcproj:
2102         * win32/vs8/libgstogg.vcproj:
2103         * win32/vs8/libgstriff.vcproj:
2104         * win32/vs8/libgsttag.vcproj:
2105         * win32/vs8/libgsttheora.vcproj:
2106         * win32/vs8/libgstvideoscale.vcproj:
2107         * win32/vs8/libgstvorbis.vcproj:
2108           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2109           to libgsttag.def; add missing dependencies for some vs8 projects;
2110           re-arrange placement of .def files in vs8 projects (#366334).
2111
2112 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
2113
2114         * ext/ogg/gstogg.c:
2115           Remove unused variable.
2116
2117         * ext/ogg/gstoggdemux.c:
2118           Fix Wim's surname in plugin description.
2119
2120 2006-10-31  Wim Taymans  <wim@fluendo.com>
2121
2122         * gst-plugins-base.spec.in:
2123         spec new .h file. Fixes #368310.
2124
2125 2006-10-31  Michael Smith  <msmith@fluendo.com>
2126
2127         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2128         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2129         (gst_multi_fd_sink_get_stats),
2130         (gst_multi_fd_sink_remove_client_link),
2131         (gst_multi_fd_sink_queue_buffer),
2132         (gst_multi_fd_sink_handle_clients):
2133         * gst/tcp/gstmultifdsink.h:
2134           Make using the remove or clear signals threadsafe.
2135           Make calling get-stats with an invalid fd not segfault.
2136           Fixes 368273.
2137
2138 2006-10-31  Wim Taymans  <wim@fluendo.com>
2139
2140         * gst-libs/gst/rtp/Makefile.am:
2141         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2142         (gst_base_rtp_audio_payload_init):
2143         Fix and activate base audio payloader.
2144
2145 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2146
2147         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2148         (plugin_init):
2149           Add typefinder for QuickTime Image Files (see #366156).
2150
2151 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
2152
2153         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2154           Another typo fix (#366212).
2155
2156 2006-10-27  Wim Taymans  <wim@fluendo.com>
2157
2158         * gst/volume/gstvolume.c: (volume_transform_ip):
2159         Use stream time to synchronize volume property instead of rather random
2160         timestamps. This is needed when gnonlin does its time shifting.
2161
2162 2006-10-27  Wim Taymans  <wim@fluendo.com>
2163
2164         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2165
2166         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2167         Remove the pad from the element in release_pad. Fixes #364812.
2168
2169 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
2170
2171         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2172         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2173           Explicitly create our custom buffer classes at a thread-safe
2174           location as well, since g_type_class_ref() doesn't seem to be
2175           entirely thread-safe either (#365501; also see #349410).
2176
2177 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
2178
2179         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2180         (gst_riff_parse_info):
2181           If strings in INFO chunk are not UTF-8, do something similar to
2182           what we do for ID3v1 tags: check a number of environment variables
2183           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2184           character sets to try, otherwise try the current locale and/or fall
2185           back on ISO-8859-1. Fixes #360552.
2186
2187 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2188
2189         * gst/videotestsrc/gstvideotestsrc.c:
2190         (gst_video_test_src_pattern_get_type),
2191         (gst_video_test_src_set_pattern):
2192         * gst/videotestsrc/gstvideotestsrc.h:
2193         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2194         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2195         (gst_video_test_src_checkers8):
2196         * gst/videotestsrc/videotestsrc.h:
2197           Add a bunch of exciting new checkers patterns.
2198
2199 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2200
2201         * gst/subparse/Makefile.am:
2202         * gst/subparse/gstsubparse.c:
2203         (gst_sub_parse_data_format_autodetect),
2204         (gst_sub_parse_format_autodetect), (handle_buffer),
2205         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2206         * gst/subparse/gstsubparse.h:
2207         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2208         (parse_tmplayer):
2209         * gst/subparse/tmplayerparse.h:
2210           Add support for TMPlayer-type subtitles (#362845).
2211
2212         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2213         (GST_START_TEST), (subparse_suite):
2214           Add some basic unit tests for the above.
2215
2216 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
2217
2218         * tests/check/elements/audiorate.c: (test_injector_base_init),
2219         (test_injector_class_init), (test_injector_chain),
2220         (test_injector_init), (probe_cb), (do_perfect_stream_test),
2221         (GST_START_TEST), (audiorate_suite):
2222           More tests for audiorate: inject buffers to check behaviour when
2223           buffers overlap.
2224
2225 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
2226
2227         * tests/check/Makefile.am:
2228         * tests/check/elements/.cvsignore:
2229         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2230         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2231           Add some basic unit tests for audiorate. Disabled at the moment
2232           since it doesn't pass yet (see bug #363119).
2233
2234 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
2235
2236         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2237         (parse_subrip), (handle_buffer):
2238           Add missing closing tags for markup and fix broken markup,
2239           otherwise pango won't render anything (fixes #357531). Also,
2240           make sure the text we send out is always NUL-terminated
2241           (better safe than sorry etc.).
2242
2243         * tests/check/elements/subparse.c: (test_srt_do_test),
2244         (test_srt):
2245           Some more tests for .srt incl. tests for the above stuff.
2246
2247 2006-10-20  Julien MOUTTE  <julien@moutte.net>
2248
2249         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2250         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2251         Patch by: Stefan Kost  <ensonic@users.sf.net>
2252         Try to redraw borders only when needed. Apparently this consumes
2253         resources on small devices... :-O (#363607)
2254
2255 2006-10-20  Michael Smith  <msmith@fluendo.com>
2256
2257         * gst/tcp/gstmultifdsink.c:
2258         (gst_multi_fd_sink_client_queue_buffer):
2259           If caps change, then update the client's idea of the caps so that we
2260           don't end up re-sending streamheaders for every single buffer after
2261           the caps change.
2262
2263 2006-10-20  Michael Smith  <msmith@fluendo.com>
2264
2265         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2266         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2267           Set caps on pushed buffers; fix up refcounting of caps objects.
2268
2269 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2270
2271         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2272         (plugin_init):
2273           Typefind mmsh header data packet to application/x-mmsh (#362625).
2274
2275 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2276
2277         * tests/check/Makefile.am:
2278         * tests/check/elements/.cvsignore:
2279         * tests/check/elements/subparse.c: (buffer_from_static_string),
2280         (setup_subparse), (teardown_subparse), (test_srt_do_test),
2281         (GST_START_TEST), (subparse_suite):
2282           Add very simple unit test for subparse.
2283
2284 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
2285
2286         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2287         (parse_subrip):
2288           Strip trailing newlines from subtitle text output.
2289
2290 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2291
2292         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2293         (gst_sub_parse_change_state):
2294           Fix memleak; clear subparse->textbuf n state change function.
2295
2296 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2297
2298         * gst/subparse/gstsubparse.c:
2299         (gst_sub_parse_data_format_autodetect):
2300           Don't require subrip (.srt) files to start with a chunk number of 1.
2301
2302 2006-10-18  Wim Taymans  <wim@fluendo.com>
2303
2304         * gst-libs/gst/audio/gstbaseaudiosink.c:
2305         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2306         * gst-libs/gst/audio/gstbaseaudiosink.h:
2307         Extract rate from the NEWSEGMENT event.
2308         Use commit_full to also take rate adjustment into account when writing
2309         samples to the ringbuffer.
2310         
2311         * gst-libs/gst/audio/gstringbuffer.c:
2312         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2313         (gst_ring_buffer_read):
2314         * gst-libs/gst/audio/gstringbuffer.h:
2315         Added _commit_full() to also take rate into account.
2316         Use simple interpolation algorithm to resample audio.
2317         API: gst_ring_buffer_commit_full()
2318
2319         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2320         * tests/examples/seek/seek.c: (segment_done):
2321         Don't try to seek with 0.0 rate, just pause instead.
2322         Remove bogus debug line.
2323
2324 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2325
2326         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2327         (setup_source):
2328           Catch async errors when starting up the subtitle bin, so we can
2329           stop waiting and continue with the main film instead of hanging
2330           forever. Fixes #339366.
2331
2332         * tests/check/elements/playbin.c: (playbin_suite):
2333           Enable unit test for the above.
2334
2335 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2336
2337         * tests/check/Makefile.am:
2338         * tests/check/elements/.cvsignore:
2339         * tests/check/elements/playbin.c: (GST_START_TEST),
2340         (gst_red_video_src_uri_get_type),
2341         (gst_red_video_src_uri_get_protocols),
2342         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2343         (gst_red_video_src_uri_handler_init),
2344         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2345         (gst_red_video_src_create), (gst_red_video_src_class_init),
2346         (gst_red_video_src_init), (plugin_init), (playbin_suite):
2347           Some small and basic unit tests for playbin; not very useful yet,
2348           but at least a start.
2349
2350 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2351
2352         * gst/playback/gstplaybin.c: (setup_sinks):
2353           The old pad activation spiel.
2354
2355 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
2356
2357         * gst/playback/gstplaybasebin.c: (setup_source):
2358           Don't hang forever if the subbin already fails to start up in 
2359           the state change to PAUSED (#339366).
2360
2361 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
2362
2363         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2364         (gst_tuner_set_channel), (gst_tuner_get_channel),
2365         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2366         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2367         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2368         (gst_tuner_find_channel_by_name):
2369           Fix some function guards, add some more function guards.
2370
2371 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
2372
2373         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2374         (remove_element_chain):
2375         Don't return a pad from get_our_ghost_pad unless it is actually the
2376         one we want.
2377         Change a cast in remove_element_chain slightly.
2378
2379 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2380
2381         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2382         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2383         Segment seeking needs to use the rate and set stop to -1.
2384
2385 2006-10-13  Wim Taymans  <wim@fluendo.com>
2386
2387         * gst-libs/gst/audio/gstbaseaudiosink.c:
2388         (gst_base_audio_sink_setcaps):
2389         Don't crash when ringbuffer is not yet created.
2390         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2391         Fixes #361634.
2392
2393         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2394         * gst/playback/gststreamselector.c:
2395         (gst_stream_selector_request_new_pad):
2396         Activate pads befre adding them to running elements.
2397
2398 2006-10-13  Julien MOUTTE  <julien@moutte.net>
2399
2400         * tests/examples/seek/seek.c: (do_seek), (start_seek),
2401         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2402         updater when we start grabing the slider. Don't wait for the
2403         pipeline to be PAUSED.
2404
2405 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
2406
2407         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2408         (gst_mixer_set_volume), (gst_mixer_get_volume),
2409         (gst_mixer_set_mute), (gst_mixer_set_option),
2410         (gst_mixer_get_option), (gst_mixer_mute_toggled),
2411         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2412         (gst_mixer_option_changed):
2413           Guard mixer interface functions against bogus arguments.
2414
2415 2006-10-12  Julien MOUTTE  <julien@moutte.net>
2416
2417         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2418         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2419         (msg_state_changed), (main): Use state-changed messages to trigger
2420         start/stop of scale update timer. Indeed the scale slider was
2421         jumping here and there because the update timer was activated 
2422         before seek completed. This fixes instant applying of rate changes
2423         by pressing the spinbutton like a crazy man !
2424
2425 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
2426
2427         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
2428
2429         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2430         (gst_basertppayload_finalize):
2431           Fix two small memory leaks (#361456).
2432
2433 2006-10-10  Julien MOUTTE  <julien@moutte.net>
2434
2435         * tests/examples/seek/seek.c: (do_seek),
2436         (rate_spinbutton_changed_cb): When changing spinbutton we try
2437         to change the rate on the fly.
2438
2439 2006-10-10  Wim Taymans  <wim@fluendo.com>
2440
2441         * gst-libs/gst/riff/riff-ids.h:
2442         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2443         (gst_riff_create_audio_template_caps):
2444         Add WMS caps.
2445
2446 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2447
2448         Patch by: Josep Torre Valles <josep@fluendo.com>
2449
2450         * ext/gnomevfs/gstgnomevfssink.c:
2451         * ext/gnomevfs/gstgnomevfssrc.c:
2452         Fix URI interface implementation return type.
2453         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2454         Fix what looks like a copy/paste issue when assigning values.
2455         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2456         (gst_audio_filter_template_get_type):
2457         Cast to prevent Forte warnings.
2458         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2459         Fix URI interface implementation return type.
2460         gst_pad_query_position requires a signed integer pointer as
2461         3rd parameter, GstClockTime is unsigned.
2462         * gst/audioconvert/audioconvert.c:
2463         Fix integer overflow when treated as signed.
2464         * gst/audioresample/resample.c: (resample_add_input_data):
2465         Cast to prevent warnings on Forte.
2466         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2467         Fix integer overflow when treated as signed.
2468         * gst/ffmpegcolorspace/imgconvert_template.h:
2469         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2470         * gst/playback/gstdecodebin.c: (queue_filled_cb),
2471         (cleanup_decodebin):
2472         Who initialises a guint to -1!
2473         Cast function pointers to prevent warnings on Forte.
2474         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2475         (queue_threshold_reached):
2476         Cast function pointers correctly to prevent warnings on Forte.
2477         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2478         Cast function pointers correctly to prevent warnings on Forte.
2479         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2480         Obvious change to unsigned, 0xEF > max signed char.
2481         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2482         GstClockTime is unsigned, initialise correctly.
2483         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2484         Cast so pointer arithemetic doesn't cause warnings on Forte.
2485         * gst/videorate/gstvideorate.c:
2486         Use correct return value.
2487         * tests/examples/seek/scrubby.c:
2488         GstClockTime is unsigned, initialise correctly.
2489
2490 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
2491
2492         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
2493
2494         * gst/typefind/gsttypefindfunctions.c:
2495           Recognise XML files and XML-like files shorter than 256 bytes as
2496           well (fixes #359237).
2497
2498 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
2499
2500         Patch by: Renato Filho <renato.filho@indt.org.br>
2501         
2502         * gst/typefind/gsttypefindfunctions.c:
2503         Added typefind functions to video/x-nuv media.
2504         
2505 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
2506
2507         * gst-libs/gst/interfaces/xoverlay.c:
2508         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2509           Some more guards against invalid input.
2510
2511 2006-10-07  Julien MOUTTE  <julien@moutte.net>
2512
2513         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
2514         Useless goto.
2515         * tests/examples/seek/seek.c: (do_seek),
2516         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2517         seek example to experiment with rates != 1.0 (reverse playback !)
2518
2519 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
2520
2521         * gst-libs/gst/interfaces/xoverlay.c:
2522           Unref message in doc-example (spotted by Robert McQueen)
2523
2524 2006-10-06  Wim Taymans  <wim@fluendo.com>
2525
2526         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2527         (mpeg1_parse_header), (mpeg1_sys_type_find):
2528         printf fix.
2529
2530 2006-10-06  Wim Taymans  <wim@fluendo.com>
2531
2532         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2533         (close_pad_link):
2534         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2535         Activate dynamic pads before adding them to the element.
2536
2537 2006-10-06  Michael Smith  <msmith@fluendo.com>
2538
2539         * gst-libs/gst/floatcast/floatcast.h:
2540           Fix obviously-bogus macros; use the correct types.
2541
2542 2006-10-06  Wim Taymans  <wim@fluendo.com>
2543
2544         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2545         (gst_base_rtp_depayload_change_state):
2546         Also call parent state change function to activate pads.
2547
2548         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2549         (mpeg1_parse_header), (mpeg1_sys_type_find):
2550         Add some more debug info in mpeg typefinding.
2551
2552 2006-10-06  Michael Smith  <msmith@fluendo.com>
2553
2554         * ext/theora/theoradec.c: (theora_dec_chain):
2555           Zero byte theora packets are valid and well-defined; don't warn on
2556           them.
2557
2558 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2559
2560         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2561         (gst_multi_fd_sink_get_stats), (find_limits),
2562         (gst_multi_fd_sink_queue_buffer):
2563           API: add dropped_buffers to the get-stats GValueArray
2564
2565 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
2566
2567         * ext/alsa/gstalsadeviceprobe.c:
2568         (gst_alsa_device_property_probe_get_values):
2569         * ext/alsa/gstalsasink.c: (set_hwparams):
2570         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2571         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2572         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2573         (gst_ogg_mux_process_best_pad):
2574         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2575         (gst_ogg_parse_chain):
2576         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2577         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2578         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2579         (gst_vorbis_enc_buffer_check_discontinuous):
2580         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2581         * gst-libs/gst/audio/gstbaseaudiosink.c:
2582         (gst_base_audio_sink_render):
2583         * gst-libs/gst/cdda/gstcddabasesrc.c:
2584         (gst_cdda_base_src_handle_track_seek):
2585         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2586         (gst_base_rtp_depayload_push_full):
2587         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2588         * gst/audioresample/resample.c: (resample_input_pushthrough):
2589         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2590         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2591         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2592         (wavpack_type_find):
2593         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2594         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2595         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2596         * tests/check/elements/volume.c: (GST_START_TEST):
2597           Printf format fixes.
2598
2599 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
2600
2601         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2602           Fix a simple mistake (see the docs)
2603           Fixes #359580
2604
2605 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2606
2607         * docs/plugins/Makefile.am:
2608         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2609         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2610         * docs/plugins/gst-plugins-base-plugins.args:
2611         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2612         * docs/plugins/inspect/plugin-adder.xml:
2613         * docs/plugins/inspect/plugin-alsa.xml:
2614         * docs/plugins/inspect/plugin-audioconvert.xml:
2615         * docs/plugins/inspect/plugin-audiorate.xml:
2616         * docs/plugins/inspect/plugin-audioresample.xml:
2617         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2618         * docs/plugins/inspect/plugin-cdparanoia.xml:
2619         * docs/plugins/inspect/plugin-decodebin.xml:
2620         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2621         * docs/plugins/inspect/plugin-gdp.xml:
2622         * docs/plugins/inspect/plugin-gnomevfs.xml:
2623         * docs/plugins/inspect/plugin-libvisual.xml:
2624         * docs/plugins/inspect/plugin-ogg.xml:
2625         * docs/plugins/inspect/plugin-pango.xml:
2626         * docs/plugins/inspect/plugin-playbin.xml:
2627         * docs/plugins/inspect/plugin-subparse.xml:
2628         * docs/plugins/inspect/plugin-tcp.xml:
2629         * docs/plugins/inspect/plugin-theora.xml:
2630         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2631         * docs/plugins/inspect/plugin-video4linux.xml:
2632         * docs/plugins/inspect/plugin-videorate.xml:
2633         * docs/plugins/inspect/plugin-videoscale.xml:
2634         * docs/plugins/inspect/plugin-videotestsrc.xml:
2635         * docs/plugins/inspect/plugin-volume.xml:
2636         * docs/plugins/inspect/plugin-vorbis.xml:
2637         * docs/plugins/inspect/plugin-ximagesink.xml:
2638         * docs/plugins/inspect/plugin-xvimagesink.xml:
2639           Add vorbistag element to docs; update version numbers to 0.10.10.1.
2640
2641 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2642
2643         Patch by: James "Doc" Livingston <doclivingston at gmail com>
2644
2645         * ext/vorbis/Makefile.am:
2646         * ext/vorbis/vorbis.c: (plugin_init):
2647         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2648         (vorbis_parse_parse_packet), (vorbis_parse_chain):
2649         * ext/vorbis/vorbisparse.h:
2650         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2651         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2652         (gst_vorbis_tag_parse_packet):
2653         * ext/vorbis/vorbistag.h:
2654           Add new vorbistag element which derives from vorbisparse
2655           and is essentially the same as well, only that it implements
2656           the GstTagSetter interface and can modify the stream's
2657           vorbiscomment on the fly (#335635).
2658
2659         * tests/check/Makefile.am:
2660         * tests/check/elements/.cvsignore:
2661         * tests/check/elements/vorbistag.c: (setup_vorbistag),
2662         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2663         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2664         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2665           Add unit test for new vorbistag element.
2666
2667 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
2668
2669         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2670         (vorbis_parse_push_headers), (vorbis_parse_chain):
2671           Set BOS flag in packet structure to fix 'jump depends
2672           on unitialized value' errors in valgrind; various minor
2673           clean-ups.
2674
2675 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
2676
2677         * gst/playback/gstdecodebin.c: (close_pad_link):
2678         Fix typo in a debug statement.
2679
2680         * gst/playback/gstplaybasebin.c: (probe_triggered),
2681         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2682         (gen_source_element), (source_new_pad), (analyse_source),
2683         (setup_source):
2684         When handling no_more_pads in new_decoded_pad, make sure to treat
2685         subtitle pads correctly. Fixes playback with subtitle files.
2686
2687         Move a recurring message to LOG level.
2688
2689         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2690         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2691         which ends up as -1 when cast to an int. Make the logic handle the
2692         max value as an unsigned mask and only change the colorkey when it's
2693         a value we recognise.
2694
2695 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2696
2697         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2698         Removed empty * between paragraphs
2699
2700 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2701
2702         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2703         * gst-libs/gst/rtp/README:
2704         Moved some documentation into .c file
2705
2706 2006-09-29  Wim Taymans  <wim@fluendo.com>
2707
2708         * gst/playback/gstdecodebin.c: (no_more_pads):
2709         Fix compilation.
2710
2711 2006-09-29  Wim Taymans  <wim@fluendo.com>
2712
2713         * gst/playback/gstdecodebin.c: (new_caps):
2714         Remove g_print
2715
2716         * gst/playback/gstplaybin.c:
2717         Add some docs.
2718
2719 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2720
2721         * tests/check/Makefile.am:
2722           Re-enable cddabasesrc test to see if it works again
2723           now.
2724
2725 2006-09-29  Wim Taymans  <wim@fluendo.com>
2726
2727         * gst/playback/gstplaybasebin.c: (setup_subtitle),
2728         (gen_source_element):
2729         Handle invalid URIs a bit more gracefully.
2730
2731 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
2732
2733         * tests/check/pipelines/oggmux.c:
2734           Remove obsolete comment.
2735
2736 2006-09-29  Michael Smith  <msmith@fluendo.com>
2737
2738         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2739         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2740         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2741         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2742         (gst_ogg_mux_collected):
2743           Commit patch from James "Doc" Livingston, adds proper EOS handling
2744           in oggmux. GStreamer can, for the first time ever, create a valid
2745           Ogg file! Yay!
2746
2747         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
2748         (oggmux_suite):
2749           Reenable tests now that they pass.
2750
2751 2006-09-29  Wim Taymans  <wim@fluendo.com>
2752
2753         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2754         Stop reading commands when EOF (we read 0) as well.
2755
2756 2006-09-28  Wim Taymans  <wim@fluendo.com>
2757
2758         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
2759         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
2760         (find_dynamic), (unlinked), (close_link):
2761         Implement delayed caps linking needed for element with a lot of
2762         different caps on the src pads that get fixed at runtime.
2763         Improve management of dynamic elements.
2764
2765         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
2766         (group_destroy), (group_commit), (check_queue), (queue_overrun),
2767         (gen_preroll_element), (remove_groups), (unknown_type),
2768         (add_element_stream), (no_more_pads_full), (no_more_pads),
2769         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
2770         (new_decoded_pad), (setup_subtitle), (array_has_value),
2771         (gen_source_element), (source_new_pad), (has_all_raw_caps),
2772         (analyse_source), (remove_decoders), (make_decoder),
2773         (remove_source), (setup_source), (finish_source), (prepare_output),
2774         (gst_play_base_bin_change_state):
2775         * gst/playback/gstplaybasebin.h:
2776         Use more _CAST instead of full type checking casts.
2777         Small cleanups, plug some leaks.
2778         Handle dynamic sources.
2779         Add some helper functions to create lists of strings used for
2780         blacklisting and other stuff.
2781         Refactor some code dealing with analysing the source.
2782         Re-enable sources without pads (like cd:// or other selfcontained
2783         elements).
2784
2785 2006-09-28  Wim Taymans  <wim@fluendo.com>
2786
2787         * gst-libs/gst/audio/gstbaseaudiosink.c:
2788         (gst_base_audio_sink_render):
2789         When we have a timestamp, we can still perform clipping.
2790         When we have no clock, we must play the sample ASAP.
2791
2792 2006-09-28  Wim Taymans  <wim@fluendo.com>
2793
2794         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2795         Set caps on outgoing buffers.
2796
2797         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
2798         (gst_video_rate_event), (gst_video_rate_chain):
2799         * gst/videorate/gstvideorate.h:
2800         Fix videorate some more. Fixes #357977
2801
2802 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
2803
2804         * tests/check/elements/adder.c: (adder_suite):
2805           Don't set timeout to 6 seconds when we're running
2806           in valgrind ... (and how is 6 seconds longer than
2807           the default anyway?)
2808
2809 2006-09-28  Wim Taymans  <wim@fluendo.com>
2810
2811         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2812         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
2813         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
2814         Keep sink and src segment to keep track of time and support more
2815         input formats.
2816         Fix bogus next_offset and run_time calculation, don't understand how
2817         this could have worked before. Fixes #357976.
2818         Remove some unneeded vars.
2819
2820 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
2821
2822         * gst/playback/gstplaybin.c: (remove_sinks):
2823           Only remove visualisation from visbin if there is a visbin (or:
2824           don't throw warnings when closing totem without playing a file).
2825
2826 2006-09-27  Wim Taymans  <wim@fluendo.com>
2827
2828         * gst-libs/gst/audio/gstbaseaudiosink.c:
2829         (gst_base_audio_sink_render):
2830         Add some more info in a WARNING.
2831
2832         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2833         (gst_base_audio_src_create):
2834         Handle PAUSE in create function, use new -core addition to
2835         wait for playing. Fixes pausing and resuming capture from an
2836         audiosrc.
2837
2838         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
2839         (gst_ring_buffer_read):
2840         Constify some more.
2841         Caller supports interrupted reads now.
2842
2843 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2844
2845         * tests/check/Makefile.am:
2846           Another attempt to make the gen64 buildbot happy.
2847
2848 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
2849
2850         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
2851
2852         * ext/libvisual/visual.c: (gst_visual_clear_actors),
2853         (gst_visual_chain), (gst_visual_change_state):
2854           Libvisual plugin was not passing audio data to libvisual 0.4.0 
2855           correctly. Fixes #357800
2856
2857 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2858
2859         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
2860           Add timeout to _get_state() so we see which pipeline it is
2861           that causes trouble on the gen64 build bot.
2862
2863 2006-09-27  Wim Taymans  <wim@fluendo.com>
2864
2865         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2866         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
2867         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
2868         (gst_base_rtp_depayload_set_gst_timestamp):
2869         the source pad always uses fixed caps.
2870
2871 2006-09-27  Wim Taymans  <wim@fluendo.com>
2872
2873         * docs/libs/gst-plugins-base-libs-docs.sgml:
2874         * docs/libs/gst-plugins-base-libs-sections.txt:
2875         * gst-libs/gst/audio/gstaudioclock.c:
2876         * gst-libs/gst/audio/gstaudioclock.h:
2877         * gst-libs/gst/audio/gstaudiosink.c:
2878         * gst-libs/gst/audio/gstaudiosink.h:
2879         * gst-libs/gst/audio/gstaudiosrc.c:
2880         * gst-libs/gst/audio/gstbaseaudiosink.c:
2881         (gst_base_audio_sink_render):
2882         * gst-libs/gst/audio/gstbaseaudiosink.h:
2883         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
2884         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2885         * gst-libs/gst/audio/gstringbuffer.h:
2886         Added docs for the audio libs.
2887
2888 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
2889
2890         * tests/check/Makefile.am:
2891           Temporarily disable test that fails on the bots for unknown reasons.
2892
2893 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
2894
2895         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2896         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2897         Moved AudioCodecType into priv
2898         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
2899
2900 2006-09-25  Wim Taymans  <wim@fluendo.com>
2901
2902         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2903         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
2904         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
2905         (new_pad):
2906         Cleanups and small leak fixes.
2907         Added Depayloaders to valid list of autopluggable elements.
2908
2909 2006-09-25  Wim Taymans  <wim@fluendo.com>
2910
2911         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2912         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
2913         (gen_video_element), (gen_text_element), (gen_audio_element),
2914         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
2915         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
2916         Detect NO_PREROLL state change returns and disable clock distribution to
2917         the sinks so that sync is disabled.
2918         Avoid some type checking and do simple casts instead.
2919         Small cleanups, fix some FIXMEs.
2920         Be more robust when linking user specified elements, catch an report
2921         errors. Fixes #357404.
2922         Fix some leaks in the error paths.
2923
2924 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
2925
2926         * ChangeLog:
2927           ChangeLog surgery for missing bug-number
2928
2929 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2930
2931         Patch by: Peter Kjellerstedt  <pkj at axis com>
2932
2933         * gst/playback/test.c:
2934           Fix compilation with uClibc and -Werror (#357591).
2935
2936 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2937
2938         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
2939           Parse dates that are followed by a time as well (#357532).
2940
2941         * tests/check/libs/tag.c: (test_vorbis_tags):
2942           Add unit test for this.
2943
2944 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2945
2946         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
2947         (gst_audio_convert_transform_caps):
2948         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
2949         * gst/videotestsrc/videotestsrc.h:
2950           A few array const-ifications.
2951
2952 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2953
2954         * tests/check/Makefile.am:
2955           See if this makes the build bots happy.
2956
2957         * tests/check/libs/cddabasesrc.c:
2958           UTF8-ise my name.
2959
2960 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2961
2962         Patch by: Young-Ho Cha <ganadist at chollian dot net>
2963
2964         * gst/subparse/samiparse.c: (handle_start_font),
2965         (fix_invalid_entities):
2966           More case-insensitivity for certain tags; recognise entities with
2967           decimal codes as special entities as well (#357330).
2968
2969 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2970
2971         * gst-libs/gst/Makefile.am:
2972           Need to build tag directory before cdda.
2973
2974 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
2975
2976         * docs/libs/gst-plugins-base-libs-sections.txt:
2977         * gst-libs/gst/cdda/Makefile.am:
2978         * gst-libs/gst/cdda/gstcddabasesrc.c:
2979         (gst_cdda_base_src_base_init):
2980         * gst-libs/gst/cdda/gstcddabasesrc.h:
2981         * gst-libs/gst/tag/tag.h:
2982         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
2983         (gst_tag_register_musicbrainz_tags):
2984           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
2985           depend on libgsttag. This is required so we can extract/read tags like
2986           DISCID without depending on libgstcddabasesrc (which used to register
2987           them).
2988
2989         * gst-libs/gst/tag/gstvorbistag.c:
2990           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
2991           tags (also see #347848).
2992
2993         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
2994           Log vorbis comments we are actually writing. Const-ify array.
2995
2996 2006-09-23  Wim Taymans  <wim@fluendo.com>
2997
2998         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
2999         Improve buffering a bit by avoiding a deadlock because we cannot assume
3000         the underrun is always called.
3001
3002 2006-09-23  Wim Taymans  <wim@fluendo.com>
3003
3004         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3005
3006         * gst-libs/gst/riff/riff-ids.h:
3007         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3008         (gst_riff_create_audio_template_caps):
3009         Added MPEG-4 AAC and id and caps. Fixes #357289
3010         Added WMA9 Lossless id.
3011
3012 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
3013
3014         * ext/gnomevfs/gstgnomevfssrc.c:
3015           Fix misleading docs addition.
3016
3017         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3018           Get rid of compiler warning the right way.
3019
3020 2006-09-22  Wim Taymans  <wim@fluendo.com>
3021
3022         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3023         (gst_base_rtp_depayload_finalize),
3024         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3025         (gst_base_rtp_depayload_push_full),
3026         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3027         (gst_base_rtp_depayload_process),
3028         (gst_base_rtp_depayload_set_gst_timestamp),
3029         (gst_base_rtp_depayload_queue_release):
3030         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3031         Small cleanups.
3032         Fix some leaks.
3033         Refactored the process method and added methods to push from the process
3034         vmethod.
3035         Use _scale functions.
3036         API: gst_base_rtp_depayload_push_ts
3037         API: gst_base_rtp_depayload_push
3038
3039         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3040         timestamps are uint.
3041
3042 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
3043
3044         * gst-libs/gst/interfaces/xoverlay.c:
3045           Remove unused statement from doc example.
3046
3047 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
3048
3049         * gst-libs/gst/interfaces/videoorientation.c:
3050         (gst_video_orientation_iface_init),
3051         (gst_video_orientation_get_hflip),
3052         (gst_video_orientation_get_vflip),
3053         (gst_video_orientation_get_hcenter),
3054         (gst_video_orientation_get_vcenter),
3055         (gst_video_orientation_set_hflip),
3056         (gst_video_orientation_set_vflip),
3057         (gst_video_orientation_set_hcenter),
3058         (gst_video_orientation_set_vcenter):
3059           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3060           in ChangeLog)
3061
3062 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
3063
3064         * tests/check/Makefile.am:
3065         * tests/check/elements/.cvsignore:
3066         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3067         (create_rgb_conversions), (rgb_conversion_free),
3068         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3069         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3070           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3071           but disable for now since it doesn't pass (something wrong with
3072           RGBA somewhere).
3073
3074 2006-09-21  Wim Taymans  <wim@fluendo.com>
3075
3076         * gst/playback/gstplaybasebin.c: (group_commit),
3077         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3078         (queue_out_of_data), (gen_preroll_element),
3079         (preroll_remove_overrun), (probe_triggered):
3080         Refactor handling of overrun detection.
3081         Separate handling of group completion and deadlock detection when doing
3082         network buffering. This should fix some deadlocks that were not detected
3083         because the group was completed.
3084         Add more comments, improve debugging.
3085
3086 2006-09-21  Wim Taymans  <wim@fluendo.com>
3087
3088         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3089         * tests/check/libs/audio.c:
3090         Some more compilation fixes.
3091
3092 2006-09-21  Wim Taymans  <wim@fluendo.com>
3093
3094         * gst-libs/gst/audio/gstringbuffer.c:
3095         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3096         (gst_ring_buffer_read):
3097         Early morning compilation fix.
3098
3099 2006-09-20  Wim Taymans  <wim@fluendo.com>
3100
3101         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3102         * tests/check/elements/multifdsink.c: (GST_START_TEST):
3103         * tests/check/elements/videorate.c: (GST_START_TEST):
3104         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3105         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3106         Fix some warnings.
3107
3108 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3109
3110         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3111         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3112         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3113           Handcrafted merge to help CVS understanding what I changed and what
3114           not.
3115
3116 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
3117
3118         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3119         (gst_xvimagesink_get_times):
3120           change colorkey behaviour back according to #354773 comment 6/7
3121
3122 2006-09-19  Michael Smith  <msmith@fluendo.com>
3123
3124         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3125         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3126         (gst_multi_fd_sink_recover_client),
3127         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3128         (gst_multi_fd_sink_get_property):
3129         * gst/tcp/gstmultifdsink.h:
3130           Implement stubbed out properties unit-type, units-soft-max,
3131           units-max, to allow specifying maximum sizes in units other than
3132           buffers.
3133           Fixes #355935
3134
3135 2006-09-19  Wim Taymans  <wim@fluendo.com>
3136
3137         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3138         (gst_riff_create_audio_template_caps):
3139         Reorder the audio formats a bit for clarity.
3140         Detect and create caps for MSGSM and MSN (WAV49).
3141         Fixes #356596.
3142
3143         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3144         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3145         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3146         Small cleanups, move error handling out of normal flow for clarity.
3147
3148 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3149
3150         * docs/libs/gst-plugins-base-libs-docs.sgml:
3151         * docs/libs/gst-plugins-base-libs.types:
3152         * gst-libs/gst/interfaces/Makefile.am:
3153         * gst-libs/gst/interfaces/videoorientation.c:
3154         (gst_video_orientation_get_type),
3155         (gst_video_orientation_iface_init),
3156         (gst_video_orientation_get_hflip),
3157         (gst_video_orientation_get_vflip),
3158         (gst_video_orientation_get_hcenter),
3159         (gst_video_orientation_get_vcenter),
3160         (gst_video_orientation_set_hflip),
3161         (gst_video_orientation_set_vflip),
3162         (gst_video_orientation_set_hcenter),
3163         (gst_video_orientation_set_vcenter):
3164         * gst-libs/gst/interfaces/videoorientation.h:
3165           API: Add new interface to control video orientation (fixes #354908)
3166
3167 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3168
3169         * gst/videotestsrc/gstvideotestsrc.c:
3170           Use G_UNLIKELY in _create and log one more detail.
3171           
3172         (gst_video_test_src_get_times), (gst_video_test_src_create):
3173         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3174           Use gst_util_uint64_scale_int in _get_times().
3175
3176 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3177
3178         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3179           Give better warning message (add object and detail).
3180
3181 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3182
3183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3184         (gst_xvimagesink_get_times):
3185           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3186           #354773), use gst_util_uint64_scale_int in _get_times()
3187
3188 2006-09-18  Michael Smith  <msmith@fluendo.com>
3189
3190         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3191           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3192           always true, leading to dropping all timestamps.
3193
3194 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
3195
3196         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3197         (gst_visual_chain), (gst_visual_change_state):
3198           update to work also with libvisual 0.4 API, fix double unref (#355914)
3199           
3200         * tools/gst-launch-ext.1.in:
3201         * tools/gst-visualise.1.in:
3202           remove references to old man-pages
3203
3204         * tests/examples/seek/seek.c: (main):
3205           add real meadi-buttons, add tool-tips for the seek-options, arrange
3206           seek options in a table
3207
3208 2006-09-18  Michael Smith  <msmith@fluendo.com>
3209
3210         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3211         (gst_ogg_mux_push_buffer):
3212           Don't generate out-of-order timestamps from oggmux, instead clamp
3213           output timestamps to be >= the previously output ts.
3214           Fixes #355595
3215
3216 2006-09-18  Michael Smith  <msmith@fluendo.com>
3217
3218         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3219         (gst_multi_fd_sink_class_init):
3220           Updates, fixes, and typo corrections for multifdsink. No functional
3221           changes.
3222
3223 2006-09-17  Michael Smith  <msmith@fluendo.com>
3224
3225         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3226           Don't crash on truncated files - check that we got an 8 byte buffer
3227           before trying to memcmp it.
3228
3229 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3230
3231         * gst/playback/gstplaybasebin.c: (get_active_source):
3232           Make stream-switching appear instant to the application
3233           (ie. make sure that a g_object_get on 'current-foo' returns
3234           the stream previously set with g_object_set(). Totem needs
3235           this to update stream-related meta-info (like audio-codec)
3236           correctly when switching streams.
3237
3238 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
3239
3240         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3241         (gst_alsa_mixer_ensure_track_list):
3242           Try harder to guess which mixer track is the master mixer
3243           track (instead of just taking the first one that has a pvolume).
3244           Fixes #342228.
3245
3246 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3247
3248         reviewed by: <delete if not using a buddy>
3249
3250         * gst-libs/gst/audio/audio.h:
3251         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3252
3253 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3254
3255         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3256         (gst_audio_convert_transform_caps):
3257           Get structure-name just once.
3258
3259 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3260
3261         * tests/check/elements/audioresample.c: (GST_START_TEST):
3262         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3263         * tests/check/elements/volume.c: (GST_START_TEST):
3264         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3265         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3266         (test_pipeline), (GST_START_TEST):
3267         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3268         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3269           Fix big batch of compiler warnings.
3270
3271 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
3272
3273         * ext/gnomevfs/gstgnomevfssrc.c:
3274           Add docs about icydemux usage in connection with gnomevfssrc
3275
3276         * ext/libvisual/visual.c:
3277         * ext/ogg/gstoggaviparse.c:
3278         * ext/ogg/gstoggdemux.c:
3279         * ext/ogg/gstoggmux.c:
3280         * ext/ogg/gstoggparse.c:
3281         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3282         * gst-libs/gst/audio/gstaudiosink.c:
3283         * gst-libs/gst/audio/gstaudiosrc.c:
3284         * gst/audiorate/gstaudiorate.c:
3285           More G_OBJECT macro fixing.
3286
3287         * gst/audiotestsrc/gstaudiotestsrc.h:
3288           Fix wrong info in header due to copy & paste
3289
3290 2006-09-15  Wim Taymans  <wim@fluendo.com>
3291
3292         * gst-libs/gst/audio/gstbaseaudiosink.c:
3293         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3294         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3295         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3296         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3297         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3298         Do the delay calculation in the source/sink base classes as this is
3299         specific for the capture/playback mode.
3300         Try to fixate a bit better, like round depth up to a multiple of 8
3301         bigger than width.
3302         Handle underruns correctly by marking DISCONT on buffers and adjusting
3303         timestamps to handle the gap.
3304         Set offset/offset_end correctly on buffers.
3305
3306         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3307         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3308         (gst_ring_buffer_read):
3309         Remove resync and underrun recovery from the ringbuffer.
3310         Fix ringbuffer read code on under/overrun.
3311
3312 2006-09-15  Wim Taymans  <wim@fluendo.com>
3313
3314         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3315         (gst_play_base_bin_init), (fill_buffer), (check_queue),
3316         (queue_threshold_reached), (gst_play_base_bin_set_property),
3317         (gst_play_base_bin_get_property):
3318         * gst/playback/gstplaybasebin.h:
3319         Don't use a 0 low watermark when buffering, it is catching starvation
3320         way too late. Instead, use a 3 second queue with 30 and 95
3321         percent low/high watermarks. 
3322         Added queue-min-threshold property to configure low watermark.
3323         Use new _buffering message API.
3324         Make queue_threshold variable big enough to store a uint64 time value.
3325         API: playbin::queue-min-threshold property.
3326
3327 2006-09-15  Wim Taymans  <wim@fluendo.com>
3328
3329         * configure.ac:
3330         We require 0.10.10.1 now because of _wait_preroll().
3331
3332         * gst-libs/gst/audio/gstbaseaudiosink.c:
3333         (gst_base_audio_sink_render):
3334         Use gst_base_sink_wait_preroll().
3335
3336 2006-09-15  Wim Taymans  <wim@fluendo.com>
3337
3338         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3339         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3340         Use DEBUG_OBJECT more.
3341
3342 === release 0.10.10 ===
3343
3344 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3345
3346         patch by: Michael Smith <msmith at fluendo dot com>
3347
3348         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3349         (gst_multi_fd_sink_client_queue_buffer),
3350         (gst_multi_fd_sink_new_client):
3351         * tests/check/elements/multifdsink.c: (GST_START_TEST),
3352         (multifdsink_suite):
3353           Fix implementation of sync-method 'next-keyframe'
3354           Closes #354594
3355
3356 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3357
3358         patch by: Wim Taymans <wim at fluendo dot com>
3359
3360         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3361         This patch removes the RANDOM flag that was incorrectly introduced with
3362         revision 1.91.  Fixes #354590
3363
3364 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
3365
3366         * tests/check/Makefile.am:
3367           Random variation in Makefile line to see if it makes the
3368           gen64-base-full bot any happier.
3369
3370 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3371
3372         * tests/check/pipelines/oggmux.c: (oggmux_suite):
3373           Disable test that fails at the moment (killed after timeout).
3374
3375 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
3376
3377         Patch by: James Livingston  <doclivingston at gmail.com>
3378
3379         * tests/check/Makefile.am:
3380         * tests/check/pipelines/.cvsignore:
3381         * tests/check/pipelines/oggmux.c: (get_page_codec),
3382         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3383         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3384         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3385         (test_theora_vorbis), (oggmux_suite):
3386           Add simple unit test for oggmux from #337026 with checking for the
3387           EOS flags disabled for the time being.
3388
3389 2006-09-04  Wim Taymans  <wim@fluendo.com>
3390
3391         patch by: Alessandro Dessina <alessandro nnva org>
3392
3393         * ext/ogg/gstoggmux.c:
3394         Add cmml caps to oggmux. Fixes #353912
3395
3396 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3397
3398         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3399           Returning a return value often helps. In this case, we
3400           don't need the return value anyway, so just get rid of it.
3401           Should make build bots much happier.
3402
3403 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
3404
3405         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3406         (paint_get_structure), (gst_video_test_src_get_size),
3407         (gst_video_test_src_smpte), (gst_video_test_src_snow),
3408         (gst_video_test_src_unicolor), (paint_setup_AYUV),
3409         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3410         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3411         * gst/videotestsrc/videotestsrc.h:
3412           Add support for AYUV and the various RGBA formats. Initialise
3413           fields of paintinfo structs allocated on the stack.
3414
3415         * tests/check/elements/videotestsrc.c: (right_shift_colour),
3416         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3417         (check_rgb_buf), (videotestsrc_suite):
3418           Add unit tests for videotestsrc's RGB output.
3419
3420 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3421
3422         * gst/videotestsrc/gstvideotestsrc.c:
3423         (gst_video_test_src_pattern_get_type),
3424         (gst_video_test_src_set_pattern):
3425         * gst/videotestsrc/gstvideotestsrc.h:
3426         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3427         (gst_video_test_src_black), (gst_video_test_src_white),
3428         (gst_video_test_src_red), (gst_video_test_src_green),
3429         (gst_video_test_src_blue):
3430         * gst/videotestsrc/videotestsrc.h:
3431           Add more uni-colour patterns ("white", "red", "green", and "blue").
3432
3433 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
3434
3435         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3436           Fix stride for YVYU, should be word-aligned (#353658).
3437
3438 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
3439
3440         * gst/adder/gstadder.c: (gst_adder_src_event):
3441           Fix build.
3442
3443 2006-08-31  Edward Hervey  <edward@fluendo.com>
3444
3445         * gst/adder/gstadder.c: (forward_event_func),
3446         (gst_adder_src_event), (gst_adder_collected),
3447         (gst_adder_change_state):
3448         * gst/adder/gstadder.h:
3449         Remember the start position asked in the incoming seeks, so we can
3450         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3451         of assuming it will always be 0).
3452
3453 2006-08-31  Edward Hervey  <edward@fluendo.com>
3454
3455         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3456         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3457         (gst_ogg_demux_loop):
3458         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3459
3460 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
3461
3462         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3463         (gst_ffmpegcsp_get_unit_size):
3464           Return FALSE instead of returning a random false unit
3465           size when the format isn't known/supported (even if
3466           this shouldn't happen under normal circumstances).
3467
3468 2006-08-29  Wim Taymans  <wim@fluendo.com>
3469
3470         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
3471
3472         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3473         (gst_gnome_vfs_src_start):
3474         Try harder to get the size from a uri by using _info_uri() when
3475         _info_from_handle() does not give us enough info. 
3476         Also follow symlinks when getting the size.
3477         Partially Fixes #332864.
3478
3479 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3480
3481         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
3482
3483         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3484         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3485         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3486         (gst_alsa_mixer_set_record):
3487         * ext/alsa/gstalsamixertrack.c:
3488         (gst_alsa_mixer_track_update_alsa_capabilities),
3489         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3490         (gst_alsa_mixer_track_update):
3491         * ext/alsa/gstalsamixertrack.h:
3492           Improve and fix mixer track handling, in particular better handling
3493           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3494           separate track objects for tracks that have both capture and playback
3495           volume (and label them differently as well so they're not mistakenly
3496           assumed to be duplicates); classify mixer tracks that only affect
3497           the audible volume of something (rather than the capture volume)
3498           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3499           for capture tracks to correspond to alsa-pswitch alsa-cswitch
3500           (following the meaning documented in the mixer interface header
3501           file); add support for alsa's exclusive cswitch groups; update/sync
3502           state/flags better if mixer settings are changed by another
3503           application. Fixes #336075.
3504
3505 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
3506
3507         * gst/playback/gstplaybin.c:
3508           Improve docs: add section about BUFFERING messages sent by playbin.
3509
3510 2006-08-29  Michael Smith  <msmith@fluendo.com>
3511
3512         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3513         (gst_vorbis_enc_buffer_check_discontinuous),
3514         (gst_vorbis_enc_chain):
3515           Ignore explicit DISCONT marked on buffers (which is often spurious,
3516           particularly when using multiple segments), in favour of solely
3517           using the timestamps/durations.
3518
3519 2006-08-29  Edward Hervey  <edward@fluendo.com>
3520
3521         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3522         Don't rely on incoming buffers offset anymore, since it is completely
3523         broken when using multiple segments.
3524         Instead convert the incoming buffers timestamp to running time, and
3525         then convert that value to the offsets.
3526         Also inform GstSegment of the last outputted stop position, which is
3527         needed if we received several segments with an unknown stop value.
3528
3529 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3530
3531         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3532           fix buffer unreffing on a header push failure
3533
3534 2006-08-28  Wim Taymans  <wim@fluendo.com>
3535
3536         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3537         (gst_audio_rate_chain):
3538         Make the metadata of the buffer writable before changing its
3539         flags.
3540
3541 2006-08-28  Wim Taymans  <wim@fluendo.com>
3542
3543         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3544         (gst_audio_rate_setcaps), (gst_audio_rate_init),
3545         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3546         (gst_audio_rate_chain), (gst_audio_rate_change_state):
3547         Fix audiorate some more.
3548         Reset and resync counters on flush and READY.
3549         Handle the DISCONT flag correctly.
3550         Use GstSegment to track position.
3551         Fail when not negotiated.
3552         Fixes #353234.
3553
3554 2006-08-25  Michael Smith  <msmith@fluendo.com>
3555
3556         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3557           Fix spelling.
3558           Remove accidently included debug line.
3559
3560 2006-08-25  Wim Taymans  <wim@fluendo.com>
3561
3562         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3563         Small cleanups.
3564         If a buffer is received with no caps, make the buffer metadata
3565         writable and set the caps, making sure that we don't screw up the
3566         refcounts.
3567
3568 2006-08-25  Michael Smith  <msmith@fluendo.com>
3569
3570         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3571         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3572           Fix memory leaks and misleading debug messages, add a couple of
3573           comments.
3574
3575         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3576         (gst_multi_fd_sink_render):
3577           Do not use gst_buffer_make_writable() in a basesink render method,
3578           as it may incorrectly unref the buffer. Instead, use convoluted
3579           dance to avoid copying the buffer except when we need to.
3580
3581 2006-08-25  Michael Smith  <msmith@fluendo.com>
3582
3583         * ext/vorbis/vorbisenc.c:
3584         (gst_vorbis_enc_buffer_check_discontinuous):
3585           Allow very small discontinuities in the timestamps. These we can't
3586           do anything useful with anyway (because vorbis's timestamps have
3587           only sample granularity), and are commonly produced by elements with
3588           minor bugs. Allow up to 1/2 a sample out.
3589           Fixes #351742.
3590
3591 2006-08-24  Wim Taymans  <wim@fluendo.com>
3592
3593         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3594         (play_scrub_toggle_cb), (main):
3595         Add a checkbox to enable play scrubbing. Makes it possible to disable
3596         normal scrubbing.
3597
3598 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
3599
3600         * tests/check/elements/.cvsignore:
3601           make buildbot happy
3602
3603 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3604
3605         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3606         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3607         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3608         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3609         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3610         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3611         (gst_ogm_text_parse_strip_trailing_zeroes),
3612         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3613         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3614           Refactor ogm parse, do better input checking, misc. clean-ups.
3615           Cache incoming events and push them once the source pad has
3616           been created. Don't pass unterminated strings to sscanf().
3617           Strip trailing zeroes from subtitle text output, since they
3618           are not valid UTF-8. Don't push vorbiscomment packets on
3619           the subtitle text pad. Output perfect streams if possible.
3620
3621 2006-08-23  Wim Taymans  <wim@fluendo.com>
3622
3623         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3624         Waits for tasks to settle down so that we clean up correctly for 
3625         valgrind.
3626
3627 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3628
3629         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3630           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3631           actually return return value in taglists_are_equal.
3632
3633 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
3634
3635         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3636           Fix crash due to broken bitstream parsing on x86-64: can't make
3637           any assumptions about sizeof(struct) due to alignment/packing
3638           differences on different architectures. Fixes #351790.
3639
3640 2006-08-22  Wim Taymans  <wim@fluendo.com>
3641
3642         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3643         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3644         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3645         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3646         (gst_riff_parse_info):
3647         Protect public functions against bad input.
3648         Do some cleanups.
3649         Fix documentation.
3650
3651 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3652
3653         * gst-libs/gst/riff/riff-ids.h:
3654         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3655           Add voxware audio IDs (even if we can't play it) (#351795).
3656
3657 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3658
3659         * gst-libs/gst/riff/riff-media.c:
3660         (gst_riff_create_video_template_caps),
3661         (gst_riff_create_audio_template_caps),
3662         (gst_riff_create_iavs_template_caps):
3663           Const-ify some arrays and use G_N_ELEMENTS instead
3664           of wasting oodles of RAM on terminator bits.
3665
3666 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
3667
3668         * gst-libs/gst/tag/gstvorbistag.c:
3669         (gst_tag_list_to_vorbiscomment_buffer):
3670         * tests/check/libs/tag.c: (GST_START_TEST):
3671           And the same for _to_vorbiscomment_buffer(): allow
3672           id_data_len == 0 for speex.
3673
3674 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3675
3676         * configure.ac:
3677         * docs/plugins/Makefile.am:
3678         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3679         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3680         * docs/plugins/inspect/plugin-gdp.xml:
3681         * gst/gdp/Makefile.am:
3682         * tests/check/Makefile.am:
3683           Move GDP plugin to -base from -bad.  Closes #347783.
3684
3685 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3686
3687         * gst-libs/gst/tag/gstvorbistag.c:
3688         (gst_tag_list_from_vorbiscomment_buffer):
3689           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3690           Also add some checks to make sure we don't memcmp() beyond the end of
3691           vorbiscomment buffer if the ID to check for is larger than the buffer.
3692
3693         * tests/check/libs/tag.c: (GST_START_TEST):
3694           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3695
3696 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
3697
3698         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3699         (gst_vorbis_enc_set_metadata):
3700           Use vorbis comment utility functions from libgsttag
3701           instead of re-inventing the wheel (partially fixes #347091).
3702
3703 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
3704
3705         * tests/check/elements/audioconvert.c: (GST_START_TEST):
3706         Fix leaks. Wait for state transitions that might happen ASYNC, as well
3707         as some that won't.
3708
3709 2006-08-21  Wim Taymans  <wim@fluendo.com>
3710
3711         * docs/libs/Makefile.am:
3712         * docs/libs/gst-plugins-base-libs-sections.txt:
3713         * docs/libs/gst-plugins-base-libs.types:
3714         Don't try to GObject scan the netbuffer as it's not a GObject.
3715         Fixes #351308.
3716
3717         * gst-libs/gst/netbuffer/gstnetbuffer.c:
3718         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3719         Document GstNetBuffer.
3720
3721 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
3722
3723         * tests/check/elements/audioconvert.c: (GST_START_TEST),
3724         (audioconvert_suite):
3725           Add testcase for caps-size-explosion
3726
3727 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
3728
3729         * gst/audioconvert/gstaudioconvert.c:
3730         (gst_audio_convert_get_unit_size), (set_structure_widths):
3731           Lower debug, use g_assert in _get_unit_size
3732
3733         * gst/audioresample/gstaudioresample.c:
3734         (audioresample_get_unit_size):
3735         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3736         (gst_ffmpegcsp_get_unit_size):
3737         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3738           use g_assert in _get_unit_size
3739
3740 2006-08-18  Wim Taymans  <wim@fluendo.com>
3741
3742         * docs/libs/gst-plugins-base-libs-sections.txt:
3743         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3744         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3745         (gst_rtp_buffer_get_payload_buffer):
3746         * gst-libs/gst/rtp/gstrtpbuffer.h:
3747         Document GstRTPBuffer.
3748         Added function to efficiently strip payload headers.
3749         API: gst_rtp_buffer_get_payload_subbuffer()
3750
3751 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
3752
3753         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3754         (gst_tag_to_vorbis_comments):
3755           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
3756           tags and deserialise them properly as well (#347091).
3757           Add some more gtk-doc blurbs and also some g_return_if_fail().
3758
3759         * tests/check/libs/tag.c: (GST_START_TEST),
3760         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
3761           More tests.
3762
3763 2006-08-17  Wim Taymans  <wim@fluendo.com>
3764
3765         * ext/ogg/Makefile.am:
3766         * ext/ogg/gstogg.c: (plugin_init):
3767         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
3768         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
3769         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
3770         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
3771         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
3772         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
3773         Added ogg-in-avi parser element. Fixes #140139.
3774
3775         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
3776         Fixed a bug in oggdemux debug code.
3777
3778         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3779         (gst_riff_create_audio_template_caps):
3780         Recognise Ogg in the AVI extensible wave format.
3781
3782 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
3783
3784         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
3785           Make buffer durations add up (duration should be next_ts-ts for
3786           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
3787           from CVS.
3788
3789         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
3790         (test_buffer_timestamps), (cddabasesrc_suite):
3791           Add unit test for the above.
3792
3793         * tests/check/Makefile.am:
3794           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
3795           to see what happens.
3796
3797 2006-08-16  Wim Taymans  <wim@fluendo.com>
3798
3799         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
3800         (gst_alsasink_open):
3801         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
3802         (gst_alsasrc_open):
3803         Avoid setting and using a NULL device name.
3804         Print more info when we fail to open a device.
3805
3806 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
3807
3808         * docs/libs/gst-plugins-base-libs-sections.txt:
3809         * gst-libs/gst/tag/tag.h:
3810         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
3811           API: add gst_tag_parse_extended_comment() (#351426).
3812
3813         * tests/check/Makefile.am:
3814         * tests/check/libs/.cvsignore:
3815         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
3816           Add unit test for gst_tag_parse_extended_comment().
3817
3818 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
3819
3820         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
3821         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
3822           Fix leak (#351502).
3823
3824 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
3825
3826         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3827         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3828         * docs/plugins/gst-plugins-base-plugins.args:
3829         * gst/playback/gstplaybin.c:
3830           Document playbin.
3831           
3832         * docs/plugins/inspect/plugin-adder.xml:
3833         * docs/plugins/inspect/plugin-alsa.xml:
3834         * docs/plugins/inspect/plugin-audioconvert.xml:
3835         * docs/plugins/inspect/plugin-audiorate.xml:
3836         * docs/plugins/inspect/plugin-audioresample.xml:
3837         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3838         * docs/plugins/inspect/plugin-cdparanoia.xml:
3839         * docs/plugins/inspect/plugin-decodebin.xml:
3840         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3841         * docs/plugins/inspect/plugin-gnomevfs.xml:
3842         * docs/plugins/inspect/plugin-ogg.xml:
3843         * docs/plugins/inspect/plugin-pango.xml:
3844         * docs/plugins/inspect/plugin-playbin.xml:
3845         * docs/plugins/inspect/plugin-subparse.xml:
3846         * docs/plugins/inspect/plugin-tcp.xml:
3847         * docs/plugins/inspect/plugin-theora.xml:
3848         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3849         * docs/plugins/inspect/plugin-video4linux.xml:
3850         * docs/plugins/inspect/plugin-videorate.xml:
3851         * docs/plugins/inspect/plugin-videoscale.xml:
3852         * docs/plugins/inspect/plugin-videotestsrc.xml:
3853         * docs/plugins/inspect/plugin-volume.xml:
3854         * docs/plugins/inspect/plugin-vorbis.xml:
3855         * docs/plugins/inspect/plugin-ximagesink.xml:
3856         * docs/plugins/inspect/plugin-xvimagesink.xml:
3857           Update to CVS version.
3858
3859 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
3860
3861         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3862         (gst_play_bin_set_property), (gst_play_bin_get_property),
3863         (value_list_append_structure_list),
3864         (gst_play_bin_handle_redirect_message),
3865         (gst_play_bin_handle_message):
3866           API: GstPlayBin::connection-speed
3867           Add "connection-speed" property; re-order redirect messages with
3868           multiple redirect locations depending on the minimum bitrate if
3869           that information is available and a connection speed is set
3870           (#350399).
3871
3872 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
3873
3874         * gst/playback/gstplaybin.c:
3875           Update max volume to the same value that the volume element uses.
3876
3877 2006-08-14  Wim Taymans  <wim@fluendo.com>
3878
3879         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
3880         Less uglyness..
3881
3882 2006-08-14  Wim Taymans  <wim@fluendo.com>
3883
3884         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
3885         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
3886         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
3887         Add some more debug info.
3888         Don't crash when a seek failed.
3889         Actually return the result of the seek instead of TRUE.
3890         Ignore multiple BOS pages with the same serial so that we don't create
3891         the same stream multiple times.
3892         Post an error when we fail to do the initial seek.
3893
3894 2006-08-13  Wim Taymans  <wim@fluendo.com>
3895
3896         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
3897         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
3898         Small code cleanup.
3899
3900         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
3901         (gst_alsa_mixer_new):
3902         Remove hack that always set the device to hw:0*.
3903         Properly find the card name for whatever device was configured.
3904         Do some better debugging.
3905         Fixes #350784.
3906
3907         * ext/alsa/gstalsamixerelement.c:
3908         (gst_alsa_mixer_element_set_property),
3909         (gst_alsa_mixer_element_change_state):
3910         Cleanups.
3911         Handle setting of a NULL device name better.
3912
3913 2006-08-11  Wim Taymans  <wim@fluendo.com>
3914
3915         * gst/adder/gstadder.c:
3916         Don't clip float values. Fixes #350900.
3917
3918 2006-08-11  Andy Wingo  <wingo@pobox.com>
3919
3920         * gst/tcp/gsttcp.c: Really fix the build?
3921
3922         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
3923         fixes the build.
3924
3925 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
3926
3927         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
3928           Float caps shouldn't have a "signed" field.
3929
3930 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
3931
3932         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
3933           Implement SEEKING query in its most basic form, so that we can
3934           at least check if we're seekable or not (#350655).
3935
3936 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
3937
3938         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
3939           The checks here are not even close to anything that would
3940           justify MAXIMUM probability, lowering to POSSIBLE until someone
3941           fixes the checks (case at hand: quicktime redirection files
3942           might start with 00 00 01 XX and pass the checks here just
3943           fine, see #350399).
3944
3945 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
3946
3947         Patch by: Sjoerd Simons  <sjoerd at luon net>
3948
3949         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
3950           Better detection for multipart/x-mixed-replace: accept leading
3951           whitespaces before the boundary marker as well (as our very own
3952           multipartmux used to produce) (#349068).
3953
3954 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
3955
3956         Patch by: Young-Ho Cha  <ganadist at chollian net>
3957
3958         * gst-libs/gst/riff/riff-ids.h:
3959         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3960         (gst_riff_create_audio_template_caps):
3961           Detect DTS audio streams (#350157).
3962
3963 2006-08-05  Andy Wingo  <wingo@pobox.com>
3964
3965         * ext/theora/gsttheoraparse.h:
3966         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
3967         (theora_parse_dispose, theora_parse_set_property)
3968         (theora_parse_get_property, theora_parse_munge_granulepos)
3969         (theora_parse_push_buffer, theora_parse_change_state):
3970         API: GstTheoraParse::synchronization-points
3971         Add a property 'synchronization-points' to fix badly synchronized oggs.
3972
3973 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3974
3975         * tests/check/Makefile.am:
3976         * tests/check/libs/.cvsignore:
3977         * tests/check/libs/audio.c: (structure_contains_channel_positions),
3978         (fixed_caps_have_channel_positions), (GST_START_TEST),
3979         (audio_suite), (main):
3980           Add a few tests for the channel position stuff in libgstaudio.
3981
3982 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3983
3984         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
3985         (gst_alsa_detect_channels):
3986         * ext/alsa/gstalsasink.c:
3987           Add support for cards that (only) do more than 8 channels,
3988           like the Delta 44 (#345188).
3989
3990         * gst-libs/gst/audio/multichannel.c:
3991         (gst_audio_check_channel_positions):
3992         * gst-libs/gst/audio/multichannel.h:
3993           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
3994           unspecified channel position and cannot be combined with any
3995           of the other audio channel positions; adjust position layout
3996           checks accordingly (#345188).
3997
3998 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
3999
4000         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4001           Recognise ancient RealAudio files (see #349779).
4002
4003 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
4004
4005         Patch by: Jens Granseuer  <jensgr at gmx net>
4006
4007         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4008           Add typefinder for Interplay's MVE format (#348973).
4009
4010 2006-08-02  Wim Taymans  <wim@fluendo.com>
4011
4012         Patch by: Marcel Moreaux <marcelm at luon dot net>
4013
4014         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4015         (gst_base_rtp_depayload_add_to_queue):
4016         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4017         Handle RTP sequence number rollover.
4018         Disable jitterbuffer by default.
4019
4020 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
4021
4022         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4023         (audioresample_set_caps):
4024         Don't leak references to the incoming caps. Clean them up when
4025         stopping.
4026
4027         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4028         (gst_video_scale_finalize):
4029         Don't leak our temporary pixel buffer.
4030
4031         * tests/check/Makefile.am:
4032         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4033         (GST_START_TEST), (simple_launch_lines_suite):
4034
4035         Fix leaks and re-enable the test for valgrind checking.
4036
4037 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
4038
4039         Patch by: Sjoerd Simons  <sjoerd at luon net>
4040
4041         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4042         (plugin_init):
4043           Add typefind function for multipart/x-mixed-replace (#348916).
4044
4045 2006-07-28  Wim Taymans  <wim@fluendo.com>
4046
4047         * gst/adder/gstadder.c: (gst_adder_setcaps),
4048         (gst_adder_query_duration):
4049         Fix leak in duration query.
4050         Reflow some docs and notes.
4051
4052 2006-07-28  Michael Smith  <msmith@fluendo.com>
4053
4054         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4055         (vorbisenc_suite):
4056           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4057           aspect of it.
4058
4059 2006-07-28  Michael Smith  <msmith@fluendo.com>
4060
4061         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4062         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4063         (gst_vorbis_enc_push_buffer),
4064         (gst_vorbis_enc_buffer_check_discontinuous),
4065         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4066         * ext/vorbis/vorbisenc.h:
4067           Handle discontinuities in the input vorbis stream correctly,
4068           so that the output is properly timestamped (and has good granulepos
4069           values). Needs some oggmux fixes too.
4070
4071 2006-07-27  Wim Taymans  <wim@fluendo.com>
4072
4073         patch by: Kai Vehmanen <kv2004 eca cx>
4074
4075         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4076         (gst_base_rtp_depayload_chain),
4077         (gst_base_rtp_depayload_handle_sink_event),
4078         (gst_base_rtp_depayload_change_state):
4079         Don't send multiple newsegments with different formats.
4080         Fixes #348677.
4081
4082 2006-07-26  Wim Taymans  <wim@fluendo.com>
4083
4084         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4085         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4086         Make seeking in ogg more accurate again by doing the more correct
4087         granuletime to stream time conversion.
4088
4089 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4090
4091         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4092         (gst_multi_fd_sink_new_client):
4093           debug a little more understandably
4094           do not use goto as a substitute for break, especially if
4095           break is also being used
4096
4097 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
4098
4099         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4100         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4101           Remove GLib-2.6 compatibility cruft.
4102
4103 2006-07-24  Wim Taymans  <wim@fluendo.com>
4104
4105         * gst-libs/gst/audio/gstbaseaudiosink.c:
4106         (gst_base_audio_sink_render):
4107         Don't try to align a sample to an unknown value.
4108
4109 2006-07-24  Wim Taymans  <wim@fluendo.com>
4110
4111         * gst-libs/gst/audio/gstbaseaudiosink.c:
4112         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4113         When the audio clock is slaved to another clock, never try to align
4114         samples but trust the rate interpolation algorithm.
4115
4116 2006-07-24  Wim Taymans  <wim@fluendo.com>
4117
4118         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4119         Don't try to calculate silence samples, base class does this much
4120         better now.
4121
4122         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4123         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4124         (gst_ring_buffer_acquire):
4125         Calculate silence samples correctly.
4126
4127         * gst-libs/gst/audio/gstringbuffer.h:
4128         Add _CAST macro.
4129
4130 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
4131
4132         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4133           Limit search for the first markup tag to the first few kB of
4134           the file. If we don't find one there, it's highly unlikely that
4135           this is an XML(-ish) file.
4136
4137 2006-07-21  Andy Wingo  <wingo@pobox.com>
4138
4139         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4140         test to the one in vorbisenc. Also commented out.
4141
4142         * tests/check/pipelines/vorbisenc.c: 
4143         (test_discontinuity): New test, commented out until Mike lands
4144         some elite vorbisenc patches.
4145
4146         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4147         Bufferstraw was actually factored out of these tests. Now we share
4148         code yay.
4149
4150         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4151         for bufferstraw addition to gstcheck.
4152
4153 2006-07-21  Wim Taymans  <wim@fluendo.com>
4154
4155         * ext/theora/theoradec.c: (clip_buffer):
4156         Better clipping.
4157
4158 2006-07-21  Wim Taymans  <wim@fluendo.com>
4159
4160         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4161         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4162         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4163         Fix leak.
4164         Avoid type casting when we can.
4165
4166         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4167         Fix mem leak.
4168
4169 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
4170
4171         * ext/alsa/gstalsamixerelement.c:
4172         (gst_alsa_mixer_element_change_state):
4173           Make state change fail if the specified device can't be opened
4174           for some reason.
4175
4176 2006-07-20  Wim Taymans  <wim@fluendo.com>
4177
4178         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4179         (cb_newpad), (main):
4180         Example of a small audio/video player using decodebin.
4181
4182 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
4183
4184         * gst-libs/gst/riff/riff-ids.h:
4185           Add 'fact' chunk id
4186
4187 2006-07-19  Wim Taymans  <wim@fluendo.com>
4188
4189         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4190         (gst_base_rtp_depayload_chain),
4191         (gst_base_rtp_depayload_change_state):
4192         Don't assert when not negotiated but post a meaningfull 
4193         error message. Fixes #347918.
4194
4195         * gst-libs/gst/rtp/gstbasertppayload.c:
4196         Add comment about better default MTU size.
4197
4198         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4199         Small cleanups, start docs.
4200
4201 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4202
4203         Patch by: Martin Szulecki
4204
4205         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4206           If "device-name" is requested and the device is not
4207           open, try to temporarily open it to obtain this
4208           information (#342494).
4209
4210 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
4211
4212         * gst-libs/gst/tag/gstid3tag.c:
4213           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4214
4215         * gst-libs/gst/tag/gsttageditingprivate.h:
4216         * gst-libs/gst/tag/gstvorbistag.c:
4217           Some more random const-ifications.
4218
4219 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
4220
4221         * gst-libs/gst/riff/riff-ids.h:
4222         * gst-libs/gst/riff/riff-media.c:
4223         (gst_riff_create_video_template_caps):
4224           Add more FOURCCs (sort list to make stuff easier to find),
4225           add comment what those 16 bytes in struct _gst_riff_strh according to
4226           one avi-dumper are
4227
4228 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4229
4230         * gst-libs/gst/audio/multichannel.c:
4231         (gst_audio_check_channel_positions),
4232         (gst_audio_fixate_channel_positions):
4233           Const-ify two arrays.
4234
4235 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
4236
4237         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4238           Fix typo, so that alsasink also advertises 8 channels
4239           if that's supported (tags: can, worms, open, alsa, ph34r).
4240
4241 2006-07-17  Wim Taymans  <wim@fluendo.com>
4242
4243         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4244         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4245         *sigh*, when is the compiler going to warn when the comments
4246         are out-of-sync with the code.. Refix case of busted theora
4247         headers with 0 granule pos.
4248
4249 2006-07-14  Wim Taymans  <wim@fluendo.com>
4250
4251         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4252         (gst_base_rtp_depayload_wait),
4253         (gst_base_rtp_depayload_change_state),
4254         (gst_base_rtp_depayload_set_property),
4255         (gst_base_rtp_depayload_get_property):
4256         Fix 99% cpu load by waiting for absolute times on the
4257         clock. Fixes #347300.
4258
4259 2006-07-14  Andy Wingo  <wingo@pobox.com>
4260
4261         * ext/theora/gsttheoraparse.h: 
4262         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4263         (theora_parse_push_headers, theora_parse_clear_queue)
4264         (theora_parse_drain_queue_prematurely, )
4265         (theora_parse_sink_event, theora_parse_change_state): Queue events
4266         until we initialized our state, like in vorbisparse.
4267
4268         * ext/vorbis/vorbisparse.h: 
4269         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4270         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4271         (vorbis_parse_drain_queue_prematurely, )
4272         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4273         until we have initialized our state. Fixes seeking after an
4274         initial pad block.
4275
4276 2006-07-14  Andy Wingo  <wingo@pobox.com>
4277
4278         Patch by: Iain Holmes <iaingnome@gmail.com>
4279         
4280         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4281
4282 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
4283
4284         * configure.ac:
4285         Bump nano back to CVS
4286
4287 === release 0.10.9 ===
4288
4289 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
4290
4291         * configure.ac:
4292           releasing 0.10.9, "I walk the line"
4293
4294 2006-07-14  Michael Smith  <msmith@fluendo.com>
4295
4296         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4297           Move a g_cond_signal to earlier to avoid sometimes deadlocking
4298           (commonly happens when running this test under valgrind) when trying
4299           to remove the buffer probe.
4300
4301 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4302
4303         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4304         Fix missing g_unlock from the previous commit
4305
4306 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4307
4308         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4309         (gst_ximagesink_change_state):
4310         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4311         (gst_xvimagesink_change_state):
4312         Implement a locking order to ensure we always take the object lock
4313         before the x_lock and never vice-versa.
4314
4315 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
4316
4317         * gst/playback/gstdecodebin.c: (find_compatibles):
4318         Fix a caps leak when linking (#347304)
4319
4320         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4321         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4322         (gst_ximagesink_change_state):
4323         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4324         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4325         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4326         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4327         Don't leak shared memory resources. Use the object lock to protect
4328         against the xcontext disappearing while returning a buffer from the
4329         pipeline. (#347304)
4330
4331 2006-07-12  Edward Hervey  <edward@fluendo.com>
4332
4333         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4334         (vorbis_handle_comment_packet):
4335         gst_tag_list_merge() returns a new object. Take that into account when
4336         using it. This avoids memleak.
4337         Revert previous commit which is not needed.
4338
4339 2006-07-12  Edward Hervey  <edward@fluendo.com>
4340
4341         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4342         Reset the decoder in finalize so that all fields get cleared.
4343
4344 2006-07-12  Wim Taymans  <wim@fluendo.com>
4345
4346         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4347         (gst_base_audio_src_set_clock),
4348         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4349         Don't try to post an error message when setting the clock fails
4350         as this can happen when adding an element to a bin which will then
4351         deadlock. Fixes #347296.
4352
4353 2006-07-12  Edward Hervey  <edward@fluendo.com>
4354
4355         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4356         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4357         (vorbis_handle_type_packet):
4358         Post tag messages on the bus even if we're not initialized.
4359         If we're not initialized, we still postpone the event pushing of tags.
4360
4361 2006-07-12  Wim Taymans  <wim@fluendo.com>
4362
4363         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4364         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4365         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4366         Revert last two changes that broke the freeze.
4367
4368 2006-07-12  Wim Taymans  <wim@fluendo.com>
4369
4370         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4371         basesink calculates silence sample correctly for us.
4372
4373 2006-07-12  Wim Taymans  <wim@fluendo.com>
4374
4375         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4376         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4377         Calculate correct silence samples so we don't fill our ringbuffer
4378         with noise.
4379
4380 2006-07-12  Edward Hervey  <edward@fluendo.com>
4381
4382         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4383         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4384         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4385         * ext/vorbis/vorbisdec.h:
4386         Delay sending events (newsegment, tags) until the decoder is properly
4387         initialized.
4388         Fixes #347295
4389
4390 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
4391
4392         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4393         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4394           Patch from #347221 adding a test for audioconvert
4395           channel remappings.
4396
4397 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
4398
4399         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4400         (gst_ssa_parse_parse_line):
4401           Don't include the terminating NUL in the buffer size,
4402           it's only there for extra paranoia (would add random
4403           '*' characters at the end of each subtitle since the
4404           terminator itself is not valid UTF-8 technically).
4405           Also fix indenting after boilerplate macro.
4406
4407 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
4408
4409         * gst/playback/gstdecodebin.c: (close_pad_link):
4410           Also emit 'unknown-type' signal (which should really be
4411           called unhandled-type) if we found potential decoders/demuxers
4412           in the registry but none of them worked in the end (as in the
4413           case where the plugins don't exist any longer but are still
4414           listed in the registry). Fixes #329798.
4415
4416 2006-07-08  Andy Wingo  <wingo@pobox.com>
4417
4418         * theoraparse.c (theora_parse_push_buffer)
4419         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4420         Add some more debugging. Fix granulepos reconstruction in the face
4421         of discontinuities.
4422
4423 2006-07-06  Wim Taymans  <wim@fluendo.com>
4424
4425         * gst-libs/gst/audio/gstbaseaudiosink.c:
4426         (gst_base_audio_sink_class_init),
4427         (gst_base_audio_sink_provide_clock):
4428         Use gobject_class instead of G_OBJECT_CLASS (klass)
4429
4430         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4431         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4432         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4433         (gst_base_audio_src_get_time),
4434         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4435         (gst_base_audio_src_create_ringbuffer):
4436         Fix latency and buffer-time constants and properties ala basesink.
4437         Implement pull based scheduling. Fixes #346527.
4438         Set default blocksize in GstBaseSrc to 0, we default to pushing out
4439         one segment.
4440         Refuse slaving to another clock instead of silently not working.
4441         Only provide a clock when we are actually able to do so.
4442         Various small cleanups and compiler hints.
4443
4444 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4445
4446         Patch by: Lutz Mueller <lutz at topfrose de>
4447
4448         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4449         (plugin_init):
4450           Add typefinding for text/html (#346581).
4451
4452 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4453
4454         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4455         (xml_check_first_element), (xml_type_find), (smil_type_find):
4456           Fix SMIL typefinding, make xml_check_first_element() more
4457           useful.
4458
4459 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
4460
4461         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4462         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4463         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4464         * gst/playback/gstplaybasebin.h:
4465           Protect list of elements with a subtitle-encoding property and
4466           the subtitle encoding member itself with a lock of their own
4467           instead of using the object lock. This prevents a dead-lock in
4468           the element-remove callback in some circumstances when shutting
4469           down playbin.
4470
4471 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
4472
4473         * win32/common/libgsttag.def:
4474         Export some new functions.
4475         * win32/vs6/libgstogg.dsp:
4476         Add a link to libgsttag-0.10.lib.
4477
4478 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
4479
4480         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4481           Some const-ification.
4482
4483 2006-07-04  Wim Taymans  <wim@fluendo.com>
4484
4485         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4486         Improve checking if we are dealing with a stream. Added some
4487         more uris that need buffering.
4488
4489 2006-07-03  Edward Hervey  <edward@fluendo.com>
4490
4491         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4492         Remove unused variable.
4493
4494 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4495
4496         * Makefile.am:
4497           include lcov.mak
4498         * configure.ac:
4499           add GCOV_LIBS to GST_LIBS
4500
4501 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
4502
4503         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
4504
4505         * ext/alsa/gstalsasrc.c:
4506           Add 32 bps to template caps and increase channels range
4507           from [1,2] to [1,MAX]. See #346326.
4508
4509 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
4510
4511         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4512           Recognise 'WMVA' video codec fourcc (#345879).
4513           
4514 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
4515          
4516         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
4517           Fixed nasty memory leak
4518
4519 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4520
4521         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4522         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4523           fix logging
4524
4525 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
4526
4527         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4528         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4529         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4530         Protect remove_fakesink using a mutex, so that we don't try and
4531         remove the fakesink simultaneously from multiple threads.
4532
4533         When going from READY to PAUSED, restore the fakesink, so that
4534         it is there when decodebin gets reused.
4535
4536 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
4537
4538         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4539         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4540         * gst-libs/gst/rtp/gstbasertppayload.c:
4541         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4542         * gst/tcp/gstmultifdsink.c:
4543         * gst/tcp/gsttcpclientsink.c:
4544         * gst/tcp/gsttcpclientsrc.c:
4545         * gst/tcp/gsttcpserversink.c:
4546         * gst/tcp/gsttcpserversrc.c:
4547         * gst/videorate/gstvideorate.c:
4548         * gst/videotestsrc/gstvideotestsrc.c:
4549         * sys/v4l/gstv4ljpegsrc.c:
4550         * sys/v4l/gstv4lmjpegsink.c:
4551         * sys/v4l/gstv4lsrc.c:
4552         * tests/examples/seek/scrubby.c:
4553         * tests/examples/seek/seek.c:
4554           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4555
4556 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4557
4558         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4559           Second field in GEnumValue shouldn't be a description,
4560           but a stringified version of the enum value.
4561
4562 2006-06-22  Wim Taymans  <wim@fluendo.com>
4563
4564         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4565         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4566         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4567         Avoid type checking in buffer casts.
4568         Avoid caps copy in buffer_alloc when we can.
4569         Use pad_peer_accept.
4570
4571 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4572
4573         * gst-libs/gst/tag/tag.h:
4574           Oops, make that 'Since: 0.10.9'.
4575
4576 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4577
4578         * docs/libs/gst-plugins-base-libs-sections.txt:
4579         * gst-libs/gst/tag/tag.h:
4580         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4581         (gst_tag_image_type_get_type):
4582           API: add GstTagImageType enum to describe images contained
4583           in image tags (#345641).
4584
4585 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4586
4587         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4588           Fix warnings with gst-inspect: "buffers-min" property
4589           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4590           typo in property description.
4591
4592 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
4593
4594         Patch by: Cody Russell <bratsche at gnome org>
4595
4596         * gst/audioresample/gstaudioresample.c:
4597         (gst_audioresample_class_init):
4598         * gst/playback/gststreamselector.c:
4599         (gst_stream_selector_class_init):
4600         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4601         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4602         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4603         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4604         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4605         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4606         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4607         * gst/videotestsrc/gstvideotestsrc.c:
4608         (gst_video_test_src_class_init):
4609         * gst/volume/gstvolume.c: (gst_volume_class_init):
4610           Avoid unnecessary class cast check in class_init
4611           functions (#337747).
4612
4613 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
4614
4615         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4616         (gst_text_overlay_video_chain):
4617           g_markup_escape_text() REALLY doesn't like non-UTF8 input
4618           and doesn't validate its input either (and neither did
4619           textoverlay it seems). Let's do that then and fix #345206.
4620
4621 2006-06-19  Wim Taymans  <wim@fluendo.com>
4622
4623         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4624         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4625         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4626         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4627         (find_syncframe), (find_limits), (assign_value),
4628         (count_burst_unit), (gst_multi_fd_sink_new_client),
4629         (gst_multi_fd_sink_handle_client_write),
4630         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4631         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4632         (gst_multi_fd_sink_change_state):
4633         * gst/tcp/gstmultifdsink.h:
4634         Added shiny new burst-on-connect methods.
4635         Add properties to control the minimal amount of data queued.
4636         Small cleanups.
4637         API: bytes-min property
4638         API: time-min property
4639         API: buffers-min property
4640         API: burst-unit property
4641         API: burst-value property
4642         API: add-full signal
4643
4644         * gst/tcp/gsttcp-marshal.list:
4645         Added new marshaller code for the new signal.
4646
4647         * tests/check/elements/multifdsink.c: (GST_START_TEST),
4648         (multifdsink_suite):
4649         Added testcases for new burst methods.
4650
4651 2006-06-19  Edward Hervey  <edward@fluendo.com>
4652
4653         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4654         Implement clipping for accurate seeking.
4655         Closes #345225
4656
4657 2006-06-19  Wim Taymans  <wim@fluendo.com>
4658
4659         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4660
4661         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4662         (gst_video_scale_transform):
4663         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4664
4665 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
4666
4667         * configure.ac:
4668           Fix --disable-external (can't set conditionals conditionally,
4669           #343602).
4670
4671 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4672
4673         * tests/check/elements/audioresample.c: (test_reuse),
4674         (audioresample_suite):
4675           Add test case for bug #342789 fixed below.
4676
4677 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4678
4679         * gst/audioresample/gstaudioresample.c:
4680         (gst_audioresample_class_init), (gst_audioresample_init),
4681         (audioresample_start), (audioresample_stop),
4682         (gst_audioresample_set_property), (gst_audioresample_get_property):
4683           Implement GstBaseTransform::start and ::stop so that audioresample
4684           can clear its internal state properly and be reused instead of
4685           causing non-negotiated errors with playbin under some circumstances
4686           (#342789).
4687
4688         * tests/check/elements/audioresample.c: (setup_audioresample),
4689         (cleanup_audioresample):
4690           Need to set element state here so that ::start and ::stop are
4691           called.
4692
4693 2006-06-16  Wim Taymans  <wim@fluendo.com>
4694
4695         Patch by: Young-Ho Cha <ganadist at chollian dot net>
4696
4697         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4698         Parse extra data better, apparently it's right behind
4699         the normal strf header size. Fixes #343500.
4700
4701 2006-06-16  Wim Taymans  <wim@fluendo.com>
4702
4703         * ext/alsa/gstalsasink.c: (set_hwparams):
4704         If we fail to set the buffer_time and period_time alsa
4705         parameters, post a warning and leave alsa select a 
4706         default instead of failing. Fixes #342085
4707
4708 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4709
4710         * docs/libs/gst-plugins-base-libs-sections.txt:
4711         * gst-libs/gst/cdda/gstcddabasesrc.h:
4712           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4713           out in the header file and shouldn't be listed in the docs.
4714
4715         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4716           Must dereference pointer to fourcc in the debug statement.
4717
4718 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
4719
4720         * docs/libs/Makefile.am:
4721         * docs/libs/gst-plugins-base-libs-docs.sgml:
4722         * docs/libs/gst-plugins-base-libs-sections.txt:
4723         * docs/libs/gst-plugins-base-libs.types:
4724         add remaining symbols into correct setions
4725         
4726         * gst-libs/gst/audio/gstringbuffer.c:
4727         fix incomplete docs
4728         
4729         * gst-libs/gst/audio/gstringbuffer.h:
4730         comment out not yet implemented function
4731         
4732         
4733         * gst-libs/gst/floatcast/floatcast.h:
4734         * gst-libs/gst/netbuffer/gstnetbuffer.c:
4735         add short descriptions
4736         
4737         
4738         * gst-libs/gst/interfaces/propertyprobe.c:
4739         fix return value docs   
4740         
4741         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4742         simplify debug logging
4743         
4744         * gst-libs/gst/riff/riff-read.h:
4745         sync function prototype and docs
4746         
4747         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4748         remove left over symbol
4749
4750 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
4751
4752         * autogen.sh:
4753         * configure.ac:
4754         * docs/Makefile.am:
4755           Use GST_PLUGIN_DOCS macro in configure.ac, add
4756           --enable-plugin-docs default to autogen.sh and use
4757           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
4758
4759 2006-06-15  Wim Taymans  <wim@fluendo.com>
4760
4761         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4762         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
4763         (gst_ogg_demux_loop):
4764         Combine GstFlowReturn from the source pads to give a
4765         meaningfull result to the upstream peer or to stop the
4766         processing task in case of errors.
4767
4768 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4769
4770         * gst/playback/gststreaminfo.c: (cb_probe):
4771           Try GST_TAG_CODEC as fallback when extracting the
4772           codec name; more debug info.
4773
4774 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4775
4776         * ext/ogg/Makefile.am:
4777         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4778           Extract language tags from ogm subtitle streams, so that
4779           the subtitle menu choices are labelled correctly in
4780           Totem (fixes #344708).
4781
4782 2006-06-14  Wim Taymans  <wim@fluendo.com>
4783
4784         Patch by: Alessandro Decina <alessandro at nnva dot org>
4785
4786         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
4787         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
4788         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
4789         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4790         Fix various leaks. Fixes #343699.
4791         Add x-smoke mime type.
4792
4793 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
4794
4795         * gst-libs/gst/riff/riff-ids.h:
4796           Add IDs for 'bext' chunks (see #343837).
4797
4798 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
4799
4800         Patch by: Young-Ho Cha  <ganadist at chollian net>
4801
4802         * gst/subparse/samiparse.c: (sami_context_pop_state),
4803         (handle_start_font), (end_sami_element):
4804           Honour font face tags in SAMI subtitles (#344503).
4805
4806 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4807
4808         * po/POTFILES.in:
4809           add missing files containing translatable strings
4810
4811 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4812
4813         * docs/libs/tmpl/.cvsignore:
4814           we don't want those *.sgml files in CVS either
4815
4816 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4817
4818         * docs/libs/.cvsignore:
4819         * tests/check/elements/.cvsignore:
4820         * tests/check/libs/.cvsignore:
4821           ignore more
4822
4823 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4824
4825         * docs/libs/Makefile.am:
4826           also commiting the changed Makefile.am (added more libs to the
4827           doc-build)
4828
4829 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
4830
4831         * docs/libs/gst-plugins-base-libs-docs.sgml:
4832         * docs/libs/gst-plugins-base-libs-sections.txt:
4833         * docs/libs/gst-plugins-base-libs.types:
4834           first batch of reordering things, add index & hierarchy
4835
4836 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
4837
4838         * configure.ac:
4839           use GST_PKG_CHECK_MODULES, cleans up output
4840
4841 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
4842
4843         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4844           Add support for burn:// URIs (#343385); const-ify things a bit,
4845           use G_N_ELEMENTS instead of hard-coded array size.
4846
4847 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
4848
4849         Patch by: Young-Ho Cha  <ganadist at chollian net>
4850
4851         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
4852           Fix up broken entities before passing them to libxml *sigh*.
4853           (#343303).
4854           
4855 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4856
4857         * configure.ac:
4858           back to TRUNK
4859
4860 === release 0.10.8 ===
4861
4862 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
4863
4864         * configure.ac:
4865           releasing 0.10.8, "Moar gij ziet mij nie"
4866
4867 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
4868
4869         * configure.ac:
4870         * po/af.po:
4871         * po/az.po:
4872         * po/cs.po:
4873         * po/en_GB.po:
4874         * po/hu.po:
4875         * po/it.po:
4876         * po/nb.po:
4877         * po/nl.po:
4878         * po/or.po:
4879         * po/sq.po:
4880         * po/sr.po:
4881         * po/sv.po:
4882         * po/uk.po:
4883         * po/vi.po:
4884         * win32/common/config.h:
4885           0.10.7.2 prerelease
4886
4887 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
4888
4889         * docs/libs/tmpl/gstaudio.sgml:
4890         * docs/libs/tmpl/gstcolorbalance.sgml:
4891         * docs/libs/tmpl/gstmixer.sgml:
4892         * docs/libs/tmpl/gstringbuffer.sgml:
4893         * docs/libs/tmpl/gsttuner.sgml:
4894         * docs/libs/tmpl/gstxoverlay.sgml:
4895         * gst-libs/gst/audio/audio.c:
4896         * gst-libs/gst/audio/gstringbuffer.c:
4897         * gst-libs/gst/interfaces/colorbalance.c:
4898         * gst-libs/gst/interfaces/mixer.c:
4899         * gst-libs/gst/interfaces/tuner.c:
4900         * gst-libs/gst/interfaces/xoverlay.c:
4901           move last template doc snippets to source code and delete them
4902
4903 2006-06-06  Michael Smith  <msmith@fluendo.com>
4904
4905         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
4906         (theora_parse_drain_queue):
4907           Mark DELTA_UNIT on non-keyframes.
4908
4909 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
4910
4911         * gst-libs/gst/audio/gstbaseaudiosink.c:
4912         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
4913         * gst-libs/gst/audio/gstbaseaudiosink.h:
4914         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
4915         (gst_ring_buffer_samples_done):
4916         * gst-libs/gst/audio/gstringbuffer.h:
4917         Document better the fact that latency_time and buffer_time are values
4918         stored in microseconds, and not the usual GStreamer nanoseconds.
4919         Change the variables (compatibly) that store them from GstClockTime 
4920         to guint64 to make it more clear that they're not storing clock times.
4921         Also, remove the bogus property description that says the user can
4922         specify -1 to get the default value, since that's never been the case.
4923
4924         When computing the default segment size for the ring buffer, make it
4925         an integer number of samples.
4926
4927         When the sub-class indicates a delay greater than the number of
4928         samples we've written return 0 from the audio sink get_time method.
4929
4930 2006-06-02  Michael Smith  <msmith@fluendo.com>
4931
4932         * tests/check/elements/audioconvert.c: (set_channel_positions),
4933         (get_float_mc_caps), (get_int_mc_caps):
4934         * tests/check/elements/audioresample.c:
4935         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
4936         * tests/check/elements/videorate.c:
4937         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
4938         * tests/check/elements/volume.c:
4939         * tests/check/elements/vorbisdec.c:
4940         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
4941           Don't busy-wait in tests; this was causing test timeouts very
4942           frequently when running under valgrind.
4943
4944 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
4945
4946         * gst/tcp/README:
4947         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
4948         (gst_multi_fd_sink_remove_client_link),
4949         (gst_multi_fd_sink_client_queue_caps),
4950         (gst_multi_fd_sink_client_queue_buffer),
4951         (gst_multi_fd_sink_handle_client_write),
4952         (gst_multi_fd_sink_render):
4953         * gst/tcp/gstmultifdsink.h:
4954           make multifdsink properly deal with streamheader:
4955           - streamheader is taken from caps
4956           - buffers marked with IN_CAPS are not sent
4957           - streamheaders are sent, on connection, from the caps of the
4958             buffer where the client gets positioned to
4959           - further streamheader changes are done every time the client
4960             will receive a buffer with different caps
4961         * tests/check/elements/multifdsink.c: (GST_START_TEST),
4962         (gst_multifdsink_create_streamheader):
4963           add tests for this
4964
4965 2006-06-02  Michael Smith  <msmith@fluendo.com>
4966
4967         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4968           Reinstate limit on channel count. Vorbis does not define the meaning
4969           of > 6 channels, so they're just independent channels. Gstreamer
4970           currently has no mechanism to represent N independent channels.
4971
4972 2006-06-02  Michael Smith  <msmith@fluendo.com>
4973
4974         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
4975           Don't arbitrarily restrict channel counts and rate in vorbis.
4976           In terms of effects likely on real-world files, this fixes 96kHz
4977           playback of vorbis.
4978
4979 2006-06-02  Michael Smith  <msmith@fluendo.com>
4980
4981         * gst/audioconvert/audioconvert.c: (float):
4982           More correct float->int conversion.
4983
4984 2006-06-02  Michael Smith  <msmith@fluendo.com>
4985
4986         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
4987           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
4988           value. Fixes g-critical on trying to play back ogg containing
4989           unknown codec.
4990
4991 2006-06-02  Wim Taymans  <wim@fluendo.com>
4992
4993         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
4994         (setup_source):
4995         * gst/playback/gstplaybasebin.h:
4996         Make the subtitle detection work from any thread so we don't
4997         deadlock. Fixes #343397.
4998
4999 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5000
5001         * gst/volume/Makefile.am:
5002           Seriously, it's not *that* hard to get compilation right.  Even
5003           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5004
5005 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5006
5007         * gst/volume/gstvolume.c: (volume_choose_func),
5008         (volume_update_real_volume), (gst_volume_class_init),
5009         (gst_volume_init), (volume_process_float), (volume_process_int16),
5010         (volume_process_int16_clamp), (volume_set_caps),
5011         (volume_transform_ip), (plugin_init):
5012         * gst/volume/gstvolume.h:
5013         rewrite the passthrough check, split _int16 and _int16_clamp, fix
5014         another property desc., remove unused param from process function
5015         
5016         * tests/check/elements/volume.c: (volume_suite):
5017         reactivate the passthrough test
5018
5019 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
5020
5021         * ext/alsa/gstalsamixerelement.h:
5022         * ext/alsa/gstalsamixeroptions.h:
5023         * ext/alsa/gstalsamixertrack.h:
5024         * ext/gnomevfs/gstgnomevfssink.h:
5025         * ext/gnomevfs/gstgnomevfssrc.h:
5026         * ext/theora/gsttheoradec.h:
5027         * ext/theora/gsttheoraenc.h:
5028         * ext/theora/gsttheoraparse.h:
5029         * ext/vorbis/vorbisparse.h:
5030         * gst-libs/gst/audio/gstaudioclock.h:
5031         * gst-libs/gst/audio/gstaudiofilter.h:
5032         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5033         * gst/audioconvert/gstaudioconvert.h:
5034         * gst/audioresample/gstaudioresample.h:
5035         * gst/audiotestsrc/gstaudiotestsrc.h:
5036         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5037         * gst/playback/gststreamselector.h:
5038         * gst/tcp/gstmultifdsink.h:
5039         * gst/tcp/gsttcpclientsink.h:
5040         * gst/tcp/gsttcpclientsrc.h:
5041         * gst/tcp/gsttcpserversink.h:
5042         * gst/tcp/gsttcpserversrc.h:
5043         * gst/videorate/gstvideorate.h:
5044         * gst/videoscale/gstvideoscale.h:
5045         * gst/videotestsrc/gstvideotestsrc.h:
5046         * gst/volume/gstvolume.h:
5047         * sys/v4l/gstv4ljpegsrc.h:
5048         * sys/v4l/gstv4lmjpegsink.h:
5049         * sys/v4l/gstv4lmjpegsrc.h:
5050         * sys/v4l/gstv4lsrc.h:
5051         * sys/ximage/ximagesink.h:
5052         * sys/xvimage/xvimagesink.h:
5053         * tests/old/testsuite/alsa/sinesrc.h:
5054         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5055
5056 2006-05-31  Wim Taymans  <wim@fluendo.com>
5057
5058         * ext/libvisual/visual.c: (gst_visual_reset),
5059         (gst_visual_sink_setcaps), (gst_visual_sink_event),
5060         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5061         Handle DISCONT.
5062         Use running time before doing QoS.
5063         Handle mono too.
5064
5065 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
5066
5067         * docs/libs/Makefile.am:
5068           set a magic variable to indicate we know the docs are incomplete
5069
5070 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
5071
5072         * win32/common/libgstvideo.def:
5073           export gst_video_calculate_display_ratio
5074         * win32/vs6/libgstvideoscale.dsp:
5075           add link to libgstvideo-0.10.lib
5076
5077 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
5078
5079         * gst/playback/gstplaybasebin.c: (gen_source_element):
5080           Throw a more comprehensible error for rtsp:// URIs (rather
5081           than erroring out with a negotiation error later on) until
5082           we fix playbin to handle rtspsrc etc.
5083
5084 2006-05-30  Wim Taymans  <wim@fluendo.com>
5085
5086         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5087         (gst_text_overlay_text_event):
5088         Added some FIXMEs.
5089
5090 2006-05-30  Wim Taymans  <wim@fluendo.com>
5091
5092         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5093         (gst_adder_request_new_pad), (gst_adder_release_pad):
5094         * gst/adder/gstadder.h:
5095         Implement release_request_pad.
5096         Make padcounter atomic.
5097
5098         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5099         Added check for release_pad in adder.
5100
5101 2006-05-30  Wim Taymans  <wim@fluendo.com>
5102
5103         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5104         Fix build again.
5105
5106 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
5107
5108         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5109         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5110         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5111         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5112         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5113         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5114         (gst_ogg_demux_bisect_forward_serialno),
5115         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5116         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5117           add more debugging
5118           clean up printf formats for granulepos and serialno
5119
5120 2006-05-30  Michael Smith  <msmith@fluendo.com>
5121
5122         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5123         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5124         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5125         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5126         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5127         * ext/vorbis/vorbisenc.h:
5128           Multi-channel caps negotiation, so we can do proper multichannel
5129           vorbis encoding, negotiated through audioconvert.
5130
5131 2006-05-30  Wim Taymans  <wim@fluendo.com>
5132
5133         * tests/check/elements/adder.c: (test_event_message_received),
5134         (test_play_twice_message_received), (GST_START_TEST),
5135         (adder_suite):
5136         Added check to show that #339935 is fixed with ongoing
5137         adder and collectpads fixes.
5138
5139 2006-05-29  Wim Taymans  <wim@fluendo.com>
5140
5141         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5142         Don't leak pad name.
5143
5144 2006-05-29  Wim Taymans  <wim@fluendo.com>
5145
5146         * gst/adder/gstadder.c: (gst_adder_query_duration),
5147         (forward_event_func), (forward_event), (gst_adder_src_event):
5148         Fix adder seeking.
5149         Make query/seeking code threadsafe.
5150
5151         * tests/check/Makefile.am:
5152         * tests/check/elements/adder.c: (test_event_message_received),
5153         (GST_START_TEST), (test_play_twice_message_received):
5154         Fix adder test case.
5155
5156 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
5157
5158         Patch by: Young-Ho Cha  <ganadist at chollian net>
5159
5160         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5161         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5162         (set_encoding_element), (decodebin_element_added_cb),
5163         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5164         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5165         * gst/playback/gstplaybasebin.h:
5166           Add 'subtitle-encoding' property to playbin, so applications can
5167           force a subtitle encoding for non-UTF8 subtitles (#342268).
5168
5169         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5170         (gst_sub_parse_set_property):
5171           Rename recently-added 'encoding' property to 'subtitle-encoding'
5172           (so it can be proxied by playbin/decodebin in a generic way
5173           with less danger of false positives).
5174
5175 2006-05-29  Michael Smith  <msmith@fluendo.com>
5176
5177         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5178         (append_with_other_format), (set_structure_widths),
5179         (gst_audio_convert_transform_caps):
5180           Patch from #341562: give more specific audio caps in get_caps, so
5181           that basetransform  can make better decisions on what caps to
5182           negotiate.
5183
5184 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5185
5186         * tests/check/elements/volume.c:
5187         make it compile again
5188
5189 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5190
5191         * tests/check/elements/volume.c: (volume_suite):
5192         disable test until #343196 gets resolved
5193
5194 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
5195
5196         * gst/adder/gstadder.c: (gst_adder_get_type):
5197         Make it easier to copy&paste
5198         
5199         * gst/volume/Makefile.am:
5200         * gst/volume/gstvolume.c: (volume_update_real_volume),
5201         (gst_volume_set_volume), (gst_volume_set_mute),
5202         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5203         (volume_transform_ip), (volume_update_mute),
5204         (volume_update_volume):
5205         * gst/volume/gstvolume.h:
5206         Add own debug category, move duplicate code to helper function, fix
5207         property texts, add more comments and prepare ffor liboil-goodness
5208         
5209         * tests/check/Makefile.am:
5210         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5211         add test for mute and passtrough case, be a bit more verbose to track
5212         failure
5213         
5214         * tests/check/generic/states.c: (GST_START_TEST):
5215         catch elements that fail to instantiate
5216
5217 2006-05-28  Edward Hervey  <edward@fluendo.com>
5218
5219         * tests/check/pipelines/simple-launch-lines.c:
5220         * tests/check/pipelines/theoraenc.c:
5221         * tests/check/pipelines/vorbisenc.c:
5222         Comment out tests using parse_launch() if core was built without
5223         parsing capabilities.
5224
5225 2006-05-27  Edward Hervey  <edward@fluendo.com>
5226
5227         * tests/check/Makefile.am:
5228         Extra bonus points for whoever explains to ensonic that you are meant
5229         to test unit tests thoroughly before commiting them, especially if
5230         you know it's going to break.
5231         De-activated element/adder tests.
5232
5233 2006-05-27  Edward Hervey  <edward@fluendo.com>
5234
5235         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5236         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5237         Marking caps conversion issues as GST_WARNING is way too verbose,
5238         Moving them to GST_LOG.
5239
5240 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
5241
5242         * README:
5243           Replace current README (containing the release notes from
5244           some 0.9.x version) with a proper README taken from the core.
5245
5246 2006-05-26  Wim Taymans  <wim@fluendo.com>
5247
5248         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5249         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5250         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5251         (vorbis_dec_change_state):
5252         Small cleanups.
5253         Add some FIXMEs
5254         Clip output samples to segment boundaries.
5255
5256 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5257
5258         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5259         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5260         Improve the errors produced on bad output, including some human
5261         readable description strings.
5262         Handle the (theoretical for ximagesink) case where the XServer 
5263         has a different idea about the size required for a particular 
5264         frame and gives us too small a memory allocation.
5265
5266 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
5267
5268         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5269         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5270         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5271         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5272         Improve the errors produced on bad output, including some human 
5273         readable description strings.
5274         Handle RGB Xv formats properly by transforming them into our 
5275         big-endian caps description.
5276         Use gst_caps_truncate to ensure that we never try and choose a
5277         non-fixed caps in buffer_alloc.
5278         Handle the case where the XServer has a different idea about the size
5279         required for a particular frame and gives us too small a memory
5280         allocation.
5281         Use -1 to indicate 'no image format', because 0 is a valid XServer
5282         image format number.
5283         Put RGB Xv formats at the end of the caps, so that we always prefer
5284         YUV format frames.
5285         Iterate the available Xv Encodings to determine the maximum width and
5286         height, and then return that in our caps.
5287         (Closes #315312, #337544)
5288
5289 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
5290
5291         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5292         When there is only one unfinished pad and it receives an event that
5293         doesn't match our requirements, we need to set alldone=FALSE so that
5294         the fakesink is not removed yet.
5295
5296 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
5297
5298         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5299           Use gst_type_find_helper_for_buffer() to find the type
5300           of stream from the first packet.
5301
5302         * configure.ac:
5303           Bump requirements to core CVS (needed for vorbis
5304           typefinding to work).
5305
5306 2006-05-24  Edward Hervey  <edward@fluendo.com>
5307
5308         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
5309         Added the 'prfl' atom type which MQV (no, it's not a typo) files
5310         contain.  Else they play perfectly fine with qtdemux.
5311
5312 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
5313
5314         * ext/theora/theoradec.c:
5315         * ext/theora/theoraenc.c:
5316         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5317         * gst/audiorate/gstaudiorate.c:
5318           make more debug catagories static
5319         
5320         * tests/check/Makefile.am:
5321         * tests/check/elements/adder.c: (message_received),
5322         (test_event_message_received), (GST_START_TEST),
5323         (test_play_twice_message_received), (adder_suite):
5324           added test case for using element twice, extra bonus points for anyone
5325           who can make these test run reliably
5326
5327 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
5328
5329         * ext/theora/theoradec.c: (theora_dec_chain):
5330           Make work with time-stamped input buffers that do not
5331           have a granulepos in BUFFER_OFFSET_END (like theora
5332           buffers coming from matroskademux). Fixes #342448.
5333
5334 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
5335
5336         Patch by: Peter Kjellerstedt  <pkj at axis com>
5337
5338         * gst/tcp/Makefile.am:
5339           fdstresstest doesn't need Gtk+, fix compilation if 
5340           gtk is not available (#342566).
5341
5342 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5343          
5344         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5345           80 line columns
5346           Removed redundant floor()
5347
5348 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5349
5350         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5351           On second thought, just skip JUNK chunks automatically, so
5352           the caller doesn't have to handle this. Fixes #342345.
5353           Also, return GST_FLOW_UNEXPECTED if we get a short read,
5354           not GST_FLOW_ERROR.
5355
5356 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
5357
5358         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5359           Don't bail out on JUNK chunks with a size of 0 (would try to
5360           pull_range 0 bytes before, which sources don't like too much).
5361           See #342345.
5362
5363 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5364
5365         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5366         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5367         Use the gstutil scaling function to preserve 64 bits while calculating
5368         output width and height from the display-aspect-ratio. (A continuation
5369         of #341542)
5370
5371 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
5372
5373         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5374         (gst_xvimagesink_buffer_alloc):
5375         * sys/xvimage/xvimagesink.h:
5376         When performing buffer allocations, remember the caps and image format
5377         we return so that if the same caps are asked for next time we can
5378         return them immediately without doing any caps intersections.
5379
5380 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5381          
5382         * gst-libs/gst/rtp/README:
5383           Some new documentation
5384         * gst-libs/gst/rtp/gstrtpbuffer.h:       
5385           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
5386         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
5387         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
5388           New RTP audio base payloader class. Supports frame or sample based
5389           codecs.  Not enabled in Makefile.am until approved.
5390
5391 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5392
5393         * tests/check/elements/alsa.c: (test_device_property_probe):
5394           Fix test case: don't try to free NULL GValueArray when there
5395           are no devices.
5396
5397 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5398
5399         * tests/check/Makefile.am:
5400         * tests/check/elements/alsa.c: (test_device_property_probe),
5401         (alsa_suite), (main):
5402           Add simple test that runs a device property probe on alsasrc,
5403           alsasink and alsamixer. Disable valgrind check for now (too
5404           many leaks in libasound, and valgrind ignored my suppressions
5405           additions).
5406
5407 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5408
5409         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5410         (gst_alsa_device_property_probe_probe_property),
5411         (gst_alsa_device_property_probe_needs_probe),
5412         (gst_alsa_device_property_probe_get_values),
5413         (gst_alsa_type_add_device_property_probe_interface):
5414         * ext/alsa/gstalsadeviceprobe.h:
5415         * ext/alsa/gstalsamixerelement.c:
5416         (gst_alsa_mixer_element_init_interfaces):
5417         * ext/alsa/gstalsamixerelement.h:
5418           Clean up and simplify alsa device probing. Make it actually work
5419           for multiple classes. Don't cache results any longer.
5420
5421         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5422         (gst_alsasink_init):
5423         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5424         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5425         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5426           Make alsasink and alsasrc implement the GstPropertyProbe interface
5427           for device probing (#342181).
5428           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
5429
5430 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
5431
5432         * gst/subparse/samiparse.c: (handle_start_font):
5433           Don't ignore return value of strtol (++compiler_happiness).
5434
5435 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
5436
5437         Patch by: Young-Ho Cha  <ganadist chollian net>
5438
5439         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5440         (gst_sub_parse_class_init), (gst_sub_parse_init),
5441         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5442         (convert_encoding):
5443         * gst/subparse/gstsubparse.h:
5444           Add 'encoding' property (#341681).
5445
5446         * gst/subparse/samiparse.c: (characters_sami):
5447           Output is pango markup, so we need to escape text
5448           between tags (#342143).
5449
5450 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5451
5452         * gst-libs/gst/audio/multichannel.c:
5453         (gst_audio_check_channel_positions):
5454           It's okay to have caps with channels=1 and a channel position
5455           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5456           (deinterleavers might want to keep the position in the caps,
5457           so that they can be re-interleaved again properly later).
5458           Leave check for unexpected 2-channel layouts intact for now.
5459
5460 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5461
5462         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5463         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5464         basesrc can do its job correctly.
5465
5466 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
5467
5468         * ext/alsa/Makefile.am:
5469         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5470         (gst_alsa_detect_formats), (get_channel_free_structure),
5471         (caps_add_channel_configuration), (gst_alsa_detect_channels),
5472         (gst_alsa_probe_supported_formats):
5473         * ext/alsa/gstalsa.h:
5474         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5475           Refactor and improve caps probing code: probe signedness
5476           when we probe the supported formats/widths; set endianness
5477           to the one we actually probed for (ie. cpu endianness).
5478           
5479         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5480         (gst_alsasrc_close):
5481         * ext/alsa/gstalsasrc.h:
5482           Implement caps probing for alsasrc.
5483
5484 2006-05-15  Wim Taymans  <wim@fluendo.com>
5485
5486         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5487         (theora_dec_src_query), (theora_dec_src_event),
5488         (theora_dec_sink_event), (theora_handle_comment_packet),
5489         (theora_handle_data_packet), (theora_dec_change_state):
5490         Cleanups, add some G_LIKELY.
5491         Use segment helpers instead of our own wrong code.
5492         Clear queued buffers on seek and READY.
5493
5494         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5495         (vorbis_dec_convert), (vorbis_dec_src_query),
5496         (vorbis_dec_src_event), (vorbis_dec_sink_event),
5497         (vorbis_handle_comment_packet), (vorbis_dec_push),
5498         (vorbis_handle_data_packet), (vorbis_dec_chain),
5499         (vorbis_dec_change_state):
5500         * ext/vorbis/vorbisdec.h:
5501         Remove old useless packetno variable.
5502         Do position query properly.
5503         Add some G_LIKELY.
5504         Do cleanup of queued buffers in new helper function
5505         and use it.
5506
5507 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5508
5509         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5510           Query supported sample rates. Fixes #341732.
5511
5512 2006-05-15  Julien MOUTTE  <julien@moutte.net>
5513
5514         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5515         (gst_decode_bin_change_state): Make decodebin reusable
5516         when going from PAUSE_TO_READY and then back to PAUSED.
5517         Fixes #331678.
5518
5519 2006-05-15  Wim Taymans  <wim@fluendo.com>
5520
5521         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5522         (vorbis_dec_convert), (vorbis_dec_src_query),
5523         (vorbis_dec_sink_query), (vorbis_dec_src_event),
5524         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5525         (vorbis_dec_clean_queued), (vorbis_dec_push),
5526         (vorbis_handle_data_packet), (vorbis_dec_change_state):
5527         Cleanups. Use refcounting and DEBUG_OBJECT.
5528         Reset segment on flush, use code methods instead of our
5529         own wrong version.
5530         Fix potential memleak.
5531
5532 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5533
5534         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5535         (gst_alsasink_init):
5536         * ext/alsa/gstalsasink.h:
5537           Don't leak allocated snd_output_t structure if there's
5538           more than one alsasink instance at a time (#341873).
5539           Also fix GObject macros in header file.
5540           
5541 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5542
5543         * gst/subparse/gstsubparse.c:
5544         (gst_sub_parse_data_format_autodetect):
5545           Don't use libxml functions in the typefinding code.
5546
5547 2006-05-15  Wim Taymans  <wim@fluendo.com>
5548
5549         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5550         Fix seeking performance in the case where a non-header 
5551         packet has a 0 granulepos (busted theora case). 
5552         Fixes #341719
5553         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5554          the first place, you limelight stealer you)
5555
5556 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5557
5558         * gst/subparse/gstsubparse.c:
5559         (gst_sub_parse_data_format_autodetect):
5560           Improve SAMI typefinding: handle case where there are
5561           whitespaces or newlines in front of the first <SAMI>
5562           tag (#169936).
5563
5564 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5565
5566         * configure.ac:
5567           Build video4linux plugin even if there's no XVIDEO, just
5568           without implementing the GstXOverlay interface (#334002).
5569          
5570 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5571
5572         * configure.ac:
5573         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5574         (plugin_init):
5575           Add tentative support for libvisual-0.4 (#336881).
5576
5577 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5578
5579         Patch by: Young-Ho Cha <ganadist at chollian net>
5580
5581         * gst/subparse/samiparse.c: (handle_start_font):
5582           Need to map "silver" colour explicitly (#169936).
5583
5584 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
5585
5586         Patch by: Young-Ho Cha  <ganadist at chollian net>
5587
5588         * gst/subparse/Makefile.am:
5589         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5590         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5591         (gst_sub_parse_format_autodetect), (feed_textbuf),
5592         (gst_subparse_type_find), (plugin_init):
5593         * gst/subparse/gstsubparse.h:
5594         * gst/subparse/samiparse.c:
5595         * gst/subparse/samiparse.h:
5596           Add support for SAMI subtitles (#169936).
5597
5598 2006-05-14  Michael Smith  <msmith@fluendo.com>
5599
5600         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5601           Fix #341696: crash when mixing L+R+C to mono or stereo.
5602         * tests/check/Makefile.am:
5603         * tests/check/elements/audioconvert.c: (set_channel_positions),
5604         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5605         (audioconvert_suite):
5606           Add test for the above, including some generic framework bits for
5607           testing multichannel things.
5608
5609 === release 0.10.7 ===
5610
5611 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
5612
5613         * configure.ac:
5614           releasing 0.10.7, "Leave the gun"
5615
5616 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
5617
5618         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5619         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5620         Fix the build.
5621
5622 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
5623
5624         * docs/libs/gst-plugins-base-libs-docs.sgml:
5625         * docs/libs/gst-plugins-base-libs-sections.txt:
5626         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5627         * gst-libs/gst/video/video.h:
5628         * gst/videoscale/Makefile.am:
5629         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5630         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5631         * tests/check/Makefile.am:
5632         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5633         (main):
5634           Fix integer overflow problem with pixel-aspect-ratio calculations
5635           in videoscale and xvimagesink (#341542)
5636
5637 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
5638
5639         * gst-libs/gst/tag/gstid3tag.c:
5640           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5641
5642 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
5643
5644         * win32/MANIFEST:
5645           update win32 files listing
5646
5647 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5648
5649         patch by: Sjoerd Simons (sjoerd@luon.net)
5650
5651         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5652         (group_create), (group_destroy), (add_stream),
5653         (gst_play_base_bin_get_property),
5654         (gst_play_base_bin_get_streaminfo_value_array):
5655         * gst/playback/gstplaybasebin.h:
5656           API: GstPlayBaseBin::stream-info-value-array property
5657           use a more bindings-friendly way of exposing streaminfo
5658           using a GValueArray.  Tested in ipython.
5659           Closes #341114
5660
5661 2006-05-11  Wim Taymans  <wim@fluendo.com>
5662
5663         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5664         (queue_underrun_cb), (queue_filled_cb):
5665         Also catch queue underruns but don't do anything yet.
5666         Refactor and comment queue enlarging code a bit.
5667
5668         * gst/playback/gstplaybasebin.c: (queue_overrun),
5669         (queue_threshold_reached), (queue_out_of_data),
5670         (gen_preroll_element):
5671         If a queue over/underruns check that we don't create nasty
5672         deadlocks when the min-threshold is not reached but the
5673         max-bytes is. In those cases disable max-bytes when we
5674         know that the queue is fed timed data.
5675         Add more comments.
5676
5677 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5678
5679         * gst/playback/gstplaybin.c: (gen_audio_element):
5680           Make playbin automatically plug an 'audioresample'
5681           element before the audio sink as well. This solves
5682           problems with sinks that only accept a very specific
5683           sample rate, like esdsink (e.g. #340379).
5684
5685 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
5686
5687         * gst/playback/gstplaybasebin.c: (gen_source_element):
5688           Make http sources send special headers so that we receive
5689           icecast metadata if the http stream is an icecast stream
5690           (otherwise the server will just ignore them). This also
5691           means that from now on users will need the 'icydemux'
5692           element from gst-plugins-good installed if they want to
5693           listen to icecast radio streams. (#341432, #333657).
5694
5695 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5696
5697         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5698         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5699           remove stupid example from docs - it should come with a simple
5700           C program instead.
5701           Clean up/fix docs
5702         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5703         (fail_if_can_read), (GST_START_TEST),
5704         (gst_multifdsink_create_streamheader), (multifdsink_suite):
5705           add a test for changing streamheader which exposes a bug in
5706           multifdsink
5707
5708 2006-05-11  Michael Smith  <msmith@fluendo.com>
5709
5710         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5711         (gst_gnome_vfs_src_received_headers_callback):
5712         * ext/gnomevfs/gstgnomevfssrc.h:
5713           Don't set icy-caps unless we have a sane interval value. Move
5714           interval to a local variable; we never use it outside this function.
5715
5716 2006-05-11  Wim Taymans  <wim@fluendo.com>
5717
5718         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5719         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5720         Register special buffer types along with the objects so
5721         that they are not registered at runtime from N different
5722         streaming threads since they are not threadsafe.
5723
5724 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5725
5726         * tests/check/elements/multifdsink.c: (wait_bytes_served),
5727         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5728           add two more tests, one doing streamheader
5729
5730 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5731
5732         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5733           clean up the bufqueue when shutting down
5734         * tests/check/Makefile.am:
5735         * tests/check/elements/multifdsink.c: (setup_multifdsink),
5736         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5737         (main):
5738           add a test for the leak that was just fixed
5739
5740 2006-05-10  Wim Taymans  <wim@fluendo.com>
5741
5742         * gst/adder/gstadder.c: (gst_adder_setcaps),
5743         (gst_adder_query_duration), (gst_adder_query), (forward_event),
5744         (gst_adder_src_event), (gst_adder_sink_event),
5745         (gst_adder_class_init), (gst_adder_finalize),
5746         (gst_adder_request_new_pad), (gst_adder_collected):
5747         * gst/adder/gstadder.h:
5748         Updated some docs. Added comments and FIXMEs all over the place.
5749         Improve debugging info.
5750         Fix leak on finalize by not calling the parent.
5751         Implement duration query.
5752         Make event forwarding threadsafe.
5753         Correctly send NEWSEGMENT at start and after flush.
5754         Handle EOS correctly.
5755         Post error when not negotiated.
5756
5757         * tests/check/elements/adder.c: (GST_START_TEST):
5758         Added FIXME in the test.
5759
5760 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5761
5762         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
5763         (gst_text_overlay_halign_get_type),
5764         (gst_text_overlay_wrap_mode_get_type):
5765         * ext/theora/theoradec.c: (theora_handle_type_packet),
5766         (theora_handle_data_packet):
5767         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
5768         (theora_enc_sink_setcaps), (theora_enc_chain):
5769         * gst-libs/gst/cdda/gstcddabasesrc.c:
5770         (gst_cdda_base_src_mode_get_type):
5771         * gst/audiotestsrc/gstaudiotestsrc.c:
5772         (gst_audiostestsrc_wave_get_type):
5773         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
5774         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
5775         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
5776         (gst_sync_method_get_type), (gst_unit_type_get_type),
5777         (gst_client_status_get_type):
5778         * gst/videoscale/gstvideoscale.c:
5779         (gst_video_scale_method_get_type):
5780         * gst/videotestsrc/gstvideotestsrc.c:
5781         (gst_video_test_src_pattern_get_type):
5782         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
5783         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
5784         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
5785         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
5786         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
5787         (paint_setup_RGB565), (paint_setup_xRGB1555):
5788           Const-ify GEnumValue and GFlagsValue arrays. Use
5789           GST_ROUND_UP_* macros instead of home-made ones.
5790
5791 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5792
5793         * configure.ac:
5794           Require core CVS for the new newsegment stuff.
5795
5796 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5797
5798         Patch by: Sjoerd Simons  <sjoerd at luon net>
5799
5800         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
5801           Register nick for enum value (#341160).
5802
5803 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
5804
5805         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
5806         (plugin_init):
5807          backout typefind patch #340375
5808          
5809         * tests/check/elements/adder.c: (message_received),
5810         (GST_START_TEST), (adder_suite):
5811           redo, signal-handling of test
5812
5813 2006-05-09  Wim Taymans  <wim@fluendo.com>
5814
5815         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
5816         (gst_adder_collected):
5817         * gst/adder/gstadder.h:
5818         Remove bogus segment merging and forwarding, we don't
5819         care about timestamps anyway and we just produce a
5820         continuous stream. 
5821         Also create a nice NEWSEGMENT event when we start.
5822         Use _scale_int some more.
5823
5824 2006-05-09  Edward Hervey  <edward@fluendo.com>
5825
5826         * tests/icles/stress-xoverlay.c:
5827         Fix if core was built without parsing support.
5828
5829 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
5830
5831         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5832           Add SEDG (Samsung MPEG-4) fourcc.
5833
5834 2006-05-09  Edward Hervey  <edward@fluendo.com>
5835
5836         * tests/icles/stress-xoverlay.c:
5837         * tests/examples/volume/volume.c:
5838         Fix if core was built without parsing support.
5839
5840         * tests/examples/seek/seek.c:
5841         Disable the parse_launch example if core was built without parsing
5842         support.
5843
5844 2006-05-08  Edward Hervey  <edward@fluendo.com>
5845
5846         * autogen.sh: (CONFIGURE_DEF_OPT): 
5847         libtoolize on Darwin/MacOSX is called glibtoolize
5848
5849 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5850
5851         * tests/check/Makefile.am:
5852         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
5853           Disable the adder test, until the build-slaves posses the kindness to 
5854           either like it or to give valid reason for not doing so 
5855
5856 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5857
5858         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5859         (adder_suite):
5860           Shuffle NULL state change around and raise timeout more
5861
5862 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5863
5864         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
5865         (mp4_type_find), (plugin_init):
5866           Add typefind to distinguish between "audio/x-m4a" and new type
5867           "video/mp4". Fixes #340375
5868
5869         * tests/check/elements/adder.c: (adder_suite):
5870           Raise timeout to make buildbot happy
5871
5872 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
5873
5874         * gst/adder/gstadder.c: (gst_adder_sink_event),
5875         (gst_adder_request_new_pad), (gst_adder_change_state):
5876         * gst/adder/gstadder.h:
5877         * tests/check/Makefile.am:
5878         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
5879         (adder_suite), (main):
5880           Add sink-event handling to adder. It tries to merge incomming
5881           newsegment-events. Added test to check if segment_done is comming
5882           through. Fixes #340060
5883
5884 2006-05-05  Andy Wingo  <wingo@pobox.com>
5885
5886         * ext/theora/theoraparse.c (gst_theora_parse_init)
5887         (theora_parse_src_convert, theora_parse_src_query):
5888         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
5889         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
5890         query functions on the source pads of the theora and vorbis parse
5891         elements. Fixes position querying when doing a remux.
5892
5893 2006-05-05  Michael Smith  <msmith@fluendo.com>
5894
5895         * ext/theora/theoraparse.c: (parse_granulepos),
5896         (theora_parse_drain_queue_prematurely),
5897         (theora_parse_queue_buffer), (theora_parse_sink_event):
5898           Fix flushing.
5899           Fix invalid granulepos outputs when starting with a non-keyframe.
5900
5901 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
5902
5903         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
5904         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
5905         Rearrange MPEG system stream detection, fixing some memleaks in the
5906         process.
5907         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
5908         they clean up their data correctly.
5909         Remove unused ogganx caps and move the 'is_annodex' check to inside
5910         the 'is_ogg' if statement.
5911
5912 2006-05-05  Wim Taymans  <wim@fluendo.com>
5913
5914         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
5915         Properly remove ghostpads. Fixes #340392
5916
5917 2006-05-04  David Schleef  <ds@schleef.org>
5918
5919         * gst/typefind/gsttypefindfunctions.c:
5920
5921 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
5922
5923         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
5924         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
5925
5926         When typefinding an MP3 in push-based mode, don't penalise the
5927         probability down to 74% when we found 5 valid frames just because we
5928         can't peek the end of the file.
5929
5930         Make the probability for detecting MPEG Transport Streams based on the
5931         number of sequential headers we successfully detected.
5932
5933 2006-05-03  Wim Taymans  <wim@fluendo.com>
5934
5935         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5936         (vorbis_dec_push), (vorbis_dec_chain):
5937         Still produce an error when we receive an empty packet.
5938
5939 2006-05-03  Wim Taymans  <wim@fluendo.com>
5940
5941         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5942         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
5943         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
5944         Mark buffers with DISCONT after seek and after activating new
5945         chains.
5946
5947         * ext/theora/gsttheoradec.h:
5948         * ext/theora/theoradec.c: (gst_theora_dec_reset),
5949         (theora_get_query_types), (theora_dec_sink_event),
5950         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
5951         (theora_dec_change_state):
5952         Fix frame counter.
5953         Detect and mark DISCONT buffers.
5954
5955         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5956         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
5957         (vorbis_dec_change_state):
5958         * ext/vorbis/vorbisdec.h:
5959         Use GstSegment.
5960         Detect and mark DISCONT buffers.
5961         Don't crash on 0 sized buffers.
5962
5963 2006-05-03  Wim Taymans  <wim@fluendo.com>
5964
5965         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
5966         (volume_transform_ip):
5967         Increase "volume" property to 10.0. Fixes #340369.
5968         Set the process function to NULL when capsnego fails so that
5969         we properly error out.
5970
5971 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
5972
5973         * gst/playback/gstplaybin.c: (add_sink):
5974         * gst/playback/test.c: (main):
5975         * gst/playback/test5.c: (dump_element_stats):
5976         * gst/playback/test6.c: (main):
5977           free caps using gst_caps_unref, don't leak caps-strings
5978
5979 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
5980
5981         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
5982         (plugin_init):
5983           Refine musepack typefinding a bit. Return MAXIMUM
5984           probability when we detect stream version 7 to make
5985           sure the mpeg audio typefinder doesn't trump us.
5986
5987 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
5988
5989         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5990           Protect against unexpected NULL strf_data buffer.
5991
5992 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
5993
5994         * tests/check/elements/audioconvert.c: (verify_convert),
5995         (GST_START_TEST):
5996           interpret the out[] buffer in the order the bytes are actually
5997           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
5998           Other tests should use BYTE_ORDER since the array is filled in
5999           with actual values
6000
6001 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6002
6003         * tests/check/elements/audioconvert.c: (verify_convert),
6004         (GST_START_TEST):
6005           when a test fails, give an indication of which it is
6006
6007 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6008
6009         * gst-libs/gst/cdda/gstcddabasesrc.c:
6010           compile fix; strtol() needs <stdlib.h>
6011
6012 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6013
6014         * ext/alsa/gstalsamixerelement.c:
6015         * ext/alsa/gstalsasrc.c:
6016         * ext/cdparanoia/gstcdparanoiasrc.c:
6017         * ext/gnomevfs/gstgnomevfssink.c:
6018         * ext/gnomevfs/gstgnomevfssrc.c:
6019         * ext/ogg/gstoggdemux.c:
6020         * ext/ogg/gstoggmux.c:
6021         * ext/ogg/gstoggparse.c:
6022         * ext/ogg/gstogmparse.c:
6023         * ext/pango/gstclockoverlay.c:
6024         * ext/pango/gsttextoverlay.c:
6025         * ext/pango/gsttextrender.c:
6026         * ext/pango/gsttimeoverlay.c:
6027         * ext/theora/theoradec.c:
6028         * ext/theora/theoraenc.c:
6029         * ext/vorbis/vorbisdec.c:
6030         * ext/vorbis/vorbisenc.c:
6031         * gst-libs/gst/audio/gstaudiofilter.c:
6032         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6033         * gst/audioconvert/gstaudioconvert.c:
6034         * gst/audiorate/gstaudiorate.c:
6035         * gst/audioresample/gstaudioresample.c:
6036         * gst/audiotestsrc/gstaudiotestsrc.c:
6037         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6038         * gst/playback/gstdecodebin.c:
6039         * gst/playback/gstplaybin.c:
6040         * gst/playback/gststreamselector.c:
6041         * gst/subparse/gstsubparse.c:
6042         * gst/tcp/gstmultifdsink.c:
6043         * gst/tcp/gsttcpclientsink.c:
6044         * gst/tcp/gsttcpclientsrc.c:
6045         * gst/tcp/gsttcpserversink.c:
6046         * gst/tcp/gsttcpserversrc.c:
6047         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6048         * gst/videorate/gstvideorate.c:
6049         * gst/videoscale/gstvideoscale.c:
6050         * gst/videotestsrc/gstvideotestsrc.c:
6051         * gst/volume/gstvolume.c:
6052         * sys/v4l/gstv4ljpegsrc.c:
6053         * sys/v4l/gstv4lmjpegsink.c:
6054         * sys/v4l/gstv4lmjpegsrc.c:
6055         * sys/v4l/gstv4lsrc.c:
6056         * sys/ximage/ximagesink.c:
6057         * sys/xvimage/xvimagesink.c:
6058         * tests/check/libs/cddabasesrc.c:
6059           make GstElementDetails const
6060
6061 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6062
6063         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6064         (gst_adder_init):
6065           send events from src-pad to all sink-pads fixes #338657
6066
6067 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
6068
6069         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6070         (alsasink_parse_spec):
6071           query width capabilities from alsa, fixes #338919
6072
6073 2006-04-28  Wim Taymans  <wim@fluendo.com>
6074
6075         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6076         (gst_multi_fd_sink_remove_client_link):
6077         * gst/tcp/gstmultifdsink.h:
6078         Fix race condition in multifdsink that can lead to spurious 
6079         duplicate clients. this patch adds a new signal that is fired when
6080         multifdsink has removed all references to the fd.
6081         Fixes #339574.
6082         Updated documentation.
6083         API: client-fd-removed signal added
6084
6085 2006-04-28  Michael Smith  <msmith@fluendo.com>
6086
6087         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6088           When asking g_value_array_new to prealloc elements, we may as well
6089           ask for the right number of elements.
6090
6091 2006-04-28  Wim Taymans  <wim@fluendo.com>
6092
6093         * gst-libs/gst/audio/gstbaseaudiosink.c:
6094         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6095         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6096         patch to make timestamp checking more tollerant to rounding 
6097         errors given that real discontinuities are to be marked on
6098         buffers. Fixes some asf files and #338778.
6099         Also avoid some crashers when we receive an event in the 
6100         NULL state.
6101
6102 2006-04-28  Michael Smith  <msmith@fluendo.com>
6103
6104         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6105         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6106         (gst_gnome_vfs_src_get_property),
6107         (gst_gnome_vfs_src_send_additional_headers_callback),
6108         (gst_gnome_vfs_src_received_headers_callback),
6109         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6110         (gst_gnome_vfs_src_stop):
6111         * ext/gnomevfs/gstgnomevfssrc.h:
6112           Remove ICY handling (mostly) from gnomevfssrc, in favour of
6113           proper shared support within icydemux.
6114
6115 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6116
6117         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6118         (gst_video_rate_swap_prev), (gst_video_rate_chain):
6119           fix up docs
6120           fix a leak when no caps negotiated
6121           fix counting of input frames
6122         * tests/check/elements/.cvsignore:
6123         * tests/check/elements/videorate.c: (assert_videorate_stats),
6124         (GST_START_TEST), (videorate_suite):
6125           add tests for these
6126
6127 2006-04-28  Wim Taymans  <wim@fluendo.com>
6128
6129         * gst-libs/gst/audio/gstringbuffer.c:
6130         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6131         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6132         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6133         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6134         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6135         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6136         (gst_ring_buffer_commit), (gst_ring_buffer_read),
6137         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6138         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6139         Check arguments passed to public functions instead of
6140         crashing.
6141
6142 2006-04-28  Wim Taymans  <wim@fluendo.com>
6143
6144         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6145         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6146         GstBaseAudioSrc must be live or it does not work.
6147
6148         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6149         Don't set live to TRUE as this is the default in the parentclass.
6150
6151 2006-04-28  Wim Taymans  <wim@fluendo.com>
6152
6153         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6154         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6155         Videoscale doesn't pass on pixel-aspect ratio. Handle all
6156         fixation cases better. Fixes #338991
6157
6158 2006-04-28  Wim Taymans  <wim@fluendo.com>
6159
6160         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6161         Handle 0/1 framerate correctly Fixes #331901.
6162
6163 2006-04-28  Wim Taymans  <wim@fluendo.com>
6164
6165         * tests/check/elements/audioconvert.c: (get_float_caps),
6166         (GST_START_TEST), (audioconvert_suite):
6167         Added check for correct clipping when doing float samples
6168         in audioconvert.
6169
6170 2006-04-28  Wim Taymans  <wim@fluendo.com>
6171
6172         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6173         (gst_video_rate_chain):
6174         Print more debugging info.
6175
6176 2006-04-28  Wim Taymans  <wim@fluendo.com>
6177
6178         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6179         (resample_set_state_from_caps):
6180         Add support for other formats audioresample can handle such as
6181         32 bits in and float and 64 bits float. Fixes #301759
6182
6183 2006-04-28  Wim Taymans  <wim@fluendo.com>
6184
6185         * gst/audioconvert/audioconvert.c: (float):
6186         correctly clip float samples > 1.0. Fixes #338718
6187
6188 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6189
6190         Patch by: Young-Ho Cha  <ganadist at chollian net>
6191
6192         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6193         (gst_text_overlay_render_text):
6194           Don't strip newlines from the text. Also, center lines
6195           within multi-line paragraphs (#339405).
6196
6197 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
6198
6199         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6200           Fix wavpack typefinding to work in more cases (don't peek
6201           for chunks of multiple hundred kBs at once, but process
6202           things step-by-step in smaller units). Fixes #339786.
6203
6204 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
6205
6206         * configure.ac:
6207           back to HEAD
6208
6209 === release 0.10.6 ===
6210
6211 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
6212
6213         * configure.ac:
6214           releasing 0.10.6, "Chao"
6215
6216 2006-04-26  David Schleef  <ds@schleef.org>
6217
6218         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6219           Fixes #338897.
6220
6221 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6222
6223         * configure.ac:
6224         * win32/common/config.h:
6225           new prerelease
6226
6227 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6228
6229         patch by: Wim Taymans
6230
6231         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6232         (gst_ogg_demux_perform_seek):
6233           make sure correct newsegments are sent, so that the decoder
6234           and the demuxer agree on timestamps.  Fixes playback of a lot
6235           of Ogg files that do not start from 0.  Fixes #339833.
6236
6237 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6238
6239         Patch by: Edward Hervey  <edward@fluendo.com>
6240
6241         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6242         * tests/check/Makefile.am:
6243         * tests/check/elements/videorate.c: (assert_videorate_stats),
6244         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6245         (videorate_suite), (main):
6246           Fix an infinite loop if frames are passed in with wrongly ordered
6247           timestamps.  Fixes #339013.
6248
6249 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6250
6251         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6252
6253         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6254           fix typefinding on some ISO files.  Fixes #339212.
6255
6256 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6257
6258         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
6259
6260         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6261           add another H264 fourcc.  Fixes #339047.
6262
6263 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6264
6265         Patch by: Jan Schmidt
6266
6267         * gst/playback/gststreamselector.c:
6268         (gst_stream_selector_bufferalloc):
6269           Restore old StreamSelector behaviour.
6270           Fixes #338419.
6271
6272 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
6273
6274         * configure.ac:
6275         * win32/common/config.h:
6276           prerelease
6277
6278 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6279
6280         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
6281
6282         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6283         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6284           Fix some memory leaks: on finalize, free buffers left in the queue
6285           before destroying the queue; in _push(), unref rtp_buf even if
6286           the process vfunc returned a NULL buffer as output buffer (#337548);
6287           demote some recuring debug messages to LOG level.
6288
6289 2006-04-11  Wim Taymans  <wim@fluendo.com>
6290
6291         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6292         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6293         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6294         (gst_ogg_demux_loop):
6295         More cleanups.
6296         Respect segment stop when emiting EOS or SEGMENT_DONE.
6297         Fixes (#337945).
6298
6299 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
6300
6301         * gst/playback/gststreamselector.c:
6302         (gst_stream_selector_get_property):
6303           Don't leak pad name.
6304
6305 2006-04-10  Michael Smith  <msmith@fluendo.com>
6306
6307         * tests/check/Makefile.am:
6308         * tests/check/gst-plugins-base.supp:
6309           Suppress an old libtheora bug (fixed in more recent versions), so 
6310           that FC4 buildslaves can pass.
6311
6312 2006-04-10  Wim Taymans  <wim@fluendo.com>
6313
6314         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6315         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6316         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6317         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6318         (gst_ogg_demux_loop):
6319         Don't leak events.
6320         Remember what error we got when finding chains, if we
6321         were shutdown, that would not be an error.
6322
6323 2006-04-10  Wim Taymans  <wim@fluendo.com>
6324
6325         * gst-libs/gst/audio/gstbaseaudiosink.c:
6326         (gst_base_audio_sink_event):
6327         Starting the ringbuffer when we did not acquire it can cause
6328         a deadlock, is pointless and causes nasty things for
6329         subclasses. 
6330         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6331
6332 2006-04-10  Wim Taymans  <wim@fluendo.com>
6333
6334         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6335         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6336         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6337         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6338         (gst_ogg_demux_deactivate_current_chain),
6339         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6340         (gst_ogg_demux_bisect_forward_serialno),
6341         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6342         Add some more debugging.
6343
6344 2006-04-10  Wim Taymans  <wim@fluendo.com>
6345
6346         * ext/theora/theoradec.c: (theora_dec_src_event),
6347         (theora_handle_data_packet):
6348         Some more debug info.
6349
6350         * tests/examples/seek/seek.c: (start_seek), (main):
6351         Print element messages too.
6352
6353 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
6354
6355         * gst/audioresample/debug.h:
6356           replace debug macros with variable number of parameters
6357           by a simple alias to gstreamer standard debug macros 
6358          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6359           supported by MSVC 6.0 and 7.1)
6360         * gst/audioresample/resample.h:
6361           define M_PI and rint for WIN32
6362         * win32/common/libgstaudio.def:
6363         * win32/common/libgstriff.def:
6364         * win32/common/libgsttag.def:
6365         * win32/common/libgstvideo.def:
6366           add new exported functions
6367         * win32/vs6:
6368           update project files
6369
6370 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6371
6372         * ext/alsa/gstalsamixeroptions.c:
6373         (gst_alsa_mixer_options_class_init):
6374         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6375         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6376         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6377         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6378         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6379         * gst-libs/gst/audio/gstaudiofilter.c:
6380         (gst_audio_filter_class_init):
6381         * gst-libs/gst/audio/gstaudiosink.c:
6382         (gst_audioringbuffer_class_init):
6383         * gst-libs/gst/audio/gstaudiosrc.c:
6384         (gst_audioringbuffer_class_init):
6385         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6386         * gst-libs/gst/interfaces/colorbalancechannel.c:
6387         (gst_color_balance_channel_class_init):
6388         * gst-libs/gst/interfaces/mixeroptions.c:
6389         (gst_mixer_options_class_init):
6390         * gst-libs/gst/interfaces/mixertrack.c:
6391         (gst_mixer_track_class_init):
6392         * gst-libs/gst/interfaces/tunerchannel.c:
6393         (gst_tuner_channel_class_init):
6394         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6395         * gst-libs/gst/netbuffer/gstnetbuffer.c:
6396         (gst_netbuffer_class_init):
6397         * gst-libs/gst/rtp/gstbasertppayload.c:
6398         (gst_basertppayload_class_init):
6399         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6400         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6401         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6402         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6403         * gst/playback/gststreamselector.c:
6404         (gst_stream_selector_class_init):
6405         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6406         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6407         * sys/v4l/gstv4lcolorbalance.c:
6408         (gst_v4l_color_balance_channel_class_init):
6409         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6410         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6411         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6412         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6413         (gst_v4l_tuner_norm_class_init):
6414         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6415         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6416         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6417         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6418
6419 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6420
6421         * ext/pango/gsttextrender.h:
6422         * gst-libs/gst/audio/gstaudiosink.h:
6423         * gst-libs/gst/audio/gstaudiosrc.h:
6424         * gst-libs/gst/audio/gstbaseaudiosink.h:
6425         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6426         * gst-libs/gst/audio/gstringbuffer.h:
6427         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6428         * gst-libs/gst/rtp/gstbasertppayload.h:
6429         * gst-libs/gst/video/gstvideofilter.h:
6430         * gst-libs/gst/video/gstvideosink.h:
6431         * gst/playback/gstplaybasebin.h:
6432         * gst/tcp/gstmultifdsink.h:
6433         * sys/v4l/gstv4lelement.h:
6434         Fix broken GObject macros
6435
6436 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
6437
6438         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6439         More debug to trace why my USB headset is not working with gst
6440
6441 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6442
6443         * gst/playback/gstplaybasebin.c: (group_destroy):
6444         Clean up our group elements properly in the case where it never 
6445         got committed - it still got added unconditionally to the bin.
6446
6447 2006-04-07  Wim Taymans  <wim@fluendo.com>
6448
6449         * ext/theora/theoradec.c: (theora_dec_sink_event),
6450         (theora_handle_data_packet), (theora_dec_chain):
6451         Unref unhandled events.
6452         Protect against empty buffers.
6453         Perform QoS on running time.
6454
6455 2006-04-07  Michael Smith  <msmith@fluendo.com>
6456
6457         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6458         (gst_vorbis_enc_chain):
6459           Remove leaks from vorbisenc.
6460           Mostly minor changes, the only significant one is that now the
6461           buffers we set as 'streamheader' on the caps are copies of the
6462           original buffers, to avoid circular refcounting problems.
6463
6464 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
6465
6466         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6467           Don't remove our mute-probe if someone else already did so.
6468           Don't set a 2nd one if there is already one pending on the pad.
6469
6470         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6471         (do_playbin_seek):
6472           When a seek fails, ensure that playbin is still set back to playing.
6473           
6474         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6475         (mpeg_ts_type_find), (plugin_init):
6476           Add a typefind function for mpeg-ts streams. (Closes: #336617)
6477
6478 2006-04-06  Andy Wingo  <wingo@pobox.com>
6479
6480         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
6481         (gst_video_rate_init): Caps-related parameters should not be reset
6482         by a flush -- move their inits to the instance init function.
6483         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6484         is not OK, just return the result.
6485
6486         * gst/audiotestsrc/gstaudiotestsrc.c
6487         (gst_audio_test_src_class_init)
6488         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6489         broken by Stefan's commit on 24 March.
6490
6491         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6492         buffers being pushed out. Fixes oggmux ! multifdsink.
6493
6494 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
6495
6496         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6497         (gst_vorbis_dec_init), (vorbis_dec_finalize):
6498         * ext/vorbis/vorbisdec.h:
6499         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6500         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6501         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6502         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6503         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6504         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6505         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6506         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6507         (gst_vorbis_enc_buffer_from_packet),
6508         (gst_vorbis_enc_buffer_from_header_packet),
6509         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6510         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6511         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6512         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6513         (gst_vorbis_enc_change_state):
6514         * ext/vorbis/vorbisenc.h:
6515           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6516           vorbisenc adhere to the official nomenclature; use boilerplate
6517           macro.
6518
6519 2006-04-04  Andy Wingo  <wingo@pobox.com>
6520
6521         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6522         Whoops, fix bug introduced. Bad hacker!
6523         
6524         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6525         Properly handle the case where you get EOS before any buffers are
6526         received. Use gst_buffer_make_metadata_writable where appropriate.
6527
6528         * ext/theora/theoradec.c (theora_handle_data_packet): This value
6529         is often negative -- make it signed so as not to wrap around.
6530         Fixes segfaults introduced on 9 March.
6531
6532 2006-04-03  Wim Taymans  <wim@fluendo.com>
6533
6534         * ext/theora/gsttheoradec.h:
6535         * ext/theora/theoradec.c: (theora_dec_src_event):
6536         Don't try to store a gdouble in a gboolean.
6537         Small cleanups.
6538
6539 2006-04-03  Michael Smith  <msmith@fluendo.com>
6540
6541         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6542           Oggmux sucks.
6543           Make it suck slightly less by writing out the final page.
6544           Still can't encode a vorbis-in-ogg file correctly, though.
6545
6546 2006-04-03  Andy Wingo  <wingo@pobox.com>
6547
6548         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6549         a g_print.
6550
6551         * ext/theora/theora.c (plugin_init): Register theoraparse.
6552
6553         * ext/theora/gsttheoraparse.h: 
6554         * ext/theora/theoraparse.c: New files implementing a theora
6555         parser. Now we can properly remux ogg/theora+vorbis, yay.
6556
6557         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6558
6559 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6560
6561         * gst/audiotestsrc/gstaudiotestsrc.c:
6562           Fixed the sample pipeline (see #323798)
6563
6564 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6565
6566         * configure.ac:
6567         * win32/common/config.h:
6568         * win32/common/config.h.in:
6569           use AS_VERSION and AS_NANO
6570           more cleanups
6571
6572 2006-03-31  Andy Wingo  <wingo@pobox.com>
6573
6574         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6575         uninitialized variable return that would happen.
6576         
6577         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6578         uninitialized variable return that would never happen.
6579
6580         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
6581         (vorbis_parse_sink_event): Add an event function to flush our
6582         state on a seek, and to drain buffers on a premature EOS.
6583         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
6584         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
6585         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
6586         (vorbis_parse_drain_queue): Queue up buffers until we can set
6587         their timestamps and granulepos values.
6588
6589         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6590         and keep track of data needed for deriving granulepos and
6591         timestamps for buffers.
6592
6593 2006-03-29  Wim Taymans  <wim@fluendo.com>
6594
6595         Patch by: j^ <j at bootlab dot org>
6596
6597         * ext/alsa/gstalsamixerelement.c:
6598         (gst_alsa_mixer_element_class_init):
6599         * ext/alsa/gstalsasink.c:
6600         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6601         * ext/ogg/gstoggdemux.c:
6602         * ext/ogg/gstoggmux.c:
6603         * ext/ogg/gstoggparse.c:
6604         * ext/pango/gstclockoverlay.c:
6605         * ext/pango/gsttextoverlay.c:
6606         * ext/pango/gsttextrender.c:
6607         * ext/pango/gsttimeoverlay.c:
6608         * ext/theora/theoradec.c:
6609         * ext/theora/theoraenc.c:
6610         * ext/vorbis/vorbisdec.c:
6611         * ext/vorbis/vorbisenc.c:
6612         * gst/audioconvert/gstaudioconvert.c:
6613         * gst/subparse/gstsubparse.c:
6614         * gst/tcp/gstmultifdsink.c:
6615         * gst/tcp/gsttcpclientsink.c:
6616         * gst/tcp/gsttcpclientsrc.c:
6617         * gst/tcp/gsttcpserversink.c:
6618         * gst/tcp/gsttcpserversrc.c:
6619           better/unified long descriptions
6620           Fixes #336477
6621
6622 2006-03-29  Wim Taymans  <wim@fluendo.com>
6623
6624         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6625         (stop_seek):
6626         Don't let double and triple clicks mess up our state.
6627
6628 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6629
6630         * gst/playback/gstplaybin.c: (gen_video_element),
6631         (gen_text_element), (gen_audio_element), (gen_vis_element):
6632           Error out gracefully when we can't create any of the usual
6633           conversion elements for some reason. Also, don't try to
6634           create an audioscale (sic) element that's not used anyway.
6635
6636 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
6637
6638         * gst/playback/gstplaybasebin.c: (setup_source):
6639           Don't post RESOURCE_NOT_FOUND error when we can't find a source
6640           element for a particular protocol, that's confusing for users.
6641           Instead, post a RESOURCE_FAILED error, so that our own error
6642           message is actually shown in totem etc. (#336303).
6643
6644 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6645
6646         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6647
6648         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6649         (gst_gnome_vfs_src_get_icy_metadata):
6650           Fix some minor memory leaks (#336194).
6651
6652 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
6653
6654         * ext/gnomevfs/gstgnomevfs.c:
6655         (gst_gnome_vfs_location_to_uri_string):
6656         * ext/gnomevfs/gstgnomevfs.h:
6657         * ext/gnomevfs/gstgnomevfssink.c:
6658         (gst_gnome_vfs_sink_set_property):
6659         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6660           Make gnomevfssink accept filenames as well as URIs for the
6661           "location" property, just like gnomevfssrc does (and
6662           filesrc/filesink do) (#336190).
6663
6664 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6665
6666         * tests/check/generic/clock-selection.c: (GST_START_TEST):
6667           set to NULL before unreffing, fixes a valgrind leak.
6668           Why was this not triggering the error that an object needs to
6669           be NULL before unreffing ?
6670         * win32/common/config.h:
6671           update
6672
6673 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
6674
6675         * gst/subparse/gstsubparse.c: (convert_encoding),
6676         (gst_sub_parse_change_state):
6677         * gst/subparse/gstsubparse.h:
6678           Text subtitle files may or may not be UTF-8. If it's not, we
6679           don't really want to see '?' characters in place of non-ASCII
6680           characters like accented characters. So let's assume the input
6681           is UTF-8 until we come across text that is clearly not. If it's
6682           not UTF-8, we don't really know what it is, so try the following:
6683           (a) see whether the GST_SUBTITLE_ENCODING environment variable
6684           is set; if not, check (b) if the current locale encoding is
6685           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6686           the current locale encoding is UTF-8 and the environment variable
6687           was not set to any particular encoding. Not perfect, but better
6688           than nothing (and better than before, I think) (fixes #172848).
6689
6690 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
6691
6692         * configure.ac:
6693           update core requirement to 0.10.4.1 because of async_playback
6694           vmethod on GstBaseSink
6695
6696 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6697
6698         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6699         * gst/adder/gstadder.c: (gst_adder_init):
6700         use DEBUG_FUNCPTR for collectpads
6701
6702 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
6703
6704         * docs/plugins/Makefile.am:
6705         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6706         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6707         * ext/cdparanoia/gstcdparanoiasrc.c:
6708         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6709         (gst_gnome_vfs_sink_class_init):
6710         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6711         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6712         * ext/ogg/gstoggmux.c:
6713         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6714         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6715         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6716         * ext/pango/gsttextoverlay.c:
6717         * ext/pango/gsttextrender.c:
6718         * ext/theora/theoradec.c:
6719         * ext/theora/theoraenc.c:
6720         * ext/vorbis/vorbisdec.c:
6721         * ext/vorbis/vorbisenc.c:
6722         * gst-libs/gst/audio/gstaudiofilter.c:
6723         (gst_audio_filter_base_init):
6724         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6725         (gst_audio_filter_template_base_init):
6726         * gst/adder/gstadder.c: (gst_adder_get_type):
6727         * gst/adder/gstadder.h:
6728         * gst/audioconvert/gstaudioconvert.c:
6729         * gst/audiotestsrc/gstaudiotestsrc.c:
6730         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6731         (gst_audio_test_src_create):
6732         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6733         * gst/playback/gstdecodebin.c:
6734         * gst/playback/gstplaybin.c:
6735         * gst/playback/gststreamselector.c:
6736         (gst_stream_selector_base_init):
6737         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6738         * gst/volume/gstvolume.c:
6739         * sys/v4l/gstv4lmjpegsink.c:
6740         * sys/v4l/gstv4lmjpegsrc.c:
6741         * tests/check/libs/cddabasesrc.c:
6742         * tests/old/examples/gob/gst-identity2.gob:
6743           Add docs for adder, use GST_ELEMENT_DETAILS macro,
6744           define GstElementDetails at the top
6745
6746 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
6747
6748         * win32/common/libgstinterfaces.def:
6749         Add a lot of export functions for gst-python
6750         * win32/vs6/libgstinterfaces.dsp:
6751         Add a missing include folder in the project configuration
6752         
6753 2006-03-23  Wim Taymans  <wim@fluendo.com>
6754
6755         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6756         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6757         (gst_base_audio_src_change_state):
6758         Fix audio sources, forgot to make the ringbuffer
6759         startable...
6760
6761 2006-03-23  Wim Taymans  <wim@fluendo.com>
6762
6763         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6764         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6765         (gst_base_audio_src_change_state):
6766         unparent instead of unref the ringbuffer.
6767
6768 2006-03-23  Wim Taymans  <wim@fluendo.com>
6769
6770         * gst-libs/gst/audio/gstbaseaudiosink.c:
6771         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
6772         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
6773         Implement new async_play vmethod to start slaving and allow
6774         playback start in case of async PLAY state changes. 
6775
6776         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6777         Enable QoS with new method in base class.
6778
6779 2006-03-23  Wim Taymans  <wim@fluendo.com>
6780
6781         Patch by: Julien MOUTTE <julien at moutte dot net>
6782
6783         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
6784         (gst_video_test_src_do_seek), (gst_video_test_src_create):
6785         Partially handle 0 framerate, only EOS after the first frame
6786         is missing.
6787
6788 2006-03-23  Wim Taymans  <wim@fluendo.com>
6789
6790         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
6791
6792         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6793         (gst_riff_create_video_template_caps):
6794         * gst/ffmpegcolorspace/avcodec.h:
6795         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6796         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
6797         (gst_ffmpegcsp_avpicture_fill):
6798         * gst/ffmpegcolorspace/imgconvert.c:
6799         Patch for support of YVU9 AVI files (#334822)
6800
6801 2006-03-22  Edward Hervey  <edward@fluendo.com>
6802
6803         * docs/design/design-decodebin.txt:
6804         Added design document for new decodebin
6805         (Target Caps): text/x-pango-markup is also a default target caps.
6806
6807 2006-03-22  Wim Taymans  <wim@fluendo.com>
6808
6809         * gst-libs/gst/audio/gstbaseaudiosink.c:
6810         (gst_base_audio_sink_dispose):
6811         Since we _parent the ringbuffer, we also need to
6812         _unparent instead of a plain _unref.
6813
6814 2006-03-22  Wim Taymans  <wim@fluendo.com>
6815
6816         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
6817         (stop_seek), (scrub_toggle_cb), (main):
6818         Add scrub checkbox.
6819
6820 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
6821
6822         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
6823         (gst_ogg_parse_chain):
6824           Fix very inefficient usage of linked lists (#335365).
6825
6826 2006-03-21  Edward Hervey  <edward@fluendo.com>
6827
6828         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6829         * gst/playback/gstplaybin.c: (handoff):
6830         * gst/playback/gststreamselector.c:
6831         (gst_stream_selector_set_property):
6832         gcc 4.1 unreferenced pointer fixes.
6833         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
6834         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
6835         gst_buffer_ref() now takes a GstBuffer*.
6836
6837 2006-03-20  Julien MOUTTE  <julien@moutte.net>
6838
6839         * sys/xvimage/xvimagesink.c:
6840         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
6841         by Jan Schmidt.
6842
6843 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
6844
6845         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
6846         (id3v1_type_find), (apetag_type_find), (plugin_init):
6847           Can't do tag preferences via probability, as tags would then
6848           lose against types that are recognised with MAXIMUM probability
6849           (like .wav); so let all tag typefinders return MAXIMUM themselves
6850           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
6851           that we can prefer APE to ID3v1 (fixes #335028).
6852           
6853 2006-03-17  Wim Taymans  <wim@fluendo.com>
6854
6855         * gst-libs/gst/audio/gstbaseaudiosink.c:
6856         (gst_base_audio_sink_change_state):
6857         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
6858         (gst_ring_buffer_may_start):
6859         * gst-libs/gst/audio/gstringbuffer.h:
6860         Only start playback if we are playing.
6861         should fix #330748.
6862
6863 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
6864
6865         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
6866         * win32/common/config.h:
6867           Revert accidental commits to these files.
6868
6869 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
6870
6871         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
6872
6873         * tests/Makefile.am:
6874           Don't try to build tests in tests/icles if we
6875           don't have X (#323852)
6876
6877 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
6878
6879         * gst-libs/gst/tag/gstid3tag.c:
6880           Add TXXX frame identifiers for replaygain stuff as used
6881           by some taggers (see #323721).
6882
6883 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
6884
6885         * gst/playback/gststreamselector.c:
6886         (gst_stream_selector_set_property),
6887         (gst_stream_selector_bufferalloc):
6888           Preserve the existing buggy streamselector behaviour by performing
6889           a fallback buffer allocation when downstream isn't linked yet.
6890           This should really be fixed in playbin by blocking pads until it's
6891           linked them.
6892           Also, use gst_pad_alloc_buffer instead of
6893           gst_pad_alloc_buffer_and_set.
6894
6895 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6896
6897         * gst-libs/gst/tag/gstid3tag.c:
6898           Don't crash on unknown ID3v2 TXXX frames.
6899           
6900 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
6901
6902         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
6903           Chain up to the parent finalize method.
6904           Add 32-bit sample size to the template caps.
6905
6906         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6907         (gst_riff_create_video_template_caps):
6908           Add the fourcc that the VMWare codec uses.
6909           
6910         * gst/playback/gststreamselector.c:
6911         (gst_stream_selector_set_property),
6912         (gst_stream_selector_bufferalloc),
6913         (gst_stream_selector_request_new_pad):
6914           For the active pad, forward buffer-alloc requests, otherwise
6915           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
6916           having to memcpy every frame when used by playbin.
6917
6918         * gst/tcp/gstmultifdsink.c:
6919         (gst_multi_fd_sink_handle_client_write):
6920           Get negotiated caps from the sink pad, rather than the sink
6921           pad's peer.
6922
6923 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6924
6925         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6926         
6927         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
6928           Don't forget to set src->callbacks_pushed to FALSE again when
6929           popping them, otherwise re-activation in a different mode won't
6930           work (#334620).
6931
6932 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
6933
6934         Patch by: Sebastien Moutte  <sebastien moutte net>
6935
6936         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
6937         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
6938         (gst_ffmpeg_smpfmt_to_caps):
6939           Replace __VA_ARGS__ caps creation macros with varargs functions.
6940           Makes things compile on MSVC (#320765), looks nicer, and we can
6941           tell the compiler to check for the NULL terminator.
6942
6943 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6944
6945         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
6946
6947         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6948           Make sure the buffer we copy into is really always big
6949           enough, this time for real (#333488).
6950           
6951 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6952
6953         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6954           Add support for 24bpp DIB (#305279).
6955
6956 2006-03-14  Wim Taymans  <wim@fluendo.com>
6957
6958         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
6959         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
6960         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
6961         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
6962         (gst_video_scale_init), (gst_video_scale_src_event):
6963         Re-enable QoS after the release.
6964         Rework videoscale to use the base class src_event handler.
6965
6966 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
6967
6968         * configure.ac:
6969           back to CVS.
6970
6971 === release 0.10.5 ===
6972
6973 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
6974
6975         * configure.ac:
6976           releasing 0.10.5, "Net"
6977
6978 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
6979
6980         * docs/plugins/Makefile.am:
6981           Part of previous cdparanoiasrc docs fixes, forgot to commit.
6982           
6983 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
6984
6985         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6986         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6987         * docs/plugins/gst-plugins-base-plugins.hierarchy:
6988           Add cdparanoiasrc to docs.
6989
6990         * gst-libs/gst/cdda/gstcddabasesrc.c:
6991           More GstCddaBaseSrc docs.
6992
6993 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
6994
6995         * docs/libs/gst-plugins-base-libs-sections.txt:
6996         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
6997         * gst-libs/gst/tag/tag.h:
6998           API: libgsttag: new method gst_tag_from_id3_user_tag().
6999
7000 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7001
7002         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7003           NULL-terminate array of mpeg4 video file extensions.
7004           Fixes crash on PPC (#334226).
7005
7006 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
7007
7008         * ext/gnomevfs/gstgnomevfssrc.c:
7009         (gst_gnome_vfs_src_check_get_range):
7010           gnome_vfs_uri_is_local() alone is not a good indicator
7011           whether we can operate in pull-mode with a specific URI,
7012           as it returns FALSE for file:// URIs that point to an
7013           NFS-mounted path. Be more conservative here: whitelist
7014           local files, blacklist http URIs and use the old
7015           mechanism for anything else (fixes #334216).
7016
7017 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7018
7019         * configure.ac:
7020           back to trunk
7021
7022 === release 0.10.4 ===
7023
7024 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
7025
7026         * configure.ac:
7027           releasing 0.10.4, "Power"
7028
7029 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
7030
7031         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7032         Disable max-lateness by setting it to -1 for now, so that 
7033         we can bed QoS stuff in thoroughly between now and the next
7034         release.
7035
7036 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
7037
7038         Patch by: Fabrizio Gennari
7039
7040         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7041           Make sure we don't read beyond the palette buffer in case of
7042           broken or manipulated files (#333488)
7043
7044 2006-03-10  Edward Hervey  <edward@fluendo.com>
7045
7046         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7047         Fix for variable not initialized.
7048
7049 2006-03-09  Wim Taymans  <wim@fluendo.com>
7050
7051         * ext/libvisual/visual.c: (gst_visual_get_type),
7052         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7053         (gst_visual_chain):
7054         Small cleanups.
7055
7056         * ext/theora/gsttheoradec.h:
7057         * ext/theora/theoradec.c: (gst_theora_dec_init),
7058         (gst_theora_dec_reset), (_theora_granule_time),
7059         (theora_dec_src_convert), (theora_dec_sink_convert),
7060         (theora_dec_src_query), (theora_dec_src_event),
7061         (theora_dec_sink_event), (theora_handle_comment_packet),
7062         (theora_handle_header_packet), (theora_dec_push),
7063         (theora_handle_data_packet), (theora_dec_chain),
7064         (theora_dec_change_state):
7065         Add simple QoS.
7066
7067 2006-03-09  Wim Taymans  <wim@fluendo.com>
7068
7069         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7070         (audiocast_register_listener), (gst_gnome_vfs_src_start):
7071         Some cleanups.
7072
7073 2006-03-09  Wim Taymans  <wim@fluendo.com>
7074
7075         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7076         Don't try to activate NULL chains.
7077
7078 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7079
7080         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7081           Fix invalid memory access to region before peek'd data (#332964).
7082
7083 2006-03-09  Wim Taymans  <wim@fluendo.com>
7084
7085         Patch by: Christophe Fergeau
7086
7087         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7088         * ext/pango/gsttextrender.c: (gst_text_render_init):
7089         * gst/adder/gstadder.c: (gst_adder_init):
7090         Don't leak padtemplates, closes #333510.
7091
7092 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7093
7094         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7095           Fix invalid memory access: make sure string passed to
7096           regexec() is NUL-termianted.
7097
7098 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7099
7100         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7101         (mp3_type_find):
7102           Refactor mpeg/audio typefinding to make it more maintainable
7103           and easier to fine-tune. Make probing into middle of the file
7104           work properly (fixes #333900, also see #152688).
7105
7106 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
7107
7108         * gst/typefind/gsttypefindfunctions.c:
7109         (utf8_type_find_have_valid_utf8_at_offset):
7110           Remove part from previous commit that was bogus:
7111           g_utf8_validate() does in fact not accept embedded
7112           zeroes, so we don't need to check for those (thanks
7113           to Mike for the hint).
7114
7115 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7116
7117         * gst/typefind/gsttypefindfunctions.c:
7118         (utf8_type_find_count_embedded_zeroes),
7119         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7120           Make plain/text typefinder more conservative: firstly, check
7121           for embedded zeroes, which are perfectly valid UTF-8 characters,
7122           but also a fairly good sign that something is not a plain text
7123           file; secondly, probe into the middle of the file if possible.
7124           If we can't probe into the middle, limit the probability value
7125           to be returned to TYPE_FIND_POSSIBLE (see #333900).
7126
7127 2006-03-08  Michael Smith  <msmith@fluendo.com>
7128
7129         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7130           Make typefind function name for mpeg4 video unique.
7131
7132 2006-03-08  Wim Taymans  <wim@fluendo.com>
7133
7134         * ext/libvisual/visual.c: (gst_visual_init),
7135         (gst_visual_clear_actors), (gst_visual_dispose),
7136         (gst_visual_reset), (gst_visual_src_setcaps),
7137         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7138         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7139         (gst_visual_chain), (gst_visual_change_state):
7140         Cleanups, post nice errors.
7141         Handle sink and src events.
7142         Implement simple QoS.
7143
7144         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7145         Use new basesink methods to configure max-lateness.
7146         Small doc update.
7147
7148         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7149         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7150         Debug statement cleanups.
7151
7152         * gst/volume/gstvolume.c: (gst_volume_class_init):
7153         Simple cleanup.
7154
7155 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7156
7157         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7158         (gst_text_overlay_init), (gst_text_overlay_set_property),
7159         (gst_text_overlay_get_property):
7160           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7161           as string type properties, but mark them deprecated. Add
7162           'halignment' and 'valignment' properties that use enums
7163           instead of strings.
7164
7165 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
7166
7167         Patch by: Fabrizio Gennari
7168
7169         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7170           Allow palettes with less than 256 colours in AVI files
7171           (#333488)
7172
7173 2006-03-07  Julien MOUTTE  <julien@moutte.net>
7174
7175         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7176         (gst_text_overlay_video_event): Fix wrong EOS handling on text
7177         pad. We were releasing the queued text buffer when we should keep
7178         it until video pad gets EOS or discard the text buffer because it's
7179         too old. That was eating the last subtitle buffer. Add some more
7180         debug.
7181
7182 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7183
7184         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7185         (gst_text_overlay_video_chain):
7186           Fix invalid memory access (we can't access a buffer after it's been
7187           pushed downstream without taking a reference); fix memory leak (if
7188           there's no text to render, bail out before allocating stuff).
7189
7190 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7191
7192         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7193         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7194         * ext/pango/gsttextoverlay.h:
7195           If input is plain text, escape it before passing it to
7196           pango_layout_set_markup().
7197
7198 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7199
7200         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7201           Don't ignore flow return from gst_pad_push().
7202
7203 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
7204
7205         Patch by: Fabrizio Gennari
7206
7207         * ext/libvisual/visual.c: (gst_visual_getcaps),
7208         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7209         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7210         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7211         (gst_vorbisenc_convert_sink):
7212         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7213         (gst_audio_duration_from_pad_buffer):
7214         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7215         (gst_audio_filter_chain):
7216         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7217         (gst_base_rtp_depayload_setcaps):
7218         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7219         (gst_video_get_size):
7220         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7221           Don't leak references returned by gst_pad_get_parent()
7222           (#333663)
7223
7224 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
7225
7226         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7227           change location param details
7228         * gst/volume/gstvolume.c: (plugin_init):
7229           correct plugin description
7230
7231 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7232
7233         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7234         (gst_gnome_vfs_src_check_get_range):
7235           Override GstBaseSrc::check_get_range() in order to avoid opening
7236           the resource just to check whether we can operate in pull-mode or
7237           not - we can predict that pretty well from the URI alone. Should
7238           fix problems with last.fm (#331690). (Requires latest core CVS).
7239
7240 2006-03-06  Wim Taymans  <wim@fluendo.com>
7241
7242         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7243         (gst_video_sink_class_init):
7244         Throw away frames that are later than 20 ms.
7245
7246 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
7247
7248         Patch by: Fabrizio Gennari
7249
7250         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7251           Set depth on WMA caps (#333545)
7252
7253 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7254
7255         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7256         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7257           put Theora BOS pages before others.  This hardcodes
7258           the Ogg/Theora I profile, but hey.
7259
7260 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7261
7262         * ext/ogg/README:
7263           updated with some examples
7264         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7265         (granulepos_add), (theora_buffer_from_packet):
7266         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7267         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7268         (gst_vorbisenc_chain):
7269           implement strategy from ext/ogg/README
7270         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7271         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7272         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7273         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7274           Fix muxer so that oggz-validate is happy with all streams;
7275           except for no eos mark, and the BOS page ordering
7276         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7277         (check_buffer_granulepos):
7278         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7279           update tests to check for OFFSET being set as requested
7280           fixed type of granulepos, it's not a ClockTime
7281
7282 2006-03-05  Julien MOUTTE  <julien@moutte.net>
7283
7284         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7285         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7286         Check that the xvimage we are creating has a correct size
7287         before returning it. (#314897)
7288
7289 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7290
7291         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7292           Give id3 and ape tag typefinders a rank slightly higher
7293           than PRIMARY to ensure they're always run before any of
7294           the other typefinders (in particular wav and mp3) (#324186).
7295
7296 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
7297
7298         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7299           Add support for '3IVD' fourcc (#333403).
7300
7301 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
7302
7303         * configure.ac:
7304           Bump requirements to GStreamer CVS for the new error enum.
7305
7306         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7307           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7308           space left on the device (fixes #333352).
7309
7310 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
7311
7312         * win32/vs6:
7313           add a project file for libgstvolume
7314           update the workspace
7315
7316 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7317
7318         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7319         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7320         (GST_START_TEST):
7321           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7322           Set IN_CAPS on header buffers
7323
7324 2006-03-02  Wim Taymans  <wim@fluendo.com>
7325
7326         * docs/plugins/Makefile.am:
7327         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7328         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7329         Add audioresample to docs.
7330
7331         * gst/audioconvert/gstaudioconvert.c:
7332         Add revision date.
7333
7334         * gst/audioresample/gstaudioresample.c:
7335         (gst_audioresample_base_init), (gst_audioresample_class_init),
7336         (gst_audioresample_init), (gst_audioresample_dispose),
7337         (audioresample_get_unit_size), (audioresample_transform_caps),
7338         (resample_set_state_from_caps), (audioresample_transform_size),
7339         (audioresample_set_caps), (audioresample_event),
7340         (audioresample_do_output), (audioresample_transform),
7341         (audioresample_pushthrough), (gst_audioresample_set_property),
7342         (gst_audioresample_get_property), (plugin_init):
7343         * gst/audioresample/gstaudioresample.h:
7344         Added docs.
7345         Small code cleanups.
7346
7347 2006-03-02  Wim Taymans  <wim@fluendo.com>
7348
7349         * docs/plugins/Makefile.am:
7350         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7351         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7352         Added videoscale to docs.
7353
7354         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7355         (gst_video_rate_swap_prev), (gst_video_rate_event),
7356         (gst_video_rate_chain):
7357         Fix typo in docs.
7358
7359         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7360         (gst_video_scale_init), (gst_video_scale_prepare_size),
7361         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7362         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7363         * gst/videoscale/gstvideoscale.h:
7364         Added docs, examples.
7365         Some code cleanups.
7366         Post errors instead of g_warning.
7367
7368 2006-03-02  Wim Taymans  <wim@fluendo.com>
7369
7370         * docs/libs/gst-plugins-base-libs-docs.sgml:
7371         * docs/libs/gst-plugins-base-libs-sections.txt:
7372         * docs/libs/gst-plugins-base-libs.types:
7373         * docs/plugins/Makefile.am:
7374         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7375         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7376         Added some more docs to libs and plugins.
7377
7378         * gst-libs/gst/audio/gstringbuffer.c:
7379         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7380         * gst-libs/gst/audio/gstringbuffer.h:
7381         Document ringbuffer some more.
7382
7383         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7384         (gst_video_rate_setcaps), (gst_video_rate_reset),
7385         (gst_video_rate_init), (gst_video_rate_flush_prev),
7386         (gst_video_rate_swap_prev), (gst_video_rate_event),
7387         (gst_video_rate_chain), (gst_video_rate_change_state):
7388         * gst/videorate/gstvideorate.h:
7389         Fix videorate to use segments.
7390         Make it work with 0/1 framerates (closes #331903)
7391         Handle EOS correctly.
7392         Added docs.
7393
7394 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7395
7396         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7397         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7398         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7399           In state change function, first chain up to parent class,
7400           then handle downwards state change stuff. Remove some
7401           commented out cruft from 0.8 code.
7402
7403 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
7404
7405         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7406         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7407         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7408         (gst_ogm_parse_chain):
7409           Don't remove/re-add source pad if the new caps are the same as
7410           the old caps anyway (#333042). When removing source pad, don't
7411           unref it afterwards - we didn't ref it when adding. Sprinkle some
7412           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7413           after using gst_pad_get_parent(). Return downstream flow return
7414           value in chain function.
7415
7416 2006-03-02  Wim Taymans  <wim@fluendo.com>
7417
7418         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7419         * docs/plugins/gst-plugins-base-plugins.args:
7420         * docs/plugins/gst-plugins-base-plugins.hierarchy:
7421         * docs/plugins/gst-plugins-base-plugins.interfaces:
7422         * docs/plugins/gst-plugins-base-plugins.signals:
7423         Fix hierarchy, added some more elements to the docs.
7424
7425         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7426         (gst_ffmpegcsp_get_type):
7427         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7428         Fix docs for ffmpegcolorspace.
7429
7430 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
7431
7432         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7433         (apetag_type_find), (ape_type_find), (plugin_init):
7434           Some typefinding fine-tuning:
7435           - rank ID3/APE tags in order of preference via probabilities, so that
7436             ID3v2 > APEv2 > APEv1 > ID3v1.
7437           - three or four bytes don't really justify MAXIMUM probability,
7438             change those to 'very likely' (musepack and monkeysaudio).
7439
7440 2006-03-01  Wim Taymans  <wim@fluendo.com>
7441
7442         * docs/plugins/Makefile.am:
7443         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7444         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7445         * ext/alsa/gstalsamixer.c:
7446         * ext/alsa/gstalsamixer.h:
7447         * ext/alsa/gstalsamixerelement.c:
7448         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7449         * ext/alsa/gstalsamixerelement.h:
7450         * ext/alsa/gstalsasink.c:
7451         * ext/alsa/gstalsasink.h:
7452         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7453         (gst_alsasrc_init):
7454         * ext/alsa/gstalsasrc.h:
7455         Added alsa docs.
7456         Small code cleanups.
7457
7458 2006-03-01  Wim Taymans  <wim@fluendo.com>
7459
7460         * ext/theora/Makefile.am:
7461         Dist new header too,
7462
7463 2006-03-01  Wim Taymans  <wim@fluendo.com>
7464
7465         * docs/plugins/Makefile.am:
7466         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7467         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7468         * ext/gnomevfs/gstgnomevfssink.h:
7469         * ext/gnomevfs/gstgnomevfssrc.h:
7470         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7471         * ext/vorbis/vorbisdec.h:
7472         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7473         * ext/vorbis/vorbisenc.h:
7474         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7475         (vorbis_parse_chain), (vorbis_parse_change_state):
7476         * ext/vorbis/vorbisparse.h:
7477         * gst/audioconvert/gstaudioconvert.h:
7478         * gst/tcp/gsttcpserversink.h:
7479         * gst/videotestsrc/gstvideotestsrc.c:
7480         * gst/videotestsrc/gstvideotestsrc.h:
7481         * gst/volume/gstvolume.c:
7482         * gst/volume/gstvolume.h:
7483         Fix some more docs.
7484         Added docs for vorbisdec and vorbisparse.
7485         Fix vorbisparse.
7486
7487 2006-03-01  Wim Taymans  <wim@fluendo.com>
7488
7489         * docs/plugins/Makefile.am:
7490         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7491         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7492         * ext/pango/gstclockoverlay.h:
7493         * ext/pango/gsttextoverlay.h:
7494         * ext/pango/gsttextrender.h:
7495         * ext/pango/gsttimeoverlay.h:
7496         * ext/theora/gsttheoradec.h:
7497         * ext/theora/gsttheoraenc.h:
7498         * ext/theora/theoradec.c:
7499         * ext/theora/theoraenc.c:
7500         * gst/audioconvert/gstaudioconvert.h:
7501         * gst/audiotestsrc/gstaudiotestsrc.h:
7502         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7503         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7504         * gst/tcp/gstmultifdsink.h:
7505         Updated/added documentation.
7506
7507         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7508         (gst_text_overlay_halign_get_type),
7509         (gst_text_overlay_wrap_mode_get_type),
7510         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7511         (gst_text_overlay_init), (gst_text_overlay_set_property),
7512         (gst_text_overlay_get_property):
7513         Fix up properties to be enums instead of string to make bindings,
7514         introspection and automatic GUI creation possible.
7515         Add getters for the properties.
7516
7517 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
7518
7519         * gst/audiotestsrc/gstaudiotestsrc.c:
7520           added defines of M_PI and M_PI_2
7521         * gst/ffmpegcolorspace/avcodec.h:
7522           removed #include "stdint.h" for win32 as _stdint.h is 
7523           autogenerated to win32/common
7524         * win32/common/libgstaudio.def:
7525         * win32/common/libgsttag.def:
7526           added some exports
7527         * win32/vs6:
7528           some project files bugs corrected
7529         * win32/vs7:
7530           project files are reset to the default vs7 configuration 
7531           (they link to msvcr71.dll using default optimizations)
7532           
7533 2006-02-28  Wim Taymans  <wim@fluendo.com>
7534
7535         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7536         Fix some docs.
7537
7538 2006-02-28  Edward Hervey  <edward@fluendo.com>
7539
7540         * ext/alsa/gstalsasrc.c:
7541         Set proper class on the ElementDetails:
7542         Source/Audio instead of Src/Audio/
7543
7544 2006-02-28  Edward Hervey  <edward@fluendo.com>
7545
7546         * gst/videoscale/vs_scanline.c:
7547         (vs_scanline_resample_nearest_RGBA):
7548         Revert optimization in videoscale. It should go in liboil and have
7549         an appropriate liboil function.
7550
7551 2006-02-28  Wim Taymans  <wim@fluendo.com>
7552
7553         * gst-libs/gst/audio/gstbaseaudiosink.c:
7554         (gst_base_audio_sink_provide_clock):
7555         Don't try to provide a clock in the NULL state.
7556
7557 2006-02-28  Wim Taymans  <wim@fluendo.com>
7558
7559         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7560         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7561         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7562         (gst_ogg_demux_deactivate_current_chain),
7563         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7564         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7565         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7566         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7567         Use GstSegment infrastructure to remove duplicated code
7568         and handle more seek cases correctly.
7569
7570 2006-02-28  Wim Taymans  <wim@fluendo.com>
7571
7572         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7573         (gst_ffmpegcsp_transform):
7574         Don't ignore return code from ffmpeg convert function.
7575
7576         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7577         Split out some long statements to ease debugging.
7578
7579 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
7580
7581         * ext/libvisual/visual.c: (gst_visual_init),
7582         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7583         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7584         being able to renegotiate the size. Instead, use the negotiation
7585         algorithm from the goom plugin to pick an initial output caps. 
7586
7587         Also, allow theoretical libvisual plugins that might support non-GL 
7588         output even if they also do GL.
7589
7590 2006-02-26  Julien MOUTTE  <julien@moutte.net>
7591
7592         * ext/libvisual/visual.c: (gst_visual_init),
7593         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7594         (plugin_init): Load only non GL plugins. Fix some memleaks and 
7595         possible negotiation issues.
7596
7597 2006-02-25  Julien MOUTTE  <julien@moutte.net>
7598
7599         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7600
7601 2006-02-24  Michael Smith  <msmith@fluendo.com>
7602
7603         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7604         (cmml_type_find), (plugin_init):
7605           Fix CMML type find function to not require a specific minor version
7606           of the CMML header.
7607
7608           Add an MPEG4 video elementary stream typefind function.
7609
7610 2006-02-04  Michael Smith  <msmith@fluendo.com>
7611
7612         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7613         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7614         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7615         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7616         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7617         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7618           Annodex support in ogg demuxer. Doesn't do very much without the
7619           other annodex patches (to come).
7620
7621 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7622
7623         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7624
7625         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7626           Pick up palette for MS video v1 (#327028)
7627
7628 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7629
7630         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7631         (gst_ffmpegcsp_caps_remove_format_info),
7632         (gst_ffmpegcsp_get_unit_size):
7633           The 'palette_data' field from incoming RGB caps shouldn't be
7634           proxied on outgoing YUV caps; also, restrict unit size
7635           adjustment in case of paletted data only to the unit that
7636           actually has a palette. Fixes #330711.
7637
7638 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7639
7640         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7641         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7642         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7643         (gst_ffmpegcsp_get_unit_size):
7644           Plug some memory leaks.
7645
7646 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
7647
7648         * sys/ximage/Makefile.am:
7649         * sys/xvimage/Makefile.am:
7650           Add some _CFLAGS and _LIBS that seem to be missing
7651           and/or required for Cygwin (see #317048).
7652
7653 2006-02-22  Wim Taymans  <wim@fluendo.com>
7654
7655         * ext/alsa/gstalsasrc.c:
7656         Fix description as pointed out by caugier.
7657
7658 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
7659
7660         Reviewed by : Edward Hervey  <edward@fluendo.com>
7661
7662         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7663         (qt_type_find):
7664         Better 3gp typefinding (#331526).
7665
7666 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7667
7668         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7669           Don't send EOS event here, the base class will send one for us.
7670
7671         * gst/playback/gstplaybasebin.c: (prepare_output):
7672           Subpictures without video stream aren't allowed either.
7673         
7674         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7675           Fix debug statement copy'n'paste-o.
7676
7677 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
7678
7679         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7680           Fix issues with mixer keeping state when muting/unmuting
7681           and when changing the volume whilst muted (see #331763
7682           and #331765).
7683
7684 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7685
7686         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7687         (parse_subrip), (gst_sub_parse_format_autodetect):
7688           Set right caps given that we send escaped text. Also,
7689           honour <i></i>, <b></b> and <u></u> markers that can be found
7690           in .srt files (fixes #310202).
7691
7692 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
7693
7694         * gst-libs/gst/audio/mixerutils.c:
7695         (element_factory_rank_compare_func):
7696           Make order in which elements are tried more determinable.
7697
7698 2006-02-20  Julien MOUTTE  <julien@moutte.net>
7699
7700         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7701         (remove_element_chain), (cleanup_decodebin),
7702         (gst_decode_bin_change_state): Make decodebin reusable by
7703         fixing remove_element_chain first and then introduce a
7704         cleaner in state change to ->NULL. (Closes #331678)
7705
7706 2006-02-19  Wim Taymans  <wim@fluendo.com>
7707
7708         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7709         use 0666 mask when creating files so umask gets applied
7710         correctly. Fixes #331295.
7711
7712 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7713
7714         * gst/subparse/Makefile.am:
7715         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7716         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7717         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7718         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7719         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7720         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7721         * gst/subparse/gstssaparse.h:
7722         * gst/subparse/gstsubparse.c: (plugin_init):
7723           Add very basic parser for SSA subtitle streams (as often
7724           found in matroska files).
7725
7726 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
7727
7728         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7729           That should be text/x-pango-markup, not text/x-pango-layout.
7730
7731 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7732
7733         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7734         Polishing.
7735
7736 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7737
7738         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7739         (gst_text_overlay_finalize), (gst_text_overlay_init),
7740         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7741         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7742         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7743         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7744         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7745         Fix state change deadlock.
7746
7747 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7748
7749         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7750         (gst_text_overlay_finalize), (gst_text_overlay_init),
7751         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7752         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7753         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7754         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7755         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7756         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
7757         and subtitles files.
7758
7759 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7760
7761         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
7762         should be considered as raw.
7763
7764 2006-02-19  Julien MOUTTE  <julien@moutte.net>
7765
7766         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
7767         (cb_probe):
7768         * gst/playback/gststreaminfo.h: Introduce language informations.
7769
7770 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
7771
7772         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
7773         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
7774         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7775         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
7776         Set shared memory segments to be deleted as soon as we have attached,
7777         that way they get cleaned up automatically if we crash.
7778
7779 2006-02-18  Julien MOUTTE  <julien@moutte.net>
7780
7781         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
7782         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
7783         functions are called with lock held.
7784
7785 2006-02-18  Julien MOUTTE  <julien@moutte.net>
7786
7787         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7788         (gst_text_overlay_finalize), (gst_text_overlay_init),
7789         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7790         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7791         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
7792         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
7793         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
7794         (gst_text_overlay_change_state): Refactoring of textoverlay
7795         without collectpads. This now supports sparse subtitles coming
7796         from a demuxer instead of a sub file. Seeking is still broken 
7797         though. Need to discuss with wtay some more on how to handle
7798         seeking correctly.
7799         * ext/pango/gsttextoverlay.h:
7800         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
7801         subtitles coming from the demuxer.
7802
7803 2006-02-17  Wim Taymans  <wim@fluendo.com>
7804
7805         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7806         (gst_vorbisenc_convert_sink):
7807         Use some more scaling functions.
7808
7809 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
7810
7811         * ext/cdparanoia/gstcdparanoiasrc.c:
7812         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
7813         (gst_cd_paranoia_paranoia_callback),
7814         (gst_cd_paranoia_src_signal_is_being_watched),
7815         (gst_cd_paranoia_src_read_sector):
7816         * ext/cdparanoia/gstcdparanoiasrc.h:
7817           Add back 'transport-error' and 'uncorrected-error' signals and
7818           make them actually be fired when bad stuff happens (#319340).
7819
7820 2006-02-17  Wim Taymans  <wim@fluendo.com>
7821
7822         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
7823         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
7824         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
7825         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
7826         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
7827         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
7828         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
7829         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
7830         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
7831         (gst_ring_buffer_clear):
7832         Small cleanups.
7833         Added some G_LIKELY.
7834
7835 2006-02-17  Wim Taymans  <wim@fluendo.com>
7836
7837         * gst-libs/gst/audio/TODO:
7838         Update TODO
7839
7840         * gst-libs/gst/audio/gstbaseaudiosink.c:
7841         (gst_base_audio_sink_get_offset):
7842         When trying to play samples ASAP and we don't have a
7843         previous sample, try to play at position 0 instead of
7844         an invalid position.
7845
7846 2006-02-17  Wim Taymans  <wim@fluendo.com>
7847
7848         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
7849         (gst_alsasink_reset):
7850         Also release lock when we get an error in _reset();
7851         fix an error message.
7852
7853 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7854
7855         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
7856         (gst_alsasink_init), (get_channel_free_structure),
7857         (caps_add_channel_configuration), (gst_alsasink_getcaps),
7858         (gst_alsasink_close):
7859         * ext/alsa/gstalsasink.h:
7860           Add support for more than 2 channels (#326720).
7861
7862 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7863
7864         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7865           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
7866           with 4 or 6 channels, assume a default channel layout to make things
7867           work (not sure there's anything else we can do in those cases).
7868
7869 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7870
7871         * gst-libs/gst/audio/multichannel.c:
7872           Minor docs fix.
7873
7874         * gst-libs/gst/riff/Makefile.am:
7875         * gst-libs/gst/riff/riff-ids.h:
7876         * gst-libs/gst/riff/riff-media.c:
7877         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
7878           Add support for WAVEFORMATEX, eg. PCM audio with more than two
7879           channels and a channel layout map.
7880           
7881 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
7882
7883         Reviewed by Edward Hervey  <edward@fluendo.com>
7884
7885         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
7886         C-level optimization of the RGBA nearest neighbour function.
7887         Eventually this might end up in liboil with vectorized versions.
7888
7889 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7890
7891         * gst-libs/gst/audio/multichannel.c:
7892         (gst_audio_get_channel_positions):
7893           When we have more than 2 channels, but no channel layout is
7894           specified in the caps, return some default channel layout
7895           to the caller and warn about about a possibly buggy element
7896           (could be buggy filtercaps as well of course) (#317038).
7897
7898 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
7899
7900         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7901           Add gst-libs/gst/cdda to list of lib search paths.
7902
7903 2006-02-15  Andy Wingo  <wingo@pobox.com>
7904
7905         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
7906         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
7907         to the Lord Jesus that I do not have to touch the ogg muxer ever
7908         again.
7909
7910 2006-02-15  Edward Hervey  <edward@fluendo.com>
7911
7912         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
7913         quicktime movie files can also contain 'uuid' atoms.
7914
7915 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
7916
7917         * gst/audioconvert/plugin.c: (plugin_init):
7918           Register the GstAudioChannelPosition enum type with the type
7919           system in the plugin_init function, so that it is known before
7920           any element actually makes use of multi-channel stuff. This is
7921           required for example if one wants to be able to deserialise/use
7922           a caps string with channel positions before any pipeline has
7923           been setup and started, like with gst-launch.
7924
7925 2006-02-14  Wim Taymans  <wim@fluendo.com>
7926
7927         * gst-libs/gst/audio/gstringbuffer.c:
7928         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
7929         (gst_ring_buffer_samples_done), (wait_segment),
7930         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
7931         Add some compiler G_(UN_)LIKELY help.
7932         SIGNAL the ringbuffer waiters when going to PAUSED as well to
7933         make sure they can exit their functions. Should fix #330748
7934
7935 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
7936
7937         * Makefile.am:
7938         * configure.ac:
7939         * win32/MANIFEST:
7940         * win32/common/_stdint.h:
7941           Windows does not have long long; copy the generated _stdint.h
7942         * win32/common/interfaces-enumtypes.c:
7943         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
7944         (gst_mixer_track_flags_get_type),
7945         (gst_tuner_channel_flags_get_type):
7946         * win32/common/multichannel-enumtypes.c:
7947         (gst_audio_channel_position_get_type):
7948           update
7949
7950 2006-02-13  Wim Taymans  <wim@fluendo.com>
7951
7952         * gst-libs/gst/audio/gstbaseaudiosink.c:
7953         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
7954         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7955         Always sync on first sample we receive when starting.
7956
7957 2006-02-13  Wim Taymans  <wim@fluendo.com>
7958
7959         * gst/playback/gstplaybin.c: (gen_vis_element):
7960         Update vis bin docs.
7961         Move queue after tee so we don't queue video buffers but
7962         audio samples instead. Fixes problems where the video queue
7963         is filled and the audio queue empty.
7964
7965 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
7966
7967         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
7968           No need to push an EOS event here, GstBaseSrc will do that for us
7969           when we return FLOW_UNEXPECTED.
7970           
7971 2006-02-12  Wim Taymans  <wim@fluendo.com>
7972
7973         * gst-libs/gst/audio/gstbaseaudiosink.c:
7974         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
7975         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
7976         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
7977         Use scale functions when possible.
7978         Fix error messages.
7979         Free clockid when after waiting for EOS.
7980         Use G_(UN_)LIKLY when it makes sense.
7981         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
7982
7983 2006-02-12  Edward Hervey  <edward@fluendo.com>
7984
7985         * gst/playback/gstplaybasebin.c: (prepare_output): 
7986         Remove stray semi-colon (fixes #330888).
7987
7988 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
7989
7990         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
7991         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
7992         Fix up the XShm call testing so that we catch errors, and don't
7993         cause new ones by attempting to detach from a segment we failed
7994         to attach to. Fixes #312439.
7995
7996 2006-02-10  Edward Hervey  <edward@fluendo.com>
7997
7998         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7999         Added flv file typefind (video/x-flv).
8000
8001 2006-02-10  Edward Hervey  <edward@fluendo.com>
8002
8003         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8004         (gst_riff_create_video_template_caps):
8005         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8006         Also added the caps to the default set of riff video caps.
8007
8008 2006-02-09  Andy Wingo  <wingo@pobox.com>
8009
8010         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8011         time and the end time of the last packet in the page.
8012         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8013         on the pages in our queue, set the duration as well. Reflow a
8014         debug statement.
8015         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8016         Fixes bad muxing order.
8017
8018 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8019
8020         * gst-libs/gst/rtp/gstbasertppayload.c:
8021         (gst_basertppayload_setcaps), (gst_basertppayload_push):
8022           update seqnum before setting it on the packet; this makes sure
8023           that the timestamp and seqnum properties match after pushing
8024           a buffer
8025
8026 2006-02-09  Andy Wingo  <wingo@pobox.com>
8027
8028         * gst-libs/gst/audio/gstringbuffer.c
8029         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8030         overflow after 13.5 hours of recording. Kapow!
8031
8032         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8033         the buffer size -- we don't care about underrun/overrun reporting
8034         right now, just need to return a useful value.
8035
8036 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
8037
8038         * configure.ac:
8039           Back to CVS
8040
8041 === release 0.10.3 ===
8042
8043 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
8044
8045         * configure.ac:
8046           releasing 0.10.3, "Under Pressure"
8047
8048 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8049
8050         * configure.ac:
8051         Drat. Bump libtool version number for new API.
8052         Prelease 0.10.2.3 (of 0.10.3)
8053
8054 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8055
8056         * configure.ac:
8057         * win32/common/config.h:
8058         0.10.2.2 prerelease (of 0.10.3).
8059
8060 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8061
8062         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8063           Revert Andy's newsegment change pending a more correct
8064           fix.
8065
8066 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8067
8068         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8069         (qt_type_find), (plugin_init):
8070           detect more files as 3gp
8071           group and reorder the iso file formats
8072
8073 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8074
8075         * ext/vorbis/vorbis.c: (plugin_init):
8076           Register musicbrainz tags, so apps don't have to.
8077
8078 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8079
8080         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8081         (gst_tag_to_vorbis_tag):
8082           Make sure we called gst_tag_register_musicbrainz_tags()
8083           before possibly mapping a vorbiscomment string from/to a
8084           musicbrainz tag.
8085
8086 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8087
8088         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8089           In case we can't find the required number of consecutive
8090           mpeg audio frames to positively identify an MPEG audio
8091           stream, check if there's at least a valid mpeg audio
8092           frame right at offset 0 and if so suggest mpeg/audio
8093           caps with a very low probability (#153004).
8094
8095 2006-02-07  Andy Wingo  <wingo@pobox.com>
8096
8097         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8098         a TIME segment if we get timestamped buffers. Requires recent
8099         fixes in core to work properly.
8100
8101 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8102
8103         * gst/playback/gstplaybasebin.c: (prepare_output):
8104           Don't print the URI as part of the error message, it
8105           makes error dialogs look rather ugly, especially if
8106           the URI is very long or has characters in it that
8107           need escaping.
8108
8109 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8110
8111         * gst/playback/gstplaybasebin.c: (prepare_output):
8112           Error out if we have only text or subtitles, but nothing
8113           else. Also error out if we have subtitles but no video
8114           stream.
8115
8116 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
8117
8118         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8119           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8120           Post an error message on the bus when we encounter an
8121           error, which will hopefully be more meaningful than the
8122           'Internal Flow Error' message users get to see if we
8123           just return GST_FLOW_ERROR.
8124
8125 2006-02-07  Andy Wingo  <wingo@pobox.com>
8126
8127         * configure.ac (GST_MAJORMINOR): Update core version req to
8128         0.10.2.2, for the collectpads API addition (#330244).
8129
8130 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
8131
8132         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8133           Return FALSE from plugin_init() when GnomeVFS can't
8134           be initialised for some reason (#328423).
8135
8136 2006-02-06  Julien MOUTTE  <julien@moutte.net>
8137
8138         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
8139         Stick to seeking theory until i find the bug.
8140         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8141
8142 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8143
8144         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8145         (theora_enc_finalize), (theora_enc_sink_setcaps),
8146         (theora_set_header_on_caps), (theora_enc_chain),
8147         (theora_enc_change_state):
8148         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8149           Make theoraenc and the tests leak free. Like, really.
8150
8151 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
8152
8153         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8154         (theora_enc_finalize), (theora_enc_sink_setcaps):
8155           Add a finalize method to ensure we clean up state even if
8156           someone omitted the state change back to NULL.
8157
8158         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8159         (gst_vorbisenc_chain):
8160           Free some more leaked bits.
8161
8162         * tests/check/pipelines/theoraenc.c: (start_pipeline),
8163         (stop_pipeline):
8164           Wait for state changes to happen if they're ASYNC.
8165
8166           This ought to teach those fancy pants buildbots a lesson.
8167
8168 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8169
8170         * gst-libs/gst/tag/gstid3tag.c:
8171           Add mapping for ID3 International Standard Recording Code
8172           tag "TSRC"
8173
8174 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8175
8176         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8177           Don't leak tag names.
8178
8179 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8180
8181         * docs/libs/gst-plugins-base-libs-docs.sgml:
8182         * docs/libs/gst-plugins-base-libs-sections.txt:
8183         * gst-libs/gst/tag/gstid3tag.c:
8184         * gst-libs/gst/tag/gstvorbistag.c:
8185         * gst-libs/gst/tag/tags.c:
8186           Split libgsttag docs into multiple sections.
8187
8188 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8189
8190         * docs/libs/Makefile.am:
8191         * docs/libs/gst-plugins-base-libs-docs.sgml:
8192         * docs/libs/gst-plugins-base-libs-sections.txt:
8193         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8194         * gst-libs/gst/tag/gstvorbistag.c:
8195         * gst-libs/gst/tag/tag.h:
8196         * gst-libs/gst/tag/tags.c:
8197           Add libgsttag to the docs.
8198
8199 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8200
8201         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8202         (gst_text_overlay_init), (gst_text_overlay_src_event),
8203         (gst_text_overlay_collected): Fix clockoverlay.
8204
8205 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8206
8207         * docs/libs/compiling.sgml:
8208           Fix typo: it's pkg-config, not pkg-gconfig
8209
8210         * docs/libs/gst-plugins-base-libs-docs.sgml:
8211         * docs/libs/gst-plugins-base-libs-sections.txt:
8212         * docs/libs/tmpl/gstgconf.sgml:
8213           There is no libgstgconf in 0.10, remove it
8214           from the docs.
8215
8216 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8217
8218         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8219         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8220         (gst_text_overlay_src_event), (gst_text_overlay_collected):
8221         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8222         (gst_sub_parse_class_init), (gst_sub_parse_init),
8223         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8224         (parse_mpsub), (parser_state_init), (handle_buffer),
8225         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8226         * gst/subparse/gstsubparse.h: Introduce seeking code.
8227
8228 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8229
8230         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8231           Add comment about LANGUAGE tag inconsistency (we want
8232           ISO-639-1, but extract three-letter identifiers?)
8233
8234         * po/POTFILES.in:
8235           Add two translatable files.
8236
8237 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
8238
8239         * gst-libs/gst/tag/Makefile.am:
8240         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8241         * gst-libs/gst/tag/tag.h:
8242         * gst-libs/gst/tag/tags.c:
8243         (gst_tag_register_musicbrainz_tags_internal),
8244         (gst_tag_register_musicbrainz_tags):
8245           Forward-port some tags stuff from the 0.8 branch. This is
8246           mostly the addition of musicbrainz tags and their mapping
8247           to vorbistags, and a vorbistag mapping of the language tag.
8248
8249 2006-02-05  Julien MOUTTE  <julien@moutte.net>
8250
8251         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8252         refactoring.
8253
8254 2006-02-04  David Schleef  <ds@schleef.org>
8255
8256         * ext/ogg/gstoggmux.c:
8257         * gst/typefind/gsttypefindfunctions.c:
8258           Add Dirac typefinding and add dirac format to oggmux.
8259
8260 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
8261
8262         * gst/playback/gstdecodebin.c: (try_to_link_1):
8263           Don't put essential function call into
8264           g_return_*() macro, otherwise it'll all be
8265           replaced by NOOPs when compiling with
8266           G_DISABLE_CHECKS defined.
8267
8268 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
8269
8270         * ext/ogg/gstoggdemux.c:
8271         * ext/ogg/gstoggparse.c:
8272         * gst/tcp/gsttcpserversink.c:
8273         * sys/v4l/v4lsrc_calls.c:
8274         * sys/v4l/v4lsrc_calls.h:
8275         Just make it compile with --disable-gst-debug.
8276
8277 2006-02-03  Wim Taymans  <wim@fluendo.com>
8278
8279         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8280         (gst_alsasink_class_init), (gst_alsasink_init),
8281         (gst_alsasink_write), (gst_alsasink_reset):
8282         * ext/alsa/gstalsasink.h:
8283         Add lock to protect alsa calls.
8284         Implement reset to flush samples ASAP, does not work
8285         with dmix though.
8286
8287 2006-02-02  Wim Taymans  <wim@fluendo.com>
8288
8289         * gst-libs/gst/audio/gstbaseaudiosink.c:
8290         (gst_base_audio_sink_provide_clock):
8291         Ugh.. getting late I guess...
8292
8293 2006-02-02  Wim Taymans  <wim@fluendo.com>
8294
8295         * gst-libs/gst/audio/gstbaseaudiosink.c:
8296         (gst_base_audio_sink_provide_clock),
8297         (gst_base_audio_sink_set_property),
8298         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8299         Don't try to provide a clock when we are not negotiated since
8300         we might not be able to make it run.
8301
8302 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
8303
8304         * gst/playback/gstdecodebin.c: (try_to_link_1):
8305           Unlinking two source pads is ... hard.
8306
8307 2006-02-02  Wim Taymans  <wim@fluendo.com>
8308
8309         * gst-libs/gst/audio/TODO:
8310         Updated.
8311
8312         * gst-libs/gst/audio/gstbaseaudiosink.c:
8313         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8314         On EOS, wait till the last sample is played before posting EOS.
8315
8316 2006-02-01  Philippe Kalaf <burger at speedy dot org>
8317
8318         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8319           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8320           setting queue_delay to zero. Also avoid thread being started if
8321           queue_delay is zero.
8322
8323 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8324
8325         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8326           Make test work again by connecting fakesinks to each decoded pad,
8327           which makes the pipeline wait until each fakesink has a buffer
8328           queued before going to PAUSED state. At that point we know the
8329           decodebin pads are negotiated.
8330
8331 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8332
8333         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8334         (gst_cdda_base_src_handle_event):
8335         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8336           Pass unhandled queries to the parent class's query function.
8337
8338 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8339
8340         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8341         (gst_ogg_pad_src_query):
8342         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8343         * ext/theora/theoradec.c: (theora_dec_src_query),
8344         (theora_dec_sink_query):
8345         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8346         (vorbis_dec_sink_query):
8347         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8348         (gst_vorbisenc_sink_query):
8349         * gst/adder/gstadder.c: (gst_adder_query):
8350           Pass unhandled queries upstream instead of just
8351           dropping them (#326447). Also, fix supported
8352           query types list for some elements.
8353
8354 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
8355
8356         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8357         (paris_type_find), (ilbc_type_find), (plugin_init):
8358           Fix typefinding for audio/x-au, audio/x-paris and
8359           audio/iLBC-sh. We cannot use the START_WITH macros
8360           here, because there can only be one typefind factory
8361           with the same name (caps), so the second one would
8362           replace the first one and the first one would never
8363           be called when doing typefinding (see #161712).
8364           
8365
8366 2006-01-31  Wim Taymans  <wim@fluendo.com>
8367
8368         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8369         (vorbis_handle_header_packet), (vorbis_dec_push),
8370         (vorbis_handle_data_packet):
8371         Use scale_int when we can, add some more scaling.
8372         Check packettype before parsing it.
8373
8374 2006-01-31  Wim Taymans  <wim@fluendo.com>
8375
8376         * ext/theora/theoradec.c: (_theora_granule_time),
8377         (theora_dec_src_convert), (theora_dec_sink_convert):
8378         Call right _scale functions.
8379         Use parameter instead of some other random value.
8380
8381 2006-01-31  Wim Taymans  <wim@fluendo.com>
8382
8383         * ext/theora/theoradec.c: (_theora_granule_frame),
8384         (_theora_granule_time), (_inc_granulepos),
8385         (theora_dec_src_convert), (theora_dec_sink_convert),
8386         (theora_handle_type_packet), (theora_handle_data_packet),
8387         (theora_dec_chain):
8388         Use higher precision timestamps calculation.
8389         Convert some other conversions to _scale.
8390
8391 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
8392
8393         * gst/audiotestsrc/gstaudiotestsrc.c:
8394         (gst_audio_test_src_create_sine_table), (plugin_init):
8395         * gst/volume/gstvolume.c: (plugin_init):
8396           initialize gst_controller before using
8397
8398 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
8399
8400         * tests/check/pipelines/theoraenc.c:
8401         * tests/check/pipelines/vorbisenc.c:
8402         Define constant using G_GINT64_CONSTANT to avoid errors when
8403         passing it around - otherwise it gets truncated to 32 bits.
8404
8405         Fixes failing tests.
8406
8407 2006-01-31  Andy Wingo  <wingo@pobox.com>
8408
8409         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8410         caps being set doesn't have a framerate value. Basically a stopgap
8411         measure.
8412
8413         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8414         technically correct enough to put into core though.
8415         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8416         DURATION. Fixes theoraenc ! oggmux.
8417
8418         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8419         fraction, not double.
8420
8421 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
8422
8423         * win32/vs7:
8424         add vs7 project files created by Sergey Scobich
8425
8426 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
8427
8428         * win32/vs8:
8429         add vs8 project files created by Sergey Scobich
8430         
8431 2006-01-30  Andy Wingo  <wingo@pobox.com>
8432
8433         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8434         timestamp + duration, not just timestamp -- ogg pages should be
8435         ordered by stop time. Necessary fix given the change in vorbis
8436         timestamps.
8437
8438         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
8439         (gst_theora_enc_init): Pull the granule shift out of the encoder.
8440         (granulepos_add): New function, handles the messiness of adjusting
8441         granulepos values.
8442         (theora_buffer_from_packet):
8443         (theora_enc_chain):
8444         (theora_enc_sink_event): Use granulepos_add, not +.
8445
8446         * tests/check/pipelines/theoraenc.c
8447         (check_buffer_granulepos_from_starttime): Just check the frame
8448         count, not the actual granulepos -- we can't dictate to the
8449         encoder when it should be placing keyframes.
8450
8451 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8452
8453         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8454           SERVICE_NOT_AVAILABLE happens for example when you're trying to
8455           play an http:// stream from a server that's not serving
8456
8457 2006-01-30  Andy Wingo  <wingo@pobox.com>
8458
8459         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
8460         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8461         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8462         available.
8463
8464         * ext/theora/gsttheoraenc.h:
8465         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8466         although theoraenc was timestamping correctly. Added handling of
8467         streams that start with nonzero timestamps.
8468
8469         * tests/check/Makefile.am:
8470         * tests/check/pipelines/theoraenc.c: New file, basically does same
8471         tests as vorbisenc.
8472
8473         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8474
8475 2006-01-30  Wim Taymans  <wim@fluendo.com>
8476
8477         * gst-libs/gst/audio/gstaudiosink.c:
8478         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8479         (gst_audioringbuffer_pause):
8480         Implement pause that does not wait for completion.
8481
8482         * gst-libs/gst/audio/gstbaseaudiosink.c:
8483         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8484         Don't drop buffers when going to PAUSED but perform preroll on
8485         remaining samples now that core base class supports this.
8486
8487         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8488         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8489         (gst_ring_buffer_commit):
8490         Pause should not signal waiters.
8491         Implement return value of _commit correctly.
8492
8493 2006-01-30  Andy Wingo  <wingo@pobox.com>
8494
8495         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8496
8497         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8498         updated to timestamp from the first sample, not the last.
8499         (gst_vorbisenc_buffer_from_header_packet): New function, takes
8500         special care of granulepos and timestamp for header packets.
8501         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8502         when the first buffer has a nonzero timestamp.
8503
8504         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8505         (GstVorbisEnc.subgranule_offset): New members. Take care of the
8506         case when the first audio buffer we get has a nonzero timestamp.
8507         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8508         properly timestamp vorbis buffers with the time of the first
8509         sample, not the last.
8510         
8511         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8512         vorbis_granule_time_copy -- now it takes the granule/subgranule
8513         offset into account.
8514
8515         * tests/check/pipelines/vorbisenc.c: New test for correctness of
8516         timestamps, durations, and granulepos on buffers produced by
8517         vorbisenc.
8518
8519 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
8520
8521         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8522         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8523           Patch from Eric Jonas to support conversions to/from UYVY 
8524           (Fixes: #324626)
8525
8526 2006-01-30  Julien MOUTTE  <julien@moutte.net>
8527
8528         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8529         (setup_subtitle), (setup_source), (set_active_source):
8530         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8531         (gen_text_element), (gen_audio_element), (gen_vis_element),
8532         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8533
8534 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
8535
8536         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8537         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8538                 use gst_guint64_to_gdouble to be compliant with vs6
8539         * gst/playback/gstdecodebin.c: (try_to_link_1)
8540         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8541                 use G_GINT64_CONSTANT for int64 constants
8542         * win32/common/libgstinterfaces.def:
8543                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8544         * win32/vs6:
8545                 update and add new project files
8546                 
8547 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8548
8549         * Makefile.am:
8550         * win32/MANIFEST:
8551         * win32/common/interfaces-enumtypes.c:
8552         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8553         (gst_mixer_track_flags_get_type),
8554         (gst_tuner_channel_flags_get_type):
8555         * win32/common/interfaces-enumtypes.h:
8556         * win32/common/multichannel-enumtypes.c:
8557         (gst_audio_channel_position_get_type):
8558         * win32/common/multichannel-enumtypes.h:
8559           add a win32-update rule like in core, and copy over enumtypes files
8560
8561 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8562
8563         * win32/MANIFEST:
8564         * win32/common/config.h:
8565         * win32/common/config.h.in:
8566           add config files just like in core
8567
8568 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
8569
8570         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8571           Make gcc-4.1 happy (part of #327357).
8572
8573 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8574
8575         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8576         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8577         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8578         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8579         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8580         (gst_alsasrc_unprepare), (gst_alsasrc_read):
8581           Update all error messages.  All of them should either use
8582           the default translated message, or actually provide a
8583           translatable string.
8584           Make the string for channel count problems meaningful.
8585
8586 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8587
8588         * sys/v4l/v4l_calls.c: (gst_v4l_open):
8589           check for and throw RESOURCE_BUSY
8590
8591 2006-01-27  David Schleef  <ds@schleef.org>
8592
8593         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8594           checked in this change -- it requires liboil features not
8595           in 0.3.6.  Revert parts.
8596
8597 2006-01-27  David Schleef  <ds@schleef.org>
8598
8599         * REQUIREMENTS:
8600         * configure.ac: update liboil requirement to 0.3.6
8601         * gst/videoscale/Makefile.am:
8602         * gst/videoscale/vs_scanline.c: liboilify
8603
8604 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8605
8606         * ext/libvisual/visual.c: (get_buffer):
8607           When pad_alloc returns a GstFlowReturn other
8608           than GST_FLOW_OK, make sure it is passed upstream.
8609
8610 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
8611
8612         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8613         (gst_alsasink_class_init):
8614           Free the device name string.
8615
8616         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8617         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8618         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8619           Don't remove a pad from the collectpads structure until it
8620           is released - it's a request pad, and may receive data again
8621           if the element gets moved back to PLAYING state.
8622
8623         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8624           Ensure we turn on double buffering on the Xv port, and
8625           set the colour key to something dark and mysterious that
8626           isn't black.
8627
8628 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8629
8630         * ext/alsa/gstalsaplugin.c: (plugin_init):
8631         * ext/cdparanoia/gstcdparanoiasrc.c:
8632         (gst_cd_paranoia_src_base_init), (plugin_init):
8633         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8634         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8635           - a library should not call setlocale. see "Libraries" node in
8636             gettext manual
8637           - make sure all plugins that use translation do bindtextdomain
8638             to point to the localedir
8639         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8640         (setup_sinks), (plugin_init):
8641           all this, and check for NULL when creating sinks
8642
8643 2006-01-27  Julien MOUTTE  <julien@moutte.net>
8644
8645         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8646         (plugin_init): Make typefinding of subtitles work again.
8647
8648 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
8649
8650         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8651         (mp3_type_frame_length_from_header), (mp3_type_find),
8652         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8653         (plugin_init):
8654           Backport a bunch of typefinding fixes from the 0.8 branch.
8655           Also, improve wavpack typefinding: if we can't peek the
8656           entire wavpack block, try to parse the bits we can get and
8657           see if we find what we're looking for in those.
8658
8659 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8660
8661         * sys/ximage/ximagesink.c:
8662         (gst_ximagesink_calculate_pixel_aspect_ratio):
8663         * sys/xvimage/xvimagesink.c:
8664         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8665         more cases of pixel aspect ratio.
8666
8667 2006-01-26  Edward Hervey  <edward@fluendo.com>
8668
8669         * gst/playback/gstdecodebin.c: (pad_probe):
8670         Also consider the flush-start and tag events as unblockers
8671         for the pad probes.
8672
8673 2006-01-26  Julien MOUTTE  <julien@moutte.net>
8674
8675         * gst/playback/gstplaybin.c: (gst_play_bin_init),
8676         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8677         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
8678         On the fly visualisation switch, works disabling, enabling as
8679         well but it won't be able to enable vis in a playbin that was
8680         created with no visualisation.
8681
8682 2006-01-25  Wim Taymans  <wim@fluendo.com>
8683
8684         * gst-libs/gst/audio/gstbaseaudiosink.c:
8685         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8686         Undo previous commit that returned WRONG_STATE sooner, it breaks 
8687         resume after pause.
8688
8689 2006-01-25  Wim Taymans  <wim@fluendo.com>
8690
8691         * gst-libs/gst/audio/gstbaseaudiosink.c:
8692         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8693         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8694         Improve debugging.
8695         Post error when caps cannot be parsed.
8696         Resync on discontinuity in the stream.
8697         Clip samples to segment boundaries.
8698         return WRONG_STATE sooner when we are flushing.
8699
8700         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8701         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8702         Make audiosrc operate in TIME.
8703         Set TIMESTAMP and DURATION on buffers.
8704
8705 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
8706
8707         * tests/examples/seek/seek.c: (main):
8708           Output tag messages as well.
8709
8710 2006-01-23  Edward Hervey  <edward@fluendo.com>
8711
8712         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8713         (free_pad_probes), (remove_fakesink), (pad_probe),
8714         (close_pad_link), (gst_decode_bin_change_state):
8715         Replace GstPadBlockCallback with pad probes that detect
8716         first buffer AND eos before removing fakesink.
8717         Fixes hang with demuxers doing EOS while pre-rolling.
8718         Solves #328279
8719
8720 2006-01-23  Andy Wingo  <wingo@pobox.com>
8721
8722         * ext/alsa/gstalsasink.c:
8723         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8724         (gst_base_rtp_depayload_setcaps),
8725         (gst_base_rtp_depayload_add_to_queue),
8726         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8727         
8728         Patch by: Jens Granseuer <jensgr at gmx dot net>
8729
8730 2006-01-22  Julien MOUTTE  <julien@moutte.net>
8731
8732         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8733         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8734         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
8735         frames. We might get a frame destroyed after changing state to
8736         NULL, adding a safety check on xcontext.
8737
8738 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
8739
8740         * gst-libs/gst/interfaces/xoverlay.c:
8741           Fix prepare-xwindow-id code example in the docs - we need to
8742           ignore all messages that aren't element messages as well.
8743           
8744 2006-01-21  Julien MOUTTE  <julien@moutte.net>
8745
8746         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8747           I think one day i'll completely undestand how caps negotiation
8748           is supposed to work. This refactoring handles buffer_alloc
8749           called with caps we can't handle. We definitely don't want a
8750           set_caps with those caps, so we define and allocate a buffer
8751           we would like to receive.
8752
8753 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
8754
8755         * gst/playback/gstplaybasebin.c: (setup_source):
8756           Free iterator when done.
8757
8758 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
8759
8760         * gst-libs/gst/audio/gstbaseaudiosink.c:
8761         (gst_base_audio_sink_render):
8762           Fix playback of non-synchronised streams by assuming a rate
8763           of 1.0 instead of a random one.
8764
8765           Makes this work again:
8766
8767           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
8768           endianness=(int)4321, signed=(boolean)true, width=(int)16,
8769           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
8770           audioresample ! alsasink
8771
8772 === release 0.10.2 ===
8773
8774 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
8775
8776         * configure.ac:
8777           releasing 0.10.2, "Then the devil is six"
8778
8779 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
8780
8781         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8782         * gst/playback/gststreamselector.c:
8783         (gst_stream_selector_set_property):
8784           Comment out broken code that connects to the state-changed signal.
8785           At this point, changing current stream selection is broken, but 
8786           stuff like gst-launch playbin current-audio=1 works and filters
8787           to the chosen stream.
8788
8789 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8790
8791         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
8792           Fix #327216 (null dereference in vorbisdec)
8793
8794 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
8795
8796         * ext/theora/theoradec.c: (theora_handle_comment_packet):
8797           Post taglist actually on bus instead of just freeing it
8798           (fixes #327114 and totem bug #327080).
8799
8800         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
8801           Use gst_element_found_tags_for_pad(), so that the tags
8802           are sent downstream as an event as well.
8803
8804 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8805
8806         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
8807         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
8808         (gst_ximagesink_buffer_alloc):
8809         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
8810         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
8811         (gst_xvimagesink_buffer_alloc):
8812           move all regularly occurring messages to GST_LOG level
8813           add some more object logs
8814
8815 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8816
8817         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
8818           fix a silly segfault
8819
8820 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
8821
8822         * docs/libs/gst-plugins-base-libs-docs.sgml:
8823         * docs/libs/gst-plugins-base-libs-sections.txt:
8824         * gst-libs/gst/audio/mixerutils.c:
8825         * gst-libs/gst/audio/mixerutils.h:
8826           Add docs for mixerutils stuff.
8827
8828 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
8829
8830         * gst/playback/gstplaybasebin.c: (setup_source):
8831           Fix playback for sources that emit raw audio or
8832           raw video streams (e.g.: cd audio sources) (#325984).
8833
8834 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8835
8836         * gst-libs/gst/audio/mixerutils.c:
8837         (gst_audio_mixer_filter_do_filter):
8838           actually save the element we create
8839
8840 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
8841
8842         * gst-libs/gst/cdda/gstcddabasesrc.c:
8843         (gst_cdda_base_src_handle_track_seek):
8844           No need to post a tag message on the bus when seeking
8845           within the same track, only post it when the current
8846           track changes.
8847
8848 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
8849
8850         * gst/playback/gstplaybasebin.c: (group_destroy),
8851         (probe_triggered), (new_decoded_pad), (mute_group_type),
8852         (set_active_source):
8853         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8854         * gst/playback/gststreamselector.c:
8855         (gst_stream_selector_base_init),
8856         (gst_stream_selector_set_property),
8857         (gst_stream_selector_request_new_pad):
8858           Reenable stream selection. These mechanisms need a complete overhaul
8859           in the face of 0.8->0.10 changes though.
8860
8861 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
8862
8863         * ext/ogg/gstoggdemux.c:
8864           Change the pad template to src_%d to match the pads that 
8865           are created from it. decodebin needs this information in order
8866           to decide that oggdemux is capable of producing multiple pads
8867           (and hence needs queues inserted).
8868
8869         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8870         (gst_ogg_mux_collected):
8871           Make debug output more useful by using GST_PTR_FORMAT.
8872
8873 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
8874
8875         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
8876
8877         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
8878           Set depth and width for alaw/mulaw (fixes #326601).
8879
8880 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
8881
8882         * tests/icles/Makefile.am:
8883           don't build the tests if we don't have the libs
8884
8885 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8886
8887         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
8888         (gst_cd_paranoia_paranoia_callback):
8889           Don't try to free NULL pointers.
8890
8891 2006-01-10  Edward Hervey  <edward@fluendo.com>
8892
8893         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
8894         (gst_audio_rate_change_state), (plugin_init):
8895         Add debugging category.
8896         Fix type issues.
8897         Add case for incoming buffers without valid offset/offset_end.
8898
8899 2006-01-10  Michael Smith  <msmith@fluendo.com>
8900
8901         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
8902           Don't leak GCond in audio sources.
8903
8904 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
8905
8906         * gst/playback/gstplaybin.c: (gen_audio_element):
8907           Don't leak an autoaudiosink/alsasink when we generate
8908           a new audio element. (old code, I guess)
8909
8910 2006-01-10  Michael Smith  <msmith@fluendo.com>
8911
8912         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
8913           Support float audio in audiorate.
8914           Use width rather than depth for selecting sample width.
8915
8916 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8917
8918         * gst/videotestsrc/videotestsrc.h:
8919           Use GLib types here (that way we don't have to include the
8920           generated _stdint.h header, which makes life easier for win32
8921           folks that don't use autotools for the build) (#325990, patch
8922           by: Sergey Scobich).
8923
8924 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
8925
8926         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8927         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8928         (gst_ring_buffer_pause), (wait_segment):
8929         * gst-libs/gst/audio/gstringbuffer.h:
8930           Name (private) union, makes Forte compiler happy (this time
8931           for real) (#324900).
8932
8933 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8934
8935         * gst-libs/gst/audio/Makefile.am:
8936           Link against libgstinterfaces, needed for mixer
8937           and property probe stuff.
8938
8939 2006-01-09  Edward Hervey  <edward@fluendo.com>
8940
8941         * gst-libs/gst/Makefile.am:
8942
8943 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
8944
8945         * gst-libs/gst/audio/Makefile.am:
8946         * gst-libs/gst/audio/mixerutils.c:
8947         (gst_audio_mixer_filter_do_filter),
8948         (gst_audio_mixer_filter_check_element),
8949         (gst_audio_mixer_filter_probe_feature),
8950         (element_factory_rank_compare_func),
8951         (gst_audio_default_registry_mixer_filter):
8952         * gst-libs/gst/audio/mixerutils.h:
8953           Add gst_audio_default_registry_mixer_filter() utility
8954           function.
8955
8956 2006-01-03  Michael Smith  <msmith@fluendo.com>
8957
8958         * gst/audioresample/resample.h:
8959           As before, but for o_buf
8960
8961 2006-01-03  Michael Smith  <msmith@fluendo.com>
8962
8963         * gst/audioresample/resample.h:
8964           Declare struct _ResampleState.buffer as unsigned char *, not void *,
8965           since we do arithmetic on it.
8966
8967 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
8968
8969         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
8970         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
8971         (gst_ring_buffer_pause), (wait_segment):
8972         * gst-libs/gst/audio/gstringbuffer.h:
8973           Sun's Forte compiler doesn't seem to like anonymous structs,
8974           so use same setup as in GstBaseSrc (fixes #324900).
8975
8976 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
8977
8978         * configure.ac:
8979         * gst/volume/Makefile.am:
8980         * gst/volume/demo.c:
8981           move old example to tests/examples/volume/volune.c
8982         * tests/examples/Makefile.am:
8983         * tests/examples/seek/seek.c: (main):
8984           change window-close event from "delete-event" to "destroy"
8985         * tests/examples/volume/Makefile.am:
8986         * tests/examples/volume/volume.c: (value_changed_callback),
8987         (setup_gui), (message_received), (eos_message_received), (main):
8988           fix event handling and bus usage
8989
8990 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
8991
8992         * gst/audiotestsrc/gstaudiotestsrc.c:
8993         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
8994         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
8995         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
8996         (gst_audio_test_src_create_square),
8997         (gst_audio_test_src_create_saw),
8998         (gst_audio_test_src_create_triangle),
8999         (gst_audio_test_src_create_silence),
9000         (gst_audio_test_src_create_white_noise),
9001         (gst_audio_test_src_create_pink_noise),
9002         (gst_audio_test_src_init_sine_table),
9003         (gst_audio_test_src_create_sine_table),
9004         (gst_audio_test_src_change_wave),
9005         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9006         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9007         * gst/audiotestsrc/gstaudiotestsrc.h:
9008           update to basesrc changes, implement segmented seeking and eos
9009           handling, add a 'sine-tab' waveform for performance critical playback
9010
9011 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9012
9013         * po/POTFILES.in:
9014           ... and this time the other modified file that I missed last time.
9015
9016 2005-12-29  Michael Smith  <msmith@fluendo.com>
9017
9018         * gst/playback/gstdecodebin.c: (new_pad):
9019           Fix non-C89 variable declaration not at the start of a block. Should
9020           help some compilers.
9021
9022 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9023
9024         * tests/check/Makefile.am:
9025           And now fix 'make distcheck' (builddir != srcdir)
9026
9027 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9028
9029         * configure.ac:
9030         * ext/cdparanoia/Makefile.am:
9031         * ext/cdparanoia/gstcdparanoia.c:
9032         * ext/cdparanoia/gstcdparanoia.h:
9033         * ext/cdparanoia/gstcdparanoiasrc.c:
9034         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9035         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9036         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9037         (gst_cd_paranoia_paranoia_callback),
9038         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9039         (gst_cd_paranoia_src_set_property),
9040         (gst_cd_paranoia_src_get_property), (plugin_init):
9041         * ext/cdparanoia/gstcdparanoiasrc.h:
9042           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9043           plugin again (there are still fixes required to playbin to make
9044           cdda:// uris work there).
9045
9046 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9047
9048         * tests/check/Makefile.am:
9049           Fix test case compilation.
9050
9051 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
9052
9053         * gst-libs/gst/cdda/gstcddabasesrc.c:
9054         (gst_cdda_base_src_update_duration),
9055         (gst_cdda_base_src_calculate_cddb_id):
9056           An integer is not a string. Fix access to uninitialised variable.
9057
9058         * tests/check/Makefile.am:
9059           Add cddabasesrc unit test; also actually enable the vorbis test.
9060
9061         * tests/check/generic/states.c:
9062           Blacklist new cd audio elements as well.
9063
9064         * tests/check/libs/cddabasesrc.c:
9065           Unit test for GstCddaBaseSrc (discid calculation mostly).
9066
9067 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9068
9069         * docs/libs/Makefile.am:
9070         * docs/libs/gst-plugins-base-libs-docs.sgml:
9071         * docs/libs/gst-plugins-base-libs-sections.txt:
9072         * docs/libs/gst-plugins-base-libs.types:
9073           Add docs for libgstcdda/GstCddaBaseSrc.
9074
9075         * gst-libs/gst/interfaces/mixertrack.h:
9076           Do one struct member per line with a semicolon at the end, that way
9077           even gtk-doc might parse it without complaining.
9078
9079 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9080
9081         * configure.ac:
9082         * gst-libs/gst/Makefile.am:
9083         * gst-libs/gst/cdda/Makefile.am:
9084         * gst-libs/gst/cdda/base64.c:
9085         * gst-libs/gst/cdda/base64.h:
9086         * gst-libs/gst/cdda/gstcddabasesrc.c:
9087         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9088         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9089         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9090         (gst_cdda_base_src_get_property),
9091         (gst_cdda_base_src_get_track_from_sector),
9092         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9093         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9094         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9095         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9096         (gst_cdda_base_src_uri_get_protocols),
9097         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9098         (gst_cdda_base_src_uri_handler_init),
9099         (gst_cdda_base_src_setup_interfaces),
9100         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9101         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9102         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9103         (gst_cdda_base_src_add_tags),
9104         (gst_cdda_base_src_add_index_associations),
9105         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9106         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9107         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9108         (gst_cdda_base_src_create):
9109         * gst-libs/gst/cdda/gstcddabasesrc.h:
9110         * gst-libs/gst/cdda/sha1.c:
9111         * gst-libs/gst/cdda/sha1.h:
9112           Add new libgstcdda with GstCddaBaseSrc class.
9113
9114 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
9115
9116         * ext/gnomevfs/gstgnomevfssink.h:
9117           Use GstBaseSinkClass as parent_class member for class struct, not
9118           GstBaseSink.
9119
9120 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9121
9122         Patch by: Michael Benes
9123
9124         * gst/videotestsrc/gstvideotestsrc.c:
9125         (gst_video_test_src_class_init), (gst_video_test_src_start):
9126           Add start method to reset running time and number of frames sent
9127           when starting up (fixes #324696)
9128
9129 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9130
9131         * docs/plugins/Makefile.am:
9132         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9133         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9134         * docs/plugins/gst-plugins-base-plugins.args:
9135         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9136         * docs/plugins/gst-plugins-base-plugins.signals:
9137           Add docs stuff for gnomevfssrc and gnomevfssink.
9138
9139         * ext/gnomevfs/gstgnomevfssrc.c:
9140           Fix example pipeline in gtk-doc blurb.
9141
9142 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
9143
9144         * ext/gnomevfs/Makefile.am:
9145         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9146         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9147         (gst_gnome_vfs_handle_get_type), (plugin_init):
9148         * ext/gnomevfs/gstgnomevfs.h:
9149         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9150         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9151         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9152         (gst_gnome_vfs_sink_set_property),
9153         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9154         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9155         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9156         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9157         (gst_gnome_vfs_sink_uri_get_type),
9158         (gst_gnome_vfs_sink_uri_get_protocols),
9159         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9160         (gst_gnome_vfs_sink_uri_handler_init):
9161         * ext/gnomevfs/gstgnomevfssink.h:
9162           Port gnomevfssink; add gtk-doc blurb.
9163
9164         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9165         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9166         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9167         (gst_gnome_vfs_src_uri_get_type),
9168         (gst_gnome_vfs_src_uri_get_protocols),
9169         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9170         (gst_gnome_vfs_src_uri_handler_init),
9171         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9172         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9173         (gst_gnome_vfs_src_send_additional_headers_callback),
9174         (gst_gnome_vfs_src_received_headers_callback),
9175         (gst_gnome_vfs_src_push_callbacks),
9176         (gst_gnome_vfs_src_pop_callbacks),
9177         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9178         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9179         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9180         * ext/gnomevfs/gstgnomevfssrc.h:
9181           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9182           file; add gtk-doc blurb with example pipelines.
9183
9184 === release 0.10.1 ===
9185
9186 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
9187
9188         * configure.ac:
9189           releasing 0.10.1, "Dobro Dedek"
9190
9191 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
9192
9193         * gst/typefind/gsttypefindfunctions.c:
9194         iLBC30 and iLBC20 added to typefind.
9195
9196 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
9197
9198         * gst-libs/gst/audio/gstbaseaudiosink.c:
9199         (gst_base_audio_sink_class_init):
9200         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9201         (gst_base_audio_src_class_init):
9202           update strings, values are in microseconds
9203           change the default sink buffer time to something that is smaller
9204           (to help software volume mixing have a slightly lower delay) but
9205           still be acceptable on Wim's laptop
9206
9207 2005-12-20  Edward Hervey  <edward@fluendo.com>
9208
9209         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9210         Made a quack, forgot to add DUCK to the riff video template.
9211
9212 2005-12-19  Edward Hervey  <edward@fluendo.com>
9213
9214         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9215         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9216         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9217         (gst_ogm_parse_chain):
9218         Make sure pads are initialized correctly.
9219         * gst-libs/gst/riff/riff-ids.h:
9220         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9221         (gst_riff_create_video_template_caps):
9222         Add a whole bunch of FOURCC <=> MimeType.
9223         Extend the riff video pad template to support the newly added fourcc.
9224
9225 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
9226
9227         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9228         (gst_ogg_demux_activate_chain):
9229           Extra debug output when activating/deactivating chains.
9230
9231         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9232         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9233         (unlinked):
9234           Remove a queue from our list when it becomes unlinked.
9235           Don't add queues to elements in class 'Demux' if they
9236           can only produce one pad 
9237
9238 2005-12-18  Julien MOUTTE  <julien@moutte.net>
9239
9240         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9241         (gst_video_sink_get_type): Add a debug category.
9242
9243 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9244
9245         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9246         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9247           Handle downstream newsegment by sending our own newsegment before the
9248           next buffer to be released. (#323900)
9249
9250 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
9251
9252         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9253         (gst_base_rtp_depayload_set_gst_timestamp):
9254           add queue delay to new segment as well (as opposed to just the first
9255           buffer). (bug #322347)
9256
9257 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
9258
9259         * ext/libvisual/visual.c: (make_valid_name):
9260           change some char* into char[]
9261         * gst/audiotestsrc/gstaudiotestsrc.c:
9262         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9263         (gst_audio_test_src_create):
9264         * gst/audiotestsrc/gstaudiotestsrc.h:
9265           prepare to handle EOS and SEGMENT_DONE
9266
9267 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9268
9269         * tests/check/generic/states.c: (GST_START_TEST):
9270           Blacklist cdparanoia element in state test.
9271
9272 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
9273
9274           Patch by: Benjamin Pineau
9275
9276         * gst/tcp/gsttcp.c:
9277         * gst/tcp/gsttcpclientsink.c:
9278         * gst/tcp/gsttcpserversink.c:
9279         * gst/tcp/gsttcpserversrc.c:
9280           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9281
9282 2005-12-15  Michael Smith  <msmith@fluendo.com>
9283
9284         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9285         (gst_video_rate_chain):
9286           Fix timestamping for videorate when the first buffer it sees has a
9287           non-zero timestamp. Fix some misleading debug output.
9288
9289 2005-12-15  Michael Smith  <msmith@fluendo.com>
9290
9291         * gst/audioresample/gstaudioresample.c:
9292           Don't leak all input buffers to audioresample.
9293
9294 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9295
9296         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9297           Don't operate on empty text buffers. Strip newlines and
9298           tabs only from the end of the text, but leave them intact
9299           in the middle. Fix typo in gtk-doc description.
9300
9301 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
9302
9303         * gst/playback/gstplaybasebin.c:
9304         * gst/playback/gstplaybin.c: (handoff):
9305           Make sure the video frame buffer we return to apps via the
9306           "frame" property always has caps set on it. Modify
9307           _gst_gvalue_set_object() macro to handle NULL objects
9308           gracefully too.
9309
9310 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
9311
9312         * gst/audiotestsrc/gstaudiotestsrc.c:
9313         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9314         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9315         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9316         (gst_audio_test_src_create):
9317         * gst/audiotestsrc/gstaudiotestsrc.h:
9318         Adjust to some recent api changes and add wtays new cool seeking
9319         capabillities
9320
9321 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
9322
9323         * ext/alsa/Makefile.am:
9324         * ext/alsa/gstalsadeviceprobe.c:
9325         * ext/alsa/gstalsadeviceprobe.h:
9326           Helper functions to add device probing via the GstPropertyProbe
9327           interface to a class.
9328
9329         * ext/alsa/gstalsamixer.h:
9330           Comment out GST_ALSA_MIXER, it returns a struct that's not
9331           used.
9332
9333         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9334           Add some debug info. 
9335
9336         * ext/alsa/gstalsamixerelement.c:
9337         (gst_alsa_mixer_element_interface_supported),
9338         (gst_implements_interface_init),
9339         (gst_alsa_mixer_element_init_interfaces),
9340         (gst_alsa_mixer_element_class_init),
9341         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9342         (gst_alsa_mixer_element_set_property),
9343         (gst_alsa_mixer_element_get_property),
9344         (gst_alsa_mixer_element_change_state):
9345         * ext/alsa/gstalsamixerelement.h:
9346           Add 'device' and 'device-name' properties. Add GstPropertyProbe
9347           for device handling (gnome-volume-control will need that).
9348
9349 2005-12-12  Christian Schaller  <uraeus@gnome.org>
9350
9351         * ext/Makefile.am: fix cdparanoia entry
9352         * gst-plugins-base.spec.in: add cdparanoia
9353
9354 2005-12-12  Michael Smith  <msmith@fluendo.com>
9355
9356         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9357           Use the correct function to free list of typefind factories.
9358
9359 2005-12-12  Wim Taymans  <wim@fluendo.com>
9360
9361         * gst/videotestsrc/gstvideotestsrc.c:
9362         (gst_video_test_src_class_init), (gst_video_test_src_init),
9363         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9364         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9365         (gst_video_test_src_create):
9366         * gst/videotestsrc/gstvideotestsrc.h:
9367         Implement seeking in videotestsrc.
9368         Small cleanups.
9369
9370 2005-12-12  Wim Taymans  <wim@fluendo.com>
9371
9372         * ext/cdparanoia/Makefile.am:
9373         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9374         (gst_paranoia_endian_get_type), (_do_init),
9375         (cdparanoia_class_init), (cdparanoia_init),
9376         (cdparanoia_set_property), (cdparanoia_get_property),
9377         (cdparanoia_do_seek), (cdparanoia_is_seekable),
9378         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9379         (cdparanoia_convert), (cdparanoia_get_query_types),
9380         (cdparanoia_query), (cdparanoia_set_index),
9381         (cdparanoia_uri_set_uri):
9382         * ext/cdparanoia/gstcdparanoia.h:
9383         Partially ported cdparanoia now that basesrc can support a
9384         plugin like this..
9385
9386 2005-12-12  Wim Taymans  <wim@fluendo.com>
9387
9388         * tests/examples/seek/scrubby.c: (main):
9389         Set higher priority for bus events so they don't get reordered with
9390         gtk gui events.
9391
9392         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9393         (flush_toggle_cb), (main):
9394         Added checkbox to disable flushing seeks. 
9395         Disable scrubbing when doing non flushing seeks.
9396
9397 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
9398
9399         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9400         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9401         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9402         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9403           Implement some sort of event handling that doesn't rely on
9404           g_return_if_fail; make sure we always push the last chunk of an 
9405           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9406           state change function; remove some old cruft. Seeking is still
9407           rather unlikely to work though.
9408
9409         * tools/.cvsignore:
9410           Ignore more.
9411
9412 2005-12-11  Julien MOUTTE  <julien@moutte.net>
9413
9414         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
9415         Fixed a leak of the current image reference when cleaning up.
9416         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9417
9418 2005-12-09  Michael Smith  <msmith@fluendo.com>
9419
9420         * tools/Makefile.am:
9421         * tools/gst-launch-ext-m.m:
9422           Remove gst-launch-ext. It doesn't work, and is no longer
9423           particularly useful.
9424
9425 2005-12-08  Luca Ognibene  <luogni@tin.it>
9426
9427         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9428           don't pass random values to ogmparse convert function.
9429           Make seeking possible in the exile1.ogm file.
9430
9431 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
9432
9433         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9434         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9435           Work around refcount problem with g_value_set_object() that occur
9436           if the core has been compiled against GLib-2.6 (g_value_set_object()
9437           will only g_object_ref() the element, but the caller will
9438           gst_object_unref() it and bad things will happen due to the way
9439           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9440           totem for people on FC4 using Thomas's 0.10 RPMs.
9441           
9442 2005-12-07  Edward Hervey  <edward@fluendo.com>
9443
9444         Time to welcome ogm to 0.10 :)
9445         
9446         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9447         (gst_ogg_pad_typefind):
9448         Oggdemux can now properly typefind elements with dynamic pads.
9449         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9450         Properly set caps on src pad, and set caps on outgoing buffers.
9451
9452 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9453
9454         * ext/alsa/gstalsamixer.h:
9455         * ext/alsa/gstalsamixerelement.h:
9456         * ext/alsa/gstalsamixeroptions.h:
9457         * ext/alsa/gstalsamixertrack.h:
9458         * ext/alsa/gstalsasink.c:
9459         * ext/alsa/gstalsasink.h:
9460         * ext/alsa/gstalsasrc.c:
9461         * ext/alsa/gstalsasrc.h:
9462         * ext/cdparanoia/gstcdparanoia.h:
9463         * ext/gnomevfs/gstgnomevfsuri.h:
9464         * ext/ogg/gstoggdemux.c:
9465         * ext/ogg/gstoggmux.c:
9466         * ext/pango/gsttextoverlay.h:
9467         * ext/theora/theoradec.c:
9468         * ext/theora/theoraenc.c:
9469         * ext/vorbis/vorbisdec.h:
9470         * ext/vorbis/vorbisenc.c:
9471         * ext/vorbis/vorbisenc.h:
9472         * ext/vorbis/vorbisparse.h:
9473         * gst-libs/gst/audio/gstaudioclock.h:
9474         * gst-libs/gst/audio/gstaudiosink.c:
9475         * gst-libs/gst/audio/gstaudiosink.h:
9476         * gst-libs/gst/audio/gstaudiosrc.c:
9477         * gst-libs/gst/audio/gstaudiosrc.h:
9478         * gst-libs/gst/audio/gstbaseaudiosink.c:
9479         * gst-libs/gst/audio/gstbaseaudiosink.h:
9480         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9481         * gst-libs/gst/audio/gstbaseaudiosrc.h:
9482         * gst-libs/gst/audio/gstringbuffer.h:
9483         * gst-libs/gst/audio/multichannel.h:
9484         * gst-libs/gst/floatcast/floatcast.h:
9485         * gst-libs/gst/interfaces/colorbalance.c:
9486         * gst-libs/gst/interfaces/colorbalance.h:
9487         * gst-libs/gst/interfaces/colorbalancechannel.h:
9488         * gst-libs/gst/interfaces/mixer.h:
9489         * gst-libs/gst/interfaces/mixeroptions.h:
9490         * gst-libs/gst/interfaces/mixertrack.h:
9491         * gst-libs/gst/interfaces/navigation.h:
9492         * gst-libs/gst/interfaces/propertyprobe.h:
9493         * gst-libs/gst/interfaces/tuner.h:
9494         * gst-libs/gst/interfaces/tunerchannel.h:
9495         * gst-libs/gst/interfaces/tunernorm.h:
9496         * gst-libs/gst/interfaces/xoverlay.h:
9497         * gst-libs/gst/netbuffer/gstnetbuffer.h:
9498         * gst-libs/gst/riff/riff-ids.h:
9499         * gst-libs/gst/riff/riff-media.h:
9500         * gst-libs/gst/riff/riff-read.h:
9501         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9502         * gst-libs/gst/rtp/gstbasertppayload.c:
9503         * gst-libs/gst/rtp/gstbasertppayload.h:
9504         * gst-libs/gst/rtp/gstrtpbuffer.c:
9505         * gst-libs/gst/rtp/gstrtpbuffer.h:
9506         * gst-libs/gst/tag/gsttageditingprivate.h:
9507         * gst-libs/gst/tag/gstvorbistag.c:
9508         (gst_tag_list_from_vorbiscomment_buffer):
9509         * gst-libs/gst/tag/tag.h:
9510         * gst-libs/gst/video/video.h:
9511         * gst/adder/gstadder.c:
9512         * gst/adder/gstadder.h:
9513         * gst/audioconvert/audioconvert.c:
9514         * gst/audioconvert/audioconvert.h:
9515         * gst/audioconvert/gstaudioconvert.c:
9516         * gst/audioconvert/gstchannelmix.c:
9517         * gst/audioconvert/gstchannelmix.h:
9518         * gst/audiorate/gstaudiorate.c:
9519         * gst/audioresample/buffer.h:
9520         * gst/audioresample/functable.h:
9521         * gst/audioresample/gstaudioresample.c:
9522         * gst/audioresample/resample.h:
9523         * gst/ffmpegcolorspace/avcodec.h:
9524         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9525         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9526         * gst/ffmpegcolorspace/imgconvert.c:
9527         * gst/ffmpegcolorspace/imgconvert_template.h:
9528         * gst/playback/gstdecodebin.c:
9529         * gst/playback/gstplaybasebin.h:
9530         * gst/playback/gstplaybin.c:
9531         * gst/playback/gststreaminfo.h:
9532         * gst/tcp/gstfdset.c:
9533         * gst/tcp/gstfdset.h:
9534         * gst/tcp/gstmultifdsink.c:
9535         * gst/tcp/gstmultifdsink.h:
9536         * gst/tcp/gsttcp.h:
9537         * gst/tcp/gsttcpclientsrc.c:
9538         * gst/tcp/gsttcpclientsrc.h:
9539         * gst/tcp/gsttcpplugin.h:
9540         * gst/tcp/gsttcpserversink.c:
9541         * gst/tcp/gsttcpserversrc.c:
9542         * gst/typefind/gsttypefindfunctions.c:
9543         * gst/videorate/gstvideorate.c:
9544         * gst/videotestsrc/gstvideotestsrc.h:
9545         * gst/videotestsrc/videotestsrc.h:
9546         * sys/v4l/gstv4lcolorbalance.h:
9547         * sys/v4l/gstv4ltuner.h:
9548         * sys/v4l/gstv4lxoverlay.h:
9549         * sys/v4l/v4l_calls.h:
9550         * sys/v4l/videodev_mjpeg.h:
9551         * tests/check/elements/audioconvert.c:
9552         * tests/check/elements/audioresample.c:
9553         * tests/check/elements/audiotestsrc.c:
9554         * tests/check/elements/videotestsrc.c:
9555         * tests/check/elements/volume.c:
9556         * tests/examples/seek/scrubby.c:
9557         * tests/examples/seek/seek.c:
9558           expand tabs
9559
9560 === release 0.10.0 ===
9561
9562 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9563
9564         * configure.ac:
9565           releasing 0.10.0, "Mont-d'or"
9566
9567 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
9568
9569         * tests/examples/seek/Makefile.am:
9570         Build fix for when gtk is not available.
9571
9572 2005-12-05  Andy Wingo  <wingo@pobox.com>
9573
9574         * ext/libvisual/visual.c: (get_buffer):
9575         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9576         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9577         * ext/theora/theoradec.c: (theora_handle_data_packet):
9578         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9579         (theora_enc_chain):
9580         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9581         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9582         Update for alloc_buffer changes.
9583
9584 2005-12-05  Andy Wingo  <wingo@pobox.com>
9585
9586         patch by: Kai Vehmanen <kv2004 eca cx>
9587         
9588         * gst-libs/gst/rtp/gstbasertpdepayload.c
9589         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9590
9591 2005-12-04  Andy Wingo  <wingo@pobox.com>
9592
9593         patch by: Sebastien Cote <sebas642 yahoo ca>
9594         
9595         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9596         Fixes #319172.
9597
9598 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
9599
9600         * docs/plugins/Makefile.am:
9601         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9602         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9603         * docs/plugins/gst-plugins-base-plugins.hierarchy:
9604         * ext/pango/gstclockoverlay.c:
9605         * ext/pango/gsttextoverlay.c: 
9606         * ext/pango/gsttextrender.c:
9607         * ext/pango/gsttimeoverlay.c:
9608           Add gtk-doc blurbs to pango elements.
9609
9610 2005-12-02  Wim Taymans  <wim@fluendo.com>
9611
9612         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9613         * gst/audioresample/buffer.h:
9614         * gst/audioresample/gstaudioresample.c:
9615         * gst/audioresample/gstaudioresample.h:
9616         * gst/audioresample/resample.c: (resample_input_flush),
9617         (resample_input_pushthrough), (resample_input_eos),
9618         (resample_get_output_size_for_input),
9619         (resample_get_input_size_for_output), (resample_get_output_size),
9620         (resample_get_output_data):
9621         * gst/audioresample/resample.h:
9622         * gst/audioresample/resample_ref.c: (resample_scale_ref):
9623         Fix audioresample, seek torture, new segments, reverse negotiation
9624         etc.. work fine.
9625
9626 2005-12-02  Wim Taymans  <wim@fluendo.com>
9627
9628         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9629         Small cleanups.
9630
9631 2005-12-02  Wim Taymans  <wim@fluendo.com>
9632
9633         * gst/audioconvert/gstaudioconvert.c:
9634         (gst_audio_convert_transform):
9635         Post errors.
9636
9637 === release 0.9.7 ===
9638
9639 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9640
9641         * configure.ac:
9642           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9643
9644 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9645
9646         * Makefile.am:
9647         * po/hu.po:
9648         * win32/MANIFEST:
9649         * win32/gst.sln:
9650           add win32 MANIFEST file
9651           do something to the hungarian translation
9652
9653 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
9654
9655         * ext/Makefile.am:
9656           Add $(PANGO_DIR) to SUBDIRS
9657
9658         * ext/pango/gstclockoverlay.c:
9659         * ext/pango/gsttimeoverlay.c:
9660           Fix and improve element descriptions.
9661
9662 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9663
9664         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9665         * docs/plugins/inspect/plugin-libvisual.xml:
9666         * docs/plugins/inspect/plugin-pango.xml:
9667           add pango plugin to docs
9668
9669 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9670
9671         * configure.ac:
9672         * ext/Makefile.am:
9673           moved pango to base
9674
9675 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9676
9677         * configure.ac:
9678         * tests/Makefile.am:
9679         * tests/icles/.cvsignore:
9680         * tests/icles/Makefile.am:
9681         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9682         (close_display), (resize_window), (move_window), (create_window),
9683         (terminate_playback), (pause_playback), (start_playback), (main):
9684           add stress test for xoverlay from Julien
9685
9686 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9687
9688         * docs/libs/tmpl/gstcolorbalance.sgml:
9689         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9690         * gst-libs/gst/rtp/gstbasertppayload.c:
9691         * gst-libs/gst/rtp/gstrtpbuffer.c:
9692         * gst-libs/gst/rtp/gstrtpbuffer.h:
9693           Do burger's rename for rtp payloaders and depayloaders
9694
9695 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9696
9697         * win32/:
9698           add Visual Studio 6 build files
9699
9700 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9701
9702         * docs/libs/gst-plugins-base-libs-docs.sgml:
9703         * docs/libs/gst-plugins-base-libs-sections.txt:
9704         * docs/libs/tmpl/gstaudio.sgml:
9705         * docs/libs/tmpl/gstringbuffer.sgml:
9706         * gst-libs/gst/interfaces/xoverlay.c:
9707         * gst-libs/gst/video/gstvideofilter.c:
9708         * gst-libs/gst/video/gstvideosink.c:
9709           update documentation
9710
9711 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9712
9713         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9714         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9715         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9716         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9717         (gst_multi_fd_sink_get_stats),
9718         (gst_multi_fd_sink_remove_client_link),
9719         (gst_multi_fd_sink_handle_client_read),
9720         (gst_multi_fd_sink_client_queue_data),
9721         (gst_multi_fd_sink_client_queue_caps),
9722         (gst_multi_fd_sink_client_queue_buffer),
9723         (gst_multi_fd_sink_new_client),
9724         (gst_multi_fd_sink_handle_client_write),
9725         (gst_multi_fd_sink_recover_client),
9726         (gst_multi_fd_sink_queue_buffer),
9727         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9728         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9729         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9730         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9731         * gst/tcp/gstmultifdsink.h:
9732         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9733         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9734         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9735         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9736         (gst_tcp_client_sink_set_property),
9737         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9738         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9739         * gst/tcp/gsttcpclientsink.h:
9740         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9741         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9742         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9743         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9744         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9745         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9746         * gst/tcp/gsttcpclientsrc.h:
9747         * gst/tcp/gsttcpplugin.c: (plugin_init):
9748         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
9749         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
9750         (gst_tcp_server_sink_finalize),
9751         (gst_tcp_server_sink_handle_server_read),
9752         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
9753         (gst_tcp_server_sink_set_property),
9754         (gst_tcp_server_sink_get_property),
9755         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
9756         * gst/tcp/gsttcpserversink.h:
9757         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
9758         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
9759         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
9760         (gst_tcp_server_src_set_property),
9761         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
9762         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
9763         * gst/tcp/gsttcpserversrc.h:
9764           more borgifying
9765
9766 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9767
9768         * docs/plugins/Makefile.am:
9769         * docs/plugins/gst-plugins-base-plugins.args:
9770         * docs/plugins/inspect/plugin-libvisual.xml:
9771         * gst/audioconvert/plugin.h:
9772         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
9773         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
9774         (gst_audio_rate_setcaps), (gst_audio_rate_init),
9775         (gst_audio_rate_chain), (gst_audio_rate_set_property),
9776         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
9777         (plugin_init):
9778         * gst/audiotestsrc/gstaudiotestsrc.c:
9779         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
9780         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9781         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
9782         (gst_audio_test_src_get_query_types),
9783         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
9784         (gst_audio_test_src_create_square),
9785         (gst_audio_test_src_create_saw),
9786         (gst_audio_test_src_create_triangle),
9787         (gst_audio_test_src_create_silence),
9788         (gst_audio_test_src_create_white_noise),
9789         (gst_audio_test_src_init_pink_noise),
9790         (gst_audio_test_src_generate_pink_noise_value),
9791         (gst_audio_test_src_create_pink_noise),
9792         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
9793         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
9794         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
9795         (plugin_init):
9796         * gst/audiotestsrc/gstaudiotestsrc.h:
9797         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
9798         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
9799         (gst_sub_parse_init), (gst_sub_parse_formats),
9800         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
9801         (convert_encoding), (get_next_line),
9802         (gst_sub_parse_data_format_autodetect),
9803         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
9804         (gst_sub_parse_loop), (gst_sub_parse_chain),
9805         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
9806         (plugin_init):
9807         * gst/subparse/gstsubparse.h:
9808         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
9809         (gst_video_rate_base_init), (gst_video_rate_class_init),
9810         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
9811         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
9812         (gst_video_rate_init), (gst_video_rate_event),
9813         (gst_video_rate_chain), (gst_video_rate_set_property),
9814         (gst_video_rate_get_property), (gst_video_rate_change_state),
9815         (plugin_init):
9816         * gst/videoscale/gstvideoscale.c:
9817         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
9818         (gst_video_scale_src_template_factory),
9819         (gst_video_scale_sink_template_factory),
9820         (gst_video_scale_get_type), (gst_video_scale_base_init),
9821         (gst_video_scale_class_init), (gst_video_scale_init),
9822         (gst_video_scale_set_property), (gst_video_scale_get_property),
9823         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
9824         (gst_video_scale_prepare_size), (parse_caps),
9825         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
9826         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
9827         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
9828         (plugin_init):
9829         * gst/videoscale/gstvideoscale.h:
9830         * gst/videotestsrc/gstvideotestsrc.c:
9831         (gst_video_test_src_pattern_get_type),
9832         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
9833         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
9834         (gst_video_test_src_set_pattern),
9835         (gst_video_test_src_set_property),
9836         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
9837         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
9838         (gst_video_test_src_event), (gst_video_test_src_get_times),
9839         (gst_video_test_src_create), (plugin_init):
9840         * gst/videotestsrc/gstvideotestsrc.h:
9841         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
9842         (gst_video_test_src_smpte), (gst_video_test_src_snow),
9843         (gst_video_test_src_black):
9844         * gst/videotestsrc/videotestsrc.h:
9845           borgify further
9846           clean up docs a little
9847
9848 2005-11-30  Wim Taymans  <wim@fluendo.com>
9849
9850         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9851         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
9852         (gst_basertppayload_event), (gst_basertppayload_push),
9853         (gst_basertppayload_change_state):
9854         * gst-libs/gst/rtp/gstbasertppayload.h:
9855         closed #320644.
9856
9857 2005-11-30  Julien MOUTTE  <julien@moutte.net>
9858
9859         * docs/libs/gst-plugins-base-libs-docs.sgml:
9860         * docs/libs/gst-plugins-base-libs-sections.txt:
9861         * gst-libs/gst/video/gstvideofilter.c:
9862         * gst-libs/gst/video/gstvideosink.c:
9863         * gst-libs/gst/video/gstvideosink.h: Adding docs.
9864
9865 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9866
9867         * LICENSE:
9868           move
9869         * po/af.po:
9870         * po/az.po:
9871         * po/cs.po:
9872         * po/en_GB.po:
9873         * po/hu.po:
9874         * po/it.po:
9875         * po/nb.po:
9876         * po/nl.po:
9877         * po/or.po:
9878         * po/sq.po:
9879         * po/sr.po:
9880         * po/sv.po:
9881         * po/uk.po:
9882         * po/vi.po:
9883         * Makefile.am:
9884           update
9885         * scripts/autoplugins.sh:
9886           remove
9887
9888 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9889
9890         * Makefile.am:
9891         * configure.ac:
9892         * examples/Makefile.am:
9893         * examples/capsfilter/Makefile.am:
9894         * examples/capsfilter/capsfilter1.c:
9895         * examples/gob/Makefile.am:
9896         * examples/gob/gst-identity2.gob:
9897         * examples/indexing/.cvsignore:
9898         * examples/indexing/Makefile.am:
9899         * examples/indexing/indexmpeg.c:
9900         * examples/seeking/.cvsignore:
9901         * examples/seeking/Makefile.am:
9902         * examples/seeking/cdparanoia.c:
9903         * examples/seeking/cdplayer.c:
9904         * examples/seeking/chained.c:
9905         * examples/seeking/scrubby.c:
9906         * examples/seeking/seek.c:
9907         * examples/stats/Makefile.am:
9908         * examples/stats/mp2ogg.c:
9909         * examples/switch/.cvsignore:
9910         * examples/switch/Makefile.am:
9911         * examples/switch/switcher.c:
9912         * tests/Makefile.am:
9913         * tests/check/generic/.cvsignore:
9914         * tests/check/pipelines/.cvsignore:
9915         * tests/examples/Makefile.am:
9916         * tests/examples/seek/Makefile.am:
9917           reorganize stuff under tests/
9918
9919 2005-11-30  Edward Hervey  <edward@fluendo.com>
9920
9921         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
9922         Go away you stupid GstStaticPadTemplate memleak.
9923
9924 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9925
9926         * gst-libs/gst/net/Makefile.am:
9927         * gst-libs/gst/net/README:
9928         * gst-libs/gst/net/gstnetbuffer.c:
9929         * gst-libs/gst/net/gstnetbuffer.h:
9930           this was moved to "netbuffer"
9931
9932 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9933
9934         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
9935         (gst_video_filter_class_init), (gst_video_filter_init):
9936         * gst-libs/gst/video/gstvideofilter.h:
9937           borgify name to bring in line with other classes
9938
9939 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9940
9941         * gst/audioscale/.cvsignore:
9942         * gst/audioscale/Makefile.am:
9943         * gst/audioscale/README:
9944         * gst/audioscale/audioscale.vcproj:
9945         * gst/audioscale/dtof.c:
9946         * gst/audioscale/dtos.c:
9947         * gst/audioscale/functable.c:
9948         * gst/audioscale/gstaudioscale.c:
9949         * gst/audioscale/gstaudioscale.h:
9950         * gst/audioscale/private.h:
9951         * gst/audioscale/resample.c:
9952         * gst/audioscale/resample.h:
9953         * gst/audioscale/test.c:
9954           remove
9955
9956 2005-11-30  Edward Hervey  <edward@fluendo.com>
9957
9958         * gst-libs/gst/netbuffer/Makefile.am:
9959         really, really tired
9960
9961 2005-11-30  Edward Hervey  <edward@fluendo.com>
9962
9963         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
9964         Update for new GstTypeFindFactory _register()
9965
9966 2005-11-30  Edward Hervey  <edward@fluendo.com>
9967
9968         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
9969         Let's not override libgstnet from core for no reason...
9970         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
9971         Ok, maybe not so quick next time.
9972
9973 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9974
9975         * configure.ac:
9976         * gst-libs/gst/Makefile.am:
9977           moved gst-libs/gst/net to netbuffer through CVS surgery
9978           remove old directory
9979           updating build to accomodate
9980           (#322257)
9981
9982 2005-11-29  Andy Wingo  <wingo@pobox.com>
9983
9984         * pkgconfig/gstreamer-plugins-base.pc.in:
9985         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9986         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
9987         (#322257).
9988
9989 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
9990
9991         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
9992         3rd time's the charm. Correct ref-counting for discarded buffers.
9993
9994 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
9995
9996         * gst/playback/gststreamselector.c:
9997         (gst_stream_selector_class_init),
9998         (gst_stream_selector_set_property),
9999         (gst_stream_selector_get_property),
10000         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10001         Fix ref-counting
10002
10003 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
10004
10005         * gst/subparse/gstsubparse.c: (feed_textbuf):
10006           Don't access already unref'ed buffer.
10007
10008 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10009
10010         * gst/playback/gststreamselector.c:
10011         (gst_stream_selector_class_init), (gst_stream_selector_init),
10012         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10013         (gst_stream_selector_get_property),
10014         (gst_stream_selector_get_linked_pad),
10015         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10016         * gst/playback/gststreamselector.h:
10017         Add the active-pad property for playbin to use shortly. Ignore buffers
10018         from any other pad, returning GST_FLOW_NOT_LINKED
10019
10020 2005-11-29  Julien MOUTTE  <julien@moutte.net>
10021
10022         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10023         patch from bug #322704 (Alessandro Decina).
10024
10025 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10026
10027         * gst-libs/gst/audio/Makefile.am:
10028           folded audiofilter into the audio library
10029
10030 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10031
10032         * gst/videoscale/gstvideoscale.h:
10033         * gst/videoscale/gstvideoscale.c:
10034           remove unimplemented scale methods
10035
10036 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
10037
10038         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10039           Don't leak caps.
10040
10041 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10042
10043         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10044         (gst_ximagesink_setcaps):
10045         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10046         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10047         happens (only visible on ximagesink but bug is in xv too) set_caps was
10048         destroying the internal x[v]image used to memcpy non locally alloced
10049         buffers so that it got renewed on next _chain. The issue is that 
10050         _expose will try to put that image as it reffed it in _put.
10051         Using gst_buffer_unref instead of destroy fixes it !
10052
10053 2005-11-28  Edward Hervey  <edward@fluendo.com>
10054
10055         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10056         (try_to_link_1), (queue_filled_cb):
10057         Better use of the queues. Start with a small size queue and only increase
10058         the size of the queues when the other queues are empty.
10059
10060 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10061
10062         * gst-libs/gst/video/Makefile.am:
10063           compile in copied-over videofilter into the video library
10064         * gst-libs/gst/video/videosink.h:
10065           rename the header to gstvideosink.h since it's a base GstObject class
10066         * sys/ximage/ximagesink.h:
10067         * sys/xvimage/xvimagesink.h:
10068           use the new header
10069
10070 2005-11-28  Wim Taymans  <wim@fluendo.com>
10071
10072         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10073         * gst/playback/gstplaybasebin.h:
10074         Prepare to handle errors betters.
10075
10076         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10077         Set sinks to PAUSED first before adding and linking them so that
10078         we don't interrupt dataflow.
10079
10080 2005-11-28  Wim Taymans  <wim@fluendo.com>
10081
10082         * gst-libs/gst/audio/TODO:
10083         Updated TODO
10084
10085         * gst-libs/gst/audio/gstaudiosink.c:
10086         (gst_audioringbuffer_open_device),
10087         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10088         (gst_audioringbuffer_release):
10089         Small cleanups.
10090
10091         * gst-libs/gst/audio/gstbaseaudiosink.c:
10092         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10093         (gst_base_audio_sink_change_state):
10094         Slave to the master clock when going to PLAYING and unslave when
10095         going to PAUSED.
10096
10097         * gst-libs/gst/audio/gstringbuffer.c:
10098         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10099         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10100         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10101         (gst_ring_buffer_clear_all), (wait_segment),
10102         (gst_ring_buffer_commit), (gst_ring_buffer_read),
10103         (gst_ring_buffer_advance):
10104         * gst-libs/gst/audio/gstringbuffer.h:
10105         Add some docs and cleanups.
10106
10107 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10108
10109         * sys/xvimage/xvimagesink.c:
10110         (gst_xvimagesink_navigation_send_event): Fix navigation events
10111         coordinates translation with pixel aspect ratios.
10112
10113 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10114
10115         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10116         Use calculated video geometry from _setcaps instead of buffer
10117         caps to respect pixel aspect ratio. (fixes #322388)
10118
10119 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10120
10121         * docs/libs/tmpl/gstcolorbalance.sgml:
10122         * docs/libs/tmpl/gstmixer.sgml:
10123         * docs/libs/tmpl/gstxoverlay.sgml:
10124         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10125         interface.
10126
10127 2005-11-28  Julien MOUTTE  <julien@moutte.net>
10128
10129         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10130         Refuse to create an XvImage if we can't find the format.
10131
10132 2005-11-28  Edward Hervey  <edward@fluendo.com>
10133
10134         * gst-libs/gst/riff/riff-media.c:
10135         (gst_riff_create_audio_template_caps):
10136         Add ATRAC3 to the list of riff-possible audio caps.
10137         I know we still don't have a plugin for atrac3, but it's saner to output
10138         that than a cryptic mimetype.
10139
10140 2005-11-27  Edward Hervey  <edward@fluendo.com>
10141
10142         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10143         Don't try to create a zero-sized subbuffer.
10144
10145 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10146
10147         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10148         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10149         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10150         (gst_ximagesink_expose): Fixed a tricky race.
10151         * sys/ximage/ximagesink.h:
10152         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10153         (gst_xvimagesink_expose): Fixed a tricky race.
10154         * sys/xvimage/xvimagesink.h:
10155
10156 2005-11-27  Edward Hervey  <edward@fluendo.com>
10157
10158         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10159         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10160         Remove unused properties, and add queues between demuxers and decoders
10161         so that a lot more files can preroll properly.
10162
10163 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10164
10165         * gst-libs/gst/net/Makefile.am:
10166         * gst-libs/gst/rtp/Makefile.am:
10167         * gst-libs/gst/tag/Makefile.am:
10168           remove silly include
10169         * gst/tags/Makefile.am:
10170         * gst/tags/gsttagediting.c:
10171         * gst/tags/gsttageditingprivate.h:
10172         * gst/tags/tagedit.vcproj:
10173           remove directory, is as good as empty
10174
10175 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10176
10177         * configure.ac:
10178           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10179         * gst-libs/Makefile.am:
10180         * gst-libs/gst/audio/Makefile.am:
10181         * gst-libs/gst/interfaces/Makefile.am:
10182         * gst-libs/gst/net/Makefile.am:
10183         * gst-libs/gst/riff/Makefile.am:
10184         * gst-libs/gst/rtp/Makefile.am:
10185         * gst-libs/gst/tag/Makefile.am:
10186         * gst-libs/gst/video/Makefile.am:
10187           and use them
10188
10189 2005-11-27  Julien MOUTTE  <julien@moutte.net>
10190
10191         * docs/libs/tmpl/gstcolorbalance.sgml:
10192         * docs/libs/tmpl/gstmixer.sgml:
10193         * docs/libs/tmpl/gstxoverlay.sgml:
10194         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10195         * sys/ximage/ximagesink.h:
10196         * sys/xvimage/xvimagesink.h: More and more documentation.
10197
10198 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10199
10200         * docs/libs/gst-plugins-base-libs-docs.sgml:
10201         * docs/libs/gst-plugins-base-libs-sections.txt:
10202         * docs/libs/tmpl/gstcolorbalance.sgml:
10203         * docs/libs/tmpl/gstmixer.sgml:
10204         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10205         to documentation.
10206
10207 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10208
10209         * docs/plugins/Makefile.am:
10210         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10211         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10212         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10213
10214 2005-11-26  Julien MOUTTE  <julien@moutte.net>
10215
10216         * docs/plugins/Makefile.am:
10217         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10218         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10219         * docs/plugins/inspect/plugin-adder.xml:
10220         * docs/plugins/inspect/plugin-alsa.xml:
10221         * docs/plugins/inspect/plugin-audioconvert.xml:
10222         * docs/plugins/inspect/plugin-audiorate.xml:
10223         * docs/plugins/inspect/plugin-audioresample.xml:
10224         * docs/plugins/inspect/plugin-audiotestsrc.xml:
10225         * docs/plugins/inspect/plugin-decodebin.xml:
10226         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10227         * docs/plugins/inspect/plugin-gnomevfs.xml:
10228         * docs/plugins/inspect/plugin-ogg.xml:
10229         * docs/plugins/inspect/plugin-playbin.xml:
10230         * docs/plugins/inspect/plugin-subparse.xml:
10231         * docs/plugins/inspect/plugin-tcp.xml:
10232         * docs/plugins/inspect/plugin-theora.xml:
10233         * docs/plugins/inspect/plugin-typefindfunctions.xml:
10234         * docs/plugins/inspect/plugin-video4linux.xml:
10235         * docs/plugins/inspect/plugin-videorate.xml:
10236         * docs/plugins/inspect/plugin-videoscale.xml:
10237         * docs/plugins/inspect/plugin-videotestsrc.xml:
10238         * docs/plugins/inspect/plugin-volume.xml:
10239         * docs/plugins/inspect/plugin-vorbis.xml:
10240         * docs/plugins/inspect/plugin-ximagesink.xml:
10241         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10242         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10243
10244 2005-11-26  Edward Hervey  <edward@fluendo.com>
10245
10246         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10247         Properly return GstFlowReturn from gst_pad_push in chain functions.
10248
10249 2005-11-25  Michael Smith  <msmith@fluendo.com>
10250
10251         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10252         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10253         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10254         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10255           Handle various conditions better when we don't understand a stream.
10256           Removes a heap of CRITICALs on ogg streams containing unknown data.
10257
10258 2005-11-24  Andy Wingo  <wingo@pobox.com>
10259
10260         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10261         Be threadsafe.
10262
10263 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10264
10265         * configure.ac: back to HEAD
10266
10267 === release 0.9.6 ===
10268
10269 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
10270
10271         * configure.ac:
10272           releasing 0.9.6, "White Eight"
10273
10274 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10275
10276         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10277         * docs/plugins/inspect/plugin-sine.xml:
10278           remove sinesrc some more
10279
10280 2005-11-23  Wim Taymans  <wim@fluendo.com>
10281
10282         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10283         If we are reading too slowly, jump forward in the ringbuffer
10284         instead of blocking.
10285
10286 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10287
10288         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10289         (gst_visual_chain):
10290         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10291         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10292         (gst_videorate_chain):
10293         * gst/videotestsrc/gstvideotestsrc.c:
10294         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10295         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10296         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10297         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10298         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10299         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10300           Updates for API changes
10301
10302 2005-11-23  Wim Taymans  <wim@fluendo.com>
10303
10304         * gst-libs/gst/audio/gstbaseaudiosink.c:
10305         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10306         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10307         Fix for calibration API change.
10308
10309 2005-11-23  Michael Smith <msmith@fluendo.com>
10310
10311         * gst-libs/gst/audio/multichannel.c:
10312         (gst_audio_get_channel_positions),
10313         (gst_audio_set_channel_positions),
10314         (gst_audio_set_structure_channel_positions_list),
10315         (gst_audio_fixate_channel_positions):
10316           Use gst_value_array_*() functions on value arrays, not
10317           gst_value_list_*().
10318
10319 2005-11-23  Edward Hervey  <edward@fluendo.com>
10320
10321         * autogen.sh:
10322         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10323         Fixes autogen
10324
10325 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10326
10327         * check/Makefile.am:
10328         * check/elements/videotestsrc.c: (setup_videotestsrc),
10329         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10330         (main):
10331           add a test for videotestsrc
10332
10333 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10334
10335         * gst/sine/.cvsignore:
10336         * gst/sine/Makefile.am:
10337         * gst/sine/gstsinesrc.c:
10338         * gst/sine/gstsinesrc.h:
10339         * gst/sine/sinesrc.vcproj:
10340           and remove sinesrc from the repository.  Closes #321446
10341
10342 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10343
10344         * configure.ac:
10345         * gst-plugins-base.spec.in:
10346           remove sinesrc from the build
10347
10348 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10349
10350         * check/Makefile.am:
10351         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10352         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10353         (main):
10354           add a test for audiotestsrc, testing all waves.  Even seems
10355           leak-free at first glance, nice job Stefan
10356
10357 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10358
10359         * po/af.po:
10360         * po/az.po:
10361         * po/cs.po:
10362         * po/en_GB.po:
10363         * po/hu.po:
10364         * po/it.po:
10365         * po/nb.po:
10366         * po/nl.po:
10367         * po/or.po:
10368         * po/sq.po:
10369         * po/sr.po:
10370         * po/sv.po:
10371         * po/uk.po:
10372         * po/vi.po:
10373           Translation string updates
10374
10375         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10376         (gst_v4lsrc_set_caps):
10377         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10378         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10379         * sys/v4l/v4lsrc_calls.h:
10380           Improve v4lsrc, by making it work again.
10381
10382 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
10383
10384         * ext/libvisual/visual.c: (gst_visual_chain):
10385           Fix the fps calculations.
10386
10387         * gst/ffmpegcolorspace/avcodec.h:
10388           Move structure element for clarity
10389
10390         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10391         * gst-libs/gst/interfaces/tunernorm.h:
10392         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10393         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10394         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10395         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10396         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10397         (gst_v4lmjpegsrc_getcaps):
10398         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10399         (gst_v4lsrc_set_caps):
10400         * sys/v4l/gstv4lsrc.h:
10401         * sys/v4l/v4l_calls.c: (gst_v4l_open):
10402         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10403         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10404         * sys/v4l/v4lsrc_calls.h:
10405           Fractional framerates...
10406
10407 2005-11-22  Wim Taymans  <wim@fluendo.com>
10408
10409         * gst-libs/gst/audio/gstbaseaudiosink.c:
10410         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10411         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10412         And we provide a clock by default, of course...
10413
10414 2005-11-22  Wim Taymans  <wim@fluendo.com>
10415
10416         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10417         This clock can be slaved to a master clock now.
10418
10419         * gst-libs/gst/audio/gstbaseaudiosink.c:
10420         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10421         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10422         (gst_base_audio_sink_set_clock),
10423         (gst_base_audio_sink_set_property),
10424         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10425         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10426         * gst-libs/gst/audio/gstbaseaudiosink.h:
10427         Handle slaving the internal clock to the clock selected in the
10428         pipeline.
10429         Add property to make the basesink not provide a clock.
10430
10431         * gst-libs/gst/rtp/gstbasertpdepayload.c:
10432         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10433         (gst_base_rtp_depayload_wait):
10434         * gst-libs/gst/rtp/gstbasertpdepayload.h:
10435         We can use the clock in GstElement, no need to store it ourselves.
10436
10437 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10438
10439         * docs/libs/tmpl/gstaudio.sgml:
10440           update
10441         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10442         (gst_paranoia_endian_get_type):
10443         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10444         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10445         * gst/audiotestsrc/gstaudiotestsrc.c:
10446         (gst_audiostestsrc_wave_get_type):
10447         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10448         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10449         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10450         (gst_sync_method_get_type), (gst_unit_type_get_type),
10451         (gst_client_status_get_type), (gst_multifdsink_class_init),
10452         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10453         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10454         (gst_multifdsink_get_property):
10455         * gst/tcp/gstmultifdsink.h:
10456         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10457         * gst/videotestsrc/gstvideotestsrc.c:
10458         (gst_videotestsrc_pattern_get_type):
10459           remove deprecated properties
10460           fix up enums to correctly have short lowercase dashed nicks
10461
10462 2005-11-22  Michael Smith <msmith@fluendo.com>
10463
10464         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10465         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10466           Add underscore.
10467
10468 2005-11-22  Michael Smith <msmith@fluendo.com>
10469
10470         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10471         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10472           Use utility method for scaling clocktime for fractional framerates.
10473
10474 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
10475
10476         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10477         (gst_visual_chain):
10478         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10479         * ext/theora/theoradec.c: (theora_handle_type_packet):
10480         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10481         (theora_enc_chain):
10482         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10483         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10484         * gst-libs/gst/video/video.h:
10485         * gst/ffmpegcolorspace/avcodec.h:
10486         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10487         (gst_ffmpeg_caps_to_pixfmt):
10488         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10489         (gst_ffmpegcsp_set_caps):
10490         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10491         (gst_videorate_setcaps), (gst_videorate_blank_data),
10492         (gst_videorate_chain):
10493         * gst/videotestsrc/gstvideotestsrc.c:
10494         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10495         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10496         (gst_videotestsrc_event), (gst_videotestsrc_create):
10497         * gst/videotestsrc/gstvideotestsrc.h:
10498         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10499         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10500         (gst_ximagesink_get_times), (gst_ximagesink_init):
10501         * sys/ximage/ximagesink.h:
10502         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10503         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10504         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10505         * sys/xvimage/xvimagesink.h:
10506           Convert elements to use fractions for their framerate.
10507           V4L elements to come later tonight.
10508
10509 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10510
10511         * gst-libs/gst/audio/audio.c:
10512         * gst-libs/gst/audio/audio.h:
10513           remove some deprecated functions
10514
10515 2005-11-22  Andy Wingo  <wingo@pobox.com>
10516
10517         * Update for gst_tag_setter API changes.
10518
10519 2005-11-22  Andy Wingo  <wingo@pobox.com>
10520
10521         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10522         (gst_ogg_demux_perform_seek):
10523         * ext/theora/theoradec.c (theora_dec_sink_event):
10524         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10525         update-funcnames.
10526
10527 2005-11-22  Wim Taymans  <wim@fluendo.com>
10528
10529         * examples/seeking/seek.c: (main):
10530         Give higher priority to bus signals than the gtk events
10531         to fix a race condition in the segment looping.
10532
10533 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10534
10535         * ext/theora/Makefile.am:
10536         * ext/vorbis/Makefile.am:
10537         * gst-libs/gst/tag/Makefile.am:
10538         * gst-plugins-base.spec.in:
10539           Rename libgsttagedit to libgsttag (#322117).
10540
10541 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10542
10543         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10544         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10545           Call gst_x_overlay_prepare_xwindow_id() to give applications
10546           a final chance to set their own xwindow id before the video
10547           sink creates its own window.
10548
10549 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10550
10551         * sys/xvimage/xvimagesink.c:
10552         (gst_xvimagesink_navigation_send_event): Handle navigation
10553         events correcly with borders if applicable.
10554
10555 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
10556
10557         Patch by: Luca Ognibene
10558
10559         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10560         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10561         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10562         (gst_ffmpegcsp_caps_remove_format_info):
10563         * gst/ffmpegcolorspace/imgconvert.c:
10564         * gst/ffmpegcolorspace/imgconvert_template.h:
10565           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10566           #318353); use gst_structure_has_name().
10567
10568 2005-11-22  Julien MOUTTE  <julien@moutte.net>
10569
10570         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10571         (gst_ximagesink_class_init): Add debug macros on functions.
10572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10573         (gst_xvimagesink_xwindow_draw_borders),
10574         (gst_xvimagesink_xvimage_put),
10575         (gst_xvimagesink_xwindow_update_geometry),
10576         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10577         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10578         (gst_xvimagesink_xcontext_clear),
10579         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10580         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10581         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10582         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10583         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10584         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10585         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10586         expose while being PAUSED, out of data flow navigation events, etc..
10587
10588 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10589
10590         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10591         * gst-libs/gst/audio/audio.h:
10592           fix prototype - wondering why the test worked regardless
10593
10594 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
10595
10596         * check/Makefile.am:
10597         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10598         * gst-libs/gst/audio/audio.h:
10599           add a method that returns a proper GstClockTime
10600
10601 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10602
10603         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10604         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10605         * gst-libs/gst/interfaces/xoverlay.h:
10606           Remove everything having to do with the desired size; add 
10607           gst_x_overlay_prepare_xwindow_id() function; remove the
10608           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10609           post a message on the bus instead (#321816).
10610
10611         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10612         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10613         (gst_xvimagesink_xoverlay_init):
10614           Remove desired size stuff (#321816).
10615
10616 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10617
10618         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10619         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10620         (mpeg_video_type_find), (mpeg_video_stream_type_find):
10621           Terminate vararg functions with NULL instead of 0 to 
10622           make gcc4 happy.
10623
10624 2005-11-21  Andy Wingo  <wingo@pobox.com>
10625
10626         patch by: Sebastien Cote <sebas642@yahoo.ca>
10627         
10628         * gst-libs/gst/rtp/gstrtpbuffer.h: 
10629         * gst-libs/gst/rtp/gstrtpbuffer.c
10630         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10631
10632 2005-11-21  Andy Wingo  <wingo@pobox.com>
10633
10634         * gst/playback/gstplaybin.c (gen_audio_element) 
10635         (gen_video_element): Use the new MISSING_PLUGIN core error
10636         category. Closes #320060.
10637
10638         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
10639         * gst/videorate/gstvideorate.c (gst_videorate_event):
10640         * ext/theora/theoradec.c (theora_dec_sink_event): 
10641         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10642         stream lock.
10643
10644         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10645         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10646         stream lock changes.
10647
10648 2005-11-21  Wim Taymans  <wim@fluendo.com>
10649
10650         * gst-libs/gst/audio/gstbaseaudiosink.c:
10651         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10652         (gst_base_audio_sink_provide_clock),
10653         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10654         (gst_base_audio_sink_change_state):
10655         * gst/audioresample/gstaudioresample.c:
10656         Segment update fix.
10657
10658 2005-11-21  Andy Wingo  <wingo@pobox.com>
10659
10660         * *.h:
10661         * *.c: Ran scripts/update-macros. Oh yes.
10662
10663 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10664
10665         * sys/ximage/Makefile.am:
10666         * sys/ximage/ximage.c:
10667           Rename ximage plugin to ximagesink (#321426) (Don't forget to
10668           remove your old libgstximage.* manually if necessary).
10669
10670 2005-11-21  Michael Smith <msmith@fluendo.com>
10671
10672         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10673           Minimal fix for bug #320200: set the min/max bitrate in the correct
10674           units. A better fix would be to upgrade to the RATEMANAGE2
10675           interface, rather than using the deprecated interface used here, but
10676           that would require an update in our libvorbis dependency (to 1.1),
10677           which is probably undesirable.
10678
10679 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
10680
10681         * ext/libvisual/visual.c: (get_buffer):
10682         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10683         (gst_base_audio_src_fixate):
10684         * gst/audioconvert/gstaudioconvert.c:
10685         (gst_audio_convert_fixate_caps):
10686         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10687         * gst/audiotestsrc/gstaudiotestsrc.c:
10688         (gst_audiotestsrc_src_fixate):
10689         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10690         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10691         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10692         * gst/videotestsrc/gstvideotestsrc.c:
10693         (gst_videotestsrc_src_fixate):
10694         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10695         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10696           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10697           (#322027)
10698
10699
10700 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10701
10702         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10703         (gst_riff_create_iavs_caps):
10704         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10705         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10706         (gst_riff_parse_info):
10707         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10708         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10709         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10710           Fixes for GST_FOURCC_FORMAT API change.
10711
10712 2005-11-21  Andy Wingo  <wingo@pobox.com>
10713
10714         patch by: Alessandro Dessina <alessandro nnva org>
10715
10716         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10717         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10718         (gst_ogg_parse_chain):
10719         * ext/theora/theoraenc.c (theora_set_header_on_caps):
10720         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10721         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10722         gst_value_list calls on arrays. Fixes #321962.
10723
10724 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10725
10726         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10727         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10728         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10729         * gst/adder/gstadder.c: (gst_adder_init),
10730         (gst_adder_request_new_pad), (gst_adder_collected),
10731         (gst_adder_change_state):
10732           Update for gst_collectpads_foo() to gst_collect_pads_foo()
10733           API change.
10734
10735 2005-11-21  Michael Smith <msmith@fluendo.com>
10736
10737         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10738         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10739           Properly handle pad_push return values.
10740
10741 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
10742
10743         * gst-libs/gst/tag/Makefile.am:
10744         * gst-libs/gst/tag/gstvorbistag.c:
10745         (gst_tag_list_to_vorbiscomment_buffer):
10746           Remove obsolete vorbistag element and debug category.
10747
10748         * gst/playback/gstplaybasebin.c: (check_queue):
10749           Don't divide by 0 when queue-threshold is 0.
10750
10751         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
10752           Don't modify an existing pixel-aspect-ratio if we fail to read
10753           a new one.
10754
10755 2005-11-20  Wim Taymans  <wim@fluendo.com>
10756
10757         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
10758         (gst_vorbisenc_push_packet):
10759         GST_PAD_IS_USABLE is gone, use the return value of
10760         the push or pad_alloc_buffer instead.
10761
10762 2005-11-18  Julien MOUTTE  <julien@moutte.net>
10763
10764         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10765         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
10766         (gst_ximagesink_ximage_destroy),
10767         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
10768         (gst_ximagesink_xwindow_new),
10769         (gst_ximagesink_xwindow_update_geometry),
10770         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
10771         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
10772         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
10773         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10774         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
10775         (gst_ximagesink_navigation_send_event),
10776         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
10777         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
10778         (gst_ximagesink_finalize), (gst_ximagesink_init),
10779         (gst_ximagesink_class_init):
10780         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
10781         This new version brings correct software scaling, non flickering
10782         window while resizing, pixel aspect ratio handling, usage of
10783         hardware buffer pools, out of data flow event thread for 
10784         navigation and handling of expose events even when being PAUSED,
10785         a new property to keep video aspect ratio when resizing, etc...
10786
10787 2005-11-18  Julien MOUTTE  <julien@moutte.net>
10788
10789         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
10790         (gst_videoscale_fixate_caps): Introduce back caps fixate with
10791         handling of PAR.
10792
10793 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
10794
10795         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
10796         Unsetting IS_SINK flag from the fakesink, so decodebin
10797         never behaves as a sink.
10798
10799 2005-11-17  Wim Taymans  <wim@fluendo.com>
10800
10801         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10802         (gst_base_audio_src_change_state):
10803         Fix the audiosrc base class again, we did not unflush.
10804
10805 2005-11-17  Julien MOUTTE  <julien@moutte.net>
10806
10807         * examples/seeking/seek.c: (make_dv_pipeline),
10808         (make_vorbis_theora_pipeline), (make_avi_pipeline),
10809         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
10810         to ogg/vorbis/theora pipeline.
10811
10812 2005-11-17  Wim Taymans  <wim@fluendo.com>
10813
10814         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
10815         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
10816         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
10817         Fix EOS on multiple streams.
10818         More debugging.
10819
10820 2005-11-16  Wim Taymans  <wim@fluendo.com>
10821
10822         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
10823         (gst_ogg_demux_perform_seek):
10824         Segment done must include stream time.
10825
10826         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
10827         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
10828         (gst_ogg_mux_change_state):
10829         Fix ogg muxer again.
10830
10831 2005-11-16  Wim Taymans  <wim@fluendo.com>
10832
10833         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
10834         Fix compile again.
10835
10836 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10837
10838         * ext/libvisual/visual.c: (gst_visual_init):
10839         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
10840         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
10841         (gst_ogg_parse_chain):
10842         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
10843         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
10844         * ext/theora/theoradec.c: (gst_theora_dec_init):
10845         * ext/theora/theoraenc.c: (gst_theora_enc_init):
10846         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
10847         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
10848         * gst/adder/gstadder.c: (gst_adder_class_init),
10849         (gst_adder_dispose):
10850         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
10851         * gst/subparse/gstsubparse.c: (gst_subparse_init):
10852         * gst/videorate/gstvideorate.c: (gst_videorate_init):
10853           Fix a whole set of pad template leaks
10854
10855 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10856
10857         * check/generic/states.c: (GST_START_TEST):
10858           fix the test so that it only checks for elements that are part of
10859           this source module
10860
10861 2005-11-16  Michael Smith <msmith@fluendo.com>
10862
10863         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
10864         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
10865         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10866         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10867         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
10868         (gst_ogg_mux_change_state):
10869           Fix leaking collectpads.
10870
10871 2005-11-16  Edward Hervey  <edward@fluendo.com>
10872
10873         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
10874         (gst_videorate_event), (gst_videorate_chain):
10875         Handle segment seeks
10876
10877 2005-11-16  Wim Taymans  <wim@fluendo.com>
10878
10879         * gst-libs/gst/audio/gstbaseaudiosink.c:
10880         (gst_base_audio_sink_provide_clock),
10881         (gst_base_audio_sink_change_state):
10882         Set ringbuffer to non-flushing when going to PAUSED, set to
10883         flushing again when going to READY.
10884
10885         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
10886         (gst_ring_buffer_stop):
10887         Start in flushing mode by default.
10888         Don't set flushing in the _stop method, let the app call
10889         this explicitly.
10890
10891 2005-11-16  Julien MOUTTE  <julien@moutte.net>
10892
10893         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
10894         * gst-libs/gst/video/videosink.h: Add helper function needed
10895         for video sinks.
10896
10897 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
10898
10899         * gst/videoscale/gstvideoscale.c:
10900         (gst_videoscale_handle_src_event):
10901           Don't leak reference to pad parent.
10902
10903 2005-11-16  Wim Taymans  <wim@fluendo.com>
10904
10905         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
10906         Set ringbuffer to flushing when stopping so that we don't
10907         block on wait_segment anymore and livelock.
10908
10909 2005-11-16  Wim Taymans  <wim@fluendo.com>
10910
10911         * examples/seeking/seek.c: (send_event), (do_seek),
10912         (loop_toggle_cb), (segment_done), (main):
10913         Added looping checkbox.
10914
10915 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10916
10917         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10918         (gst_ogg_demux_init):
10919         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10920         (gst_vorbis_dec_init):
10921           revert unrefs, they don't pass make check
10922
10923 2005-11-15  Johan Dahlin  <johan@gnome.org>
10924
10925         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
10926         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
10927         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
10928         (gst_vorbis_dec_init):
10929         Fix pad template leaks. 
10930
10931 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
10932
10933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
10934           Make state change function thread safe.
10935
10936 2005-11-15  Edward Hervey  <edward@fluendo.com>
10937
10938         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
10939         (gst_ogg_demux_class_init):
10940         Implement GstElement::send_event, so we can send seek events
10941         in GST_STATE_READY
10942
10943 2005-11-14  Julien MOUTTE  <julien@moutte.net>
10944
10945         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
10946         Discovered how to take away flickering while resizing the
10947         window. Please don't put that in ximagesink, refactoring in
10948         progress.
10949
10950 2005-11-14  Michael Smith <msmith@fluendo.com>
10951
10952         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
10953         (gst_multifdsink_render):
10954           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
10955
10956 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
10957
10958         * gst/playback/gstplaybin.c: (gen_audio_element):
10959           Use autoaudiosink, it tends to be more widely available than
10960           autoaudiiosink.
10961           
10962 2005-11-14  Andy Wingo  <wingo@pobox.com>
10963
10964         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
10965         as well if it is available. Fixes #316442.
10966
10967 2005-11-14  Michael Smith <msmith@fluendo.com>
10968
10969         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
10970         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
10971         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
10972         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
10973         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
10974         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10975         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
10976         (gst_vorbisenc_change_state):
10977           Fix a small memory leak in vorbisenc.
10978           Fix large memory leaks in oggmux, also fix lots of state change
10979           bugs in oggmux.
10980
10981 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10982
10983         * gst/videotestsrc/gstvideotestsrc.c:
10984         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
10985         (gst_videotestsrc_src_fixate):
10986           move fixation to a fixate function
10987           remove negotiate function, basesrc's is good enough
10988           fixes a bug for check when using the element alone
10989
10990 2005-11-13  Edward Hervey  <edward@fluendo.com>
10991
10992         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
10993         (key_toggle_cb), (main):
10994         Added checkboxes for adding/removing the accurate and key_unit seek
10995         flags.
10996
10997 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
10998
10999         * configure.ac: back to HEAD
11000
11001 === release 0.9.5 ===
11002
11003 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
11004
11005         * configure.ac:
11006           releasing 0.9.5, "No No Kia"
11007
11008 2005-11-11  Edward Hervey  <edward@fluendo.com>
11009
11010         * examples/seeking/seek.c: (make_parselaunch_pipeline):
11011         Added parse-launch syntax seeking mode for the seeking example.
11012         This should help stress-test even more cases.
11013         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11014
11015 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11016
11017         * sys/xvimage/xvimagesink.c:
11018         (gst_xvimagesink_navigation_send_event):
11019           Check whether peer pad exists before sending navigation events
11020           to it.
11021
11022 2005-11-11  Michael Smith <msmith@fluendo.com>
11023
11024         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11025         (gst_vorbisenc_buffer_from_packet):
11026         * ext/vorbis/vorbisenc.h:
11027           Set duration on encoded buffers. This allows oggmux's
11028           max_page_delay parameter to actually work.
11029
11030 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
11031
11032         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11033         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11034         (gst_ffmpegcsp_avpicture_fill):
11035         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11036         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11037           Make palettes work again (see #132341). Use our own macros
11038           for rounding up.
11039
11040 2005-11-10  Andy Wingo  <wingo@pobox.com>
11041
11042         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11043         string doober.
11044
11045 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11046
11047         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11048         (gst_ffmpegcsp_transform_caps):
11049           Prefer passthrough in transform_caps
11050
11051 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11052
11053         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11054           check for ALSA errors properly, instead of relying on ALSA's
11055           error strings to serve to the user.
11056
11057 2005-11-10  Wim Taymans  <wim@fluendo.com>
11058
11059         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11060         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11061         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11062         Modernise the seek code.
11063
11064 2005-11-10  Michael Smith <msmith@fluendo.com>
11065         
11066         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11067         (setup_substreams), (set_active_source):
11068           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11069           trying to go to NULL if we failed to read a file.
11070
11071 2005-11-10  Wim Taymans  <wim@fluendo.com>
11072
11073         * gst/audiotestsrc/gstaudiotestsrc.c:
11074         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11075         (gst_audiotestsrc_create):
11076         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11077         (gst_sinesrc_get_times), (gst_sinesrc_create):
11078         * gst/videotestsrc/gstvideotestsrc.c:
11079         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11080         (gst_videotestsrc_create):
11081         The base class can now sync for us.
11082
11083 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11084
11085         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11086           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11087           name=source autoprobe=false autoprobe-fps=false copy-mode=1
11088           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11089           format=(fourcc)I420" ! xvimagesink
11090
11091 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11092
11093         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11094         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11095         (gst_sinesrc_newsegment):
11096           Send newsegment event in TIME format, set duration if
11097           num-buffers is set, fix duration querying.
11098
11099 2005-11-10  Michael Smith <msmith@fluendo.com>
11100
11101         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11102         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11103         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11104         (gst_ogg_mux_collected):
11105          Fix EOS handling, partially. Now forwarding an EOS event once we have
11106          EOS on all pads works correctly. However, we still don't properly set
11107          EOS on the actual ogg stream pages.
11108
11109 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11110
11111         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11112           Set elements to NULL state before disposing of them.
11113
11114 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
11115
11116         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11117
11118         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11119         (gst_base_rtp_depayload_init),
11120         (gst_base_rtp_depayload_set_gst_timestamp):
11121         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11122           We need to send a newsegment event for each instance, not
11123           just for the first instance of this class (get rid of
11124           static variable in function). (#321011).
11125           
11126 2005-11-08  Michael Smith <msmith@fluendo.com>
11127
11128         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11129         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11130         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11131         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11132           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11133           This makes us mux things correctly according to the ogg muxing
11134           rules. Still not handling EOS correctly right now, though.
11135
11136 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11137
11138         * gst/audioconvert/gstaudioconvert.c:
11139           Fix typo in docs. 
11140
11141 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
11142
11143         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11144         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11145           Initialise segment_stop to GST_CLOCK_TIME_NONE when
11146           creating a new chain; should fix live streaming. Also
11147           add more debug output and fix a typo.
11148
11149 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
11150
11151         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11152
11153         * gst/volume/gstvolume.c: (volume_set_caps):
11154           Fix compilation on Solaris with Forte. (#320923)
11155
11156 2005-11-08  Wim Taymans  <wim@fluendo.com>
11157
11158         * gst-libs/gst/audio/gstbaseaudiosink.c:
11159         (gst_base_audio_sink_render):
11160         No need to do a typecheck.
11161
11162 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
11163
11164         * ext/alsa/gstalsa.h:
11165           We register a debug category, so let's use it.
11166
11167 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11168
11169         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11170         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11171         Fixed a small problem.
11172
11173 2005-11-04  Wim Taymans  <wim@fluendo.com>
11174
11175         * examples/seeking/Makefile.am:
11176         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11177         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11178         (make_playerbin_pipeline), (format_value), (update_scale),
11179         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11180         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11181         (print_usage), (main):
11182         Added app for playback speed testing.
11183
11184         * examples/seeking/seek.c: (dynamic_link),
11185         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11186         (make_mpeg_pipeline), (do_seek), (set_update_scale),
11187         (message_received), (main):
11188         Updated seek example.
11189
11190 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
11191
11192         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11193         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11194         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11195         (gst_base_rtp_depayload_set_clock):
11196         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11197         Don't sleep on the bench (system clock) when you have a nice 
11198         comfortable bed (Gstreamer clock) to sleep on.
11199
11200 2005-11-03  Wim Taymans  <wim@fluendo.com>
11201
11202         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11203         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11204         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11205         Handle the case where a pad_block failed.
11206
11207 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
11208
11209         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
11210
11211         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11212         (gst_base_rtp_depayload_add_to_queue),
11213         (gst_base_rtp_depayload_push),
11214         (gst_base_rtp_depayload_set_gst_timestamp),
11215         (gst_base_rtp_depayload_queue_release):
11216           Fixes some bugs in the depayloader's queuing/de-queueing code.
11217
11218 2005-10-31  Michael Smith <msmith@fluendo.com>
11219
11220         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11221         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11222         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11223           Patch from Alessandro Decina <alessandro@nnva.org>.
11224           Make oggdemux only find the final time in a chain, not per-pad,
11225           since the per-pad information can be very expensive to locate, and
11226           it isn't used anywhere. This makes reading a file containing
11227           OggSkeleton reasonably fast.
11228           Also, make chain finding work when there are logical bitstreams that
11229           can't be decoded. Fixes #319110.
11230
11231 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11232
11233         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11234         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11235         (gst_base_rtp_depayload_chain),
11236         (gst_base_rtp_depayload_add_to_queue),
11237         (gst_base_rtp_depayload_push),
11238         (gst_base_rtp_depayload_set_gst_timestamp),
11239         (gst_base_rtp_depayload_queue_release),
11240         (gst_base_rtp_depayload_start_thread),
11241         (gst_base_rtp_depayload_set_property),
11242         (gst_base_rtp_depayload_get_property):
11243         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11244         Some random fixes, to fullfill the desires of thomas.
11245
11246 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11247
11248         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11249         (gst_base_rtp_depayload_add_to_queue),
11250         (gst_base_rtp_depayload_push):
11251         Fixed the queueing algorithm.
11252
11253 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
11254
11255         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11256         (gst_base_rtp_depayload_push):
11257         A small fix
11258
11259 2005-10-31  Wim Taymans  <wim@fluendo.com>
11260
11261         * gst-libs/gst/audio/gstringbuffer.h:
11262         Don't break ABI.
11263
11264         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11265         (gst_ffmpeg_caps_to_pixfmt):
11266         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11267         (gst_ffmpegcsp_set_caps):
11268         Some more comments.
11269         Handle missing required caps fields better.
11270
11271 2005-10-31  Wim Taymans  <wim@fluendo.com>
11272
11273         * gst-libs/gst/audio/gstbaseaudiosink.c:
11274         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11275         (gst_base_audio_sink_render):
11276         * gst-libs/gst/audio/gstringbuffer.c:
11277         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11278         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11279         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11280         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11281         (gst_ring_buffer_read):
11282         * gst-libs/gst/audio/gstringbuffer.h:
11283         Add flushing mode to the ringbuffer so that it in all cases does
11284         not try to handle more audio. This makes sure it does not try to
11285         block anymore when flushing and fixes a livelock.
11286
11287 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
11288
11289         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11290         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11291         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11292           Explicitly check for -1 values before doing a conversion
11293           and always map them to -1. (#315545)
11294
11295 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11296
11297         * gst/playback/gstplaybin.c: (gen_video_element):
11298           first try autovideosink, then xvimagesink, then error out
11299         * po/POTFILES.in:
11300           add translatable file
11301         * po/af.po:
11302         * po/az.po:
11303         * po/cs.po:
11304         * po/en_GB.po:
11305         * po/hu.po:
11306         * po/it.po:
11307         * po/nb.po:
11308         * po/nl.po:
11309         * po/or.po:
11310         * po/sq.po:
11311         * po/sr.po:
11312         * po/sv.po:
11313         * po/uk.po:
11314         * po/vi.po:
11315           update translations
11316
11317 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
11318
11319         * gst-libs/gst/rtp/gstbasedepayload.c:
11320         * gst-libs/gst/rtp/gstbasedepayload.h:
11321           Minor cleanups
11322
11323 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11324
11325         * gst/playback/.cvsignore:
11326         * gst/playback/decodetest.c:
11327         * gst/playback/test3.c:
11328           Port these two tests as well.
11329
11330 2005-10-27  Wim Taymans  <wim@fluendo.com>
11331
11332         * ext/theora/theoradec.c: (theora_dec_src_query),
11333         (theora_dec_sink_event):
11334         * ext/theora/theoraenc.c: (theora_enc_sink_event),
11335         (theora_enc_change_state):
11336         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11337         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11338         Take proper locks when handling events.
11339
11340 2005-10-27  Wim Taymans  <wim@fluendo.com>
11341
11342         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11343         (gst_adder_change_state):
11344         Fix timestamps and fix deadlock when stopping the collectpads.
11345
11346 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
11347
11348         * gst-libs/gst/rtp/gstrtpbuffer.h:
11349         Declaring the payload types as strings too so that they can be used
11350         in the padtemplate inialization.
11351
11352 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
11353
11354         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
11355
11356         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11357         (gst_base_rtp_depayload_class_init):
11358         Fixes a small but nasty bug. The derived elements no longer segfaults
11359         on finalization.
11360
11361 2005-10-26  Michael Smith <msmith@fluendo.com>
11362
11363         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11364           When clearing an audioconvert context, set tmpbufsize to zero, so
11365           we'll allocate it again later if required.
11366           This fixes audioconvert re-negotiating formats, which previously
11367           segfaulted with a NULL destination buffer.
11368
11369 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
11370
11371         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11372         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11373         (gst_base_rtp_depayload_set_gst_timestamp),
11374         (gst_base_rtp_depayload_queue_release):
11375         Fixed a smalll memleak.
11376
11377 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
11378         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11379         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11380         (gst_base_rtp_depayload_finalize),
11381         (gst_base_rtp_depayload_setcaps),
11382         (gst_base_rtp_depayload_add_to_queue),
11383         (gst_base_rtp_depayload_push),
11384         (gst_base_rtp_depayload_set_gst_timestamp),
11385         (gst_base_rtp_depayload_queue_release),
11386         (gst_base_rtp_depayload_thread),
11387         (gst_base_rtp_depayload_change_state):
11388         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11389         Changed the C++ comments to C comments
11390
11391 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11392
11393         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11394         * gst/tcp/gsttcpclientsrc.h:
11395         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11396         * gst/tcp/gsttcpserversrc.h:
11397           Remove unused 'curoffset' structure member.
11398
11399 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
11400
11401         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11402         (gst_base_rtp_depayload_base_init),
11403         (gst_base_rtp_depayload_finalize):
11404         * gst-libs/gst/rtp/gstbasertpdepayload.h:
11405         * gst-libs/gst/rtp/gstbasertppayload.h:
11406           The pad-template on the sinkpad should be set by the derived classes.
11407           Also added some useful macros.
11408
11409 2005-10-24  Wim Taymans  <wim@fluendo.com>
11410
11411         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11412         Correctly flush decoder samples even if we could not
11413         copy them to an output buffer. Fixes #319618.
11414
11415 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11416
11417         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11418         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11419         the caps against our xcontext caps.
11420
11421 2005-10-24  Wim Taymans  <wim@fluendo.com>
11422
11423         * gst-libs/gst/audio/gstbaseaudiosink.c:
11424         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11425         Remove g_print
11426         Use sync property from baseclass to disable sync.
11427
11428 2005-10-24  Wim Taymans  <wim@fluendo.com>
11429
11430         * gst-libs/gst/audio/gstbaseaudiosink.c:
11431         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11432         Buffers with no timestamps get aligned with previous buffers or
11433         on underrun, played ASAP.
11434
11435 2005-10-24  Julien MOUTTE  <julien@moutte.net>
11436
11437         * gst-libs/gst/video/video.h:
11438         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11439         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11440         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11441         here comes my change on caps for framerate and geometry range.
11442         We are now accepting 1 to MAXINT for width and height, and from
11443         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11444         to be blended correctly in videomixer.
11445
11446 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11447
11448         * configure.ac:
11449           back to HEAD
11450
11451 === release 0.9.4 ===
11452
11453 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11454
11455         * NEWS:
11456         * RELEASE:
11457         * configure.ac:
11458           releasing 0.9.4, "Velociraptor"
11459
11460 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11461
11462         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11463         * po/POTFILES.in:
11464           STOPPED -> FAILED
11465
11466 2005-10-21  Wim Taymans  <wim@fluendo.com>
11467
11468         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11469         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11470         (pad_blocked), (close_pad_link), (new_pad):
11471         Don't try to remove elements twice.
11472
11473 2005-10-21  Wim Taymans  <wim@fluendo.com>
11474
11475         * ext/theora/theoradec.c: (theora_dec_src_query),
11476         (theora_dec_sink_event):
11477         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11478         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11479         (vorbis_handle_data_packet):
11480         * ext/vorbis/vorbisdec.h:
11481         Fix old naming.
11482
11483         * gst-libs/gst/audio/gstbaseaudiosink.c:
11484         (gst_base_audio_sink_render):
11485         Don't try to sync on buffers without a timestamp.
11486
11487 2005-10-21  Wim Taymans  <wim@fluendo.com>
11488
11489         * ext/theora/theoradec.c: (theora_dec_src_query),
11490         (theora_dec_sink_event):
11491         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11492         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11493         (vorbis_handle_data_packet):
11494         * ext/vorbis/vorbisdec.h:
11495         Fix old naming.
11496
11497 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11498
11499         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11500         (gst_vorbisenc_src_query):
11501           Implement position and duration queries.
11502
11503         * gst/playback/test3.c: (update_scale), (main):
11504           Fix for async state changes and print nicer output.
11505
11506 2005-10-20  Wim Taymans  <wim@fluendo.com>
11507
11508         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11509         (dump_element_stats), (main):
11510         * gst/playback/test6.c: (main):
11511         Fix tests again
11512
11513 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11514
11515         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11516         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11517           Don't use functions for position queries when handling
11518           duration queries.
11519
11520 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11521
11522         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11523         (vorbis_handle_data_packet), (vorbis_dec_chain),
11524         (vorbis_dec_change_state):
11525         * ext/vorbis/vorbisdec.h:
11526           Vorbis streams can be embedded in other container formats
11527           than ogg, container formats where the demuxer might set 
11528           timestamps on encoded vorbis buffers instead of those silly 
11529           granulepos thingies. In short: make vorbisdec handle 
11530           timestamps on incoming buffers as well.
11531
11532 2005-10-20  Wim Taymans  <wim@fluendo.com>
11533
11534         * gst/playback/gstplaybasebin.c: (group_destroy),
11535         (gst_play_base_bin_change_state):
11536         Fix leak.
11537         Handle case where playbasebin is now ASYNC because
11538         decodebin is.
11539
11540 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11541
11542         * gst/audioconvert/Makefile.am:
11543         * gst/audioconvert/bufferframesconvert.c:
11544         * gst/audioconvert/plugin.c: (plugin_init):
11545         * gst/audioconvert/plugin.h:
11546           And bye bye buffer-frames-convert
11547
11548 2005-10-19  Wim Taymans  <wim@fluendo.com>
11549
11550         * check/elements/audioconvert.c:
11551         * docs/libs/tmpl/gstaudio.sgml:
11552         * docs/libs/tmpl/gstcolorbalance.sgml:
11553         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11554         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11555         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11556         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11557         * gst-libs/gst/audio/audio.h:
11558         * gst/audioconvert/audioconvert.h:
11559         * gst/audioconvert/gstaudioconvert.c:
11560         (gst_audio_convert_parse_caps):
11561         * gst/volume/gstvolume.c:
11562         Bye bye buffer-frames.
11563
11564 2005-10-19  Wim Taymans  <wim@fluendo.com>
11565
11566         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11567         (query_positions_elems), (query_positions_pads), (update_scale),
11568         (do_seek), (set_update_scale), (message_received), (main):
11569         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11570         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11571         (gst_ogg_demux_loop):
11572         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11573         * ext/theora/theoradec.c: (theora_dec_src_query),
11574         (theora_dec_sink_event):
11575         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11576         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11577         * gst/adder/gstadder.c: (gst_adder_query):
11578         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11579         * gst/playback/test3.c: (update_scale):
11580         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11581         (dump_element_stats), (main):
11582         * gst/playback/test6.c: (main):
11583         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11584         Query API update.
11585
11586 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11587
11588         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11589         (xml_check_first_element), (xml_type_find), (smil_type_find),
11590         (plugin_init):
11591           Add typefinding for SMIL and for generic XML. Based on patch by
11592           Akos Maroy (#308663).
11593
11594 2005-10-18  Wim Taymans  <wim@fluendo.com>
11595
11596         * gst/playback/Makefile.am:
11597         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11598         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11599         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11600         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11601         (gst_decode_bin_change_state):
11602         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11603         (gst_play_bin_send_event_to_sink):
11604         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11605         (dump_element_stats), (main):
11606         * gst/playback/test6.c: (main):
11607         Make playbin async, it'll commit state to paused when all streams
11608         are detected.
11609         Remove ugly hack.
11610         Added test6.c to show async behaviour.
11611
11612 2005-10-18  Wim Taymans  <wim@fluendo.com>
11613
11614         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11615         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11616         Fix for segment-start/stop API change.
11617
11618 2005-10-18  Wim Taymans  <wim@fluendo.com>
11619
11620         * check/Makefile.am:
11621         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11622         (main):
11623         Add future test for clock selection.
11624
11625 2005-10-18  Wim Taymans  <wim@fluendo.com>
11626
11627         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11628         (gst_alsasink_close):
11629         Set handle to NULL.
11630
11631         * gst-libs/gst/audio/gstringbuffer.c:
11632         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11633         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11634         (gst_ring_buffer_start), (gst_ring_buffer_pause),
11635         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11636         (gst_ring_buffer_read):
11637         More debug info.
11638
11639 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
11640
11641         * gst/audiotestsrc/Makefile.am:
11642         * gst/sine/Makefile.am:
11643         * gst/volume/Makefile.am:
11644           fix broken build of controllerized plugins
11645
11646 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
11647
11648         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11649
11650         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11651         (gst_riff_create_video_template_caps):
11652           Add support for Indeo-3 (IV32).
11653
11654 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11655
11656         * configure.ac:
11657           rewrite
11658
11659 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11660
11661         * gst-libs/gst/video/video.c: (gst_video_get_size):
11662         * gst/audiotestsrc/gstaudiotestsrc.c:
11663           doc updates
11664
11665 2005-10-17  Andy Wingo  <wingo@pobox.com>
11666
11667         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11668         with the collectpads change.
11669         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11670
11671         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11672
11673         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11674
11675         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11676         alloc_buffer flow return to callers.
11677         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11678         change. Fix some memleaks in theoraenc.
11679
11680         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11681         in strange circumstance.
11682
11683 2005-10-17  Julien MOUTTE  <julien@moutte.net>
11684
11685         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11686         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11687         from caps, let's use the caps...
11688
11689 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
11690
11691         * configure.ac:
11692           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11693
11694 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11695
11696         * gst-libs/gst/interfaces/Makefile.am:
11697           fix silly typo
11698
11699 2005-10-16  Andy Wingo  <wingo@pobox.com>
11700
11701         * gst/playback/gstdecodebin.c
11702         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11703         function!
11704         (try_to_link_1): Increase kraziness level.
11705
11706 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11707
11708         * configure.ac:
11709           restructure like the core one
11710         * gst-libs/gst/audio/Makefile.am:
11711         * gst-libs/gst/interfaces/Makefile.am:
11712         * gst-libs/gst/net/Makefile.am:
11713         * gst-libs/gst/riff/Makefile.am:
11714         * gst-libs/gst/rtp/Makefile.am:
11715         * gst-libs/gst/tag/Makefile.am:
11716         * gst-libs/gst/video/Makefile.am:
11717           use correct linker flags, now the libs are properly versioned
11718         * check/elements/audioconvert.c: (verify_convert):
11719         * ext/alsa/gstalsaplugin.c:
11720         * ext/cdparanoia/gstcdparanoia.c:
11721         * ext/gnomevfs/gstgnomevfs.c:
11722         * ext/libvisual/visual.c:
11723         * ext/ogg/gstogg.c:
11724         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11725         * ext/theora/theora.c:
11726         * ext/vorbis/vorbis.c:
11727         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11728         * gst-libs/gst/tag/gsttagediting.c:
11729         * gst-libs/gst/video/video.c:
11730         * gst/adder/gstadder.c:
11731         * gst/audioconvert/plugin.c:
11732         * gst/audiorate/gstaudiorate.c:
11733         * gst/audioresample/gstaudioresample.c:
11734         * gst/audioresample/resample_ref.c: (resample_scale_ref):
11735         * gst/audioscale/gstaudioscale.c:
11736         * gst/audioscale/resample.c:
11737         * gst/audiotestsrc/gstaudiotestsrc.c:
11738         * gst/ffmpegcolorspace/gstffmpeg.c:
11739         * gst/playback/gstdecodebin.c: (close_pad_link):
11740         * gst/playback/gstplaybin.c: (gen_video_element),
11741         (gen_audio_element):
11742         * gst/sine/gstsinesrc.c:
11743         * gst/subparse/gstsubparse.c:
11744         * gst/tags/gsttagediting.c:
11745         * gst/tcp/gsttcpplugin.c:
11746         * gst/typefind/gsttypefindfunctions.c:
11747         * gst/videorate/gstvideorate.c:
11748         * gst/videoscale/gstvideoscale.c:
11749         * gst/videotestsrc/gstvideotestsrc.c:
11750         * gst/volume/gstvolume.c:
11751         * sys/v4l/gstv4l.c:
11752         * sys/ximage/ximage.c:
11753         * sys/xvimage/xvimagesink.c:
11754           fix up defines
11755
11756 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
11757
11758         * ext/vorbis/vorbisenc.c:
11759         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11760         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
11761         (gst_tag_to_vorbis_comments):
11762           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
11763
11764 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
11765
11766         * examples/stats/mp2ogg.c:
11767         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11768           typo fixes
11769
11770 2005-10-13  Michael Smith <msmith@fluendo.com>
11771
11772         * ext/ogg/gstoggmux.c:
11773           Use magic glib macros to define constants as 64 bit, to ensure
11774           appropriate vararg passing.
11775
11776 2005-10-13  Michael Smith <msmith@fluendo.com>
11777
11778         * ext/ogg/gstoggmux.c:
11779         * gst/audioconvert/audioconvert.c: (float):
11780           Don't use LL suffix, as it's not portable, and neither of these
11781           uses required it anyway.
11782
11783 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
11784
11785         * examples/indexing/indexmpeg.c: (main):
11786         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
11787         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
11788         (cdparanoia_convert), (cdparanoia_query):
11789         * ext/cdparanoia/gstcdparanoia.h:
11790         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
11791         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
11792         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
11793         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
11794         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
11795         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
11796         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
11797         (gst_multifdsink_render), (gst_multifdsink_start),
11798         (gst_multifdsink_stop):
11799         * gst/tcp/gstmultifdsink.h:
11800         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
11801         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
11802         (gst_tcpclientsink_stop):
11803         * gst/tcp/gsttcpclientsink.h:
11804         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
11805         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
11806         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
11807         * gst/tcp/gsttcpclientsrc.h:
11808         * gst/tcp/gsttcpserversink.h:
11809         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
11810         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
11811         (gst_tcpserversrc_stop):
11812         * gst/tcp/gsttcpserversrc.h:
11813         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
11814         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
11815         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
11816           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
11817           moved bitshift from macro to enum definition
11818
11819 2005-10-12  Wim Taymans  <wim@fluendo.com>
11820
11821         * examples/seeking/Makefile.am:
11822         Oops.
11823
11824 2005-10-12  Wim Taymans  <wim@fluendo.com>
11825
11826         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11827         (gst_ring_buffer_read), (gst_ring_buffer_clear):
11828         Don't assert on normal stuff.
11829
11830         * gst/playback/gstplaybin.c: (do_playbin_seek):
11831         API fix.
11832
11833 2005-10-12  Wim Taymans  <wim@fluendo.com>
11834
11835         * check/pipelines/simple_launch_lines.c: (run_pipeline):
11836         * examples/seeking/Makefile.am:
11837         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
11838         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11839         (do_seek), (set_update_scale), (message_received), (main):
11840         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11841         (gst_ring_buffer_read), (gst_ring_buffer_clear):
11842         Update for _get_state() API change.
11843
11844 2005-10-11  Wim Taymans  <wim@fluendo.com>
11845
11846         * gst-libs/gst/audio/gstbaseaudiosink.c:
11847         (gst_base_audio_sink_render):
11848         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11849         (gst_base_audio_src_create):
11850         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11851         (gst_ring_buffer_read):
11852         Cleanups.
11853         Commit and read from ringbuffer in samples rather than bytes.
11854
11855 2005-10-11  Wim Taymans  <wim@fluendo.com>
11856
11857         * gst-libs/gst/audio/gstbaseaudiosink.c:
11858         (gst_base_audio_sink_render):
11859         Respect segment rate and accum when scheduling samples.
11860
11861 2005-10-11  Julien MOUTTE  <julien@moutte.net>
11862
11863         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11864         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
11865         EOS correctly, that needs more work.
11866
11867 2005-10-11  Wim Taymans  <wim@fluendo.com>
11868
11869         * check/generic/states.c: (GST_START_TEST):
11870         remove old property.
11871
11872         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11873         (gst_ogg_demux_perform_seek):
11874         * ext/theora/theoradec.c: (theora_dec_sink_event):
11875         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11876         (vorbis_handle_data_packet):
11877         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11878         (gst_base_rtp_depayload_set_gst_timestamp):
11879         * gst/videorate/gstvideorate.c: (gst_videorate_event):
11880         Update for newsegment API change.
11881
11882 2005-10-11  Michael Smith <msmith@fluendo.com>
11883
11884         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
11885         (do_playbin_seek), (gst_play_bin_send_event):
11886           Override send_event differently, so that we can takes bits of
11887           functionality from GstPipeline (special handling for seeks,
11888           including pausing/resuming, and resetting stream time) and still get
11889           the appropriate behaviour of only forwarding event to a single sink,
11890           rather than all of them.
11891           Unfortunately requires a lot of code duplication, but the
11892           alternatives are equally ugly in the end.
11893
11894 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11895
11896         * check/elements/audioconvert.c: (setup_audioconvert),
11897         (cleanup_audioconvert), (get_int_caps), (verify_convert),
11898         (GST_START_TEST), (audioconvert_suite):
11899           clean up tests a little, fix some leaks.
11900
11901 2005-10-10  Wim Taymans  <wim@fluendo.com>
11902
11903         * ext/alsa/gstalsasink.c:
11904         Also allow unsigned int.
11905
11906         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11907         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
11908         Small cleanup
11909
11910 2005-10-10  Wim Taymans  <wim@fluendo.com>
11911
11912         * check/pipelines/simple_launch_lines.c: (run_pipeline):
11913         Small update, use API as stated in design docs.
11914
11915         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11916         (update_scale), (do_seek), (seek_cb), (set_update_scale),
11917         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
11918         (message_received), (main):
11919         Updated seek example for GOption. Some usability improvements.
11920
11921 2005-10-10  Wim Taymans  <wim@fluendo.com>
11922
11923         * gst/audioconvert/audioconvert.h:
11924         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
11925         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
11926         Alloc temp storage somewhere else where we can do it more
11927         portable.
11928
11929 2005-10-10  Wim Taymans  <wim@fluendo.com>
11930
11931         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
11932         (gst_tcpserversrc_start):
11933         Don't block in accept while doing the state change, move
11934         to poll and make cancellable.
11935
11936 2005-10-09  Philippe Khalaf <burger@speedy.org>
11937
11938         * gst-libs/gst/rtp/rtpbasedepayload.c:
11939         Set timestamp and add queue delay to timestamp
11940         * gst-libs/gst/rtp/rtpbuffer.h:
11941         Set correct payload type for h263
11942
11943 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
11944
11945         * gst/audiotestsrc/gstaudiotestsrc.c:
11946         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
11947         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
11948         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
11949         (gst_audiotestsrc_create_triangle),
11950         (gst_audiotestsrc_create_silence),
11951         (gst_audiotestsrc_create_white_noise),
11952         (gst_audiotestsrc_init_pink_noise),
11953         (gst_audiotestsrc_generate_pink_noise_value),
11954         (gst_audiotestsrc_create_pink_noise),
11955         (gst_audiotestsrc_change_wave):
11956         * gst/audiotestsrc/gstaudiotestsrc.h:
11957           fixed typo, added pink noise
11958
11959 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11960
11961         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
11962         (plugin_init):
11963           Add wavpack and spc typefind functions from 0.8 branch.
11964
11965 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11966
11967         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
11968         (ar_type_find), (msdos_type_find), (plugin_init):
11969           Add typefind functions for tar archives, ar archives,
11970           RAR archives, and msdos-executables (dlls, exe, etc.).
11971           Some of those would be wrongly identified as mpeg
11972           streams of some sort before (#315550).
11973
11974 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
11975
11976         * configure.ac:
11977         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11978         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11979         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
11980         * gst/audiotestsrc/Makefile.am:
11981         * gst/audiotestsrc/gstaudiotestsrc.c:
11982         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
11983         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
11984         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
11985         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
11986         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
11987         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
11988         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
11989         (gst_audiotestsrc_create_silence),
11990         (gst_audiotestsrc_create_white_noise),
11991         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
11992         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
11993         (gst_audiotestsrc_start), (plugin_init):
11994         * gst/audiotestsrc/gstaudiotestsrc.h:
11995           add new plugin and element
11996         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
11997           use gobject_class
11998
11999 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
12000
12001         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12002         (gst_adder_init), (gst_adder_request_new_pad),
12003         (gst_adder_change_state):
12004           Add query function to source pad, so adder reports the correct
12005           time/sample position when queried (#315457); fix state change
12006           function; use GST_DEBUG_FUNCPTR() for pad functions.
12007
12008 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12009
12010         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12011           Fix leaks in typefind registration
12012           Clean up the gratuitous commenting and whitespacing a little
12013
12014 2005-10-08  Wim Taymans  <wim@fluendo.com>
12015
12016         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12017         Only actually wait for the thread to be stopped if it's 
12018         running.
12019
12020 2005-10-08  Wim Taymans  <wim@fluendo.com>
12021
12022         * gst-libs/gst/audio/gstbaseaudiosink.c:
12023         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12024         If we receive EOS we can start playback of what we had.
12025
12026 2005-10-08  Wim Taymans  <wim@fluendo.com>
12027
12028         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12029         (gst_multifdsink_finalize), (multifdsink_hash_remove),
12030         (gst_multifdsink_stop):
12031         Fix crasher when going to NULL multiple times.
12032
12033 2005-10-06  Wim Taymans  <wim@fluendo.com>
12034
12035         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12036         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12037         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12038         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12039         patch from Edgard Lima <edgard.lima@indt.org.br>
12040         Fixed gstbaseaudiosrc adding ring buffer sync to it.
12041
12042 2005-10-06  Wim Taymans  <wim@fluendo.com>
12043
12044         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12045         Report the FLOW_RETURN as string in the error message.
12046
12047         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12048         Don't assert when clearing an unnegotiated buffer.
12049
12050 2005-10-04  Michael Smith <msmith@fluendo.com>
12051
12052         * gst/playback/gstplaybasebin.c: (group_destroy),
12053         (gen_preroll_element), (remove_groups), (setup_source):
12054         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12055         (setup_sinks), (gst_play_bin_send_event),
12056         (gst_play_bin_change_state):
12057           Set state to NULL before removing from bin. Fix refcounting.
12058
12059 2005-10-04  Michael Smith <msmith@fluendo.com>
12060
12061         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12062           Correct refcounting in send_event() function. Previously was wrong
12063           if the first sink was unable to handle the event.
12064
12065 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12066
12067         * configure.ac:
12068           back to development
12069
12070 === release 0.9.3 ===
12071
12072 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12073
12074         * configure.ac:
12075           Releasing 0.9.3, "De Facto"
12076
12077 2005-10-03  Andy Wingo  <wingo@pobox.com>
12078
12079         * gst/playback/gstdecodebin.c (try_to_link_1)
12080         (remove_element_chain): set element to NULL before removing it.
12081
12082 2005-10-02  Johan Dahlin  <johan@gnome.org>
12083
12084         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
12085         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12086         MT safe.
12087
12088 2005-10-02  Andy Wingo  <wingo@pobox.com>
12089
12090         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
12091         (gst_ring_buffer_prepare_read): 
12092         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12093         Demote to LOG.
12094
12095 2005-09-29  Wim Taymans  <wim@fluendo.com>
12096
12097         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12098         * ext/theora/theoradec.c: (theora_handle_data_packet):
12099         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12100         Propagate error codes from alloc_buffer too.
12101
12102 2005-09-29  Wim Taymans  <wim@fluendo.com>
12103
12104         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12105         We use fixed caps.
12106
12107         * gst/playback/Makefile.am:
12108         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12109         (dump_element_stats), (main):
12110         Added example stream introspection code.
12111
12112 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
12113
12114         * gst/adder/gstadder.c: (gst_adder_collected):
12115           fix adder for float elements
12116
12117 2005-09-28  Wim Taymans  <wim@fluendo.com>
12118
12119         * gst-libs/gst/audio/gstbaseaudiosink.c:
12120         (gst_base_audio_sink_class_init),
12121         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12122         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12123         (gst_base_audio_src_class_init),
12124         (gst_base_audio_src_provide_clock):
12125         get_clock -> provide_clock
12126
12127 2005-09-28  Andy Wingo  <wingo@pobox.com>
12128
12129         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12130         and unlocking.
12131
12132         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12133         unlocking.
12134
12135         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12136         Actually add the pad template.
12137         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12138
12139         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12140         I'm at it...
12141
12142         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12143         from fdsrc. Get caps in create() instead of start() so it can be
12144         interrupted. Interruption somewhat untested.
12145
12146         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12147         Proper EOS handling.
12148
12149 2005-09-27  Andy Wingo  <wingo@pobox.com>
12150
12151         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12152
12153         * gst/tcp/gsttcpserversrc.c: Cleaned up.
12154
12155         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12156
12157         * gst/tcp/gsttcp.h: 
12158         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12159         out of tcpclientsrc.c. Cancellable.
12160         (gst_tcp_socket_read): Made private, cancellable, with better
12161         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12162         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12163         whole buffer, and better diagnostics.
12164         (gst_tcp_gdp_read_caps): Same.
12165
12166         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12167
12168 2005-09-26  Andy Wingo  <wingo@pobox.com>
12169
12170         * gst/sine/gstsinesrc.h:
12171         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12172         change the 'sync' property to 'is-live' and implement it halfway,
12173         update for controller api change.
12174
12175         * gst/volume/gstvolume.c (volume_transform_ip): Update for
12176         controller api change.
12177
12178 2005-09-24  Wim Taymans  <wim@fluendo.com>
12179
12180         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12181         * gst-libs/gst/audio/gstaudiosink.c:
12182         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12183         (gst_audioringbuffer_stop):
12184         * gst-libs/gst/audio/gstbaseaudiosink.c:
12185         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12186         (gst_base_audio_sink_change_state):
12187         * gst-libs/gst/audio/gstbaseaudiosink.h:
12188         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12189         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12190         (gst_ring_buffer_commit), (gst_ring_buffer_read):
12191         * gst-libs/gst/audio/gstringbuffer.h:
12192         Fix sync again. Moved sample alignment to basesink.
12193
12194 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12195
12196         * docs/plugins/Makefile.am:
12197         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12198         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12199         * gst/volume/gstvolume.c:
12200           add/fix docs
12201         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12202         * gst-libs/gst/audio/audio.h:
12203           add conversion macros for frames <-> clocktime
12204
12205 2005-09-23  David Schleef  <ds@schleef.org>
12206
12207         * gst/audioresample/Makefile.am:
12208         * gst/audioresample/debug.h:
12209         * gst/audioresample/gstaudioresample.c:
12210         * gst/audioresample/resample.c: Convert to using gst debugging
12211
12212 2005-09-22  Wim Taymans  <wim@fluendo.com>
12213
12214         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12215         (gst_play_bin_send_event):
12216         Only seek on one sink, the first one that succeeds.
12217
12218 2005-09-22  Michael Smith <msmith@fluendo.com>
12219
12220         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12221         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12222         Don't flush encoder state unless we have an initialised encoder.
12223         Clear out encoder state on PAUSED_TO_READY.
12224
12225 2005-09-22  Wim Taymans  <wim@fluendo.com>
12226
12227         * gst-libs/gst/rtp/gstbasertppayload.c:
12228         (gst_basertppayload_class_init), (gst_basertppayload_init),
12229         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12230         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12231         (gst_basertppayload_is_filled), (gst_basertppayload_push),
12232         (gst_basertppayload_set_property),
12233         (gst_basertppayload_get_property),
12234         (gst_basertppayload_change_state):
12235         * gst-libs/gst/rtp/gstbasertppayload.h:
12236         Added max-ptime to control amount of data in the rtp packets.
12237
12238 2005-09-21  Andy Wingo  <wingo@pobox.com>
12239
12240         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12241         thingies.
12242
12243         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12244         can be called multiple times, dogs.
12245
12246 2005-09-21  Wim Taymans  <wim@fluendo.com>
12247
12248         * gst-libs/gst/rtp/gstbasertppayload.c:
12249         (gst_basertppayload_class_init), (gst_basertppayload_init),
12250         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12251         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12252         (gst_basertppayload_push), (gst_basertppayload_get_property),
12253         (gst_basertppayload_change_state):
12254         Allow 0 ssrc too.
12255
12256 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
12257
12258         * docs/libs/compiling.sgml:
12259           fixing typos
12260
12261 2005-09-20  Wim Taymans  <wim@fluendo.com>
12262
12263         * gst-libs/gst/rtp/gstbasertppayload.c:
12264         (gst_basertppayload_class_init), (gst_basertppayload_init),
12265         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12266         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12267         (gst_basertppayload_push), (gst_basertppayload_set_property),
12268         (gst_basertppayload_get_property),
12269         (gst_basertppayload_change_state):
12270         * gst-libs/gst/rtp/gstbasertppayload.h:
12271         Added property to configure sequence number offsets.
12272
12273 2005-09-20  Wim Taymans  <wim@fluendo.com>
12274
12275         * gst-libs/gst/rtp/gstbasertppayload.c:
12276         (gst_basertppayload_class_init), (gst_basertppayload_init),
12277         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12278         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12279         (gst_basertppayload_push), (gst_basertppayload_set_property),
12280         (gst_basertppayload_get_property),
12281         (gst_basertppayload_change_state):
12282         * gst-libs/gst/rtp/gstbasertppayload.h:
12283         Make timestamp offset configurable.
12284
12285 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12286
12287         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12288           fix wrong pop/unref
12289
12290 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
12291
12292         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
12293
12294         * gst-libs/gst/interfaces/propertyprobe.c:
12295         (gst_property_probe_probe_property_name),
12296         (gst_property_probe_needs_probe_name),
12297         (gst_property_probe_get_values_name),
12298         (gst_property_probe_probe_and_get_values_name):
12299           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12300           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12301
12302 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
12303
12304         * check/Makefile.am:
12305           have some tests be disabled for valgrinding
12306         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12307         (GST_START_TEST):
12308         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12309           Fix A Leak.  Chain To Parent Finalize.
12310
12311 2005-09-19  Wim Taymans  <wim@fluendo.com>
12312
12313         * examples/seeking/seek.c: (make_wav_pipeline), (main):
12314         Fixed wav pipeline.
12315
12316 2005-09-19  Wim Taymans  <wim@fluendo.com>
12317
12318         * gst-libs/gst/rtp/gstbasertppayload.c:
12319         (gst_basertppayload_class_init), (gst_basertppayload_init),
12320         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12321         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12322         (gst_basertppayload_push), (gst_basertppayload_get_property),
12323         (gst_basertppayload_change_state):
12324         Posting ERROR and WARNING messages is good.
12325
12326 2005-09-19  Wim Taymans  <wim@fluendo.com>
12327
12328         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12329         (gst_base_rtp_depayload_add_to_queue),
12330         (gst_base_rtp_depayload_push),
12331         (gst_base_rtp_depayload_set_gst_timestamp),
12332         (gst_base_rtp_depayload_queue_release):
12333         This one was not supposed to go in.
12334
12335 2005-09-19  Wim Taymans  <wim@fluendo.com>
12336
12337         * check/pipelines/simple_launch_lines.c: (run_pipeline):
12338         Fix for bus API.
12339
12340         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12341         (gst_base_rtp_depayload_chain),
12342         (gst_base_rtp_depayload_add_to_queue),
12343         (gst_base_rtp_depayload_push),
12344         (gst_base_rtp_depayload_set_gst_timestamp),
12345         (gst_base_rtp_depayload_queue_release):
12346         Some cleanups.
12347
12348         * gst-libs/gst/rtp/gstbasertppayload.c:
12349         (gst_basertppayload_class_init), (gst_basertppayload_init),
12350         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12351         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12352         (gst_basertppayload_get_property),
12353         (gst_basertppayload_change_state):
12354         Added debugging category.
12355
12356 2005-09-18  David Schleef  <ds@schleef.org>
12357
12358         * gst/playback/gstdecodebin.c: free plugin list correctly
12359         * gst/playback/gstplaybin.c: emit warning if autovideosink
12360           and autoaudiosink can't be found (instead of segfaulting)
12361
12362 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
12363
12364         * check/elements/audioconvert.c: (GST_START_TEST):
12365           try out 24 bit conversion
12366
12367 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12368
12369         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12370         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12371         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12372         * ext/vorbis/vorbisenc.h:
12373           Fix EOS handling.  Still needs a fix in the ogg muxer to
12374           mark the last page as eos.
12375
12376 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12377
12378         * common/gtk-doc-plugins.mak:
12379         * docs/plugins/Makefile.am:
12380         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12381         * gst/ffmpegcolorspace/Makefile.am:
12382         * gst/ffmpegcolorspace/avcodec.h:
12383         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12384         * gst/tcp/gstmultifdsink.c:
12385           fix up ffmpegcolorspace docs; extract header
12386
12387 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12388
12389         * common/gtk-doc-plugins.mak:
12390         * docs/plugins/Makefile.am:
12391         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12392         * ext/theora/Makefile.am:
12393         * ext/theora/gsttheoraenc.h:
12394         * ext/theora/theoraenc.c:
12395         * ext/vorbis/vorbisenc.c:
12396           pick up signals and args for vorbis; add some docs for vorbis
12397
12398 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12399
12400         * common/gstdoc-scangobj:
12401         * common/gtk-doc-plugins.mak:
12402         * docs/libs/Makefile.am:
12403         * docs/plugins/gst-plugins-base-plugins.args:
12404         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12405         * docs/plugins/gst-plugins-base-plugins.interfaces:
12406         * docs/plugins/gst-plugins-base-plugins.prerequisites:
12407         * docs/plugins/gst-plugins-base-plugins.signals:
12408           only scanobj stuff from our source module.  Not sure yet
12409           if that's correct, given the hierarchy stuff :)
12410
12411 2005-09-15  Wim Taymans  <wim@fluendo.com>
12412
12413         * gst/audioconvert/gstaudioconvert.c:
12414         And enable 24 bits mode as well..
12415
12416 2005-09-15  Wim Taymans  <wim@fluendo.com>
12417
12418         * gst-libs/gst/rtp/Makefile.am:
12419         * gst-libs/gst/rtp/gstbasertppayload.c:
12420         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12421         (gst_basertppayload_class_init), (gst_basertppayload_init),
12422         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12423         (gst_basertppayload_chain), (gst_basertppayload_set_options),
12424         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12425         (gst_basertppayload_set_property),
12426         (gst_basertppayload_get_property),
12427         (gst_basertppayload_change_state):
12428         * gst-libs/gst/rtp/gstbasertppayload.h:
12429         Added rtp payloader base class.
12430
12431 2005-09-15  Andy Wingo  <wingo@pobox.com>
12432
12433         * configure.ac (plugindir): Remove the EOL matcher from the
12434         regexp, as it causes me problems. Libtool? Make? Who knows?
12435
12436 2005-09-14  David Schleef  <ds@schleef.org>
12437
12438         * check/generic/states.c: 
12439         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12440         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12441           Fixes for changes in registry API.
12442
12443         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
12444           to GST_PLUGIN_LDFLAGS.
12445         * ext/libvisual/visual.c: Make the library shut up.
12446         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12447         * gst-libs/gst/audio/gstaudiofilter.c: same
12448
12449 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12450
12451         * docs/plugins/Makefile.am:
12452         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12453         * docs/plugins/inspect/plugin-libvisual.xml:
12454         * docs/plugins/tmpl/element-tcpserversink.sgml:
12455         * ext/theora/theoraenc.c:
12456           add libvisual plugin and theoraenc element to docs
12457
12458 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12459
12460         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12461         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12462         * ext/theora/theoraenc.c:
12463           add theoraenc
12464
12465 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
12466
12467         * gst/audioconvert/Makefile.am:
12468           Audioconvert derives from GstBaseTransform and should
12469           link to the library with our base elements to avoid
12470           unresolved symbols. Makes things work with MinGW (#316160)
12471
12472         * gst/playback/test4.c: (main):
12473           Fix MinGW build problem and use g_usleep() instead of 
12474           sleep() (#316162)
12475
12476 2005-09-12  Wim Taymans  <wim@fluendo.com>
12477
12478         * gst/audioconvert/audioconvert.c: (float),
12479         (audio_convert_prepare_context), (audio_convert_convert):
12480         * gst/audioconvert/audioconvert.h:
12481         Cleanups, speedups, simplifications, added back support
12482         for 24 bits.
12483
12484 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
12485
12486         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12487         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12488         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12489         * docs/plugins/tmpl/element-tcpserversink.sgml:
12490         * gst/ffmpegcolorspace/gstffmpeg.c:
12491         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12492         * gst/videotestsrc/gstvideotestsrc.c:
12493         * gst/volume/gstvolume.c:
12494           add more elements to the docs
12495
12496 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
12497
12498         * check/Makefile.am:
12499         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12500         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12501           Add extra tests for basetransform based components. 
12502           Comment out the test_element_negotiation test until we decide
12503           if it's testing correct behaviour.
12504         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12505         (gst_visual_chain), (gst_visual_change_state):
12506           Slightly more correct but still bogus timestamping.
12507           Fix state change function.
12508         * gst/audioconvert/gstaudioconvert.c:
12509         (gst_audio_convert_class_init):
12510         * gst/audioresample/gstaudioresample.c:
12511         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12512         (gst_ffmpegcsp_class_init):
12513         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12514         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12515         (gst_videoscale_prepare_image):
12516         * gst/volume/gstvolume.c: (gst_volume_class_init),
12517         (volume_transform_ip):
12518           Basetransform updates. Enable passthrough modes.
12519         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12520         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12521         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12522           Negotiation fix that allows the window to return to the original
12523           size and renegotiate passthrough upstream. Extra debug output.
12524
12525 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12526
12527         * gst/sine/gstsinesrc.c:
12528         * gst/volume/gstvolume.c:
12529           fix up header include
12530
12531 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
12532
12533         * gst-libs/gst/audio/gstbaseaudiosink.c:
12534         (gst_base_audio_sink_render):
12535         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12536         * gst/volume/gstvolume.c: (gst_volume_class_init),
12537         (volume_transform):
12538           fixing lost sync, some more debugging
12539
12540 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
12541
12542         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12543         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12544         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12545         (gst_xvimagesink_check_xshm_calls):
12546           Fix compilation when XShm is not available.
12547
12548 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12549
12550         * ext/libvisual/visual.c: (gst_visual_dispose),
12551         (gst_visual_getcaps), (gst_visual_src_setcaps),
12552         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12553         (gst_visual_change_state):
12554           Finish fixing up libvisual plugin so that it runs. 
12555
12556 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12557
12558         * ext/vorbis/vorbisenc.c:
12559         * gst-libs/gst/tag/gstvorbistag.c:
12560           gsttaginterface.h -> gsttagsetter.h
12561
12562 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12563
12564         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12565           added another test that failes for me (test is not active by default)
12566
12567 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12568
12569         * configure.ac:
12570           v4l2 is no longer in gst-plugins-base
12571
12572 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
12573
12574         * configure.ac:
12575           In the output at the end, don't show the first plugin on the same
12576           line as "Core plug-ins, always built:".
12577           Indent the output as for other plugin categories
12578         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12579           #define that can be used to not use peer buffer_alloc functions for
12580           test purposes.
12581         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12582         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12583         (gst_ximagesink_show_frame):
12584         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12585         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12586         (gst_xvimagesink_show_frame):
12587           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12588           fails gracefully instead of XError aborting or deadlocking.
12589
12590 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
12591
12592         * ext/libvisual/Makefile.am:
12593           link against gst-base-libs
12594
12595 2005-09-06  David Schleef  <ds@schleef.org>
12596
12597         * configure.ac: Enable libvisual plugin.
12598         * ext/libvisual/Makefile.am:
12599         * ext/libvisual/visual.c: Fixes to make it compile.
12600
12601 === release 0.9.2 ===
12602
12603 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12604
12605         * NEWS:
12606         * RELEASE:
12607         * configure.ac:
12608         * docs/random/ChangeLog-0.8:
12609           releasing 0.9.2, "Spoon"
12610
12611 2005-09-05  Michael Smith <msmith@fluendo.com>
12612
12613         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12614           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12615           that in the vorbisenc element.
12616
12617 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12618
12619         * common/gtk-doc-plugins.mak:
12620         * docs/plugins/Makefile.am:
12621           fix distcheck
12622         * gst/audioresample/resample.c:
12623           fix wrong docstring
12624
12625 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12626
12627         * common/gst-xmlinspect.py:
12628         * common/gtk-doc-plugins.mak:
12629           only inspect plugins for this given package
12630           require gst-python 0.9
12631
12632 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12633
12634         * Makefile.am:
12635         * autogen.sh:
12636         * common/gst-xmlinspect.py:
12637         * configure.ac:
12638         * docs/Makefile.am:
12639         * docs/plugins/inspect/plugin-alsa.xml:
12640         * docs/plugins/inspect/plugin-audioresample.xml:
12641         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12642         * docs/plugins/inspect/plugin-ogg.xml:
12643         * docs/plugins/tmpl/element-gnomevfssink.sgml:
12644         * docs/plugins/tmpl/element-multifdsink.sgml:
12645         * docs/plugins/tmpl/element-tcpserversink.sgml:
12646         * docs/plugins/tmpl/element-vorbisenc.sgml:
12647         * gst-plugins-base.spec.in:
12648           various doc-related updates
12649
12650 2005-08-31  Wim Taymans  <wim@fluendo.com>
12651
12652         * gst-libs/gst/audio/gstbaseaudiosink.c:
12653         (gst_base_audio_sink_render):
12654         Resync if the buffer timestamps drift more than a 10th 
12655         of a second.
12656
12657 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
12658
12659         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12660         (gst_v4lsrc_get_property):
12661           The 'timestamp-offset' property is registered as an int64, so
12662           let's use g_value_{set|get}_int64() in our setter and getter
12663           functions (makes it work and fixes warnings with gst-inspect).
12664
12665 2005-08-30  Wim Taymans  <wim@fluendo.com>
12666
12667         * check/elements/audioconvert.c: (setup_audioconvert):
12668         * check/elements/audioresample.c: (setup_audioresample):
12669         * check/elements/volume.c: (setup_volume):
12670         Fix checks.
12671
12672 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12673
12674         * common/gtk-doc-plugins.mak:
12675         * common/plugins.xsl:
12676         * docs/plugins/Makefile.am:
12677           make module a param
12678
12679 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12680
12681         * examples/seeking/seek.c: (make_mp3_pipeline),
12682         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12683         (play_cb), (pause_cb), (stop_cb):
12684           update the example
12685
12686 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
12687
12688         * gst/volume/gstvolume.c: (gst_volume_class_init),
12689         (volume_transform):
12690           do not update controlled params, if buffer has no timestamp
12691
12692 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12693
12694         * configure.ac:
12695         * gst/sine/Makefile.am:
12696         * gst/volume/Makefile.am:
12697           controllerized elements also need to link against controller-libs ;)
12698
12699 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
12700
12701         * docs/libs/tmpl/gstcolorbalance.sgml:
12702         * docs/libs/tmpl/gstgconf.sgml:
12703         * docs/libs/tmpl/gstmixer.sgml:
12704         * docs/libs/tmpl/gstringbuffer.sgml:
12705         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12706         (gst_sinesrc_create):
12707         * gst/volume/gstvolume.c: (gst_volume_class_init),
12708         (volume_transform):
12709           controllerized two audio plugins
12710
12711 2005-08-29  Andy Wingo  <wingo@pobox.com>
12712
12713         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
12714         (vorbis_handle_data_packet): Fix some int overflow errors.
12715
12716         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12717         -1.
12718         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12719         valid.
12720         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12721         if it's valid. Fixed streaming-mode playback.
12722
12723         * check/elements/volume.c (cleanup_volume): Fix for running
12724         CK_FORK=no.
12725
12726         * check/elements/audioconvert.c: Convert from native endian, not
12727         little endian.
12728
12729 2005-08-29  Michael Smith <msmith@fluendo.com>
12730
12731         * ext/ogg/Makefile.am:
12732         * ext/ogg/gstogg.c: (plugin_init):
12733         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12734         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12735         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12736         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12737         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12738         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12739         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12740         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12741         Add an ogg parser element.
12742
12743 2005-08-28  Andy Wingo  <wingo@pobox.com>
12744
12745         * Updates for two-arg init from GST_BOILERPLATE_FULL.
12746
12747 2005-08-26  Wim Taymans  <wim@fluendo.com>
12748
12749         * gst/audioconvert/audioconvert.c: (if), (float),
12750         (audio_convert_get_func_index), (check_default),
12751         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12752         (audio_convert_clean_context), (audio_convert_get_sizes),
12753         (audio_convert_convert):
12754         Cleanups.
12755
12756 2005-08-26  Wim Taymans  <wim@fluendo.com>
12757
12758         * gst/audioconvert/audioconvert.c: (if), (float),
12759         (audio_convert_get_func_index), (check_default),
12760         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12761         (audio_convert_clean_context), (audio_convert_get_sizes),
12762         (audio_convert_convert):
12763         More elegant and working temp buffer selection algo.
12764
12765 2005-08-26  Wim Taymans  <wim@fluendo.com>
12766
12767         * gst/audioconvert/audioconvert.c: (if), (float),
12768         (audio_convert_get_func_index), (check_default),
12769         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12770         (audio_convert_clean_context), (audio_convert_get_sizes),
12771         (get_temp_buffer), (audio_convert_convert):
12772         Use realloc else we lose our original data.
12773
12774 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
12775
12776         * gst/audioresample/gstaudioresample.c:
12777           use base class' newsegment to properly timestamp
12778
12779 2005-08-26  Wim Taymans  <wim@fluendo.com>
12780
12781         * gst/audioconvert/audioconvert.c: (if), (float),
12782         (audio_convert_get_func_index), (check_default),
12783         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12784         (audio_convert_clean_context), (audio_convert_get_sizes),
12785         (get_temp_buffer), (audio_convert_convert):
12786         * gst/audioconvert/gstaudioconvert.c:
12787         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
12788         (gst_audio_convert_transform_caps),
12789         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
12790         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
12791         Oops, allocate enough space to perform the channel mix.
12792
12793 2005-08-26  Wim Taymans  <wim@fluendo.com>
12794
12795         * gst/audioconvert/Makefile.am:
12796         * gst/audioconvert/audioconvert.c: (if), (float),
12797         (audio_convert_get_func_index), (check_default),
12798         (audio_convert_clean_fmt), (audio_convert_prepare_context),
12799         (audio_convert_clean_context), (audio_convert_get_sizes),
12800         (get_temp_buffer), (audio_convert_convert):
12801         * gst/audioconvert/audioconvert.h:
12802         * gst/audioconvert/gstaudioconvert.c:
12803         (gst_audio_convert_class_init), (gst_audio_convert_init),
12804         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
12805         (gst_audio_convert_get_unit_size),
12806         (gst_audio_convert_transform_caps),
12807         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
12808         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
12809         * gst/audioconvert/gstaudioconvert.h:
12810         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12811         (gst_channel_mix_fill_identical),
12812         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
12813         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
12814         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
12815         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
12816         (gst_channel_mix_mix):
12817         * gst/audioconvert/gstchannelmix.h:
12818         Cleanups, librarify a bit, optimize, better negotiation and more.
12819
12820 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
12821
12822         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
12823         Another from MikeS:
12824         During typefinding, don't support negative offsets
12825         (offsets from the end of the stream) in our typefind->peek() function
12826         - nothing embedded in ogg ever needs them. However, we need to recognise
12827         those requests and reject them, otherwise we return invalid pointers.
12828
12829 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
12830
12831         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
12832         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
12833         (vorbisdec_finalize), (vorbis_handle_type_packet):
12834           Big shout-out to MikeS for fixing this giant memory leak.
12835           Huzzah!
12836
12837 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12838
12839         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
12840         (audio_convert_get_unit_size):
12841           plug some leaks
12842
12843 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12844
12845         * check/Makefile.am:
12846         * check/elements/audioconvert.c: (setup_audioconvert),
12847         (cleanup_audioconvert), (get_int_caps), (verify_convert),
12848         (GST_START_TEST), (audioconvert_suite), (main):
12849           add a test for audioconvert
12850         * gst/audioresample/gstaudioresample.c:
12851         * gst/audioresample/gstaudioresample.h:
12852           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
12853           note that for buffers of 1/3 sec this means DURATION(c) is 
12854           one nanosecond more than for a and b
12855
12856 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12857
12858         * check/Makefile.am:
12859         * check/elements/audioresample.c: (setup_audioresample),
12860         (cleanup_audioresample), (fail_unless_perfect_stream),
12861         (test_perfect_stream_instance), (GST_START_TEST),
12862           add a check for audioresample
12863         (audioresample_suite), (main):
12864         * check/elements/volume.c: (GST_START_TEST):
12865           remove unused method
12866         * gst/audioresample/gstaudioresample.c:
12867           set correct buffer parameters since we're changing them
12868         * gst/audioresample/resample_ref.c: (resample_scale_ref):
12869           add some debug
12870
12871 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12872
12873         * gst/audioresample/debug.c:
12874         * gst/audioresample/gstaudioresample.c:
12875           add room for extra overlap samples when asked to transform size
12876           protect against possible mem corruption and check for discrepancies
12877           between written size and outbuffer's size so we can warn for
12878           potential problems
12879         * gst/audioresample/resample.c: (resample_init),
12880         (resample_get_output_size_for_input), (resample_get_output_size),
12881         (resample_set_n_channels), (resample_set_format):
12882           set debug level based on RESAMPLE_DEBUG env var
12883           make sure that get_output_size* returns a whole number of
12884           sample_size
12885           set sample_size each time either channel or format is set
12886         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
12887         * gst/audioresample/resample_functable.c:
12888         (resample_scale_functable):
12889         * gst/audioresample/resample_ref.c: (resample_scale_ref):
12890           remove r->sample_size, it's done in resample.c now
12891           add some debugging to the ref implementation
12892           make sure we only give back bytes that are wholes of the sample
12893           size
12894
12895 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
12896         * gst/playback/gstplaybasebin.c: (fill_buffer):
12897         Revert unpopular change for GST_MESSAGE_SRC to GObject.
12898
12899 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
12900
12901         * gst/volume/gstvolume.c:
12902           made set_caps function static
12903
12904 2005-08-24  Wim Taymans  <wim@fluendo.com>
12905
12906         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12907         (gst_vorbisenc_change_state):
12908         Stop leaking taglists.
12909
12910 2005-08-24  Wim Taymans  <wim@fluendo.com>
12911
12912         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
12913         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
12914         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
12915         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
12916         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
12917         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
12918         Parse seeking events better.
12919         Unref static caps.
12920         Generate correct newsegment events, fixes seeking in live oggs.
12921
12922         * ext/theora/theoradec.c: (theora_dec_src_query),
12923         (theora_dec_src_event), (theora_dec_src_getcaps),
12924         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
12925         Use newsegment values to report correct play time.
12926
12927         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12928         (vorbis_dec_src_event), (vorbis_dec_sink_event):
12929         * ext/vorbis/vorbisdec.h:
12930         Parse and use newsegment values to report correct play time.
12931
12932         * gst-libs/gst/audio/gstbaseaudiosink.c:
12933         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12934         Clear ringbuffer on flush.
12935         Use newsegment values to calculate playback time.
12936
12937         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
12939         Basesink does newsegment calculations for us now.
12940
12941 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12942
12943         * check/Makefile.am:
12944         * configure.ac:
12945           add core's plugins to the mix so that playbin works
12946         * check/generic/states.c: (GST_START_TEST):
12947           set a 0 timeout on pipelines, so they don't force the next
12948           state change
12949         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
12950         (gst_play_base_bin_change_state):
12951           remove the crappy error handling and do GST error handling
12952
12953 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12954
12955         * check/Makefile.am:
12956         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
12957           add same test as to core, it bitches out on playbin atm.
12958
12959 2005-08-24  Wim Taymans  <wim@fluendo.com>
12960
12961         * configure.ac:
12962         Remove audioscale.
12963
12964 2005-08-24  Wim Taymans  <wim@fluendo.com>
12965
12966         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
12967         (gst_videoscale_prepare_size), (parse_caps),
12968         (gst_videoscale_set_caps), (gst_videoscale_get_size),
12969         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
12970         (gst_videoscale_transform):
12971         * gst/videoscale/gstvideoscale.h:
12972         Refactor, make use of BaseTranform really well.
12973
12974 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12975
12976         * configure.ac:
12977           compile audioresample
12978         * gst/audioresample/Makefile.am:
12979         * gst/audioresample/buffer.c:
12980         * gst/audioresample/functable.c:
12981         * gst/audioresample/gstaudioresample.c:
12982         * gst/audioresample/gstaudioresample.h:
12983         * gst/audioresample/resample.c:
12984         (resample_get_output_size_for_input):
12985         * gst/audioresample/resample.h:
12986         * gst/audioresample/resample_chunk.c:
12987         * gst/audioresample/resample_functable.c:
12988         * gst/audioresample/resample_ref.c:
12989           port to use basetransform; doesn't work in all cases yet
12990
12991 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12992
12993         * gst/audioconvert/gstaudioconvert.c:
12994         (gst_audio_convert_class_init), (gst_audio_convert_init),
12995         (audio_convert_get_unit_size), (audio_convert_transform_caps),
12996         (audio_convert_fixate_caps), (audio_convert_set_caps),
12997         (audio_convert_transform),
12998         (gst_audio_convert_buffer_to_default_format),
12999         (gst_audio_convert_buffer_from_default_format),
13000         (gst_audio_convert_channels):
13001         * gst/audioconvert/gstchannelmix.c:
13002         * gst/audioconvert/gstchannelmix.h:
13003           port to basetransform
13004         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13005         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13006         (gst_ffmpegcsp_get_unit_size):
13007         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13008         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13009           fix for basetransform changes
13010
13011 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
13012
13013         * check/Makefile.am:
13014           Add CHECK_CFLAGS and LDFLAGS
13015
13016         * gst/playback/gstplaybasebin.c: (fill_buffer):
13017           GST_MESSAGE_SRC became a GObject
13018
13019 2005-08-24  Wim Taymans  <wim@fluendo.com>
13020
13021         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13022         (gst_ring_buffer_clear_all):
13023         * gst-libs/gst/audio/gstringbuffer.h:
13024         Added function to clear the ringbuffer.
13025
13026 2005-08-24  Andy Wingo  <wingo@pobox.com>
13027
13028         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
13029         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13030         of _open and _close.
13031
13032         * sys/v4l/gstv4lxoverlay.h:
13033         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13034         an Xv connection here, instead of all the time. Make Xv only be
13035         loaded if you axe for it. Kindof a workaround for buggy behaviour
13036         of Xv when using remote xservers (XvQueryExtension would block).
13037         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13038         replace the _open and _close public API. Only start the xv
13039         connection if necessary.
13040         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13041
13042 2005-08-23  David Schleef  <ds@schleef.org>
13043
13044         * gst/audioresample/Makefile.am: Leet audioresampling code
13045         * gst/audioresample/buffer.c:
13046         * gst/audioresample/buffer.h:
13047         * gst/audioresample/debug.c:
13048         * gst/audioresample/debug.h:
13049         * gst/audioresample/functable.c:
13050         * gst/audioresample/functable.h:
13051         * gst/audioresample/gstaudioresample.c:
13052         * gst/audioresample/gstaudioresample.h:
13053         * gst/audioresample/resample.c:
13054         * gst/audioresample/resample.h:
13055         * gst/audioresample/resample_chunk.c:
13056         * gst/audioresample/resample_functable.c:
13057         * gst/audioresample/resample_ref.c:
13058
13059 2005-08-23  Wim Taymans  <wim@fluendo.com>
13060
13061         * examples/seeking/seek.c: (make_vorbis_pipeline),
13062         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13063         Small seek updates.
13064
13065 2005-08-23  Andy Wingo  <wingo@pobox.com>
13066
13067         * gst-libs/gst/audio/gstbaseaudiosrc.c
13068         (gst_base_audio_src_fixate): Only fixate endianness if it is
13069         present in the caps.
13070
13071 2005-08-22  Andy Wingo  <wingo@pobox.com>
13072
13073         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
13074         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13075         device-name property.
13076
13077         * gst-libs/gst/audio/gstaudiosrc.h:
13078         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13079         close_device in the ring buffer, like gstaudiosink.
13080
13081         * ext/alsa/gstalsamixer.h:
13082         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13083         macro to implement the interface without much code. Cleanups. 
13084
13085         * ext/alsa/gstalsasrc.h:
13086         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13087         READY.
13088
13089         * ext/alsa/Makefile.am: Add new files.
13090         * ext/alsa/gstalsamixerelement.c: 
13091         * ext/alsa/gstalsamixerelement.c: Split element code out from
13092         mixer code so that alsasrc can be a mixer too.
13093
13094 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13095
13096         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13097         (GST_START_TEST):
13098         * check/elements/vorbisdec.c: (setup_vorbisdec),
13099         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13100         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13101         (vorbis_handle_identification_packet),
13102         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13103         (vorbis_handle_header_packet), (vorbis_dec_push),
13104         (vorbis_dec_chain):
13105           use the setup/teardown methods to save code.  save code is good.
13106
13107 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13108
13109         * check/Makefile.am:
13110           add ext dir for plugins
13111           add vorbisdec test conditionally
13112         * check/elements/volume.c: (setup_volume), (cleanup_volume),
13113         (GST_START_TEST), (volume_suite):
13114           add a test with wrong caps
13115         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13116         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13117           add a vorbisdec test
13118         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13119         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13120           clean up debug output
13121         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13122           yay, fix a segfault/security issue in vorbisdec
13123           gst-launch fakesrc ! vorbisdec wasn't happy
13124         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13125         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13126         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13127         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13128         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13129         (gst_vorbisenc_set_metadata), (get_constraints_string),
13130         (update_start_message), (gst_vorbisenc_setup),
13131         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13132         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13133         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13134         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13135         * ext/vorbis/vorbisenc.h:
13136           march in line
13137         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13138         (gst_ffmpegcsp_transform):
13139           have the kow come home
13140         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13141           debug my func ptr
13142         * gst/volume/gstvolume.c: (volume_set_caps):
13143           add a debug
13144
13145 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13146
13147         * Makefile.am:
13148         * check/.cvsignore:
13149         * check/Makefile.am:
13150         * check/elements/.cvsignore:
13151         * check/elements/volume.c: (chain_func), (event_func),
13152         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13153         (main):
13154         * configure.ac:
13155           add unit test structure for gst-plugins-base
13156           add a test for volume
13157         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13158         (gst_volume_set_volume), (gst_volume_get_volume),
13159         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13160         (volume_funcfind), (volume_process_float), (volume_process_int16),
13161         (volume_set_caps), (volume_transform), (volume_update_mute),
13162         (volume_update_volume), (volume_set_property),
13163         (volume_get_property):
13164           document a little; use basetransform vmethod _set_caps
13165
13166 2005-08-19  Andy Wingo  <wingo@pobox.com>
13167
13168         * ext/alsa/gstalsamixertrack.h:
13169         * ext/alsa/gstalsamixertrack.c:
13170         * ext/alsa/gstalsamixeroptions.h:
13171         * ext/alsa/gstalsamixeroptions.c:
13172         * ext/alsa/gstalsamixer.h:
13173         * ext/alsa/gstalsamixer.c: Port to 0.9.
13174
13175         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13176         Remove gstalsa.c and alsaclock. No more cruft here.
13177         
13178 2005-08-18  Wim Taymans  <wim@fluendo.com>
13179
13180         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13181         (gst_base_rtp_depayload_chain),
13182         (gst_base_rtp_depayload_add_to_queue),
13183         (gst_base_rtp_depayload_push),
13184         (gst_base_rtp_depayload_queue_release):
13185         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13186         Fix for RTPBuffer changes.
13187
13188         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13189         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13190         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13191         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13192         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13193         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13194         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13195         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13196         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13197         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13198         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13199         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13200         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13201         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13202         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13203         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13204         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13205         (gst_rtpbuffer_get_payload):
13206         * gst-libs/gst/rtp/gstrtpbuffer.h:
13207         Don't subclass GstBuffer but add methods and helper functions
13208         to construct and manipulate RTP packets in regular GstBuffers.
13209
13210 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
13211
13212         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13213           moved statement below switch
13214         * gst/volume/gstvolume.c: (gst_volume_class_init):
13215           added debug ptr
13216
13217 2005-08-16  Wim Taymans  <wim@fluendo.com>
13218
13219         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13220         (gst_base_audio_src_change_state):
13221         Open and close device in READY<->NULL state change.
13222
13223 2005-08-16  Andy Wingo  <wingo@pobox.com>
13224
13225         * examples/seeking/Makefile.am: Don't compile non-compiling
13226         compiled objects with the compiler.
13227
13228         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13229         elements.
13230
13231 2005-08-12  Philippe Khalaf <burger@speedy.org>
13232         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13233         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13234           Made a thread to release the queue.
13235           Removed timestamp conversion for now.
13236
13237 2005-08-10  Philippe Khalaf <burger@speedy.org>
13238         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13239         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13240           Added rtp timestamp -> gst timestamp conversion.
13241           Fixed several problems with queue.
13242
13243 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13244
13245         * gst-libs/gst/audio/gstaudioclock.h:
13246         * gst-libs/gst/audio/gstaudiofilter.h:
13247         * gst-libs/gst/audio/gstaudiosink.h:
13248         * gst-libs/gst/audio/gstaudiosrc.h:
13249         * gst-libs/gst/audio/gstbaseaudiosink.h:
13250         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13251         * gst-libs/gst/audio/gstringbuffer.h:
13252         * gst-libs/gst/net/gstnetbuffer.h:
13253         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13254         * gst-libs/gst/rtp/gstrtpbuffer.h:
13255           Add padding (you will need to rebuild gst-plugins-base,
13256           gst-plugins and all applications afterwards!)
13257
13258 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13259
13260         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13261         (gst_riff_parse_chunk):
13262           Fix bug in debug message and add some more debug messages.
13263
13264 2005-08-08  Edward Hervey  <edward@fluendo.com>
13265
13266         * gst-libs/gst/riff/riff-media.c:
13267         backported updates since branch
13268
13269 2005-08-08  Andy Wingo  <wingo@pobox.com>
13270
13271         * gst-libs/gst/audio/gstbaseaudiosink.c
13272         (gst_base_audio_sink_change_state): Open the device in NULL->READY
13273         like good elements should. Close on READY->NULL too.
13274
13275         * gst-libs/gst/audio/gstaudiosink.c
13276         (gst_audioringbuffer_open_device,
13277         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13278         (gst_audioringbuffer_release): Updates for new ring buffer API,
13279         hook into the new audio sink api.
13280
13281         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13282         (GstAudioSinkClass.close): Just open and close the device -- no
13283         resource allocation or configuration.
13284         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13285         vmethods, handle device setup and resource allocation.
13286
13287         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13288         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13289         base class API.
13290
13291         * gst-libs/gst/audio/gstringbuffer.h
13292         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13293         New vmethods.
13294
13295         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13296         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13297         New API functions. The device should be opened before acquiring
13298         and closed after releasing.
13299
13300 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
13301
13302         * gst-libs/gst/interfaces/mixer.h:
13303           Reset padding to GST_PADDING.
13304
13305 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13306
13307         * gst/playback/gstplaybin.c: (remove_sinks):
13308           Remove visualization from parent explicitely; works around some
13309           apparent refcount issue that I haven't tracked down yet.
13310
13311 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13312
13313         * ext/alsa/gstalsasink.c: (set_hwparams):
13314           Assign debug category, add negotiation debug msgs.
13315
13316 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13317
13318         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13319           Fix error code for file-not-found to NOT_FOUND.
13320
13321 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13322
13323         * common/gtk-doc-plugins.mak:
13324         * docs/plugins/Makefile.am:
13325         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13326         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13327           renamed to actual element names, so much nicer to look at
13328         * docs/plugins/tmpl/gstmultifdsink.sgml:
13329           remove
13330         * docs/plugins/tmpl/multifdsink.sgml:
13331         * docs/plugins/tmpl/tcpserversink.sgml:
13332           add
13333         * ext/alsa/gstalsa.c:
13334         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13335         * ext/ogg/gstoggmux.c:
13336         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13337         * gst/playback/gstdecodebin.c:
13338         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13339         * gst/tcp/gsttcpserversink.c:
13340           various fixes and documentation additions
13341
13342 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13343
13344         * common/Makefile.am:
13345         * common/gstdoc-scangobj:
13346         * common/gtk-doc-plugins.mak:
13347         * common/gtk-doc.mak:
13348           add a custom scangobj that uses the registry
13349           add a custom gtk-doc-plugins.mak that uses it
13350           some doc build fixes
13351         * configure.ac:
13352         * docs/Makefile.am:
13353         * docs/plugins/Makefile.am:
13354         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13355         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13356         * docs/plugins/gst-plugins-base-plugins.types:
13357         * docs/plugins/tmpl/gstmultifdsink.sgml:
13358           add docs for one element, multifdsink
13359         * gst/adder/gstadder.h:
13360         * gst/volume/gstvolume.h:
13361           don't privatize enum
13362         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13363         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13364         (gst_sync_method_get_type), (gst_client_status_get_type),
13365         (gst_multifdsink_class_init),
13366         (gst_multifdsink_client_queue_buffer),
13367         (gst_multifdsink_handle_client_write):
13368         * gst/tcp/gstmultifdsink.h:
13369         * gst/tcp/gsttcp.h:
13370         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13371         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13372         (gst_tcpclientsink_render):
13373         * gst/tcp/gsttcpclientsink.h:
13374         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13375         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13376         (gst_tcpclientsrc_start):
13377         * gst/tcp/gsttcpclientsrc.h:
13378         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13379         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13380         * gst/tcp/gsttcpserversrc.h:
13381         * gst/typefind/gsttypefindfunctions.c:
13382           remove superfluous Type stuff
13383
13384 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13385
13386         * gst/playback/gstplaybin.c: (gen_video_element):
13387           Enable videoscale.
13388
13389 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13390
13391         * gst-libs/gst/gconf/gconf.c:
13392         * gst-libs/gst/gconf/gconf.h:
13393           Fix some Andy Problem [tm].
13394
13395 2005-08-04  Andy Wingo  <wingo@pobox.com>
13396
13397         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13398         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13399         (gst_ffmpegcsp_get_size): Adapt to API changes.
13400
13401         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13402         Implement an in-place do-nothing transform.
13403
13404 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13405
13406         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13407         (gst_ximagesink_renegotiate_size):
13408           Do not set new window sizes yet if we prepare a new buffer size
13409           for upstream renegotiation (software scaling) at some point in the
13410           future, because this new size waqs not actually accepted yet. Once
13411           accepted, renegotiation later on will set the new sizes just fine.
13412           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13413           embedding testcase.
13414
13415 2005-08-03  Andy Wingo  <wingo@pobox.com>
13416
13417         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13418         (gst_ximagesink_buffer_alloc): 
13419         Protect the height, width, and desired_caps with the pool_lock.
13420         Fixes videotestsrc ! queue ! ximagesink.
13421
13422 2005-08-02  Edward Hervey  <edward@fluendo.com>
13423
13424         * gst/volume/gstvolume.c:
13425         include left from controller cleanup
13426
13427 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
13428         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13429           Stop collectpads before calling the parent state
13430           change function on PAUSED->READY.
13431
13432 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
13433         * configure.ac:
13434           When testing for X libs, use the X CFlags 
13435         * gst/adder/gstadder.c: (gst_adder_change_state):
13436           Stop the collectpads before calling parent state change function
13437           on PAUSED->READY, otherwise we deadlock deactivating pads.
13438
13439 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
13440
13441         * configure.ac:
13442         * docs/libs/tmpl/gstcolorbalance.sgml:
13443         * docs/libs/tmpl/gstmixer.sgml:
13444         * examples/Makefile.am:
13445         * gst/sine/Makefile.am:
13446         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13447         (gst_sinesrc_set_property), (plugin_init):
13448         * gst/sine/gstsinesrc.h:
13449         * gst/volume/Makefile.am:
13450         * gst/volume/gstvolume.c: (gst_volume_set_volume),
13451         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13452         (volume_process_float), (volume_process_int16),
13453         (volume_set_property), (plugin_init):
13454         * gst/volume/gstvolume.h:
13455           deactivate and remove dparams (libgstcontrol)
13456
13457 2005-07-29  Wim Taymans  <wim@fluendo.com>
13458
13459         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13460         Convert me to BaseTransform!! help..
13461
13462 2005-07-29  Andy Wingo  <wingo@pobox.com>
13463
13464         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13465         sinks.
13466
13467         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13468         support of both endiannesses.
13469
13470 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13471
13472         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13473           Fix confusing debug message (s/event/query/)
13474
13475 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13476
13477         * gst/videotestsrc/videotestsrc.h:
13478           Use "_stdint.h" instead of <stdint.h>
13479
13480 2005-07-27  Wim Taymans  <wim@fluendo.com>
13481
13482         * ext/vorbis/Makefile.am:
13483         Revert wrong commit.
13484
13485 2005-07-27  Wim Taymans  <wim@fluendo.com>
13486
13487         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13488         More compilation fixen.
13489
13490 2005-07-27  Wim Taymans  <wim@fluendo.com>
13491
13492         * gst-libs/gst/audio/gstbaseaudiosink.c:
13493         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13494         (gst_base_audio_sink_create_ringbuffer),
13495         (gst_base_audio_sink_change_state):
13496         Fix compilation.
13497
13498 2005-07-27  Wim Taymans  <wim@fluendo.com>
13499
13500         * examples/seeking/seek.c: (setup_dynamic_link),
13501         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13502         (query_positions_elems), (query_positions_pads), (do_seek):
13503         Update seek example.
13504
13505         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13506         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13507         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13508         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13509         (gst_ogg_demux_handle_event),
13510         (gst_ogg_demux_deactivate_current_chain),
13511         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13512         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13513         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13514         (gst_ogg_demux_loop):
13515         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13516         * ext/theora/theoradec.c: (theora_dec_src_event),
13517         (theora_dec_src_getcaps), (theora_dec_sink_event),
13518         (theora_dec_push), (theora_dec_chain):
13519         * ext/vorbis/Makefile.am:
13520         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13521         (vorbis_dec_sink_event), (vorbis_dec_push),
13522         (vorbis_handle_data_packet):
13523         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13524         (gst_vorbisenc_chain):
13525         * gst/playback/gststreaminfo.c: (cb_probe):
13526         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13527         * gst/videorate/gstvideorate.c: (gst_videorate_event):
13528         * gst/videoscale/gstvideoscale.c:
13529         (gst_videoscale_handle_src_event):
13530         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13531         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13532         (gst_ximagesink_navigation_send_event):
13533         * sys/xvimage/xvimagesink.c:
13534         (gst_xvimagesink_navigation_send_event):
13535         Various event updates and cleanups
13536
13537 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13538
13539         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13540           Fix segfault for I420/YV12.
13541
13542 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13543
13544         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13545           Report bitrate.
13546
13547 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13548
13549         * gst/playback/gstplaybin.c: (gen_video_element),
13550         (gen_audio_element):
13551           Switch to auto*sink elements as default sinks; add volume element
13552           so that volume control in totem works.
13553
13554 2005-07-21  Wim Taymans  <wim@fluendo.com>
13555
13556         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13557         * gst/playback/gstplaybin.c: (setup_sinks),
13558         (gst_play_bin_change_state):
13559         Refcount fix and more comments.
13560
13561 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13562
13563         * sys/ximage/Makefile.am:
13564         * sys/ximage/ximage.c: (plugin_init):
13565         * sys/ximage/ximagesink.c:
13566         Prepare for adding ximagesrc, rename of plugin to ximage etc.
13567         
13568
13569 2005-07-21  Wim Taymans  <wim@fluendo.com>
13570
13571         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13572         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13573         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13574         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13575         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13576         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13577         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13578         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13579         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13580         Generate correct disconts for live chained oggs.
13581
13582         * gst-libs/gst/audio/gstbaseaudiosink.c:
13583         (gst_base_audio_sink_render),
13584         (gst_base_audio_sink_create_ringbuffer),
13585         (gst_base_audio_sink_change_state):
13586         Handle discont math correctly.
13587
13588         * gst/playback/gstplaybin.c: (add_sink):
13589         Some small debug cleanup.
13590
13591 2005-07-21  Wim Taymans  <wim@fluendo.com>
13592
13593         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13594         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13595         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13596         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13597         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13598         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13599         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13600         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13601         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13602         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13603         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13604         (gst_ogg_demux_change_state), (gst_ogg_print):
13605         Reorganize code to send the right disconts when in streaming
13606         mode.
13607
13608 2005-07-20  Andy Wingo  <wingo@pobox.com>
13609
13610         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13611         fix (?), fixes a seggie mcfalterson (#310894).
13612
13613 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13614
13615         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13616         (gst_ogg_mux_set_header_on_caps):
13617         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13618         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13619         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13620         * gst-libs/gst/audio/multichannel.c:
13621         (gst_audio_set_channel_positions),
13622         (gst_audio_set_structure_channel_positions_list):
13623         * gst/playback/gstdecodebin.c: (dynamic_create):
13624         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13625         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13626           Fixes for API changes in core.
13627
13628 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13629
13630         * gst/playback/gstplaybasebin.c: (fill_buffer):
13631           Use _new_custom() so we can set custom message types for buffering
13632           messages.
13633
13634 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13635
13636         * configure.ac:
13637         * gst-libs/gst/Makefile.am:
13638         * gst-libs/gst/gconf/.cvsignore:
13639         * gst-libs/gst/gconf/Makefile.am:
13640         * gst-libs/gst/gconf/test-gconf.c:
13641         * pkgconfig/Makefile.am:
13642         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13643         * pkgconfig/gstreamer-gconf.pc.in:
13644           Remove gconf stuff, use gconf elements instead from now on.
13645
13646 2005-07-20  Wim Taymans  <wim@fluendo.com>
13647
13648         * gst-libs/gst/audio/TODO:
13649         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13650         (gst_audio_clock_get_internal_time):
13651         * gst-libs/gst/audio/gstaudioclock.h:
13652         * gst-libs/gst/audio/gstbaseaudiosink.c:
13653         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13654         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13655         (gst_base_audio_sink_render),
13656         (gst_base_audio_sink_create_ringbuffer),
13657         (gst_base_audio_sink_change_state):
13658         Make sure the audio clock always returns an increasing value.
13659
13660 2005-07-19  Andy Wingo  <wingo@pobox.com>
13661
13662         * gst/videotestsrc/: Cleanups.
13663
13664 2005-07-19  Wim Taymans  <wim@fluendo.com>
13665
13666         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13667         Better debugging.
13668
13669 2005-07-19  Wim Taymans  <wim@fluendo.com>
13670
13671         * examples/seeking/seek.c: (make_dv_pipeline),
13672         (make_vorbis_theora_pipeline), (query_rates),
13673         (query_positions_elems), (query_positions_pads), (do_seek):
13674         Make correct DV pipeline.
13675
13676 2005-07-18  Andy Wingo  <wingo@pobox.com>
13677
13678         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13679         default. Also because it's the only thing that really works. (This
13680         is used in the GConf elements).
13681         Use AS_LIBTOOL_TAGS.
13682
13683 2005-07-18  Wim Taymans  <wim@fluendo.com>
13684
13685         * gst/playback/gstdecodebin.c: (remove_element_chain):
13686         * gst/playback/gstplaybin.c: (add_sink):
13687         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13688         (gst_stream_info_set_mute):
13689         * gst/playback/gststreamselector.c:
13690         (gst_stream_selector_get_linked_pad),
13691         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13692         More leak and compile fixes.
13693
13694 2005-07-18  Wim Taymans  <wim@fluendo.com>
13695
13696         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13697         (query_rates), (query_positions_elems), (query_positions_pads),
13698         (do_seek), (seek_cb), (stop_seek):
13699         Updated seek example. 
13700
13701         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13702         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13703         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13704         * gst/playback/gstplaybin.c: (add_sink):
13705         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13706         (gst_stream_info_set_mute):
13707         Some refcount leak fixes.
13708
13709 2005-07-16  Wim Taymans  <wim@fluendo.com>
13710
13711         * gst-libs/gst/audio/gstbaseaudiosink.c:
13712         (gst_base_audio_sink_render):
13713         Align samples even if we have roundoff errors in the 
13714         timestamp conversion.
13715
13716 2005-07-16  Wim Taymans  <wim@fluendo.com>
13717
13718         * docs/libs/tmpl/gstringbuffer.sgml:
13719         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13720         (query_rates), (query_positions_elems), (query_positions_pads),
13721         (update_scale), (do_seek):
13722         Updated seek example.
13723
13724         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13725         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13726         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13727         (gst_ogg_demux_loop):
13728         Push out correct discont values.
13729
13730         * ext/theora/theoradec.c: (theora_dec_src_convert),
13731         (theora_dec_sink_convert), (theora_dec_src_getcaps),
13732         (theora_dec_sink_event), (theora_handle_type_packet),
13733         (theora_handle_header_packet), (theora_dec_push),
13734         (theora_handle_data_packet), (theora_dec_chain),
13735         (theora_dec_change_state):
13736         Better timestamping.
13737
13738         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13739         (vorbis_dec_sink_event), (vorbis_dec_push),
13740         (vorbis_handle_data_packet), (vorbis_dec_chain):
13741         * ext/vorbis/vorbisdec.h:
13742         Better timestamping.
13743
13744         * gst-libs/gst/audio/gstbaseaudiosink.c:
13745         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13746         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13747         Handle syncing on timestamps instead of sample offsets. Make
13748         use of DISCONT values as described in design docs.
13749
13750         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13751         (gst_base_audio_src_get_time):
13752         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
13753         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
13754         (gst_ring_buffer_read):
13755         * gst-libs/gst/audio/gstringbuffer.h:
13756         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
13757         (gst_ximagesink_show_frame):
13758         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13759         Correcly convert buffer timestamp to stream time.
13760
13761 2005-07-16  Wim Taymans  <wim@fluendo.com>
13762
13763         * gst/audioconvert/gstaudioconvert.c:
13764         (gst_audio_convert_get_buffer):
13765         Timestamp buffers correctly.
13766
13767         * gst/playback/gstplaybin.c: (gen_video_element):
13768         Make internal fakesink silent.
13769
13770 2005-07-15  Wim Taymans  <wim@fluendo.com>
13771
13772         * gst/ffmpegcolorspace/Makefile.am:
13773         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13774         (gst_ffmpegcsp_caps_remove_format_info),
13775         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
13776         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
13777         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
13778         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
13779         Ported ffmpegcolorspace to basetransform.
13780
13781         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
13782         * gst/volume/gstvolume.c: (volume_transform):
13783         Ported to new API.
13784
13785 2005-07-14  Wim Taymans  <wim@fluendo.com>
13786
13787         * gst/videotestsrc/Makefile.am:
13788         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
13789         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
13790         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
13791         (gst_videotestsrc_init), (gst_videotestsrc_event),
13792         (gst_videotestsrc_create), (gst_videotestsrc_start),
13793         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
13794         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
13795         (gst_videotestsrc_get_property):
13796         * gst/videotestsrc/gstvideotestsrc.h:
13797         Make videotestsrc a pushsrc.
13798
13799 2005-07-14  Wim Taymans  <wim@fluendo.com>
13800
13801         * gst/tcp/gstfdset.c: (gst_fdset_free):
13802         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
13803         (gst_multifdsink_add), (gst_multifdsink_remove),
13804         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
13805         (gst_multifdsink_remove_client_link),
13806         (gst_multifdsink_client_queue_data),
13807         (gst_multifdsink_client_queue_caps),
13808         (gst_multifdsink_client_queue_buffer),
13809         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
13810         (gst_multifdsink_stop):
13811         * gst/tcp/gstmultifdsink.h:
13812         0.8 backporting.
13813
13814         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
13815         Also draw image when not from a pool.
13816
13817 2005-07-14  Wim Taymans  <wim@fluendo.com>
13818
13819         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
13820         (mute_stream), (silence_stream):
13821         Small debug additions.
13822
13823 2005-07-14  Wim Taymans  <wim@fluendo.com>
13824
13825         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
13826         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13827         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
13828         Better error recovery, ignore unconnected pads and
13829         non-fatal errors.
13830
13831 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13832
13833         * docs/libs/tmpl/gstaudio.sgml:
13834         * docs/libs/tmpl/gstcolorbalance.sgml:
13835         * docs/libs/tmpl/gstgconf.sgml:
13836         * docs/libs/tmpl/gstmixer.sgml:
13837         * docs/libs/tmpl/gstringbuffer.sgml:
13838         * docs/libs/tmpl/gsttuner.sgml:
13839         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13840         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
13841         (gst_tcpclientsrc_class_init):
13842         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
13843         (gst_tcpserversrc_class_init):
13844         * sys/v4l/gstv4lelement.c:
13845           more autistic cleanliness in functions/names/defines
13846
13847 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13848
13849         * configure.ac:
13850           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
13851           added manually to each Makefile.am so we are sure it goes
13852           *last* and doesn't add -L flags before linking in libs of our
13853           own, like, say, internal .la libs, that then accidentally pick
13854           up the installed copy.
13855         * docs/libs/Makefile.am:
13856         * ext/alsa/Makefile.am:
13857         * ext/cdparanoia/Makefile.am:
13858         * ext/gnomevfs/Makefile.am:
13859         * ext/libvisual/Makefile.am:
13860         * ext/ogg/Makefile.am:
13861         * ext/theora/Makefile.am:
13862         * ext/vorbis/Makefile.am:
13863         * gst-libs/gst/video/Makefile.am:
13864         * gst/adder/Makefile.am:
13865         * gst/audioconvert/Makefile.am:
13866         * gst/audiorate/Makefile.am:
13867         * gst/audioscale/Makefile.am:
13868         * gst/ffmpegcolorspace/Makefile.am:
13869         * gst/playback/Makefile.am:
13870         * gst/sine/Makefile.am:
13871         * gst/subparse/Makefile.am:
13872         * gst/tags/Makefile.am:
13873         * gst/tcp/Makefile.am:
13874         * gst/typefind/Makefile.am:
13875         * gst/videorate/Makefile.am:
13876         * gst/videoscale/Makefile.am:
13877         * gst/videotestsrc/Makefile.am:
13878         * gst/volume/Makefile.am:
13879         * sys/v4l/Makefile.am:
13880         * sys/ximage/Makefile.am:
13881         * sys/xvimage/Makefile.am:
13882           adapt properly to this change. This should make sure that
13883           plugins and libs properly link to the as-yet-uninstalled
13884           copies of stuff like libgstinterfaces and libgstvideo
13885
13886 2005-07-13  Andy Wingo  <wingo@pobox.com>
13887
13888         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
13889         (gst_v4lsrc_fixate): Fixate on format as well.
13890
13891         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
13892         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
13893         buffer points to it.
13894         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
13895         rather just doing X calls ourselves. Also fixes a memleak.
13896
13897 2005-07-12  Andy Wingo  <wingo@pobox.com>
13898
13899         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
13900         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
13901         (gst_v4lsrc_create): Re-add the copy-mode property, default to
13902         TRUE to avoid deadlocks if an element holds on to our buffers.
13903
13904 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13905
13906         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
13907         (gst_sinesrc_init), (gst_sinesrc_create),
13908         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
13909         (gst_sinesrc_start):
13910         * gst/sine/gstsinesrc.h:
13911           removing num-buffers property before moving it
13912
13913 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13914
13915         * configure.ac:
13916           use overridable ERROR_CFLAGS
13917         * docs/libs/gst-plugins-base-libs.types:
13918         * docs/libs/tmpl/gstringbuffer.sgml:
13919         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
13920         (gst_alsasink_class_init):
13921         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
13922         (gst_alsasrc_class_init):
13923         * gst-libs/gst/audio/audio.h:
13924         * gst-libs/gst/audio/gstaudioclock.h:
13925         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
13926         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
13927         (gst_audio_filter_link), (gst_audio_filter_init),
13928         (gst_audio_filter_chain), (gst_audio_filter_set_property),
13929         (gst_audio_filter_get_property),
13930         (gst_audio_filter_class_add_pad_templates):
13931         * gst-libs/gst/audio/gstaudiofilter.h:
13932         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13933         (gst_audio_filter_template_get_type),
13934         (gst_audio_filter_template_base_init),
13935         (gst_audio_filter_template_class_init),
13936         (gst_audio_filter_template_init),
13937         (gst_audio_filter_template_set_property),
13938         (gst_audio_filter_template_get_property), (plugin_init),
13939         (gst_audio_filter_template_setup),
13940         (gst_audio_filter_template_filter),
13941         (gst_audio_filter_template_filter_inplace):
13942         * gst-libs/gst/audio/gstaudiosink.c:
13943         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
13944         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
13945         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
13946         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
13947         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
13948         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
13949         * gst-libs/gst/audio/gstaudiosink.h:
13950         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
13951         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
13952         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
13953         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
13954         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
13955         (gst_audio_src_class_init), (gst_audio_src_init),
13956         (gst_audio_src_create_ringbuffer):
13957         * gst-libs/gst/audio/gstaudiosrc.h:
13958         * gst-libs/gst/audio/gstbaseaudiosink.c:
13959         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
13960         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13961         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
13962         (gst_base_audio_sink_set_property),
13963         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
13964         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
13965         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
13966         (gst_base_audio_sink_create_ringbuffer),
13967         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
13968         * gst-libs/gst/audio/gstbaseaudiosink.h:
13969         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13970         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
13971         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
13972         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
13973         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
13974         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
13975         (gst_base_audio_src_event), (gst_base_audio_src_create),
13976         (gst_base_audio_src_create_ringbuffer),
13977         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
13978         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13979         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
13980         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
13981         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
13982         (gst_ring_buffer_debug_spec_caps),
13983         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
13984         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
13985         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
13986         (gst_ring_buffer_start), (gst_ring_buffer_pause),
13987         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
13988         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
13989         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
13990         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
13991         (gst_ring_buffer_clear):
13992         * gst-libs/gst/audio/gstringbuffer.h:
13993         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
13994         (gst_video_sink_class_init), (gst_video_sink_get_type):
13995         * gst-libs/gst/video/videosink.h:
13996         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
13997         (gst_multifdsink_class_init),
13998         (gst_multifdsink_handle_client_write),
13999         (gst_multifdsink_change_state):
14000         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14001         (gst_tcpclientsink_setcaps):
14002         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14003         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14004         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14005         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14006         (gst_ximagesink_send_pending_navigation),
14007         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14008         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14009         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14010         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14011         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14012         (gst_xvimagesink_send_pending_navigation),
14013         (gst_xvimagesink_navigation_send_event),
14014         (gst_xvimagesink_set_xwindow_id),
14015         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14016         (gst_xvimagesink_get_type):
14017         more macro splitting
14018
14019 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14020
14021         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14022           plug a memleak, allows me to import 1479 albums in one go
14023           in jamboree
14024         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14025         (vorbis_handle_type_packet), (vorbis_dec_chain),
14026         (vorbis_dec_change_state):
14027           fix some format strings
14028
14029 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14030
14031         * docs/libs/tmpl/gstcolorbalance.sgml:
14032         * docs/libs/tmpl/gstmixer.sgml:
14033         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14034         (gst_alsasink_set_property), (gst_alsasink_get_property):
14035         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14036         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14037           add device property
14038
14039 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14040
14041         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14042         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14043         (audiocast_register_listener), (audiocast_thread_run),
14044         (gst_gnomevfssrc_send_additional_headers_callback),
14045         (gst_gnomevfssrc_received_headers_callback),
14046         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14047         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14048         (gst_gnomevfssrc_get_size):
14049           add/clean up debugging
14050         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14051           cleanups
14052
14053 2005-07-07  Andy Wingo  <wingo@pobox.com>
14054
14055         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14056         framerate. Need to get a handle on when exactly this function is
14057         called, tho.
14058
14059         * sys/v4l/v4lsrc_calls.h:
14060         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14061         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14062         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14063
14064         * sys/v4l/v4l_calls.h: Cast to V4lElement.
14065         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14066         v4lelements are sources.
14067
14068         * sys/v4l/gstv4lxoverlay.h:
14069         * sys/v4l/gstv4lxoverlay.c:
14070         * sys/v4l/gstv4ltuner.h:
14071         * sys/v4l/gstv4ltuner.c: Header loc fixen.
14072         
14073         * sys/v4l/gstv4lsrc.h:
14074         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14075         PushSrc/BaseSrc. Removed most sync-related properties, videorate
14076         or something should handle that. Made a live source.
14077
14078         * sys/v4l/gstv4lelement.h:
14079         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14080         signals. Some cleanups.
14081
14082         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14083
14084         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14085         stuff.
14086
14087         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14088         stuff.
14089
14090         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14091
14092 2005-07-07  Wim Taymans  <wim@fluendo.com>
14093
14094         * ext/theora/theoradec.c: (theora_get_query_types),
14095         (theora_dec_src_getcaps), (theora_dec_push):
14096         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14097         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14098         Remove deprecated/unused query types.
14099
14100 2005-07-06  Wim Taymans  <wim@fluendo.com>
14101
14102         * ext/alsa/Makefile.am:
14103         * ext/alsa/gstalsaplugin.c: (plugin_init):
14104         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14105         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14106         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14107         (gst_alsasrc_class_init), (gst_alsasrc_init),
14108         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14109         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14110         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14111         (gst_alsasrc_reset):
14112         * ext/alsa/gstalsasrc.h:
14113         * gst-libs/gst/audio/Makefile.am:
14114         * gst-libs/gst/audio/gstaudiosink.c:
14115         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14116         (gst_audioringbuffer_start):
14117         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14118         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14119         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14120         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14121         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14122         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14123         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14124         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14125         * gst-libs/gst/audio/gstaudiosrc.h:
14126         * gst-libs/gst/audio/gstbaseaudiosink.c:
14127         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14128         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14129         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14130         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14131         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14132         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14133         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14134         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14135         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14136         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14137         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14138         (gst_baseaudiosrc_change_state):
14139         * gst-libs/gst/audio/gstbaseaudiosrc.h:
14140         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14141         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14142         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14143         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14144         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14145         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14146         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14147         * gst-libs/gst/audio/gstringbuffer.h:
14148         Added audiosource base classes.
14149         Ported alsasrc, still very basic.
14150
14151 2005-07-06  Wim Taymans  <wim@fluendo.com>
14152
14153         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14154         (theora_dec_push), (theora_handle_data_packet):
14155         Prepare for better timestamp fix later.
14156
14157         * gst/audioconvert/gstaudioconvert.c:
14158         List most accurate caps first
14159
14160         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14161         Use proper pad task function.
14162
14163         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14164         (gst_xvimagesink_show_frame):
14165         Fix deadlock when alloc failed.
14166
14167 2005-07-05  Andy Wingo  <wingo@pobox.com>
14168
14169         * ext/gnomevfs/gstgnomevfssrc.c:
14170         * gst/sine/gstsinesrc.c:
14171         * gst/tcp/gsttcpserversrc.c:
14172         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14173
14174         * sys/v4l/: Port from 0.8.
14175
14176         * Many files: Null if we got it....
14177
14178 2005-07-05  Andy Wingo  <wingo@pobox.com>
14179
14180         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
14181         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14182         Signedness fixes.
14183
14184 2005-07-05  Wim Taymans  <wim@fluendo.com>
14185
14186         * configure.ac:
14187         * gst/tcp/Makefile.am:
14188         * gst/tcp/README:
14189         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14190         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14191         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14192         (is_sync_frame), (gst_multifdsink_handle_client_write),
14193         (gst_multifdsink_render), (gst_multifdsink_start),
14194         (gst_multifdsink_stop), (gst_multifdsink_change_state):
14195         * gst/tcp/gstmultifdsink.h:
14196         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14197         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14198         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14199         * gst/tcp/gsttcp.h:
14200         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14201         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14202         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14203         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14204         * gst/tcp/gsttcpclientsink.h:
14205         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14206         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14207         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14208         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14209         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14210         * gst/tcp/gsttcpclientsrc.h:
14211         * gst/tcp/gsttcpplugin.c: (plugin_init):
14212         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14213         * gst/tcp/gsttcpserversink.h:
14214         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14215         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14216         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14217         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14218         (gst_tcpserversrc_stop):
14219         * gst/tcp/gsttcpserversrc.h:
14220         * gst/tcp/gsttcpsink.c:
14221         * gst/tcp/gsttcpsink.h:
14222         * gst/tcp/gsttcpsrc.c:
14223         * gst/tcp/gsttcpsrc.h:
14224         Ported tcp plugins to 0.9. 
14225         
14226
14227 2005-07-05  Andy Wingo  <wingo@pobox.com>
14228
14229         * gst/playback/gstplaybasebin.c (fill_buffer):
14230         message_new_application fixen.
14231
14232         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14233         Style fix.
14234
14235 2005-07-04  Wim Taymans  <wim@fluendo.com>
14236
14237         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14238         Set caps on output buffer.
14239
14240 2005-07-04  Andy Wingo  <wingo@pobox.com>
14241
14242         * ext/gnomevfs/gstgnomevfssrc.c
14243         (gst_gnomevfssrc_received_headers_callback) 
14244         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14245         hopefully.
14246
14247         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14248         No refcount leakage.
14249
14250         * configure.ac: Enable -Werror.
14251         
14252         * ext/theora/theoradec.c (theora_dec_src_getcaps):
14253         * gst/audioconvert/bufferframesconvert.c
14254         (buffer_frames_convert_fixate):
14255         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14256         (gst_audio_convert_fixate):
14257         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14258         (gst_sinesrc_create): Fixate func changes.
14259         
14260         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14261         (gst_ximagesink_buffer_alloc): Unused var.
14262
14263 2005-07-01  Andy Wingo  <wingo@pobox.com>
14264
14265         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14266         getcaps to do explicit caps. Needs to be done in all decoders,
14267         possibly via a base class.
14268
14269         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14270
14271         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14272         caps on the sink pad, just rely on the pad template. Also, setting
14273         ANY caps on a pad is not valid because the caps are not fixed.
14274
14275         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14276         caps on the buffer, and get the width from the desired_caps if
14277         they're set.
14278         (gst_ximagesink_renegotiate_size): Implement via setting the
14279         desired_caps on the ximagesink.
14280         (gst_ximagesink_setcaps): Only reset the width of the player if it
14281         wasn't already set. Not sure if this is right.
14282         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14283
14284         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14285         that the user wants. NULL unless the window has been resized.
14286
14287         * gst/volume/gstvolume.c (volume_transform): Adapt to
14288         basetransform refcount changes.
14289         
14290 2005-07-01  Andy Wingo  <wingo@pobox.com>
14291
14292         * gst/videoscale/gstvideoscale.c:
14293         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14294         from BaseTransform, implements a transform_caps. Removed dead code
14295         including some PAR stuff that was never reached -- should probably
14296         be added back somehow.
14297
14298 2005-07-01  Andy Wingo  <wingo@pobox.com>
14299
14300         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14301         come later.
14302
14303 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14304
14305         * configure.ac:
14306         * docs/libs/Makefile.am:
14307         * docs/libs/gst-plugins-libs.types:
14308         * ext/alsa/Makefile.am:
14309         * ext/alsa/gstalsamixer.h:
14310         * ext/alsa/gstalsamixeroptions.h:
14311         * ext/alsa/gstalsamixertrack.h:
14312         * gst-libs/gst/Makefile.am:
14313         * gst-libs/gst/colorbalance/.cvsignore:
14314         * gst-libs/gst/colorbalance/Makefile.am:
14315         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14316         * gst-libs/gst/colorbalance/colorbalance.c:
14317         * gst-libs/gst/colorbalance/colorbalance.h:
14318         * gst-libs/gst/colorbalance/colorbalance.vcproj:
14319         * gst-libs/gst/colorbalance/colorbalancechannel.c:
14320         * gst-libs/gst/colorbalance/colorbalancechannel.h:
14321         * gst-libs/gst/interfaces/Makefile.am:
14322         * gst-libs/gst/interfaces/colorbalance.c:
14323         (gst_color_balance_class_init):
14324         * gst-libs/gst/interfaces/colorbalance.h:
14325         * gst-libs/gst/interfaces/interfaces-marshal.list:
14326         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14327         * gst-libs/gst/interfaces/mixer.h:
14328         * gst-libs/gst/interfaces/mixeroptions.h:
14329         * gst-libs/gst/interfaces/navigation.c:
14330         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14331         * gst-libs/gst/interfaces/tuner.h:
14332         * gst/volume/Makefile.am:
14333         * gst/volume/gstvolume.c:
14334         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14335         * sys/ximage/Makefile.am:
14336         * sys/ximage/ximagesink.c:
14337         * sys/xvimage/Makefile.am:
14338         * sys/xvimage/xvimagesink.c:
14339           fold in all interfaces into an interfaces dir, preserving CVS
14340           history
14341
14342 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14343
14344         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14345           Fix build after riff changes.
14346
14347 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14348
14349         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14350         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14351         (gst_riff_create_video_template_caps),
14352         (gst_riff_create_audio_template_caps),
14353         (gst_riff_create_iavs_template_caps):
14354         * gst-libs/gst/riff/riff-media.h:
14355         * gst-libs/gst/riff/riff-read.h:
14356         * gst-libs/gst/riff/riff.c: (gst_riff_init):
14357           Add gst_riff_init() to initialize the debug category, instead
14358           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14359
14360 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14361
14362         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14363           Oops, I shouldn't apply hacks.
14364
14365 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14366
14367         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14368           Remove pad_loop function which doesn't work.
14369
14370 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14371
14372         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14373           Send EOS when deactivating.
14374         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14375         (check_queue), (queue_threshold_reached), (queue_out_of_data),
14376         (gen_preroll_element), (probe_triggered), (mute_stream),
14377         (silence_stream), (new_decoded_pad), (setup_substreams),
14378         (set_active_source):
14379         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14380         (remove_sinks), (add_sink):
14381         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14382           Change for new probe API.
14383
14384 2005-06-29  Wim Taymans  <wim@fluendo.com>
14385
14386         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14387         * gst-libs/gst/audio/gstbaseaudiosink.c:
14388         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14389         (gst_baseaudiosink_change_state):
14390         * gst-libs/gst/audio/gstbaseaudiosink.h:
14391         * gst-libs/gst/audio/gstringbuffer.c:
14392         (gst_ringbuffer_set_callback):
14393         Fix compilation error.
14394         Ringbuffer starts out as not running.
14395         Free our clock in dispose.
14396         When releasing the ringbuffer we need to renegotiate so
14397         clear the pad caps.
14398
14399 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14400
14401         * autogen.sh:
14402         * configure.ac:
14403         * docs/Makefile.am:
14404         * docs/libs/Makefile.am:
14405         * docs/libs/gst-plugins-libs-docs.sgml:
14406         * docs/libs/gst-plugins-libs-sections.txt:
14407         * docs/libs/gst-plugins-libs.types:
14408         * docs/libs/tmpl/gstaudio.sgml:
14409         * docs/libs/tmpl/gstcolorbalance.sgml:
14410         * docs/libs/tmpl/gstringbuffer.sgml:
14411         * gst-libs/gst/audio/gstringbuffer.c:
14412         (gst_ringbuffer_set_callback):
14413           reinstate gtk-doc docs for plugin libs
14414
14415 2005-06-28  Wim Taymans  <wim@fluendo.com>
14416
14417         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14418         (gst_ogg_demux_init):
14419         Removed pad loop function.
14420
14421 2005-06-28  Wim Taymans  <wim@fluendo.com>
14422
14423         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14424         If we're building a chain we are not in an error case
14425         when we queue a buffer.
14426
14427 2005-06-28  Andy Wingo  <wingo@pobox.com>
14428
14429         * *.c: Don't cast to GstObject before reffing/unreffing.
14430
14431 2005-06-27  Andy Wingo  <wingo@pobox.com>
14432
14433         * gst/videotestsrc/gstvideotestsrc.c
14434         (gst_videotestsrc_activate_push): Activation API changes.
14435
14436         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
14437         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14438         they have refs on the decodebin.
14439
14440         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14441         parent class.
14442         (gst_ogg_pad_typefind): Don't leak a pad ref.
14443         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14444         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
14445         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14446
14447 2005-06-27  Edward Hervey  <edward@fluendo.com>
14448
14449         * ext/theora/theoradec.c: (theora_dec_change_state): 
14450         re-arranged call to parent's state change in order to avoid locks (or
14451         worse).
14452
14453 2005-06-26  Edward Hervey  <edward@fluendo.com>
14454
14455         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14456         2nd argument of 'unknow-type' signal is a GstCaps and not a
14457         GstMiniObject
14458
14459 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
14460         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14461           Set the worker thread's running flag to TRUE before starting the
14462           thread.
14463         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14464           Catch a failure to add typefind to the bin.
14465
14466 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14467
14468         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14469         (gst_sinesrc_init), (gst_sinesrc_create),
14470         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14471         (gst_sinesrc_start):
14472         * gst/sine/gstsinesrc.h:
14473           add num-buffers and timestamp-offset properties
14474         * gst/videotestsrc/gstvideotestsrc.c:
14475         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14476         (gst_videotestsrc_get_property):
14477           add timestamp-offset property
14478
14479 2005-06-23  Christian Schaller  <uraeus@gnome.org>
14480
14481         * configure.ac: add videorate
14482         * gst-plugins-base.spec.in: add videorate
14483
14484 2005-06-23  Wim Taymans  <wim@fluendo.com>
14485
14486         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14487         (gst_videorate_getcaps), (gst_videorate_setcaps),
14488         (gst_videorate_event), (gst_videorate_chain):
14489         Fixed videorate, fixating an already fixated caps is not
14490         an error.
14491
14492 2005-06-23  Wim Taymans  <wim@fluendo.com>
14493
14494         * ext/ogg/README:
14495         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14496         Buffer on caps is not boxed anymore.
14497
14498 2005-06-22  Wim Taymans  <wim@fluendo.com>
14499
14500         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14501         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14502         Set buffers on caps as miniobjects and not as boxed.
14503
14504 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14505
14506         * configure.ac:
14507           back to HEAD
14508
14509 === release 0.9.1 ===
14510
14511 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14512
14513         * .cvsignore:
14514         * NEWS:
14515         * README:
14516         * RELEASE:
14517         * configure.ac:
14518         * po/af.po:
14519         * po/az.po:
14520         * po/cs.po:
14521         * po/en_GB.po:
14522         * po/hu.po:
14523         * po/it.po:
14524         * po/nb.po:
14525         * po/nl.po:
14526         * po/or.po:
14527         * po/sq.po:
14528         * po/sr.po:
14529         * po/sv.po:
14530         * po/uk.po:
14531         * po/vi.po:
14532           updates for release
14533
14534 2005-06-09  Andy Wingo  <wingo@pobox.com>
14535
14536         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14537         
14538 2005-06-09  Andy Wingo  <wingo@pobox.com>
14539
14540         * configure.ac:
14541         * gst-libs/gst/Makefile.am:
14542         * gst-libs/gst/net/Makefile.am:
14543         Add gstnet to build.
14544
14545 2005-06-09  Andy Wingo  <wingo@pobox.com>
14546
14547         * gst-libs/gst/gconf/gconf.c:
14548         * gst/playback/test.c:
14549         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14550         fixes.
14551
14552         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14553
14554         * ext/theora/theoraenc.c (theora_enc_chain): 
14555         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14556
14557         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14558         RealPad.
14559
14560 2005-06-02  Wim Taymans  <wim@fluendo.com>
14561
14562         * gst-libs/gst/net/Makefile.am:
14563         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14564         * pkgconfig/gstreamer-libs.pc.in:
14565         Added net stuff, version net lib.
14566
14567 2005-06-02  Wim Taymans  <wim@fluendo.com>
14568
14569         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14570         (query_rates), (query_positions_elems), (query_positions_pads),
14571         (do_seek):
14572         Updated seek example.
14573
14574 2005-06-02  Andy Wingo  <wingo@pobox.com>
14575
14576         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14577         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14578         list.
14579
14580         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14581         remove the typefind, the bin dispose will do it for us. When it's
14582         removed and unreffed, the signal handler will be disconnected,
14583         too.
14584         (unlinked): It's too difficult to disconnect from unlinked
14585         handlers, as they are on pads not elements. Just punt if the pads
14586         aren't grandkids of the bin.
14587
14588 2005-06-02  Wim Taymans  <wim@fluendo.com>
14589
14590         * ext/ogg/README:
14591         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14592         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14593         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14594         * ext/theora/theoradec.c: (theora_dec_src_query),
14595         (theora_handle_data_packet):
14596         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14597         (theora_enc_chain):
14598         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14599         (vorbis_handle_data_packet):
14600         * gst/audioconvert/bufferframesconvert.c:
14601         (buffer_frames_convert_chain):
14602         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14603         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14604         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14605         (gst_ffmpegcsp_chain):
14606         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14607         (gst_videorate_getcaps), (gst_videorate_setcaps),
14608         (gst_videorate_event), (gst_videorate_chain):
14609         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14610         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14611         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14612         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14613         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14614         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14615         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14616         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14617         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14618         Cleanups and buffer alloc.
14619
14620 2005-05-31  Wim Taymans  <wim@fluendo.com>
14621
14622         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14623         Don't try to call the delay method when the device is not
14624         opened.
14625
14626 2005-05-31  Wim Taymans  <wim@fluendo.com>
14627
14628         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14629         Get actual segment size and buffer size after opening
14630         the device.
14631
14632 2005-05-30  Wim Taymans  <wim@fluendo.com>
14633
14634         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14635         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14636         Also FLUSH upstream, makes the loop function exit faster.
14637         
14638         * ext/theora/theoradec.c: (theora_dec_src_query):
14639         Some more debug info in the query.
14640         
14641         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14642         (gst_ximagesink_setcaps):
14643         Release lock on par error, better error reporting.
14644
14645 2005-05-26  Wim Taymans  <wim@fluendo.com>
14646
14647         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14648         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14649         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14650         Clear chains in READY
14651         Queue packets until the chain is activated.
14652
14653 2005-05-25  Wim Taymans  <wim@fluendo.com>
14654
14655         * gst-libs/gst/audio/gstaudiosink.c:
14656         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14657         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14658         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14659         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14660         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14661         (gst_audiosink_create_ringbuffer):
14662         * gst-libs/gst/audio/gstbaseaudiosink.c:
14663         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14664         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14665         (gst_baseaudiosink_set_property), (build_linear_format),
14666         (debug_spec_caps), (debug_spec_buffer),
14667         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14668         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14669         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14670         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14671         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14672         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14673         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14674         (gst_ringbuffer_play), (gst_ringbuffer_pause),
14675         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14676         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14677         (wait_segment), (gst_ringbuffer_commit),
14678         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14679         (gst_ringbuffer_clear):
14680         Various small cleanups.
14681
14682         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14683         (gst_audio_convert_change_state):
14684         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14685         No need to take the locks anymore.
14686
14687 2005-05-25  Wim Taymans  <wim@fluendo.com>
14688
14689         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14690         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14691         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14692         (type_found):
14693         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14694         (group_destroy), (group_commit), (queue_overrun),
14695         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14696         (mute_stream), (new_decoded_pad), (setup_substreams),
14697         (setup_source), (mute_group_type), (set_active_source),
14698         (gst_play_base_bin_change_state):
14699         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14700         (gen_video_element), (gen_text_element), (gen_audio_element),
14701         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14702         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14703         (gst_stream_info_dispose), (gst_stream_info_set_mute):
14704         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14705         Some playbin cleanups mostly refcounting sloppyness.
14706
14707 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14708
14709         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14710           Work with streaming input.
14711
14712 2005-05-25  Wim Taymans  <wim@fluendo.com>
14713
14714         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14715         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14716         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14717         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14718         No need to take the STREAM lock anymore.
14719
14720 2005-05-25  Wim Taymans  <wim@fluendo.com>
14721
14722         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14723         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14724         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14725         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14726         (gst_ogg_demux_sink_activate):
14727         * ext/theora/theoradec.c: (theora_dec_src_event),
14728         (theora_handle_comment_packet), (theora_dec_chain),
14729         (theora_dec_change_state):
14730         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14731         (vorbis_handle_data_packet), (vorbis_dec_chain),
14732         (vorbis_dec_change_state):
14733         Remove STREAM locks as they are taken in core now.
14734         Never set bogus granulepos on vorbis/theora.
14735         Fix leaks in theoradec tag parsing.
14736
14737 2005-05-25  Wim Taymans  <wim@fluendo.com>
14738
14739         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14740         Fix memleaks, GST_BUFFER_DATA() is not freed.
14741
14742 2005-05-25  Wim Taymans  <wim@fluendo.com>
14743
14744         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14745         Open non-blocking, set to blocking mode afterwards to avoid
14746         lockups when audio device is busy.
14747
14748 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14749
14750         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
14751           This can't be good.
14752
14753 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14754
14755         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
14756         (gst_audio_convert_chain), (gst_audio_convert_link_src),
14757         (gst_audio_convert_setcaps):
14758           Implement instant setup switching.
14759
14760 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14761
14762         * gst/playback/gstplaybasebin.c: (probe_triggered):
14763           Fix missing unlock.
14764         * gst/playback/gstplaybin.c: (add_sink):
14765           First add, then link (otherwise pad link fails).
14766
14767 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14768
14769         * examples/Makefile.am:
14770         fix buildbot (make distcheck)
14771
14772 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14773
14774         * gst/playback/gstplaybin.c: (gen_vis_element):
14775           Remove some wrong code. Doesn't work yet.
14776
14777 2005-05-19  Wim Taymans  <wim@fluendo.com>
14778
14779         * gst-libs/gst/net/Makefile.am:
14780         * gst-libs/gst/net/README:
14781         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
14782         (gst_netbuffer_class_init), (gst_netbuffer_init),
14783         (gst_netbuffer_finalize), (gst_netbuffer_copy),
14784         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
14785         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
14786         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
14787         * gst-libs/gst/net/gstnetbuffer.h:
14788         Added buffer subclass to store extra to/from addresses for
14789         network sources/sinks.
14790
14791 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14792
14793         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
14794           Don't lock an unassigned variable.
14795
14796 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14797
14798         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
14799           Increase buffer for video, decrease buffer for other media types.
14800         * gst/playback/gstplaybin.c: (gen_video_element),
14801         (gen_audio_element):
14802           Change names for debugging purposes.
14803
14804 2005-05-18  Wim Taymans  <wim@fluendo.com>
14805
14806         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14807         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14808         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14809         (gst_ffmpegcsp_chain):
14810         Enable buffer alloc passthrough if the source and dest
14811         formats are the same.
14812
14813 2005-05-17  Wim Taymans  <wim@fluendo.com>
14814
14815         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14816         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
14817         (gst_ogg_demux_chain_unlocked):
14818         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14819         (gst_audio_convert_caps_remove_format_info),
14820         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14821         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
14822         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14823         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14824         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
14825         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
14826         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
14827         (gst_ffmpegcsp_get_property):
14828         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14829         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14830         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14831         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
14832         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
14833         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14834         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
14835         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
14836         Leak fixes in oggdemux.
14837         Some cleanups in audioconvert.
14838         Make passthrough work along with buffer_alloc etc.
14839         Make buffer_alloc and buffer recycling actually work in
14840         xvimagesink.
14841
14842 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
14843
14844         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
14845           make the compiler happy
14846
14847 2005-05-17  Wim Taymans  <wim@fluendo.com>
14848
14849         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
14850         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
14851         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
14852         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
14853         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14854         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
14855         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
14856         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
14857         (gst_xvimagesink_set_xwindow_id):
14858         * sys/xvimage/xvimagesink.h:
14859         Port xvimagesink to new MiniObject.
14860
14861 2005-05-17  Wim Taymans  <wim@fluendo.com>
14862
14863         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
14864         (gst_audiofilter_chain):
14865         * gst-libs/gst/audio/gstaudiosink.c:
14866         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14867         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14868         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14869         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14870         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14871         (gst_audiosink_create_ringbuffer):
14872         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14873         (gst_audio_convert_caps_remove_format_info),
14874         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
14875         (gst_audio_convert_fixate), (gst_audio_convert_channels):
14876         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14877         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14878         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
14879         Fix passthrough in ffmpegcolorspace.
14880         Fix memset in audiosink on wrong memory.
14881
14882 2005-05-16  David Schleef  <ds@schleef.org>
14883
14884         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
14885         to GstMiniObject.
14886
14887 2005-05-16  David Schleef  <ds@schleef.org>
14888
14889         Port from GstData to GstMiniObject.
14890         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14891         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
14892         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
14893         (gst_ogg_mux_collected):
14894         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14895         * ext/theora/theoradec.c: (theora_handle_comment_packet),
14896         (theora_handle_data_packet):
14897         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14898         (theora_set_header_on_caps), (theora_enc_chain):
14899         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14900         (vorbis_handle_comment_packet):
14901         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14902         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
14903         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
14904         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
14905         * gst/audioconvert/gstaudioconvert.c:
14906         (gst_audio_convert_get_buffer):
14907         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14908         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14909         (mute_stream), (silence_stream):
14910         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
14911         * gst/volume/gstvolume.c: (volume_transform):
14912         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14913         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
14914         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
14915         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
14916         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
14917         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
14918         (gst_ximagesink_buffer_alloc):
14919         * sys/ximage/ximagesink.h:
14920
14921 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14922
14923         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14924         (fill_buffer), (check_queue), (queue_threshold_reached),
14925         (queue_out_of_data):
14926         * gst/playback/gstplaybasebin.h:
14927           Post buffer-fullness on the bus.
14928
14929 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14930
14931         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14932         (try_to_link_1):
14933         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14934         (group_commit), (probe_triggered), (setup_source),
14935         (gst_play_base_bin_change_state):
14936         * gst/playback/gstplaybasebin.h:
14937         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14938         (gst_play_bin_init), (remove_sinks), (setup_sinks),
14939         (gst_play_bin_change_state):
14940           Move setup_output_pads into a virtual function, remove
14941           group-switch (no longer needed) and redirect (handled by bus
14942           now) signals.
14943
14944 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14945
14946         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
14947         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
14948         (get_active_group), (get_building_group), (group_destroy),
14949         (group_commit), (check_queue), (queue_overrun),
14950         (queue_threshold_reached), (queue_out_of_data),
14951         (gen_preroll_element), (remove_groups), (unknown_type),
14952         (add_element_stream), (no_more_pads), (probe_triggered),
14953         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
14954         (setup_substreams), (setup_source), (finish_source),
14955         (prepare_output), (muted_group_change_state),
14956         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
14957         (gst_play_base_bin_change_state):
14958         * gst/playback/gstplaybasebin.h:
14959         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14960         (gst_play_bin_init), (gst_play_bin_set_property),
14961         (gen_video_element), (gen_text_element), (gen_audio_element),
14962         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
14963         (gst_play_bin_change_state):
14964         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
14965         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
14966         (stream_info_change_state), (gst_stream_info_set_mute),
14967         (gst_stream_info_get_property):
14968         * gst/playback/gststreaminfo.h:
14969         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
14970         (gst_stream_selector_get_linked_pad),
14971         (gst_stream_selector_getcaps),
14972         (gst_stream_selector_get_linked_pads),
14973         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
14974         * gst/playback/gststreamselector.h:
14975           Rough port of playbin. Needs some more work, but is mostly done,
14976           and uses a few locks in important places, which should make stuff
14977           like chain-switches clean. Still uses GST_STATE() in a few places,
14978           which isn't all that good an idea, subtitles/elements disabled
14979           because no elements to test with and thus probably broken, query
14980           and event handling moved to GstBin, internal thread removed
14981           alltogether because the pipeline does that for us now. Can play
14982           Ogg/Vorbis files. Haven't tested anything else yet.
14983
14984 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14985
14986         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
14987           Do no-more-pads (needed for autoplugging).
14988
14989 2005-05-10  Andy Wingo  <wingo@pobox.com>
14990
14991         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
14992         message to the bus with the tags. Still not sent downstream tho.
14993
14994         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
14995         get_parent.
14996         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
14997         avoid refcounting hassles.
14998
14999 2005-05-09  Andy Wingo  <wingo@pobox.com>
15000
15001         * gst/volume/Makefile.am:
15002         * gst/volume/demo.c
15003         * gst/volume/gstvolume.h
15004         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15005         basetransform. Probably need an audio filter base class.
15006
15007 2005-05-09  Wim Taymans  <wim@fluendo.com>
15008
15009         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15010         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15011         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15012         (gst_vorbisenc_chain):
15013         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15014         (gst_audio_convert_caps_remove_format_info),
15015         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15016         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15017         Make caps writable before writing to it.
15018         Fix negotiation in audioconvert some more.
15019
15020 2005-05-09  Wim Taymans  <wim@fluendo.com>
15021
15022         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15023         (gst_videorate_getcaps), (gst_videorate_setcaps),
15024         (gst_videorate_event), (gst_videorate_chain):
15025         Better negotiation.
15026
15027 2005-05-09  Wim Taymans  <wim@fluendo.com>
15028
15029         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15030         (gst_videorate_getcaps), (gst_videorate_setcaps),
15031         (gst_videorate_blank_data), (gst_videorate_init),
15032         (gst_videorate_event), (gst_videorate_chain),
15033         (gst_videorate_change_state):
15034         Port videorate, do a better job at negotiation while we're at
15035         it.
15036
15037 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
15038
15039         * configure.ac:
15040           Disable libvisual
15041
15042         * examples/Makefile.am:
15043         * gst-libs/gst/audio/Makefile.am:
15044         * gst-libs/gst/riff/Makefile.am:
15045         * gst-libs/gst/tag/Makefile.am:
15046         * gst-libs/gst/video/Makefile.am:
15047           Fixups for missing variables.
15048
15049 2005-05-09  Wim Taymans  <wim@fluendo.com>
15050
15051         * examples/seeking/seek.c: (make_theora_pipeline),
15052         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15053         (query_rates), (query_positions_elems), (query_positions_pads),
15054         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15055         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15056         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15057         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15058         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15059         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15060         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15061         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15062         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15063         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15064         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15065         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15066         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15067         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15068         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15069         (theora_dec_src_convert), (theora_dec_sink_convert),
15070         (theora_dec_src_query), (theora_dec_sink_query),
15071         (theora_dec_src_event), (theora_dec_sink_event),
15072         (theora_handle_comment_packet), (theora_handle_type_packet),
15073         (theora_handle_header_packet), (theora_handle_data_packet),
15074         (theora_dec_chain):
15075         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15076         (vorbis_dec_convert), (vorbis_dec_src_query),
15077         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15078         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15079         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15080         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15081         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15082         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15083         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15084         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15085         (gst_play_bin_query):
15086         * gst/playback/test3.c: (update_scale):
15087         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15088         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15089         * gst/subparse/gstsubparse.c: (gst_subparse_init):
15090         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15091         (gst_videotestsrc_src_query):
15092         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15093         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15094         (paint_hline_YUV9):
15095         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15096         Port to new query API.
15097         Updated seek.
15098         Cleanups in x[v]imagesink
15099
15100 2005-05-09  Andy Wingo  <wingo@pobox.com>
15101
15102         * ext/alsa/gstalsasink.h:
15103         * ext/gnomevfs/gstgnomevfssrc.c:
15104         (gst_gnomevfssrc_get_icy_metadata):
15105         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15106         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15107         * ext/theora/theoradec.c (theora_dec_src_query)
15108         (theora_dec_src_event, theora_dec_sink_event)
15109         (theora_handle_comment_packet, theora_handle_data_packet):
15110         * ext/theora/theoraenc.c (theora_enc_chain):
15111         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15112         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15113         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15114         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15115         (qt_type_find):
15116         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15117         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15118         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15119         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15120         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15121         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15122         (paint_setup_xBGR8888, paint_setup_RGBx8888)
15123         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15124         (paint_setup_RGB565, paint_setup_xRGB1555):
15125         * gst/videotestsrc/videotestsrc.h:
15126         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15127         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15128         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15129         GCC4 fixes.
15130         
15131         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15132         gst_pad_query_position. Fixes oggdemux.
15133
15134 2005-05-08  David Schleef  <ds@schleef.org>
15135
15136         * configure.ac: Require liboil.
15137         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15138         a few more.
15139         * gst/videotestsrc/videotestsrc.c:
15140         * gst/videotestsrc/videotestsrc.h:
15141
15142 2005-05-06  Wim Taymans  <wim@fluendo.com>
15143
15144         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15145         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15146         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15147         Well, unreffing a buffer right before pushing it is asking
15148         for trouble..
15149
15150 2005-05-06  Christian Schaller  <uraeus@gnome.org>
15151
15152         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15153
15154 2005-05-06  Wim Taymans  <wim@fluendo.com>
15155
15156         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15157         (gst_audio_convert_caps_remove_format_info),
15158         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15159         (gst_audio_convert_fixate), (gst_audio_convert_channels):
15160         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15161         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15162         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15163         * gst/sine/Makefile.am:
15164         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15165         (gst_sinesrc_class_init), (gst_sinesrc_init),
15166         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15167         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15168         (gst_sinesrc_update_freq):
15169         * gst/sine/gstsinesrc.h:
15170         * gst/tcp/gstmultifdsink.c:
15171         * sys/xvimage/xvimagesink.c:
15172         Fixed negotiation wrt _peer_get_caps()
15173         Some cleanups.
15174
15175
15176 2005-05-06  Wim Taymans  <wim@fluendo.com>
15177
15178         * gst-libs/gst/audio/gstaudiosink.c:
15179         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15180         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15181         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15182         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15183         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15184         (gst_audiosink_create_ringbuffer):
15185         * gst-libs/gst/audio/gstbaseaudiosink.c:
15186         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15187         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15188         (gst_baseaudiosink_set_property), (build_linear_format),
15189         (debug_spec_caps), (debug_spec_buffer),
15190         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15191         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15192         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15193         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15194         * gst-libs/gst/audio/gstbaseaudiosink.h:
15195         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15196         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15197         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15198         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15199         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15200         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15201         (wait_segment), (gst_ringbuffer_commit),
15202         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15203         (gst_ringbuffer_clear):
15204         * gst-libs/gst/audio/gstringbuffer.h:
15205         Make the base audiosink return an error when there is no
15206         audiobuffer negotiated.
15207
15208 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15209
15210         * ext/Makefile.am:
15211         Disable cdparanoia until someone ports it!
15212
15213 2005-05-06  Wim Taymans  <wim@fluendo.com>
15214
15215         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15216         (gst_ogg_demux_sink_activate):
15217         And revert after wingo's revert.. sigh..
15218
15219 2005-05-05  Andy Wingo  <wingo@pobox.com>
15220
15221         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15222         GObject.
15223         * configure.ac: Return audiorate and subparse from the ghetto.
15224         Re-enable -Wall -Werror.
15225         * gst/subparse/gstsubparse.c:
15226         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15227         or chain-based. Cleaned up a bit. Not tested.
15228         
15229 2005-05-05  Christian Schaller <christian@fluendo.com> 
15230
15231         * Makefile.am: remove stuff that is not building
15232         * configure.ac: remove stuff that is not building
15233         * examples/Makefile.am: remove stuff that is not building
15234         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15235         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15236         * sys/Makefile.am: remove stuff that is not building
15237         * testsuite/Makefile.am: remove stuff that is not building
15238
15239 2005-05-05  Andy Wingo  <wingo@pobox.com>
15240
15241         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15242         * gst-libs/gst/tag/gstvorbistag.c:
15243         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15244         * gst/adder/gstadder.h:
15245         * gst/audioconvert/gstchannelmix.c:
15246         (gst_audio_convert_fill_one_other):
15247         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15248         (gst_audiorate_init), (gst_audiorate_chain):
15249         * gst/playback/gstplaybasebin.c: (setup_source):
15250         * gst/playback/test3.c: (update_scale):
15251         Some GCC4 fixes
15252         
15253         * po/af.po:
15254         * po/az.po:
15255         * po/cs.po:
15256         * po/en_GB.po:
15257         * po/hu.po:
15258         * po/it.po:
15259         * po/nb.po:
15260         * po/nl.po:
15261         * po/or.po:
15262         * po/sq.po:
15263         * po/sr.po:
15264         * po/sv.po:
15265         * po/uk.po:
15266         * po/vi.po: Foo
15267
15268 2005-05-05  Wim Taymans  <wim@fluendo.com>
15269
15270         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15271         (gst_audio_convert_caps_remove_format_info),
15272         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15273         (gst_audio_convert_change_state), (gst_audio_convert_channels):
15274         * gst/videotestsrc/gstvideotestsrc.c:
15275         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15276         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15277         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15278         (gst_videotestsrc_init), (gst_videotestsrc_loop):
15279         Don't ignore _push() return values.
15280         Make sure no processing is done when shutting down.
15281         Videotestsrc pad activation fix.
15282
15283 2005-05-05  Wim Taymans  <wim@fluendo.com>
15284
15285         * gst/adder/Makefile.am:
15286         * gst/adder/gstadder.c: (gst_adder_setcaps),
15287         (gst_adder_class_init), (gst_adder_init),
15288         (gst_adder_request_new_pad), (gst_adder_collected),
15289         (gst_adder_change_state):
15290         * gst/adder/gstadder.h:
15291         Ported adder as an example of a mixer element using
15292         collect pads. Needs more negotiation work.
15293
15294 2005-05-05  Wim Taymans  <wim@fluendo.com>
15295
15296         * ext/theora/theoradec.c: (_inc_granulepos),
15297         (theora_dec_src_event), (theora_dec_sink_event),
15298         (theora_handle_comment_packet), (theora_handle_type_packet),
15299         (theora_handle_header_packet), (theora_handle_data_packet),
15300         (theora_dec_chain):
15301         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15302         (gst_theora_enc_init), (theora_enc_sink_setcaps),
15303         (theora_push_buffer), (theora_push_packet),
15304         (theora_enc_sink_event), (theora_enc_chain),
15305         (theora_enc_change_state), (theora_enc_set_property),
15306         (theora_enc_get_property):
15307         Added stream lock to decoder so that we can serialize
15308         the discont event.
15309         More theoraenc porting, recover from errors, do clean
15310         shutdown.
15311
15312 2005-05-05  Wim Taymans  <wim@fluendo.com>
15313
15314         * ext/ogg/Makefile.am:
15315         * ext/ogg/README:
15316         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15317         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15318         (gst_ogg_print):
15319         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15320         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15321         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15322         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15323         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15324         (gst_ogg_mux_change_state):
15325         Ported ogg muxer.
15326
15327 2005-05-05  Wim Taymans  <wim@fluendo.com>
15328
15329         * docs/design-audiosinks.txt:
15330         * gst-libs/gst/audio/TODO:
15331         * gst-libs/gst/audio/gstaudiosink.c:
15332         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15333         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15334         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15335         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15336         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15337         (gst_audiosink_create_ringbuffer):
15338         * gst-libs/gst/audio/gstbaseaudiosink.c:
15339         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15340         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15341         (gst_baseaudiosink_set_property), (build_linear_format),
15342         (debug_spec_caps), (debug_spec_buffer),
15343         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15344         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15345         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15346         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15347         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15348         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15349         (gst_ringbuffer_release), (gst_ringbuffer_play),
15350         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15351         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15352         (gst_ringbuffer_set_sample), (wait_segment),
15353         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15354         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15355         More work on the audiosink, mostly debugging and a race in
15356         shutdown.
15357
15358 2005-04-28  Wim Taymans  <wim@fluendo.com>
15359
15360         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15361         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15362         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15363         (vorbis_dec_src_query), (vorbis_dec_src_event),
15364         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15365         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15366         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15367         Don't crap out when seeking back to position 0.
15368
15369 2005-04-28  Wim Taymans  <wim@fluendo.com>
15370
15371         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15372         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15373         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15374         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15375         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15376         Make audio sink configurable, use alsasink as default.
15377
15378 2005-04-28  Wim Taymans  <wim@fluendo.com>
15379
15380         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15381         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15382         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15383         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15384         (vorbis_dec_change_state):
15385         * ext/vorbis/vorbisdec.h:
15386         Refactor, use STREAM_LOCK.
15387
15388 2005-04-28  Wim Taymans  <wim@fluendo.com>
15389
15390         * ext/theora/theoradec.c: (_inc_granulepos),
15391         (theora_dec_sink_event), (theora_handle_comment_packet),
15392         (theora_handle_type_packet), (theora_handle_header_packet),
15393         (theora_handle_data_packet), (theora_dec_chain),
15394         (theora_dec_change_state):
15395         Refactor a bit, use STREAM_LOCK.
15396
15397 2005-04-28  Wim Taymans  <wim@fluendo.com>
15398
15399         * ext/alsa/Makefile.am:
15400         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15401         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15402         (gst_alsa_link), (gst_alsa_close_audio):
15403         * ext/alsa/gstalsaplugin.c: (plugin_init):
15404         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15405         (gst_alsasink_dispose), (gst_alsasink_base_init),
15406         (gst_alsasink_class_init), (gst_alsasink_init),
15407         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15408         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15409         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15410         (gst_alsasink_reset):
15411         * ext/alsa/gstalsasink.h:
15412         Implement alsasink with simple open/write/close API. 
15413         Make alsa dir build by disabling compilation of code.
15414
15415 2005-04-28  Wim Taymans  <wim@fluendo.com>
15416
15417         * gst-libs/gst/audio/Makefile.am:
15418         * gst-libs/gst/audio/audio.h:
15419         * gst-libs/gst/audio/audioclock.c:
15420         * gst-libs/gst/audio/audioclock.h:
15421         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15422         (gst_audio_clock_class_init), (gst_audio_clock_init),
15423         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15424         * gst-libs/gst/audio/gstaudioclock.h:
15425         * gst-libs/gst/audio/gstaudiosink.c:
15426         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15427         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15428         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15429         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15430         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15431         (gst_audiosink_create_ringbuffer):
15432         * gst-libs/gst/audio/gstbaseaudiosink.c:
15433         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15434         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15435         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15436         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15437         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15438         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15439         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15440         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15441         * gst-libs/gst/audio/gstbaseaudiosink.h:
15442         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15443         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15444         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15445         (gst_ringbuffer_release), (gst_ringbuffer_play),
15446         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15447         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15448         (gst_ringbuffer_set_sample), (wait_segment),
15449         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15450         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15451         * gst-libs/gst/audio/gstringbuffer.h:
15452         Make ringbuffer faster and more simple by removing the locks
15453         in the playback thread.
15454         Add sample accurate playback based on buffer sample offsets.
15455         Make the baseaudiosink provide a clock.
15456         Parse caps in the base class.
15457         Correctly handle seeking, flushing and state changes.
15458
15459 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15460
15461         * configure.ac:
15462         * gst/audioconvert/Makefile.am:
15463         * gst/audioscale/Makefile.am:
15464           Fix part of the build.  Come on guys, autogen didn't even work :)
15465
15466 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15467
15468         * configure.ac:
15469         * gst-libs/gst/Makefile.am:
15470         * gst-libs/gst/media-info/.cvsignore:
15471         * gst-libs/gst/media-info/Makefile.am:
15472         * gst-libs/gst/media-info/README:
15473         * gst-libs/gst/media-info/media-info-priv.c:
15474         * gst-libs/gst/media-info/media-info-priv.h:
15475         * gst-libs/gst/media-info/media-info-test.c:
15476         * gst-libs/gst/media-info/media-info.c:
15477         * gst-libs/gst/media-info/media-info.h:
15478         * gst-libs/gst/media-info/media-info.vcproj:
15479         * pkgconfig/Makefile.am:
15480         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15481         * pkgconfig/gstreamer-media-info.pc.in:
15482           Remove media-info, which is also successed by playbin (see Totem
15483           implementation).
15484
15485 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15486
15487         * configure.ac:
15488         * examples/Makefile.am:
15489         * examples/gstplay/.cvsignore:
15490         * examples/gstplay/Makefile.am:
15491         * examples/gstplay/player.c:
15492         * gst-libs/gst/Makefile.am:
15493         * gst-libs/gst/play/.cvsignore:
15494         * gst-libs/gst/play/Makefile.am:
15495         * gst-libs/gst/play/play.c:
15496         * gst-libs/gst/play/play.h:
15497         * gst-libs/gst/play/play.vcproj:
15498         * pkgconfig/Makefile.am:
15499         * pkgconfig/gstreamer-play-uninstalled.pc.in:
15500         * pkgconfig/gstreamer-play.pc.in:
15501           Remove libgstplay, playbin is now the official successor.
15502
15503 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15504
15505         * configure.ac:
15506         * gst-libs/gst/Makefile.am:
15507         * gst-libs/gst/xwindowlistener/Makefile.am:
15508         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15509         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15510           Remove deprecated xwindowlistener (I've moved xwindowlistening
15511           in the v4l/v4l2 plugins over to serverside).
15512
15513 2005-04-25  David Schleef  <ds@schleef.org>
15514
15515         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15516         to examples/dynparams.  Examples do not belong interspersed with
15517         source code.
15518         * examples/dynparams/demo-dparams.c:
15519         * gst/sine/Makefile.am:
15520         * gst/sine/demo-dparams.c:
15521
15522 2005-04-25  David Schleef  <ds@schleef.org>
15523
15524         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15525         * gst-libs/gst/audio/Makefile.am:
15526         * gst-libs/gst/riff/Makefile.am:
15527         * gst-libs/gst/tag/Makefile.am:
15528         * gst-libs/gst/video/Makefile.am:
15529         * gst-libs/gst/xwindowlistener/Makefile.am:
15530
15531         Convert to 0.9 API, seems to work:
15532         * sys/ximage/Makefile.am:
15533         * sys/ximage/ximagesink.c:
15534
15535 2005-04-24  David Schleef  <ds@schleef.org>
15536
15537         Link plugins against libraries:
15538         * ext/alsa/Makefile.am:
15539         * gst/tcp/Makefile.am:
15540
15541         Remove asm code that should be in liboil
15542         * gst/videoscale/Makefile.am:
15543         * gst/videoscale/videoscale_x86_asm.s:
15544
15545         gettext wants these checked in:
15546         * po/af.po:
15547         * po/az.po:
15548         * po/cs.po:
15549         * po/en_GB.po:
15550         * po/hu.po:
15551         * po/it.po:
15552         * po/nb.po:
15553         * po/nl.po:
15554         * po/or.po:
15555         * po/sq.po:
15556         * po/sr.po:
15557         * po/sv.po:
15558         * po/uk.po:
15559         * po/vi.po:
15560
15561 2005-04-24  David Schleef  <ds@schleef.org>
15562
15563         Convert gst_main() to g_main_loop_run()
15564         * gst/playback/decodetest.c: (main):
15565         * gst/playback/test2.c: (main):
15566         * gst/playback/test3.c: (main):
15567         * gst/playback/test4.c: (main):
15568
15569         Link plugins against libraries:
15570         * ext/libvisual/Makefile.am:
15571         * sys/xvimage/Makefile.am:
15572
15573 2005-04-24  David Schleef  <ds@schleef.org>
15574
15575         * configure.ac: Remove idct and resample libs
15576         * gst-libs/gst/Makefile.am: same
15577
15578         Remove usage of gst_library_load():
15579         * ext/alsa/gstalsaplugin.c: (plugin_init):
15580         * ext/libvisual/visual.c: (plugin_init):
15581         * ext/ogg/gstogg.c: (plugin_init):
15582         * ext/theora/theora.c: (plugin_init):
15583         * ext/vorbis/vorbis.c: (plugin_init):
15584         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15585         * gst/audioscale/gstaudioscale.c:
15586         * gst/adder/gstadder.c: (plugin_init):
15587         * gst/audioconvert/plugin.c: (plugin_init):
15588         * sys/ximage/ximagesink.c: (plugin_init):
15589         * sys/xvimage/xvimagesink.c: (plugin_init):
15590         * gst/tcp/gsttcpplugin.c: (plugin_init):
15591
15592         Link plugins against libraries:
15593         * ext/ogg/Makefile.am:
15594         * ext/theora/Makefile.am:
15595         * ext/vorbis/Makefile.am:
15596         * gst/audioconvert/Makefile.am:
15597
15598         Create proper libraries:
15599         * gst-libs/gst/riff/Makefile.am:
15600         * gst-libs/gst/audio/Makefile.am:
15601         * gst-libs/gst/video/Makefile.am:
15602
15603         Move resample library to audioscale plugin directory:
15604         * gst-libs/gst/resample/Makefile.am:
15605         * gst-libs/gst/resample/README:
15606         * gst-libs/gst/resample/dtof.c:
15607         * gst-libs/gst/resample/dtos.c:
15608         * gst-libs/gst/resample/functable.c:
15609         * gst-libs/gst/resample/private.h:
15610         * gst-libs/gst/resample/resample.c:
15611         * gst-libs/gst/resample/resample.h:
15612         * gst-libs/gst/resample/resample.vcproj:
15613         * gst-libs/gst/resample/test.c:
15614         * gst/audioscale/Makefile.am:
15615         * gst/audioscale/README:
15616         * gst/audioscale/dtof.c:
15617         * gst/audioscale/dtos.c:
15618         * gst/audioscale/functable.c:
15619         * gst/audioscale/private.h:
15620         * gst/audioscale/resample.c:
15621         * gst/audioscale/resample.h:
15622         * gst/audioscale/test.c:
15623
15624         Move tagedit library to gst-libs:
15625         * gst-libs/gst/tag/Makefile.am:
15626         * gst-libs/gst/tag/gstid3tag.c:
15627         * gst-libs/gst/tag/gsttagediting.c:
15628         * gst-libs/gst/tag/gsttageditingprivate.h:
15629         * gst-libs/gst/tag/gstvorbistag.c:
15630         * gst/tags/Makefile.am:
15631         * gst/tags/gstid3tag.c:
15632         * gst/tags/gstvorbistag.c:
15633
15634         Fix for core changes:
15635         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15636         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15637         (gst_sinesrc_getrange):
15638
15639 2005-04-23  David Schleef  <ds@schleef.org>
15640
15641         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
15642         in gst-plugins in a long time, and properly belongs in liboil.
15643         * gst-libs/gst/idct/Makefile.am:
15644         * gst-libs/gst/idct/README:
15645         * gst-libs/gst/idct/dct.h:
15646         * gst-libs/gst/idct/doieee:
15647         * gst-libs/gst/idct/fastintidct.c:
15648         * gst-libs/gst/idct/floatidct.c:
15649         * gst-libs/gst/idct/idct.c:
15650         * gst-libs/gst/idct/idct.h:
15651         * gst-libs/gst/idct/idtc.vcproj:
15652         * gst-libs/gst/idct/ieeetest.c:
15653         * gst-libs/gst/idct/intidct.c:
15654
15655 2005-04-20  Wim Taymans  <wim@fluendo.com>
15656
15657         * docs/design-audiosinks.txt:
15658         * gst-libs/gst/audio/Makefile.am:
15659         * gst-libs/gst/audio/TODO:
15660         * gst-libs/gst/audio/gstaudiosink.c:
15661         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15662         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15663         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15664         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15665         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15666         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15667         (gst_audiosink_class_init), (gst_audiosink_init),
15668         (gst_audiosink_create_ringbuffer):
15669         * gst-libs/gst/audio/gstaudiosink.h:
15670         * gst-libs/gst/audio/gstbaseaudiosink.c:
15671         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15672         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15673         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15674         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15675         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15676         (gst_baseaudiosink_create_ringbuffer),
15677         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15678         * gst-libs/gst/audio/gstbaseaudiosink.h:
15679         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15680         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15681         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15682         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15683         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15684         (gst_ringbuffer_play), (gst_ringbuffer_pause),
15685         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15686         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15687         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15688         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15689         * gst-libs/gst/audio/gstringbuffer.h:
15690         An attempt at a set of audio base classes together with some
15691         design docs.
15692
15693 2005-04-20  Wim Taymans  <wim@fluendo.com>
15694
15695         * gst/audioconvert/Makefile.am:
15696         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15697         (gst_audio_convert_caps_remove_format_info),
15698         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15699         (gst_audio_convert_channels):
15700         Link against audio libs.
15701         Fix audio convert plugin.
15702
15703 2005-04-20  Wim Taymans  <wim@fluendo.com>
15704
15705         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15706         (gst_ogg_demux_sink_activate):
15707         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15708         (theora_set_header_on_caps), (theora_enc_sink_event),
15709         (theora_enc_chain):
15710         Fix theora encoder.
15711
15712 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15713
15714         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15715         * gst/playback/gstdecodebin.c: (find_compatibles):
15716           Work with staticpadtemplates in elementfactories.
15717
15718 2005-04-12  Wim Taymans  <wim@fluendo.com>
15719
15720         * gst/playback/README:
15721         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15722         (compare_ranks), (print_feature), (gst_decode_bin_init),
15723         (dynamic_create), (dynamic_free), (find_compatibles),
15724         (mimetype_is_raw), (close_pad_link), (got_redirect),
15725         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15726         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15727         (gst_decode_bin_change_state):
15728         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15729         (gst_play_base_bin_init), (group_destroy), (group_commit),
15730         (check_queue), (queue_overrun), (queue_threshold_reached),
15731         (queue_out_of_data), (gen_preroll_element), (unknown_type),
15732         (new_decoded_pad), (setup_subtitle), (gen_source_element),
15733         (got_redirect), (setup_source), (play_base_eos),
15734         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15735         (gst_play_base_bin_remove_element):
15736         * gst/playback/gstplaybasebin.h:
15737         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15738         (gst_play_bin_init), (gst_play_bin_dispose),
15739         (gst_play_bin_set_property), (gen_video_element),
15740         (gen_text_element), (gen_audio_element), (remove_sinks),
15741         (gst_play_bin_send_event):
15742         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15743         (stream_info_change_state), (gst_stream_info_set_mute):
15744         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15745         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15746         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
15747         (gst_stream_selector_chain):
15748         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15749         (main):
15750         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
15751         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
15752         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15753         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
15754         Raw and crude port of decodebin. 
15755         Make playbin compile.
15756
15757 2005-04-06  Wim Taymans  <wim@fluendo.com>
15758
15759         * ext/gnomevfs/Makefile.am:
15760         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15761         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15762         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15763         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
15764         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
15765         (gst_gnomevfssrc_stop):
15766         * ext/ogg/Makefile.am:
15767         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
15768         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
15769         * ext/theora/Makefile.am:
15770         * ext/theora/theoradec.c: (_inc_granulepos),
15771         (theora_dec_sink_event), (theora_dec_chain):
15772         * ext/vorbis/Makefile.am:
15773         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15774         (vorbis_dec_sink_event), (vorbis_dec_chain):
15775         * gst-libs/gst/audio/Makefile.am:
15776         * sys/xvimage/Makefile.am:
15777         Make gnomevfssrc extend the source base class.
15778         Fix linking against libs in various plugins.
15779
15780 2005-04-06  Andy Wingo  <wingo@pobox.com>
15781
15782         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
15783         GST_BASE_LIBS.
15784
15785         * configure.ac: Add check and AC_SUBST for libgstbase.
15786
15787 2005-03-31  Wim Taymans  <wim@fluendo.com>
15788
15789         * examples/seeking/Makefile.am:
15790         * examples/seeking/cdparanoia.c: (main):
15791         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
15792         (play_cb), (pause_cb), (stop_cb), (main):
15793         * examples/seeking/playbin.c:
15794         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
15795         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
15796         (make_sid_pipeline), (make_vorbis_pipeline),
15797         (make_theora_pipeline), (make_vorbis_theora_pipeline),
15798         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15799         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
15800         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
15801         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
15802         (stop_cb), (main):
15803         * examples/seeking/spider_seek.c:
15804         * examples/seeking/vorbisfile.c:
15805         * ext/gnomevfs/Makefile.am:
15806         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
15807         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
15808         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15809         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
15810         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
15811         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
15812         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
15813         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
15814         * ext/ogg/README:
15815         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
15816         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
15817         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
15818         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
15819         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
15820         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
15821         (gst_ogg_pad_event), (gst_ogg_pad_reset),
15822         (gst_ogg_demux_factory_filter), (compare_ranks),
15823         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
15824         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
15825         (gst_ogg_chain_new), (gst_ogg_chain_free),
15826         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
15827         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
15828         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
15829         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
15830         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
15831         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
15832         (gst_ogg_demux_get_prev_page),
15833         (gst_ogg_demux_deactivate_current_chain),
15834         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
15835         (gst_ogg_demux_bisect_forward_serialno),
15836         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
15837         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
15838         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
15839         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
15840         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
15841         (gst_ogg_demux_change_state), (gst_ogg_print):
15842         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
15843         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
15844         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
15845         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
15846         (gst_ogg_mux_loop):
15847         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15848         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15849         (theora_dec_src_convert), (theora_dec_sink_convert),
15850         (theora_dec_src_query), (theora_dec_src_event),
15851         (theora_dec_sink_event), (theora_dec_chain),
15852         (theora_dec_change_state):
15853         * ext/theora/theoraenc.c: (gst_theora_enc_init),
15854         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
15855         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
15856         (theora_enc_change_state):
15857         * ext/vorbis/Makefile.am:
15858         * ext/vorbis/oggvorbisenc.c:
15859         * ext/vorbis/oggvorbisenc.h:
15860         * ext/vorbis/vorbis.c: (plugin_init):
15861         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15862         (vorbis_dec_src_query), (vorbis_dec_src_event),
15863         (vorbis_dec_sink_event), (vorbis_dec_chain),
15864         (vorbis_dec_change_state):
15865         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
15866         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
15867         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
15868         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
15869         (gst_vorbisenc_change_state):
15870         * ext/vorbis/vorbisenc.h:
15871         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
15872         * gst-libs/gst/audio/audioclock.c:
15873         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15874         (gst_audiofilter_init), (gst_audiofilter_chain):
15875         * gst-libs/gst/audio/testchannels.c: (main):
15876         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15877         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
15878         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
15879         (gmip_find_track_streaminfo), (gmip_find_track_format):
15880         * gst-libs/gst/media-info/media-info.c:
15881         (gst_media_info_read_idler):
15882         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
15883         (gst_play_get_all_by_interface):
15884         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
15885         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
15886         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
15887         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
15888         (gst_riff_parse_info):
15889         * gst-libs/gst/riff/riff-read.h:
15890         * gst-libs/gst/riff/riff.c: (plugin_init):
15891         * gst-libs/gst/video/Makefile.am:
15892         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
15893         (gst_videosink_class_init), (gst_videosink_get_type):
15894         * gst-libs/gst/video/videosink.h:
15895         * gst/audioconvert/bufferframesconvert.c:
15896         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
15897         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
15898         * gst/audioconvert/channelmixtest.c: (main):
15899         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15900         (gst_audio_convert_chain),
15901         (gst_audio_convert_caps_remove_format_info),
15902         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
15903         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
15904         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
15905         (gst_audio_convert_buffer_to_default_format),
15906         (gst_audio_convert_buffer_from_default_format),
15907         (gst_audio_convert_channels):
15908         * gst/audioconvert/gstchannelmix.h:
15909         * gst/ffmpegcolorspace/avcodec.h:
15910         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15911         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
15912         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
15913         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
15914         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
15915         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
15916         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15917         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
15918         (mpeg_video_type_find), (mpeg_video_stream_type_find),
15919         (dv_type_find):
15920         * gst/videotestsrc/gstvideotestsrc.c:
15921         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
15922         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
15923         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
15924         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
15925         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
15926         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
15927         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
15928         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
15929         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
15930         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
15931         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
15932         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15933         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15934         (gst_xvimagesink_navigation_send_event),
15935         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
15936         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
15937         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15938         * sys/xvimage/xvimagesink.h:
15939         Plugin port to 0.9, ogg/theora playback should work in the seek
15940         example now.
15941         Removed old examples.
15942         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
15943         explained in 0.9 TODO doc.
15944
15945
15946 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15947
15948         * autogen.sh:
15949         * configure.ac:
15950         * ext/Makefile.am:
15951         * gst/Makefile.am:
15952         * po/POTFILES.in:
15953         * po/af.po:
15954         * po/az.po:
15955         * po/cs.po:
15956         * po/en_GB.po:
15957         * po/hu.po:
15958         * po/it.po:
15959         * po/nb.po:
15960         * po/nl.po:
15961         * po/or.po:
15962         * po/sq.po:
15963         * po/sr.po:
15964         * po/sv.po:
15965         * po/uk.po:
15966         * po/vi.po:
15967         * sys/Makefile.am:
15968         * testsuite/Makefile.am:
15969           remove a whole bunch of plugins.  This module now contains a set
15970           of free reference plugins/elements as agreed.
15971
15972 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15973
15974         * configure.ac:
15975           hunting season on 0.9 is now OPEN
15976
15977 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15978
15979         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
15980           Kick the hell out of gcc for not warning me about a symbol conflict.
15981
15982 2005-02-22  Luca Ognibene  <luogni@tin.it>
15983
15984         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15985
15986         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
15987           Don't leak caps string (fixes #168134)
15988
15989         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
15990         (gst_jpegenc_init), (gst_jpegenc_finalize),
15991         (gst_jpegenc_change_state):
15992           Don't leak line buffers and context struct (fixes #168133).
15993
15994 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
15995
15996         * configure.ac:
15997         * ext/dirac/gstdiracdec.cc:
15998         (gst_diracdec_chain):
15999           Since dirac 0.5.0 the framerate in dirac is expressed as a
16000           rational number. Fix build and up requirement to 0.5.0, and
16001           also pass parameters to gst_diracdec_link in the right order
16002           (fixes #167959).
16003
16004 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
16005
16006         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16007         * ext/faad/gstfaad.h:
16008         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
16009         certain invalid muxed streams, where some packets will contain 
16010         junk after decoder data. Partially fixes #149158.
16011
16012 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
16013         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16014           Make sure we only write to writable buffers
16015
16016 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
16017
16018         * gst-libs/gst/riff/riff-media.c:
16019         (gst_riff_create_audio_caps_with_data):
16020           Do actually fix invalid RIFF fmt header values for alaw
16021           and mulaw audio instead of just saying so.
16022
16023         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16024           Give gst_riff_create_audio_caps_with_data() a chance to
16025           fix up broken format header fields before extracting any
16026           parameters from the header. (fixes #167633)
16027
16028 2005-02-19  Martin Holters  <martin.holters@gmx.de>
16029
16030         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16031
16032         * gst/audioconvert/bufferframesconvert.c:
16033         (buffer_frames_convert_link):
16034           Don't leak othercaps. (fixes #167878)
16035
16036 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
16037
16038         * configure.ac:
16039         * ext/libvisual/visual.c: (gst_visual_srclink),
16040         (gst_visual_change_state):
16041           Support libvisual 0.2.0.
16042
16043 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
16044
16045         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16046         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16047           Use same rowstrides for I420 as used everywhere else.
16048
16049 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
16050
16051         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16052           Declare variables at beginning of block and make gcc-2.95 happy
16053           (fixes # 167482, patch by Gergely Nagy).
16054           
16055         * gst/tcp/gsttcpclientsrc.c:
16056         * gst/tcp/gsttcpclientsrc.h:
16057           Move some includes into the header, so that struct sockaddr_in is
16058           defined when it should be defined on FreeBSD as well (fixes
16059           #167483).
16060           
16061         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16062           Don't pass uninitialised values to setsockopt() here either.
16063
16064 2005-02-17  Luca Ognibene  <luogni at tin dot it>
16065
16066         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16067
16068         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16069           Don't pass uninitialised values to setsockopt(). (fixes #167704)
16070
16071 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16072
16073         * gst/playback/gstplaybin.c: (add_sink):
16074           Invert bin_add/link order to workaround deadlock in opt.
16075
16076 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16077
16078         * gst/modplug/gstmodplug.cc:
16079           Add missing break causing position queries to fail.
16080
16081 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16082
16083         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16084           Granpos can apparently be -1, which screws up calculations...
16085
16086 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
16087
16088         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16089         (gst_ximagesink_send_pending_navigation),
16090         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16091         (gst_ximagesink_init):
16092         * sys/ximage/ximagesink.h:
16093         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16094         (gst_xvimagesink_send_pending_navigation),
16095         (gst_xvimagesink_navigation_send_event),
16096         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16097         * sys/xvimage/xvimagesink.h:
16098           Use a mutex protected list to marshal navigation
16099           events into the stream thread from whichever thread
16100           sends them.
16101
16102 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
16103
16104         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16105           Display current position and track length; misc. clean-ups.
16106           
16107         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16108         (speed_init), (speed_chain):
16109           Add query function, so that the stream length and current position
16110           get adjusted when queried (note that current position queries may
16111           still be wrong if the audio sink returns values based on buffer
16112           timestamps instead of passing on the query).
16113
16114 2005-02-13  Benjamin Otte  <otte@gnome.org>
16115
16116         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16117         (gst_audio_convert_channels):
16118           create channel conversion matrix when linking
16119         * gst/audioconvert/.cvsignore:
16120         * gst/audioconvert/Makefile.am:
16121         * gst/audioconvert/channelmixtest.c: (main):
16122           add (ugly) test that ensures stereo <=> mono conversion works
16123           correctly
16124
16125 2005-02-13  Benjamin Otte  <otte@gnome.org>
16126
16127         * gst/audioconvert/gstchannelmix.h:
16128           include missing header file
16129         * gst/audioconvert/gstchannelmix.c:
16130         (gst_audio_convert_fill_compatible):
16131           use same sign for both channels when converting to/from compatible
16132           channel. Previously used different signs made the signals cancel
16133           each other out and appear like silence. (fixes #167269)
16134
16135 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16136
16137         * gst/ffmpegcolorspace/avcodec.h:
16138         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16139         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16140         (gst_ffmpegcsp_avpicture_fill):
16141         * gst/ffmpegcolorspace/imgconvert.c:
16142           Convert to and from YV12 (fixes #156379).
16143
16144 2005-02-12  Julien MOUTTE  <julien@moutte.net>
16145
16146         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16147         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16148         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16149         (gst_ximagesink_expose), (gst_ximagesink_set_property),
16150         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16151         methods from chain and negotiation and vice versa (Fixes #166142).
16152         * sys/ximage/ximagesink.h: Add stream_lock.
16153         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16154         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16155         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16156         (gst_xvimagesink_expose): Check for xcontext before trying to link.
16157
16158 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
16159
16160         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16161           Don't send "Hey! You gave me a NULL pointer you naughty person" as
16162           error message when we can't open the DVD device (when dvdnav_open()
16163           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16164           the above). Send something more useful instead (fixes #167117).
16165
16166 2005-02-11  Julien MOUTTE  <julien@moutte.net>
16167
16168         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16169         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16170         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16171         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16172         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16173         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16174         methods from chain and negotiation and vice versa (Fixes #166142).
16175         Fix a possible bug of images in the buffer pool being discarded because
16176         we are looking at the wrong geometry.
16177         * sys/xvimage/xvimagesink.h: Add stream_lock.
16178
16179 2005-02-11  David Schleef  <ds@schleef.org>
16180
16181         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16182         unsigned int. (fixes #167128)
16183
16184 2005-02-11  David Schleef  <ds@schleef.org>
16185
16186         * gst/librfb/Makefile.am: Testing stuff before committing is
16187           for wimps... and people with fast machines.  Fix stupid
16188           mistake.
16189
16190 2005-02-11  David Schleef  <ds@schleef.org>
16191
16192         * configure.ac: Pull in librfb from my CVS tree, because it is
16193           too small and annoying to be separate.  Move rfbsrc plugin
16194           to gst/.
16195         * ext/Makefile.am:
16196         * ext/librfb/Makefile.am:
16197         * ext/librfb/gstrfbsrc.c:
16198         * gst/librfb/Makefile.am:
16199         * gst/librfb/gstrfbsrc.c:
16200         * gst/librfb/rfb.c:
16201         * gst/librfb/rfb.h:
16202         * gst/librfb/rfbbuffer.c:
16203         * gst/librfb/rfbbuffer.h:
16204         * gst/librfb/rfbbytestream.c:
16205         * gst/librfb/rfbbytestream.h:
16206         * gst/librfb/rfbcontext.h:
16207         * gst/librfb/rfbdecoder.c:
16208         * gst/librfb/rfbdecoder.h:
16209         * gst/librfb/rfbutil.h:
16210
16211 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
16212
16213         * gst/speed/Makefile.am:
16214         * gst/speed/demo-mp3.c: (main):
16215         * gst/speed/filter.func:
16216         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16217         (speed_class_init), (speed_init), (speed_chain_int16),
16218         (speed_chain_float32), (speed_chain), (speed_set_property),
16219         (speed_get_property), (speed_change_state):
16220         * gst/speed/gstspeed.h:
16221           Fix speed element and make it chain-based (fixes #156467),
16222           and make it handle more than one channel.
16223
16224 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
16225
16226         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16227         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16228         (gst_dtsdec_chain), (gst_dtsdec_change_state):
16229         * ext/dts/gstdtsdec.h:
16230           Don't clobber the stack constructing the channels array.
16231           Make the element chain-based. DTS tracks can now be played.
16232           
16233 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
16234
16235         * gst-libs/gst/audio/multichannel.h:
16236         * gst-libs/gst/gconf/gconf.h:
16237         * gst-libs/gst/idct/idct.h:
16238         * gst-libs/gst/media-info/media-info-priv.h:
16239         * gst-libs/gst/play/play.h:
16240         * gst-libs/gst/resample/private.h:
16241         * gst-libs/gst/resample/resample.h:
16242         * gst-libs/gst/riff/riff-ids.h:
16243         * gst-libs/gst/video/video.h:
16244         * gst-libs/gst/video/videosink.h:
16245           Add G_BEGIN_DECLS and G_END_DECLS around headers where
16246           missing, so that they work when included from C++ code.
16247
16248 2005-02-09  David Schleef  <ds@schleef.org>
16249
16250         * testsuite/gst-lint: Check for non-statically scoped
16251           parent_class variables.  This won't be a problem once
16252           plugins are loaded with RTLD_LOCAL.
16253
16254 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16255
16256         * ext/mplex/gstmplexibitstream.cc:
16257           gcc madness.
16258
16259 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16260
16261         * ext/ogg/gstogmparse.c:
16262         * gst/debug/gstnavigationtest.c:
16263           Die, thou faulty symbol pollutors (non-static parent_class).
16264
16265 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16266
16267         * ext/mplex/gstmplexibitstream.cc:
16268           Fix event handling (#165525).
16269
16270 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16271
16272         * ext/mikmod/gstmikmod.c:
16273         * gst/modplug/gstmodplug.cc:
16274           Add missing endianness to template (fixes #165509).
16275
16276 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16277
16278         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16279           Fix wrong order of reading of optional bytes (#165290).
16280
16281 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16282
16283         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16284           Implement FILLER event awareness.
16285
16286 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16287
16288         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16289           Fix track calculations (#166208).
16290
16291 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16292
16293         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16294
16295         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16296         * ext/libpng/gstpngenc.c:
16297           Fix byte-order, use proper fixed caps. Fixes #164197.
16298
16299 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16300
16301         * configure.ac:
16302           Add dvdlpcmdec 
16303
16304         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16305         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16306           Don't push buffers if the src pad isn't negotiated yet.
16307           
16308         * gst/audioconvert/gstaudioconvert.c:
16309         (gst_audio_convert_buffer_to_default_format),
16310         (gst_audio_convert_buffer_from_default_format):
16311           Add support for 24-bit width.
16312
16313         * gst/dvdlpcmdec/.cvsignore:
16314         * gst/dvdlpcmdec/Makefile.am:
16315         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16316         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16317         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16318         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16319         (plugin_init):
16320         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16321           New decoder for rearranging DVD LPCM into our audio/x-raw-int
16322           format. Needs support for the channels maps if someone can find 
16323           a DVD LPCM track with > 2 channels.
16324
16325         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16326         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16327         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16328         * gst/mpegstream/gstdvddemux.h:
16329         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16330         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16331         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16332         * gst/mpegstream/gstmpegdemux.h:
16333         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16334         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16335         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16336         (gst_mpeg_parse_handle_src_query),
16337         (gst_mpeg_parse_handle_src_event):
16338           Use audio/x-dvd-lpcm for LPCM output.
16339           Add DTS output.
16340
16341 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
16342
16343         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16344
16345         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16346         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16347           Add BGRA handling (#165736).
16348
16349 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
16350
16351         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16352
16353         * gst/law/alaw-decode.c: (alawdec_link):
16354         * gst/law/alaw-encode.c: (alawenc_link):
16355         * gst/law/mulaw-decode.c: (mulawdec_link):
16356         * gst/law/mulaw-encode.c: (mulawenc_link):
16357           Fix caps memleaks (#166600).
16358
16359 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
16360
16361         * ext/tarkin/mem.h:
16362         * ext/tarkin/wavelet.h:
16363         * ext/tarkin/yuv.h:
16364         * gst/ffmpegcolorspace/avcodec.h:
16365           Include "_stdint.h" instead of <stdint.h>. Fixes build on
16366           systems that don't have stdint.h, like Solaris9 (fixes #166631).
16367
16368 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16369
16370         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16371         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16372         (gst_xvimagesink_change_state):
16373           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16374           Xv video (and thereby regenerate Xv colourkey) in clear() so
16375           that PLAY -> READY -> PLAY works (fixes #162504).
16376
16377 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16378
16379         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16380           Switch to list instead of range, since MJPEG-devices really just
16381           support decimations, not any size.
16382
16383 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16384         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16385         (gst_mpeg2dec_reset), (free_all_buffers),
16386         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16387         * ext/mpeg2dec/gstmpeg2dec.h:
16388           The libmpeg2 user-allocated buffer management is awkward, 
16389           to say the least. Hopefully this fixes things.
16390
16391 2005-02-04  Andy Wingo  <wingo@pobox.com>
16392
16393         * gst/audioconvert/bufferframesconvert.c
16394         (buffer_frames_convert_fixate): New function, fixates to 256
16395         frames per buffer by default. (Much better than 1.)
16396         (buffer_frames_convert_init): Set the fixate function for both src
16397         and sink pad.
16398         (buffer_frames_convert_link): After success setting nonfixed caps,
16399         get the negotiated caps so we can know how many buffer-frames it
16400         will be. No idea how this worked at all before.
16401
16402 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16403
16404         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16405         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16406         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16407         (handle_sequence), (handle_picture):
16408         * ext/mpeg2dec/gstmpeg2dec.h:
16409           Rearrange buffer tracking and refcounting and refactor
16410           a little for readability. 
16411
16412 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
16413         * sys/v4l/gstv4l.c: (plugin_init):
16414         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16415         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16416         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16417         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16418         * sys/v4l/gstv4ljpegsrc.h:
16419         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16420         * sys/v4l/v4l_calls.h:
16421         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16422         (gst_v4lsrc_get_fps):
16423         * sys/v4l/v4lsrc_calls.h:
16424           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16425           you jpeg inside rgb frames" driver.
16426           Don't error in the v4lsrc link function, just return 
16427           REFUSED.
16428
16429 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16430
16431         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16432         (gst_qcamsrc_open):
16433           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16434
16435 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16436
16437         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16438           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16439
16440 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16441
16442         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16443           Reset negotiated state on PAUSED->READY.
16444
16445 2005-02-02  David Schleef  <ds@schleef.org>
16446
16447         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16448         whereever possible.  (Fixes #165997)
16449         * examples/capsfilter/capsfilter1.c: (main):
16450         * examples/dynparams/filter.c: (create_ui):
16451         * examples/seeking/cdparanoia.c: (get_track_info), (main):
16452         * examples/seeking/chained.c: (main):
16453         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16454         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16455         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16456         (make_mpeg_pipeline), (make_mpegnt_pipeline):
16457         * examples/seeking/spider_seek.c: (make_spider_pipeline):
16458         * examples/switch/switcher.c: (main):
16459         * ext/dv/demo-play.c: (main):
16460         * ext/faad/gstfaad.c: (gst_faad_change_state):
16461         * ext/mad/gstmad.c: (gst_mad_chain):
16462         * ext/smoothwave/demo-osssrc.c: (main):
16463         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16464         (gst_gconf_render_bin_from_description),
16465         (gst_gconf_get_default_audio_sink),
16466         (gst_gconf_get_default_video_sink),
16467         (gst_gconf_get_default_audio_src),
16468         (gst_gconf_get_default_video_src),
16469         (gst_gconf_get_default_visualization_element):
16470         * gst/level/demo.c: (main):
16471         * gst/level/plot.c: (main):
16472         * gst/playback/gstplaybin.c: (gen_video_element),
16473         (gen_audio_element):
16474         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16475         * gst/playondemand/demo-mp3.c: (setup_pipeline):
16476         * gst/sine/demo-dparams.c: (main):
16477         * gst/spectrum/demo-osssrc.c: (main):
16478         * gst/speed/demo-mp3.c: (main):
16479         * gst/volume/demo.c: (main):
16480         * testsuite/embed/embed.c: (main):
16481
16482 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16483
16484         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16485         (gst_tcpclientsink_finalize):
16486         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16487         (gst_tcpclientsrc_finalize):
16488         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16489         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16490         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16491         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16492           Don't leak the hostname when shutting down.
16493           In tcpserversrc, take a copy of the default hostname.
16494
16495 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16496
16497         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16498           Set caps to systemstream=TRUE.
16499
16500 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16501
16502         * testsuite/Makefile.am:
16503           Fix more OSX buildbots.
16504
16505 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
16506
16507         * ext/mpeg2dec/gstmpeg2dec.c:
16508           Don't send things to NULL PAD_PEERs
16509
16510         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16511           Copy-on-write the incoming buffer.
16512
16513         * gst/mpegstream/gstdvddemux.h:
16514         * gst/mpegstream/gstmpegclock.h:
16515         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16516         (normal_seek), (gst_mpeg_demux_handle_src_event):
16517         * gst/mpegstream/gstmpegdemux.h:
16518         * gst/mpegstream/gstmpegpacketize.h:
16519         * gst/mpegstream/gstmpegparse.c:
16520         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16521         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16522         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16523         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16524         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16525         * gst/mpegstream/gstmpegparse.h:
16526         * gst/mpegstream/gstrfc2250enc.h:
16527           Various changes to the way time is computed that make seeking and
16528           total time estimation much better here.
16529           Use G_BEGIN/END_DECLS instead of __cplusplus
16530
16531         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16532           Use gst_buffer_stamp instead of only copying the TIMESTAMP
16533
16534 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16535
16536         * gst/subparse/gstsubparse.c:
16537           Fix OSX buildbot.
16538
16539 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16540
16541         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16542         (theora_enc_chain), (theora_enc_change_state):
16543         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16544         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16545         (gst_vorbisenc_change_state):
16546         * ext/vorbis/vorbisenc.h:
16547           Set granulepos and timestamp correctly for streams not
16548           starting at 0, taking into account the initial delay.
16549
16550 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
16551
16552         * gst/mpegstream/gstdvddemux.c:
16553           Add audio/x-dts to audio pad template caps
16554
16555 2005-01-30  David Schleef  <ds@schleef.org>
16556
16557         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16558         (create_context), (gst_polypsink_link): Fix silly endianness
16559         bug.  Add some debugging.  Remove float from caps; it doesn't
16560         work.  Attempt to get remote audio working.
16561
16562 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16563
16564         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16565           Add 3IV2 fourcc.
16566
16567 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16568
16569         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16570         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16571         (gst_avi_demux_stream_data):
16572         * gst/avi/gstavidemux.h:
16573           Invert DIB images. Fixes #132341.
16574
16575 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16576
16577         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16578         (gst_ffmpegcsp_chain):
16579           D'oh, reference the palette data, not the palette structure.
16580           Fixes color distortion in #132341.
16581
16582 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16583
16584         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16585           PAR can be non-fixed when not provided as argument (#162626).
16586
16587 2005-01-29  David Moore  <dcm@acm.org>
16588
16589         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16590
16591         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16592         (gst_qtdemux_loop_header):
16593           Re-apply patch from #142272 that allows non-seekable sources,
16594           re-proposed by Daniel Drake <dsd@gentoo.org>.
16595
16596 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16597
16598         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16599           Use the src template for creating the src pad (#162330).
16600
16601 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16602
16603         * configure.ac:
16604         * ext/musepack/Makefile.am:
16605         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16606         (gst_musepackdec_init), (gst_musepackdec_dispose),
16607         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16608         (gst_musepack_stream_init), (gst_musepackdec_loop),
16609         (gst_musepackdec_change_state):
16610         * ext/musepack/gstmusepackdec.cpp:
16611         * ext/musepack/gstmusepackdec.h:
16612         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16613         (gst_musepack_reader_read), (gst_musepack_reader_seek),
16614         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16615         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16616         * ext/musepack/gstmusepackreader.cpp:
16617         * ext/musepack/gstmusepackreader.h:
16618           Update to 1.1 API (#165446).
16619
16620 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16621
16622         * ext/Makefile.am:
16623           Unbreak buildbot.
16624
16625 2005-01-28  Andy Wingo  <wingo@pobox.com>
16626
16627         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16628         to reflect a different dubious internet source. Add a reference
16629         and some commentary.
16630
16631 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16632
16633         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16634         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16635         * gst/playback/gststreamselector.h:
16636           Be more selective when we're redoing caps negotiation from
16637           within the chain function on a stream change.
16638
16639 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16640
16641         * configure.ac:
16642         * ext/Makefile.am:
16643         * ext/amrnb/Makefile.am:
16644         * ext/amrnb/amrnb.c: (plugin_init):
16645         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16646         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16647         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16648         (gst_amrnbdec_state_change):
16649         * ext/amrnb/amrnbdec.h:
16650         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16651         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16652         (gst_amrnbparse_init), (gst_amrnbparse_formats),
16653         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16654         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16655         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16656         * ext/amrnb/amrnbparse.h:
16657           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16658         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16659           Add AMR-NB/-WB raw formats.
16660         * ext/alsa/gstalsa.c: (gst_alsa_link):
16661           Keep valid time when changing format.
16662         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16663         (qtdemux_parse_trak):
16664           Add some more format-specific options (#140141, #143555, #155163).
16665
16666 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16667
16668         * gst/matroska/matroska-demux.c:
16669         (gst_matroska_demux_parse_blockgroup):
16670           Fix logic error in timing of subtitle stream synchronization.
16671         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16672           Add skip-chunk, which is found in kodak-camera streams.
16673
16674 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16675
16676         * po/LINGUAS:
16677         * po/vi.po:
16678           Adding Vietnamese translation (submitted by Clytie Siddall)
16679
16680 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16681
16682         * gst/playback/gstdecodebin.c: (try_to_link_1):
16683           Use realpad for signal.
16684
16685 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16686
16687         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16688           Fix category so decodebin picks it up.
16689
16690 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16691
16692         * ext/mad/Makefile.am:
16693         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16694         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16695         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16696         (found_type), (gst_id3demux_bin_change_state):
16697         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16698         (gst_id3_tag_init), (gst_id3_tag_handle_event),
16699         (gst_id3_tag_src_link), (gst_id3_tag_chain),
16700         (gst_id3_tag_change_state), (plugin_init):
16701         * ext/mad/gstmad.h:
16702           Add id3demuxbin (which is a simple bin consisting of id3demux
16703           and typefind), take over rank from id3demux, remove typefind
16704           code from id3demux. Makes all broken mp3s that I know of work,
16705           and thereby fixes #152688.
16706
16707 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
16708
16709         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16710
16711         * ext/mad/gstmad.c: (gst_mad_src_event):
16712         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16713           Allow seeks on audio pad, make mad forward those (#164826).
16714         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16715           Set duration (#165335).
16716
16717 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16718
16719         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16720         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16721         (gst_asf_demux_process_ext_content_desc),
16722         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16723         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16724         * gst/asfdemux/gstasfdemux.h:
16725           Improve metadata display, e.g. if the metadata comes before the
16726           streams are loaded (which is perfectly valid).
16727
16728 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16729
16730         * tools/gst-launch-ext-m.m:
16731           Fix AVI/ASF pipelines (#165340).
16732
16733 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
16734         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
16735         build failure on amd64
16736
16737 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
16738
16739         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16740         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16741           Check environment variables GST_ID3V2_TAG_ENCODING,
16742           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16743           list of character encodings to force interpretation of non-unicode
16744           strings stored in an ID3v2 tag to a particular encoding. If none
16745           is specified, try to use current locale's encoding, then fall back
16746           to ISO-8859-1 (which will always succeed). (Resolves #149274)
16747         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
16748         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
16749           Check environment variables GST_ID3V1_TAG_ENCODING,
16750           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16751           list of character encodings to use in case a string encountered
16752           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
16753           specified, try to use the current locale's encoding, then fall
16754           back to ISO-8859-1 (which will always succeed).
16755
16756 2005-01-25  Benjamin Otte  <otte@gnome.org>
16757
16758         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16759           - on half framerate, compute the rate in advance so the comparisons
16760             don't compare wrong values
16761           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
16762             behaviour
16763           - don't use mad_header_decode anymore, mad_frame_decode does that
16764             automatically
16765           - when getting rid of consumed bytes, reset the stream's skiplen
16766           (fixes #163867)
16767
16768 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
16769
16770         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
16771           Use 1/2 a second for default max_discont, as PES streams from DVB
16772           seem to have larger spacings in the SCR. 
16773           Fix a typo.
16774
16775 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16776
16777         * gst/playback/gstplaybasebin.c: (group_commit):
16778           Notify delayed stream-info availability.
16779
16780 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
16781         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
16782         (gst_a52dec_handle_event), (gst_a52dec_chain):
16783         Add some debug output. Check that a discont has a valid
16784         time associated.
16785         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16786         (gst_alsa_sink_loop):
16787         Ignore TAG events. A little extra debug for broken timestamps.
16788         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
16789         (dvdnavsrc_change_state):
16790         Ensure we send a discont to engage the link before we send any
16791         other events.
16792         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
16793         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
16794         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
16795         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
16796         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
16797         dvd://title works in totem because typefinding sends a seek that ends
16798         up going back to chapter 1 regardless.
16799         * ext/mpeg2dec/gstmpeg2dec.c:
16800         * ext/mpeg2dec/gstmpeg2dec.h:
16801         Output correct timestamps and handle disconts.
16802         * ext/ogg/gstoggdemux.c: (get_relative):
16803         Small guard against a null dereference.
16804         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
16805         (gst_textoverlay_set_property):
16806         Free memory when done. Don't call gst_event_filler_get_duration on
16807         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
16808         g_warning.
16809         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
16810         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
16811         (gst_sw_srclink), (gst_smoothwave_chain):
16812         Draw solid lines, prettier colours.
16813         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
16814         Add a default palette that'll work for some movies.
16815         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
16816         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
16817         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
16818         * gst/mpegstream/gstdvddemux.h:
16819         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16820         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
16821         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
16822         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
16823         * gst/mpegstream/gstmpegparse.h:
16824         Use PTM/NAV events when for timestamp adjustment when connected to 
16825         dvdnavsrc. Don't use many discont events where one suffices.
16826         * gst/playback/gstplaybasebin.c: (group_destroy),
16827         (gen_preroll_element), (gst_play_base_bin_add_element):
16828         * gst/playback/gstplaybasebin.h:
16829         Make sure we remove subtitles from the same bin we put them in.
16830         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
16831         (gst_subparse_buffer_format_autodetect),
16832         (gst_subparse_change_state):
16833         Fix some memleaks and invalid accesses.
16834         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
16835         (oggskel_type_find), (cmml_type_find), (plugin_init):
16836         Some typefind functions for Annodex v3.0 files
16837         * gst/wavparse/gstwavparse.h:
16838         GstRiffReadClass is the correct parent class.
16839
16840 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16841
16842         * gst-libs/gst/riff/riff-media.c:
16843         (gst_riff_create_video_caps_with_data):
16844           Add extradata to huffyuv (fixes #165013).
16845         * gst-libs/gst/riff/riff-read.c:
16846         (gst_riff_read_strf_vids_with_data):
16847           Fix extradata extraction if it is in the chunk size.
16848
16849 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
16850
16851         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16852
16853         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
16854         (gst_quarktv_change_state), (gst_quarktv_dispose):
16855           Memory free'ing location fix (#164708).
16856
16857 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16858
16859         * gst/playback/gstplaybasebin.c: (group_commit),
16860         (gen_preroll_element), (probe_triggered), (gen_source_element),
16861         (setup_source), (gst_play_base_bin_change_state),
16862         (gst_play_base_bin_add_element):
16863           Don't block for streams.
16864         * gst/playback/gststreaminfo.c: (stream_info_change_state),
16865         (gst_stream_info_set_mute):
16866           Use gst_pad_set_active_recursive.
16867
16868 2005-01-25  Andy Wingo  <wingo@pobox.com>
16869
16870         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
16871         for #ifndef HAVE_XVIDEO.
16872
16873 2005-01-24  Jeffrey C. Ollie
16874
16875         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
16876
16877         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
16878         * ext/gsm/gstgsmdec.h:
16879         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
16880         * ext/gsm/gstgsmenc.h:
16881         Fix rate to 8kHz as per spec, removes obscure errors when no rate
16882         was given by property. Add proper buffer timestamps and offsets.
16883
16884 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16885
16886         * gst-libs/gst/riff/riff-media.c:
16887         (gst_riff_create_audio_caps_with_data):
16888           Audio can be <8000Hz.
16889
16890 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16891
16892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16893           Explicit state change to workaround refcount bugs.
16894
16895 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16896
16897         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
16898         (gst_avimux_riff_get_avi_header):
16899           Fix...
16900
16901 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16902
16903         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
16904         (gst_riff_read_element_data):
16905         * gst-libs/gst/riff/riff-read.h:
16906           Add _peek version (req'ed in CDXA).
16907         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
16908         (gst_cdxaparse_loop):
16909           Fix parsing in playbin.
16910         * gst/playback/gstdecodebin.c: (close_pad_link):
16911           Ignore current_ pads, they cause major annoyance.
16912
16913 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16914
16915         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
16916           Safety guard.
16917
16918 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16919
16920         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
16921           Fix padding...
16922
16923 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16924
16925         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
16926           Allow for 0-sized buffers. Fixes length query problems in
16927           starwars.mkv from the testsuite.
16928
16929 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
16930
16931         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
16932         (gst_video_box_i420), (gst_video_box_chain):
16933           Fix row strides for I420 (fixes #163159)
16934           
16935 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16936
16937         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
16938           MPEG2 has a useful rate property, so we can actually use that.
16939           For MPEG-1, continue using the bytes/time properties.
16940
16941 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16942
16943         * gst-libs/gst/riff/riff-media.c:
16944         (gst_riff_create_video_caps_with_data),
16945         (gst_riff_create_video_template_caps):
16946           Add intel-h263.
16947
16948 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16949
16950         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16951           Fail if caps negotiation fails. Should fix #162184, and should
16952           definately be in there regardless of it fixing the actual bug.
16953         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
16954         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
16955         (gst_avimux_riff_get_avix_header),
16956         (gst_avimux_riff_get_video_header),
16957         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
16958         (gst_avimux_start_file), (gst_avimux_handle_event),
16959         (gst_avimux_change_state):
16960         * gst/avi/gstavimux.h:
16961           Refactor structure writing to use GST_WRITE_UINT macros, add
16962           metadata writing support.
16963
16964 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16965
16966         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
16967           Elements may already be destroyed when this function is called.
16968
16969 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16970
16971         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16972         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
16973           More memory leak fixes (#149162).
16974
16975 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16976
16977         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16978         (gst_qtdemux_add_stream):
16979           Fix two memleaks.
16980
16981 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16982
16983         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16984           Argh...
16985
16986 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
16987
16988         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
16989           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
16990           when fixating to six channels in Totem.
16991
16992 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
16993
16994         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
16995           Fix compile warnings on Solaris 10 buildbot
16996
16997 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
16998
16999         * ext/dvdread/dvdreadsrc.c: (_read):
17000           Don't read beyond the last cell in a chapter (fixes 
17001           invalid memory access)
17002
17003 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
17004
17005         * ext/dvdread/stream_labels.c:
17006         (dvdreadsrc_get_audio_stream_labels):
17007           Use NULL for an empty GList instead of g_list_alloc(); fix 
17008           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
17009           of GString (easier to bulk free later)
17010
17011 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17012
17013         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17014
17015         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17016         (gst_ffmpeg_pixfmt_to_caps):
17017           Fix BGRA32 caps (#164209).
17018
17019 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
17020
17021         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17022
17023         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17024         (gst_ffmpeg_caps_to_pixfmt):
17025           alpha_mask can be RGBA/ABGR. Fixes #164265.
17026
17027 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
17028
17029         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17030
17031         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17032         (gst_mpeg2dec_alloc_buffer):
17033         * ext/mpeg2dec/gstmpeg2dec.h:
17034           Crop if decoding size is not the actual image size (#163676).
17035
17036 2005-01-17  Steve Baker  <steve@stevebaker.org>
17037
17038         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17039
17040         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17041         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17042           Add libsndfile typefind functions (#163309).
17043
17044 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17045
17046         * tools/gst-launch-ext-m.m:
17047           Add .aac, fix .m1v/.m2v (#163891).
17048
17049 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17050
17051         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17052           Sanity check, don't wait endlessly since the clock might not
17053           actually run at this point (which is a deadlock). Fixes #164069.
17054
17055 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17056
17057         * gst/playback/gstplaybasebin.c: (probe_triggered):
17058           Of course, only pause if group is done...
17059
17060 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17061
17062         * gst/playback/gstplaybasebin.c: (probe_triggered):
17063           Thread safety.
17064
17065 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17066
17067         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17068           Don't return state change success when the parent
17069           failed.
17070
17071 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17072
17073         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17074           Free events (fix memleak in #162905).
17075
17076 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
17077
17078         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17079
17080         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17081         (gst_ffmpeg_caps_to_pixfmt):
17082           Fix for depth = 15. Fixes #161675.
17083
17084 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17085
17086         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17087           Set FPS correctly, even for webcams and the like.
17088         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17089           Don error on setting while capturing.
17090
17091 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17092
17093         * ext/dv/gstdvdec.c:
17094         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17095         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17096           I'm a bad boy. using /1001. to force C to do float division
17097           and not integer division (as it did in my last commit)
17098           Thanks to David I. Lehn for pointing this mistake.
17099
17100 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17101
17102         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17103           Revert Johan's 1.35->1.36 since it breaks compat.
17104
17105 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17106
17107         * ext/dv/gstdvdec.c:
17108         * ext/libfame/gstlibfame.c:
17109         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17110         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17111           replace framerate aproximations by their real value
17112           (24000/1001, 30000/1001, 60000/1001)
17113           Finish fixing bug #164049
17114
17115 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17116
17117         * ext/ogg/gstoggmux.c:
17118           eos/bos debugging
17119         * gst/tcp/gstmultifdsink.c:
17120         * gst/tcp/gstmultifdsink.h:
17121         * gst/tcp/gsttcp.c:
17122         * gst/tcp/gsttcp.h:
17123         * gst/tcp/gsttcpclientsink.c:
17124         * gst/tcp/gsttcpclientsrc.c:
17125         * gst/tcp/gsttcpserversink.c:
17126         * gst/tcp/gsttcpserversrc.c:
17127           improve reusability of elements after state changes and errors
17128           make multifdsink throw away streamheaders when receiving new ones
17129
17130 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17131
17132         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17133           Fix for if items are already in list...
17134
17135 2005-01-12  Benjamin Otte  <otte@gnome.org>
17136
17137         * gst/adder/gstadder.c: (gst_adder_loop):
17138           fix adder a bit so it doesn't screw up with events as much anymore
17139
17140 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
17141
17142         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17143         (pixbufscale_scale), (gst_pixbufscale_chain):
17144         * ext/gdk_pixbuf/pixbufscale.h:
17145           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17146           to ensure rowstrides are calculated the same way as 
17147           ffmpegcolorspace
17148           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17149           that we pick up duration and offset also.
17150
17151 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17152
17153         * gst/avi/gstavimux.c: (gst_avimux_class_init),
17154         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17155           Reusability fixes.
17156
17157 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17158
17159         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17160         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17161         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17162         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17163           Update flags when requested.
17164
17165 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17166
17167         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17168           Fix dmix.
17169
17170 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17171
17172         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17173         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17174         (probe_triggered), (new_decoded_pad), (gen_source_element),
17175         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17176         * gst/playback/gstplaybasebin.h:
17177         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17178         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17179         (gst_play_bin_change_state):
17180           Implement group-switch signal for use in apps to clear metadata
17181           cache, clean up subtitle, add suburi property instead of # hack,
17182           some error-out fixes.
17183
17184 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17185
17186         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17187           Debug.
17188         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17189           If we got a state change in the _get handler, don't return success.
17190
17191 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17192
17193         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17194         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17195           Make jpegdec quiet on MJPEG decoding
17196         * gst/asfdemux/README:
17197           Fix mimetypes for MJPEG and H263
17198
17199 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17200
17201         * ext/theora/theoradec.c: (theora_dec_chain):
17202           Fix broken code generation by gcc by swapping arguments.
17203         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17204           Fix \n in debug.
17205
17206 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17207
17208         * TODO:
17209           delete this file, it is by far outdated
17210         * ext/alsa/gstalsa.1: remove
17211         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17212         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17213         (gst_alsa_get_caps):
17214           Add HW probing for supported sample rates. Fixes #161704
17215
17216 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17217
17218         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17219           Don't crash, biatch! :).
17220
17221 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17222
17223         * ext/musepack/gstmusepackreader.cpp:
17224         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17225           Some work on tags - still doesn't work in playbin...
17226         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17227           Handle events...
17228
17229 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17230
17231         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17232           Also shove tags on kid pads.
17233
17234 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17235
17236         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17237           Don't bail on unknown events.
17238         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17239           Don't crash on events before negotiation.
17240         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17241           Send tags on pads, too.
17242         * gst/playback/gststreamselector.c:
17243         (gst_stream_selector_request_new_pad):
17244           Forward events on first pad if no input was selected yet.
17245
17246 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17247
17248         * gst/playback/gstplaybasebin.c: (setup_substreams):
17249           Don't disable streamtype if the stream doesn't exist, since
17250           then playing a video after audio will disable both and nothing
17251           will happen. Fixes the testsuite.
17252
17253 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17254
17255         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17256         (gst_v4l_xoverlay_set_xwindow_id):
17257         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17258         (gst_v4l2_xoverlay_set_xwindow_id):
17259           Add debug categories, fix overlay disabling.
17260
17261 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17262
17263         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17264         * ext/alsa/gstalsa.h:
17265           Add HW probing for period_count/size and buffer_size MIX/MAX
17266           Adjust default/user defined value if out of bounds
17267           Should fix bug #162024
17268
17269 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17270
17271         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17272           Fix warning (#161191).
17273
17274 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17275
17276         * ext/dvdread/stream_labels.c:
17277         (dvdreadsrc_get_audio_stream_labels):
17278           Fix warning (init the good variable in switch default)
17279
17280 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
17281
17282         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17283
17284         * gst/tta/gstttaparse.c: (gst_tta_src_event):
17285           Fix gcc-2.95 compile (#163485).
17286
17287 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17288
17289         * configure.ac:
17290         * ext/flac/gstflacenc.c: (gst_flacenc_init),
17291         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17292         (gst_flacenc_tell_callback), (gst_flacenc_chain),
17293         (gst_flacenc_change_state):
17294         * ext/flac/gstflacenc.h:
17295           Update for API change in flac-1.1.1. Update requirement in
17296           configure.ac. Fixes #162974.
17297
17298 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17299
17300         * gst/playback/gstplaybasebin.c: (group_destroy):
17301           Remove hack to get rid of assert and get rid of unlinked
17302           signals properly.
17303
17304 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17305
17306         * gst/playback/gstplaybasebin.c: (setup_source):
17307           Set source to NULL so that resources are free'ed. Fixes issues
17308           with playback of CDDA and similar device-accessing things.
17309
17310 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17311
17312         * testsuite/embed/Makefile.am:
17313           test->noinst, fix make test in buildbot.
17314
17315 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17316
17317         * ext/dvdread/stream_labels.c: new file
17318         * ext/dvdread/stream_labels.h: new file
17319         * ext/dvdread/Makefile.am:
17320         * ext/dvdread/dvdreadsrc.c: (_seek_title):
17321           Extract audio stream label from DVD IFO files.
17322           It only dump them on the console for now, still have to
17323           make playbin aware of them.
17324
17325 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17326
17327         * gst/playback/gstplaybasebin.c: (setup_source):
17328           Fix hanging subs.
17329
17330 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17331
17332         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17333         (gen_preroll_element), (remove_groups), (setup_subtitle),
17334         (gen_source_element), (setup_source):
17335         * gst/playback/gstplaybasebin.h:
17336           Multiple .sub files is just a stupid idea... Fix some threading
17337           mistakes. Interestingly, external .sub files cause playbin to
17338           hang, I don't know why... Parsing fixes contributed by Fran??ois
17339           Kooman <fkooman@tuxed.net>.
17340
17341 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17342
17343         * testsuite/embed/Makefile.am:
17344           Fix buildbot.
17345
17346 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17347
17348         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17349
17350         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17351         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17352         (gst_pngenc_set_property):
17353         * ext/libpng/gstpngenc.h:
17354           Add compression level property (#163323).
17355
17356 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17357
17358         * configure.ac:
17359         * examples/capsfilter/capsfilter1.c: (main):
17360         * examples/seeking/spider_seek.c: (make_spider_pipeline):
17361         * ext/dvdread/Makefile.am:
17362         * ext/dvdread/demo-play:
17363         * ext/dvdread/demo-play.c:
17364         * gconf/gstreamer.schemas.in:
17365         * gst-libs/gst/gconf/gconf.c:
17366         * sys/v4l/TODO:
17367         * testsuite/Makefile.am:
17368         * testsuite/embed/Makefile.am:
17369         * testsuite/embed/embed.c: (cb_expose), (main):
17370           Remove all references to xvideosink, fix examples (#140845).
17371         * gst/playback/gstplaybasebin.c: (group_destroy):
17372           Apparently, disposal does not unlink - so do explicitely.
17373         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17374           Add debug.
17375
17376 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
17377
17378         * README: fix PKG_CONFIG_PATH instructions, what was there
17379         previously was breaking default search path, not nice. 
17380         Fixes #163358
17381
17382 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17383
17384         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17385         (gst_audioscale_chain):
17386           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17387           when resampling - how the ^@$^!@^! is this possible?!?
17388
17389 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17390
17391         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17392           Reset variables on READY.
17393         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17394         (gst_matroska_mux_loop):
17395           Require data before writing header.
17396
17397 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
17398
17399         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17400
17401         * ext/mad/gstmad.c: (gst_mad_chain):
17402           Don't call mad_stream_sync() directly after recovering sync.
17403           Fixes #151661.
17404
17405 2005-01-09  Martin Eikermann  <meiker@upb.de>
17406
17407         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17408
17409         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17410         (snapshot_handler), (gst_snapshot_sinkconnect),
17411         (gst_snapshot_chain):
17412           Allocate resources when required, fix recursive signal emission
17413           and fix caps. Fixes #161667.
17414
17415 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
17416
17417         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17418
17419         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17420         (gst_pngdec_chain):
17421           Handle only 8-bppc (bits-per-pixel-component) images, better
17422           error handling and correct strides. Fixes #163177.
17423         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17424         (gst_pngenc_chain):
17425           Better error handling. Fixes #163348.
17426
17427 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17428
17429         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17430         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17431         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17432         (dvdnavsrc_uri_handler_init):
17433           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17434         * gst/playback/gstplaybasebin.c: (gen_source_element):
17435           Add MMS to streaming URIs.
17436
17437 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17438
17439         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17440         * sys/xvimage/xvimagesink.c:
17441         (gst_xvimagesink_navigation_send_event):
17442           Check for pad availability before sending event.
17443
17444 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17445
17446         * gst-plugins.spec.in:
17447           Add subparse.
17448
17449 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17450
17451         * configure.ac:
17452           Since we use functions from CVS, up requirement.
17453
17454 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17455
17456         * gst/playback/Makefile.am:
17457         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17458         (group_destroy), (group_commit), (group_is_muted),
17459         (gen_preroll_element), (add_stream), (unknown_type),
17460         (probe_triggered), (preroll_unlinked), (mute_stream),
17461         (silence_stream), (new_decoded_pad), (setup_substreams),
17462         (setup_source), (get_active_source), (mute_group_type),
17463         (muted_group_change_state), (set_active_source),
17464         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17465         (play_base_eos), (gst_play_base_bin_change_state):
17466         * gst/playback/gstplaybasebin.h:
17467         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17468         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17469         (gst_stream_info_dispose), (stream_info_mute_pad),
17470         (stream_info_change_state), (gst_stream_info_set_mute):
17471         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17472         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17473         (gst_stream_selector_init), (gst_stream_selector_dispose),
17474         (gst_stream_selector_get_linked_pad),
17475         (gst_stream_selector_get_caps), (gst_stream_selector_link),
17476         (gst_stream_selector_get_linked_pads),
17477         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17478         * gst/playback/gststreamselector.h:
17479           Adding stream selection support plus required properties for
17480           applications to use this. Fully fixes #100931.
17481
17482 2005-01-08  Benjamin Otte  <otte@gnome.org>
17483
17484         * gst/games/gstpuzzle.c: (nav_event_handler):
17485           - handle nav events differently: forward every event no matter if it
17486             was handled or not.
17487           - translate events
17488           You can now cheat by using navigationtest ! puzzle and moving the
17489           mouse close to the edge of a tile. ;)
17490
17491 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17492
17493         * configure.ac:
17494         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17495         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17496         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17497         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17498         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17499         (gst_ogm_parse_plugin_init):
17500         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17501         (gst_textoverlay_link), (gst_textoverlay_getcaps),
17502         (gst_textoverlay_event), (gst_textoverlay_video_chain),
17503         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17504         * ext/pango/gsttextoverlay.h:
17505         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17506         (gst_matroska_demux_handle_seek_event),
17507         (gst_matroska_demux_sync_streams),
17508         (gst_matroska_demux_parse_blockgroup),
17509         (gst_matroska_demux_subtitle_caps),
17510         (gst_matroska_demux_plugin_init):
17511         * gst/matroska/matroska-ids.h:
17512         * gst/playback/gstdecodebin.c: (close_pad_link):
17513         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17514         (gen_preroll_element), (remove_groups), (add_stream),
17515         (new_decoded_pad), (setup_subtitles), (gen_source_element),
17516         (setup_source):
17517         * gst/playback/gstplaybasebin.h:
17518         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17519         * gst/subparse/Makefile.am:
17520         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17521         (gst_subparse_base_init), (gst_subparse_class_init),
17522         (gst_subparse_init), (gst_subparse_formats),
17523         (gst_subparse_eventmask), (gst_subparse_event),
17524         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17525         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17526         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17527         (parse_mpsub_deinit), (parse_mpsub_init),
17528         (gst_subparse_buffer_format_autodetect),
17529         (gst_subparse_format_autodetect), (gst_subparse_loop),
17530         (gst_subparse_change_state), (gst_subparse_type_find),
17531         (plugin_init):
17532         * gst/subparse/gstsubparse.h:
17533         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17534         (plugin_init):
17535           Add subtitle support, .sub parser (supports SRT and MPsub),
17536           OGM text support, Matroska UTF-8 text support, deadlock fixes
17537           all over the place, subtitle awareness in decodebin/playbin
17538           and some fixes to textoverlay to handle subtitles in a stream
17539           correctly. Fixes #100931.
17540
17541 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17542
17543         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17544           Check for pad availability before doing a query on it.
17545
17546 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17547
17548         * ext/dv/gstdvdec.c:
17549           really fix bpp24/32 dvdec caps (classic rgba indeed)
17550         * gst/asfdemux/gstasfdemux.c:
17551         (gst_asf_demux_process_ext_content_desc):
17552           don't send text tags if they are empty (bis repetita)
17553
17554 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17555
17556         * ext/dv/gstdvdec.c:
17557          remove unneeded comment from dvdec
17558           (related to DV 4CC codes in AVI files)
17559           moved them in gstreamer/docs/random/mimetypes
17560         * gst/asfdemux/gstasfdemux.c:
17561         (gst_asf_demux_process_ext_content_desc):
17562          don't send text tags if they are empty
17563          fix mem leak on error path
17564         * gst/ffmpegcolorspace/avcodec.h:
17565         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17566         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17567         (gst_ffmpegcsp_avpicture_fill):
17568         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17569         * gst/ffmpegcolorspace/imgconvert_template.h:
17570          adds BGR32 and BGRA32 to ffmpegcolorspace
17571           (still bad colors, fixing it on next commit)
17572           helps with dvdec outputing BGR32
17573
17574 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17575
17576         * ext/dv/gstdvdec.c:
17577          Fix audio caps i just broke (missing ',')
17578         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17579         (gst_matroska_mux_reset):
17580          Fix typo + add FIXME about old "x-gst-metadata" crap
17581
17582 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17583
17584         * ext/dv/demo-play.c: (main):
17585          xvideosink -> xvimagesink
17586         * ext/dv/gstdvdec.c:
17587          change rgb 32/32 caps to 24/32 (no alpha)
17588          change nb of channels to be a list (2 or 4, not 2)
17589          change sample rate to be a list (32, 44.1, 48 kHz) not a range
17590         * gst/asfdemux/gstasfdemux.c:
17591         (gst_asf_demux_process_ext_content_desc):
17592          Add 'date/year' to extracted metadata list
17593
17594 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17595
17596         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17597           The return value of fixate_to does not imply that the requested
17598           value was set, so don't assume.
17599
17600 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
17601
17602         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17603
17604         * ext/libpng/gstpngdec.c:
17605         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17606         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17607         * ext/libpng/gstpngenc.h:
17608           Alpha support (encoder; #163161), mime fixage.
17609
17610 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
17611
17612         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17613
17614         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17615         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17616         (gst_faac_set_property), (gst_faac_get_property):
17617         * ext/faac/gstfaac.h:
17618           Allow for ADTS output (#153434).
17619
17620 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17621
17622         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17623           Fix against template (#150576).
17624
17625 2005-01-06  Benjamin Otte  <otte@gnome.org>
17626
17627         * gst/games/gstpuzzle.c: (draw_puzzle):
17628           don't draw a puzzle if either width or height of tiles would be 0.
17629
17630 2005-01-06  Benjamin Otte  <otte@gnome.org>
17631
17632         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17633         (gst_puzzle_class_init), (gst_puzzle_finalize):
17634           no memleaks, please
17635         (gst_puzzle_create), (gst_puzzle_init),
17636         (gst_puzzle_set_property), (gst_puzzle_setup):
17637           change initialization code around so we don't reshuffle on resize
17638         (draw_puzzle):
17639           fix another stupid typo
17640
17641 2005-01-06  Benjamin Otte  <otte@gnome.org>
17642
17643         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17644           fix stupid typo that borked copying on YUY2
17645
17646 2005-01-06  Benjamin Otte  <otte@gnome.org>
17647
17648         * gst/games/gstpuzzle.c: (draw_puzzle):
17649           fix edges when image sizes aren't multiples of tile sizes
17650
17651 2005-01-06  Benjamin Otte  <otte@gnome.org>
17652
17653         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17654           make RGB endianness work correctly
17655         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17656           refactor and fix race with initial shuffling
17657         (nav_event_handler):
17658           allow using the mouse to puzzle
17659         (draw_puzzle):
17660           insist on tiles having width and height as multiples of 4 to get
17661           clean YUV image handling
17662         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17663         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17664           s/DEBUG/LOG/ for common messages
17665         (gst_xvimagesink_navigation_send_event):
17666           fix mouse event translation to not include screen PAR
17667         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17668           fix mouse event translation to actually work
17669
17670 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17671
17672         * gst/asfdemux/gstasfdemux.c:
17673         (gst_asf_demux_process_ext_content_desc):
17674          Extract TrackNumber metadata + clean up code
17675         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17676          Hope this is the good fix (var used unitialised)
17677
17678 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17679
17680         * ext/faad/gstfaad.c: (gst_faad_chain):
17681           Only increment timestamp if it's valid. Fixes raw AAC streams.
17682
17683 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17684
17685         * configure.ac:
17686         * gst/games/Makefile.am:
17687         * gst/games/gstpuzzle.c:
17688           add a puzzle game with...
17689         * gst/games/gstvideoimage.c:
17690         * gst/games/gstvideoimage.h:
17691           ... full colorspace support (that includes YUV9 and RGB16)) stolen
17692           from videotestsrc and made into something that would be a nice
17693           library for a lot of other plugins.
17694
17695 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17696
17697         * configure.ac:
17698          don't compile faad plugin if a RC of 2.0 is found
17699          Fixes #155346 (and FC1 buildbot)
17700         * gst/asfdemux/gstasfdemux.c:
17701         (gst_asf_demux_process_ext_content_desc):
17702          try to make Solaris compiler happier
17703
17704 2005-01-06  Paul Jack  <pjack@sfaf.org>
17705
17706         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17707
17708         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17709           Fix segfault (#161667).
17710
17711 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17712
17713         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17714           Fix framerate reporting.
17715
17716 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
17717
17718         * gst-libs/gst/riff/riff-ids.h:
17719         * gst/wavenc/riff.h:
17720          Add AMR (VBR and CBR) ids to riff.h audio codec list
17721         * gst/asfdemux/gstasfdemux.c:
17722         (gst_asf_demux_process_ext_content_desc),
17723         (gst_asf_demux_process_object):
17724           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17725
17726 2005-01-05  Martin Eikermann  <meiker@upb.de>
17727
17728         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17729
17730         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17731         (gst_dvd_demux_handle_discont):
17732         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17733         (gst_mpeg_demux_handle_discont):
17734           Recreate pads on new-media (#160730).
17735         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17736           Send discont even if manager changes timestamps (#161929).
17737
17738 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
17739
17740         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17741
17742         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17743           Fix invalid memory access (#159211).
17744
17745 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17746
17747         * examples/gstplay/player.c: (main):
17748           Don't iterate.
17749         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
17750           Add visualizations.
17751         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17752         (gst_a52dec_handle_frame):
17753           Set duration.
17754         * ext/dvdnav/gst-dvd:
17755           Add audioconvert. Fixes #161325.
17756         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
17757           Explicitely case to gint64. Possible valgrind error.
17758         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
17759         (gst_play_tick_callback), (gst_play_change_state),
17760         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
17761         (gst_play_set_location), (gst_play_get_location),
17762         (gst_play_seek_to_time), (gst_play_set_data_src),
17763         (gst_play_set_video_sink), (gst_play_set_audio_sink),
17764         (gst_play_set_visualization), (gst_play_connect_visualization),
17765         (gst_play_get_framerate), (gst_play_get_all_by_interface),
17766         (gst_play_new):
17767           Use playbin. Fixes #139749 and #147744.
17768         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
17769           Add genre tag.
17770         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
17771         (audioscale_get_type), (gst_audioscale_base_init),
17772         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
17773         (gst_audioscale_getcaps), (gst_audioscale_fixate),
17774         (gst_audioscale_link), (gst_audioscale_get_buffer),
17775         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
17776         (gst_audioscale_init), (gst_audioscale_dispose),
17777         (gst_audioscale_chain), (gst_audioscale_set_property),
17778         (gst_audioscale_get_property), (plugin_init):
17779           Indent properly.
17780         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
17781           Fix LPCM.
17782         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
17783         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
17784         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
17785           Add more metadata (fixes #162656).
17786
17787 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17788
17789         * configure.ac:
17790           back to cvs
17791
17792 === release 0.8.7 ===
17793
17794 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17795
17796         * NEWS:
17797         * RELEASE:
17798         * configure.ac:
17799           releasing 0.8.7, "Hyperspace"
17800
17801 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17802
17803         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
17804
17805         * gst/playback/gstplaybasebin.c:
17806          Fix for #162924 - free caps after use, not before
17807
17808 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
17809
17810         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17811
17812         * gst/playback/gstplaybasebin.c:
17813         * gst/wavparse/gstwavparse.c:
17814           Fix for #154773 - fixes playback of small .wav files
17815
17816 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17817
17818         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
17819
17820         * gst/audioscale/gstaudioscale.c:
17821           Fix for #162819 - make audioscale reusable
17822           Fixes playback of more than one file with playbin/totem
17823
17824 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17825
17826         * gst/ffmpegcolorspace/avcodec.h:
17827         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17828         * gst/ffmpegcolorspace/imgconvert.c:
17829           clean up the mess that made me cry and avoid needless duplication
17830
17831 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17832
17833         * gst/ffmpegcolorspace/imgconvert.c:
17834           give some indication of why we're segfaulting
17835
17836 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17837
17838         * configure.ac:
17839           Fix indentation, fix v4l2 plugin detection.
17840         * ext/Makefile.am:
17841           Fix libmms location (Maciej, use diff -u!).
17842         * ext/alsa/gstalsa.c: (gst_alsa_init):
17843           Initialize caps cache to NULL.
17844         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
17845           Only change state on audiosink if it exists.
17846
17847 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
17848
17849         * gst/matroska/matroska-demux.c:
17850         * gst/matroska/matroska-ids.h:
17851         * gst/matroska/matroska-demux.h:
17852         Fix Vorbis streams failing to decode in some files, where cluster_time
17853         isn't 0, because then it doesn't send codec_priv before actual data.
17854         Remove time-based test and replace it with marker set on beginning of
17855         new stream
17856
17857 2004-12-28  David Schleef  <ds@schleef.org>
17858
17859         Merge patch from Ronald fixing problems with streaming
17860         text.
17861         * ext/cairo/gstcairo.c: (plugin_init):
17862         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17863         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17864         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17865         (gst_textoverlay_font_init), (gst_textoverlay_init),
17866         (gst_textoverlay_set_property):
17867         * ext/cairo/gsttextoverlay.h:
17868
17869 2004-12-27  David Schleef  <ds@schleef.org>
17870
17871         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
17872         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17873         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
17874         (gst_textoverlay_font_init), (gst_textoverlay_init),
17875         (gst_textoverlay_set_property): Improvements to actually
17876         render text as white on black outline on video, including
17877         font selection and horizontal/vertical alignment.  (Ronald's
17878         christmas present)
17879         * ext/cairo/gsttextoverlay.h:
17880
17881 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17882
17883         * ext/ogg/gstogg.c:
17884         * ext/ogg/gstogmparse.c:
17885           fix ogm[audio/video]parse plugin registration
17886           (riff won't load if bytestream is already loaded)
17887
17888 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17889
17890         * gst/audioconvert/gstchannelmix.c:
17891           fix for GLIB < 2.4
17892
17893 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17894
17895         * Makefile.am:
17896         * configure.ac:
17897           disable docs again until it actually passes make distcheck.
17898
17899 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17900
17901         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
17902         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17903         (plugin_init):
17904           Add 3GP (variables name Q3GP because they can't start with a
17905           number). Add samr audio fourcc (used in .3gp files), decoder
17906           is work in progress. Also do a GST_WARNING instead of ERROR
17907           in case of unknown nodes, to decrease output.
17908
17909 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17910
17911         * Makefile.am:
17912           really fix dist
17913
17914 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17915
17916         * configure.ac:
17917         * ext/speex/gstspeexdec.h:
17918         * ext/speex/gstspeexenc.h:
17919           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
17920           Fix detection code in configure.ac
17921
17922 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17923
17924         * gst/matroska/matroska-demux.c:
17925         (gst_matroska_demux_parse_blockgroup):
17926           Save position, so that queries give proper return values. Don't
17927           know how this could ever have worked before...
17928
17929 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17930
17931         * configure.ac:
17932           Put additional LAME check inside the conditional.  Fixes #152339
17933
17934 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17935
17936         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17937         (gst_avi_demux_stream_scan):
17938           Add some more debug. Fix logic error when setting movi offset
17939           while reading index.
17940
17941 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17942
17943         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17944         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
17945         (gst_avi_demux_process_next_entry):
17946           Add some debugging. Better detection of broken indexes and the
17947           accompanying index recovery. No infinite loops on state changes
17948           when we're still in our loopfunction.
17949
17950 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17951
17952         * configure.ac:
17953           Fix up.
17954
17955 2004-12-22  Archana Shah  <archana.shah@wipro.com>
17956
17957         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17958
17959         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
17960           Normalizing the value before setting
17961         (gst_sunaudiomixer_get_volume):
17962           Normalizing the value after getting. Fixes bug# 161980
17963
17964 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
17965
17966         * Makefile.am: Make sure docs gets disted
17967         * docs/Makefile.am: Make sure all needed files get disted
17968         * gst-plugins.spec.in: latest updates
17969
17970 2004-12-22  Wim Taymans  <wim@fluendo.com>
17971
17972         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
17973         Revert patch 1.38 as clock distribution over schedulers does
17974         not work correcly in the core yet.
17975
17976 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17977
17978         * sys/oss/README: remove this file, which predates my birth
17979           (and which content is by far outdated)
17980
17981 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
17982
17983         * Makefile.am:
17984         * configure.ac:
17985         * docs/Makefile.am:
17986         * docs/libs/Makefile.am:
17987         * docs/libs/gst-plugins-libs-docs.sgml:
17988         * docs/libs/gst-plugins-libs-sections.txt:
17989         * docs/libs/tmpl/gstgconf.sgml:
17990         * docs/upload.mak:
17991         * docs/version.entities.in:
17992           Added boilerplate gtk-doc files for plugin-libs documentation.
17993
17994 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17995
17996         * gst/auparse/gstauparse.c: fix int and float audio caps
17997
17998 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
17999
18000         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18001         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18002           g_assert() can be a macro, don't use #ifdef inside it.
18003
18004 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
18005
18006         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18007
18008         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18009         (gst_videorate_init), (gst_videorate_chain),
18010         (gst_videorate_change_state):
18011           Event handling (fixes #159986).
18012
18013 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18014
18015         * gst-libs/gst/riff/riff-media.c:
18016         (gst_riff_create_video_caps_with_data):
18017           Add BLZ0 (Blizzard's version of DivX) fourcc.
18018
18019 2004-12-18  David Schleef  <ds@schleef.org>
18020
18021         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18022         portability fix.
18023
18024 2004-12-18  David Schleef  <ds@schleef.org>
18025
18026         * gst/tta/ttadec.h: Disable some header code that isn't used
18027         and clearly isn't portable.
18028
18029 2004-12-18  David Schleef  <ds@schleef.org>
18030
18031         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18032         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18033         (avcodec_get_pix_fmt), (avpicture_layout),
18034         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18035         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18036         Fix code to not use GCC extensions (and c99 extensions that
18037         Forte does not like.)
18038
18039 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
18040
18041         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18042
18043         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18044         (gst_deinterlace_chain):
18045           Rowstride fixes. Fixes #161039.
18046         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18047         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18048         (gst_video_crop_getcaps), (gst_video_crop_link),
18049         (gst_video_crop_i420), (gst_video_crop_chain),
18050         (gst_video_crop_change_state):
18051           Rework of negotiation. Actually works now. Fixes #158650.
18052
18053 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18054
18055         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18056           That was very stupid.
18057
18058 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18059
18060         * gst/matroska/matroska-demux.c:
18061         (gst_matroska_demux_parse_blockgroup):
18062           Fix possible crasher.
18063
18064 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18065
18066         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18067         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18068           Lace sizes can be zero.
18069
18070 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18071
18072         * ext/musepack/gstmusepackdec.cpp:
18073           Fetch error return values. Fixes #161624.
18074         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18075           Really EOS.
18076
18077 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18078
18079         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18080           Work for truncated (unfinished download etc.) files. Fixes #160514.
18081
18082 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18083
18084         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18085           Fix for integer overflow. Makes #156001 not crash. Probably masks
18086           the real bug.
18087
18088 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18089
18090         * gst/ac3parse/gstac3parse.c: (plugin_init):
18091           Parsers never have ranks. Fixes #159651.
18092
18093 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18094
18095         * gst/playback/gstdecodebin.c: (compare_ranks):
18096           make sure the facotries are ordered the same every time even if they
18097           have the same rank by using the name
18098         * gst/playback/gstdecodebin.c: (find_compatibles):
18099           make sure we don't add factories to the list twice
18100
18101 2004-12-16  David Schleef  <ds@schleef.org>
18102
18103         * configure.ac: look for musepack headers as musepack/*.h
18104         (fixes #159847)
18105         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18106         * ext/musepack/gstmusepackreader.h: same
18107
18108 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18109
18110         * gst-libs/gst/riff/riff-read.c:
18111         (gst_riff_read_strf_auds_with_data):
18112           Read extradata correctly (fixes #155879).
18113
18114 2004-12-16  David Schleef  <ds@schleef.org>
18115
18116         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18117         audio.  does _not_ attempt or allow conversion unless channels
18118         is 1 or 2.
18119
18120 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18121
18122         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18123
18124 2004-12-16  David Schleef  <ds@schleef.org>
18125
18126         * gst/audioscale/gstaudioscale.c: the resample library only
18127         handles 1 or 2 channels.  Change caps to compensate.
18128
18129 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18130
18131         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18132         (gst_matroska_demux_audio_caps):
18133           Some MPEG-AAC hacks, because else it doesn't work...
18134
18135 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18136
18137         * gst-libs/gst/riff/riff-media.c:
18138         (gst_riff_create_video_caps_with_data),
18139         (gst_riff_create_video_template_caps):
18140           Add h264.
18141
18142 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18143
18144         * gst-libs/gst/audio/Makefile.am:
18145           Try to fix buildbot.
18146
18147 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18148
18149         * gst/tcp/gstmultifdsink.c:
18150           Clean up and uniformize debugging.
18151
18152 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
18153
18154         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18155
18156         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18157         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18158         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18159         (gst_mpeg_demux_change_state):
18160           Reset on ready. Fixes 160276.
18161
18162 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18163
18164         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18165
18166         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18167         (gst_ffmpegcsp_pad_link):
18168           Fix memleak (#154815).
18169
18170 2004-12-16  James Bowes  <bowes@cs.dal.ca>
18171
18172         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18173
18174         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18175         (gst_musicbrainz_init), (gst_musicbrainz_chain),
18176         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18177         * ext/musicbrainz/gsttrm.h:
18178           Add support for using a proxy server when getting a trm id from
18179           the MusicBrainz database (#149613).
18180
18181 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
18182
18183         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18184
18185         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18186         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18187           Fix memleaks (#157233).
18188
18189 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
18190
18191         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18192
18193         * gst-libs/gst/resample/resample.c: (gst_resample_close):
18194         * gst-libs/gst/resample/resample.h:
18195         * gst/audioscale/gstaudioscale.c:
18196           Fix memleak (#159215).
18197
18198 2004-12-16  Toni Willberg  <toniw@iki.fi>
18199
18200         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18201
18202         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18203         * sys/oss/oss_probe.c: (main):
18204           Check for mono/stereo support (similar to samplerate probing),
18205           fixes #159433. Also add missing copyright header to oss_probe.c.
18206
18207 2004-12-15  David Schleef  <ds@schleef.org>
18208
18209         * configure.ac: add audioresample and cairo plugins.  Remove
18210         HAVE_MMX stuff, because it's not used.
18211         * ext/Makefile.am: same
18212         * ext/audioresample/Makefile.am: You are not ready for an
18213         audio resampling element based on audioresample.
18214         * ext/audioresample/gstaudioresample.c:
18215         * ext/audioresample/gstaudioresample.h:
18216         * ext/cairo/Makefile.am: You are not ready for overlay elements
18217         based on cairo.  Don't look too closely, these elements kinda
18218         suck right now.
18219         * ext/cairo/gstcairo.c: new
18220         * ext/cairo/gsttextoverlay.c: new
18221         * ext/cairo/gsttextoverlay.h: new
18222         * ext/cairo/gsttimeoverlay.c: new
18223         * ext/cairo/gsttimeoverlay.h: new
18224         * gst-libs/gst/media-info/media-info-priv.h: fix compile
18225         problem with compilers that don't support variadic macros.
18226
18227 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
18228
18229         Reviewed by:  David Schleef  <ds@schleef.org>
18230
18231         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
18232         Bala, registering sunaudiosrc (oops!), and cleaning up code a
18233         bit.  Also ran indent-gst.
18234         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18235         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18236         (gst_sunaudiosrc_setparams):
18237
18238 2004-12-14  David Schleef  <ds@schleef.org>
18239
18240         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18241         output rate to 16000.  Should fix #160235.
18242
18243 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18244
18245         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18246         Add typefinding for mpeg2 pes streams
18247
18248 2004-12-13  David Schleef  <ds@schleef.org>
18249
18250         * configure.ac:  Applied patch from bug #143659, making default
18251         sources and sinks OS-dependent (for Solaris), and added code
18252         for OS/X.
18253         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18254
18255 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18256
18257         * gst-libs/gst/riff/riff-media.c:
18258           forgot to add h2.64 to avidemux template caps
18259
18260 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18261
18262         * gst/wavenc/riff.h:
18263         * gst-libs/gst/riff/riff-media.c:
18264         * gst-libs/gst/riff/riff-ids.h:
18265         * gst/avi/gstavimux.c
18266         add 4CC code for VideoSoft h264 in AVI (VSSH)
18267           fixes bug #160655
18268         remove s323 from riff, it's quicktime specific :(
18269
18270 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18271
18272         * gst/asfdemux/README
18273         * gst/wavenc/riff.h
18274         * gst-libs/gst/riff/riff-ids.h
18275         * gst-libs/gst/riff/riff-media.c
18276         * gst/qtdemux/qtdemux.c:
18277           add new 4CC codes for h263 related codecs
18278           fixes partially bug #155163
18279
18280 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
18281
18282         * configure.ac: Update polyaudio requirement to 0.7
18283         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18284
18285 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18286
18287         * gst/interleave/deinterleave.c:
18288         fix my name's spelling! :)
18289
18290 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18291
18292         * AUTHORS ChangeLog
18293         * gst/auparse/gstauparse.c
18294         * gst/interleave/deinterleave.c
18295         * gst/law/:
18296                 alaw-decode.c alaw-encode.c
18297                 mulaw-decode.c mulaw-encode.c
18298         * gst/oneton/gstoneton.c
18299         * sys/osxaudio/:
18300                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18301         * sys/osxvideo/:
18302                 cocoawindow.h cocoawindow.m
18303                 osxvideosink.h osxvideosink.m
18304
18305         put the same mail address for Zaheer Abbas Merali everywhere
18306
18307 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18308
18309         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18310           Align by packetsize, and assert that we a packet available before
18311           playing. The first makes webstreams work (they often include
18312           trailing padding data in a packet), the second allows pausing a
18313           ASF stream in totem without getting demux errors afterwards.
18314
18315 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18316
18317         * ext/ogg/gstoggdemux.c: (get_relative):
18318           Check for non-NULL before accessing member (end-of-chain).
18319
18320 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18321
18322         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18323         (cdparanoia_set_property), (cdparanoia_get_property):
18324         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18325         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18326         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18327         (dvdreadsrc_init), (dvdreadsrc_set_property),
18328         (dvdreadsrc_get_property):
18329         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18330         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18331           Synchronize property names where not yet the case. Devices are
18332           now device=X, other versions are deprecated (but still exist).
18333           Also use g_free() unconditionally.
18334         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18335         (setup_source), (gst_play_base_bin_get_property):
18336           Expose source.
18337
18338 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18339
18340         * configure.ac: move GCONF macro outside conditional for the am
18341           conditional. Fixes #160439
18342
18343 2004-12-08  David Schleef  <ds@schleef.org>
18344
18345         * tools/gst-visualise-m.m: Switch to elements that currently
18346         exist.
18347
18348 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18349
18350         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18351           We love wrong commas.
18352
18353 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18354
18355         * gst/matroska/matroska-demux.c:
18356         (gst_matroska_demux_handle_src_query):
18357           Don't set DEFAULT, unsupported - makes length display incorrectly
18358           in some cases.
18359
18360 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18361
18362         * gst/monoscope/README: remove blurb about files being GPL
18363         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18364         * gst/monoscope/monoscope.c: Change license to BSD with explanation
18365           monoscope is now effectively LGPL licensed
18366
18367 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
18368
18369         * gst/monoscope/README: Update information to be more correct
18370         * gst/monoscope/convolve.c: Relicense to LGPL
18371         * gst/monoscope/convolve.h: Relicense to LGPL
18372
18373 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
18374
18375         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18376           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18377         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18378           set default_duration for mpeg1 audio
18379
18380 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18381
18382         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18383         * ext/alsa/gstalsa.h:
18384           refactor big chunks of the core caps negotiation code to make it
18385           a lot faster, because people claim it's really slow
18386           (actually, just cache the getcaps when the device is opened)
18387
18388 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18389
18390         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18391         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18392         (gst_a52dec_handle_frame), (gst_a52dec_chain),
18393         (gst_a52dec_change_state), (plugin_init):
18394         * ext/a52dec/gsta52dec.h:
18395           Do something useful with timestamps. Make chain-based (since
18396           there's really no reason to be loopbased).
18397         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18398           Update current_byte/frame correctly.
18399
18400 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18401
18402         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18403         (gst_ape_demux_stream_init):
18404           Forward tags, too.
18405
18406 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18407
18408         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18409           Let's make sure we're done typefinding when detecting tags.
18410
18411 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18412
18413         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18414         (gst_ebml_read_init), (gst_ebml_read_use_event),
18415         (gst_ebml_read_element_id), (gst_ebml_peek_id),
18416         (gst_ebml_read_seek), (gst_ebml_read_skip),
18417         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18418         (gst_ebml_read_master):
18419         * gst/matroska/ebml-read.h:
18420         * gst/matroska/matroska-demux.c:
18421         (gst_matroska_demux_parse_contents),
18422         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18423           Disgustingly evil hack for working around INTERRUPT events and
18424           their extremely annoying habit of being a pain in the ass. We
18425           simply peek a cluster before reading any of it.
18426
18427 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18428
18429         * ext/musepack/gstmusepackdec.cpp:
18430           There's also floating point libmusepacks.
18431
18432 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18433
18434         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18435         (gst_faad_chanpos_to_gst), (gst_faad_chain):
18436           Set DURATION even if source buffer didn't. Also use increasing
18437           timestamps.
18438         * gst-libs/gst/riff/riff-media.c:
18439         (gst_riff_create_audio_caps_with_data):
18440           Block_align can have larger values than 8192.
18441
18442 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18443
18444         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18445         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18446         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18447         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18448           Fix caps.
18449
18450 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18451
18452         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18453           Fix logic bug.
18454
18455 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18456
18457         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18458           Yay, another one.
18459
18460 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18461
18462         * ext/esd/esdsink.c: (gst_esdsink_chain):
18463           Make error actually say something useful (fixes #156798).
18464         * gst-libs/gst/riff/riff-media.c:
18465         (gst_riff_create_video_caps_with_data),
18466         (gst_riff_create_video_template_caps):
18467           Add Intel Video 5.0 fourcc (IV50).
18468
18469 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
18470
18471         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18472         detection on mono and stereo mp3 files.
18473
18474 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18475
18476         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18477           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18478           the contained stream).
18479
18480 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18481
18482         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18483           Oops, remove debug.
18484
18485 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18486
18487         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18488
18489         * gst/law/alaw-decode.c: (alawdec_getcaps):
18490         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18491           Prevent warnings when negotiating caps (fixes #159338).
18492
18493 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18494
18495         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18496         (gst_ffmpegcsp_chain):
18497           Remove old leftover that shouldn't be there...
18498
18499 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
18500
18501         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18502
18503         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18504           Don't forward DISCONT events (fixes #159684).
18505
18506 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18507
18508         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18509           Unlink manually since sometimes bin disposal (and therefore
18510           pad unlinking) is delayed, which will cause a new media file
18511           to not be able to start playing instantly.
18512
18513 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18514
18515         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18516           On mute of an unlinked stream, check for pad availability so
18517           we don't crash on unlinked pad.
18518
18519 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18520
18521         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18522         (gst_avi_demux_massage_index):
18523           Fix quite humiliating bug in omitting 0-sized index chunks but
18524           forgetting to count them for timestamps.
18525
18526 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18527
18528         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18529           Actually leave the loop if we failed to sync. Don't crash.
18530
18531 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18532
18533         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18534         (gst_dvd_demux_process_private):
18535         * gst/mpegstream/gstdvddemux.h:
18536           Fix crash (#159759). Doesn't work, though. :-(.
18537
18538 2004-11-28  Benjamin Otte  <otte@gnome.org>
18539
18540         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18541           more overwriting protection due to modifying channels one by one
18542           instead of all at once
18543
18544 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18545
18546         * gst/audioconvert/gstchannelmix.c:
18547         (gst_audio_convert_fill_normalize):
18548           Normalize using absolute values.
18549
18550 2004-11-28  Julien MOUTTE  <julien@moutte.net>
18551
18552         * configure.ac:
18553         * ext/Makefile.am:
18554         * ext/directfb/Makefile.am:
18555         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18556         (gst_directfbvideosink_get_pixel_format),
18557         (gst_directfbvideosink_get_format_from_fourcc),
18558         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18559         (gst_directfbvideosink_sink_link),
18560         (gst_directfbvideosink_change_state),
18561         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18562         (gst_directfbvideosink_buffer_alloc),
18563         (gst_directfbvideosink_interface_supported),
18564         (gst_directfbvideosink_interface_init),
18565         (gst_directfbvideosink_navigation_send_event),
18566         (gst_directfbvideosink_navigation_init),
18567         (gst_directfbvideosink_set_property),
18568         (gst_directfbvideosink_get_property),
18569         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18570         (gst_directfbvideosink_base_init),
18571         (gst_directfbvideosink_class_init),
18572         (gst_directfbvideosink_get_type), (plugin_init):
18573         * ext/directfb/directfbvideosink.h: Adding a first version of
18574         directfbvideosink.
18575         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18576         more.
18577
18578 2004-11-28  Benjamin Otte  <otte@gnome.org>
18579
18580         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18581           walk the samples backwards if out_channels > in_channels so we don't
18582           overwrite data
18583
18584 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18585
18586         * gst/audioconvert/Makefile.am:
18587         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18588         (gst_audio_convert_link), (gst_audio_convert_change_state),
18589         (gst_audio_convert_channels):
18590         * gst/audioconvert/gstchannelmix.c:
18591         (gst_audio_convert_unset_matrix),
18592         (gst_audio_convert_fill_identical),
18593         (gst_audio_convert_fill_compatible),
18594         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18595         (gst_audio_convert_fill_others),
18596         (gst_audio_convert_fill_normalize),
18597         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18598         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18599         * gst/audioconvert/gstchannelmix.h:
18600           Implement a channel mixer.
18601
18602 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
18603
18604         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18605         * ext/alsa/gstalsa.h:
18606         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18607         Make alsasink actually honor gst_element_set_clock and use that
18608         clock instead of its internal one.
18609
18610 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18611
18612         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18613         (gst_play_base_bin_change_state): nullify source and decoder when
18614         going from READY to NULL so that we don't try to do weird stuff with
18615         them when going from NULL to READY
18616         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18617         instead of g_object_unref
18618         (gen_video_element), (gen_audio_element): more refcounting fixes, now
18619         it should be correct
18620         (gst_play_bin_change_state): don't call remove_sinks if we are
18621         currently disposing the object
18622
18623 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18624
18625         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18626           Don't forget bass if it's there. Else left channel is silent...
18627
18628 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18629
18630         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18631         (gst_a52dec_change_state):
18632           Don't do sample adjusting anymore, we use float audio now.
18633         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18634           Don't fixate to non-existing properties.
18635
18636 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18637
18638         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18639         (gst_a52dec_change_state):
18640           Advertise that we can do surround sound.
18641
18642 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18643
18644         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18645           Add buffer-frames=0.
18646         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18647         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18648         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18649         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18650         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18651         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18652         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18653         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18654         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18655         * ext/dvdread/dvdreadsrc.h:
18656           Add seeking, querying for bytes, sectors, title, angle and
18657           chapter. Handle multiple chapters. Relicense to LGPL because
18658           Billy agreed on that (thanks Billy!).
18659
18660 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
18661
18662         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18663         call parent dispose method
18664
18665 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
18666
18667         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18668         (gst_audio_clock_get_internal_time):
18669         Fix active <-> inactive transitions: ensure time value always
18670         grows and avoid abrupt value changes.
18671
18672 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
18673
18674         * configure.ac:
18675         * gst/tta/Makefile.am:
18676         * gst/tta/crc32.h:
18677         * gst/tta/filters.h:
18678         * gst/tta/gsttta.c:
18679         * gst/tta/gstttadec.c:
18680         * gst/tta/gstttadec.h:
18681         * gst/tta/gstttaparse.c:
18682         * gst/tta/gstttaparse.h:
18683         * gst/tta/ttadec.h:
18684           added TTA parser and decoder
18685
18686 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18687
18688         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18689         (probe_triggered), (check_queue), (buffer_underrun),
18690         (buffer_running), (buffer_overrun), (gen_source_element),
18691         (setup_source):
18692         * gst/playback/gstplaybasebin.h:
18693           Implement buffering. Needs some more work.
18694
18695 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18696
18697         * ext/theora/theoradec.c: (theora_dec_chain):
18698           Fix ilog mask range overflow.
18699
18700 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18701
18702         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18703           Don't omit the last (which in case of dmix is the only :) )
18704           channel count. Don't set channels if <= 2.
18705
18706 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
18707
18708         * gst/playback/gstplaybin.c: (gen_video_element),
18709         (gen_audio_element): Removed 2 obsolete comments
18710
18711 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18712
18713         * ext/vorbis/oggvorbisenc.c
18714         * ext/vorbis/vorbisenc.c :
18715           change description fields of those plugins to differentiate them
18716           (pitivi show Encoders by description, they had the same one)
18717
18718 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
18719
18720         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18721
18722         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18723         (gst_play_bin_set_property), (gen_video_element),
18724         (gen_audio_element):
18725           Refcounting fixes for provided audio-/videosinks.
18726
18727 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18728
18729         * gst/playback/gstplaybin.c: (gen_video_element),
18730         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18731           Don't reference all sinks, but only the video- and audiosinks.
18732           The vis. element should be disposed when we're done with it.
18733           We don't have any reason to keep it around. This fixes warnings
18734           when reusing playbin for playing multiple audio files with
18735           vis. enabled. Also release audio device on pause - idea stolen
18736           from Rhythmbox.
18737
18738 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18739
18740         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18741         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18742         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18743         * ext/alsa/gstalsaplugin.c: (plugin_init):
18744         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18745         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18746         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
18747         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
18748         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
18749         (gst_faad_change_state), (plugin_init):
18750         * ext/faad/gstfaad.h:
18751         * ext/vorbis/vorbis.c: (plugin_init):
18752         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18753         * gst-libs/gst/audio/Makefile.am:
18754         * gst-libs/gst/audio/audio.c: (plugin_init):
18755         * gst-libs/gst/audio/multichannel.c:
18756         (gst_audio_check_channel_positions),
18757         (gst_audio_get_channel_positions),
18758         (gst_audio_set_channel_positions),
18759         (gst_audio_set_structure_channel_positions_list),
18760         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
18761         (gst_audio_fixate_channel_positions):
18762         * gst-libs/gst/audio/multichannel.h:
18763         * gst-libs/gst/audio/testchannels.c: (main):
18764         * gst/audioconvert/gstaudioconvert.c:
18765         (gst_audio_convert_class_init), (gst_audio_convert_init),
18766         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
18767         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
18768         (gst_audio_convert_fixate), (gst_audio_convert_channels):
18769         * gst/audioconvert/plugin.c: (plugin_init):
18770           Surround sound support.
18771
18772 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18773
18774         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18775           Fix position for discont if we're close as well. Nitpicking, but
18776           saves a few milliseconds of extra waiting or skipping.
18777
18778 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18779
18780         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
18781           We sometimes need parsers for playback, so add those too.
18782
18783 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18784
18785         * configure.ac:
18786         * gst/apetag/Makefile.am:
18787         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
18788         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
18789         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
18790         (gst_ape_demux_get_src_query_types),
18791         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
18792         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
18793         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
18794         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
18795         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
18796         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
18797         (gst_ape_demux_change_state):
18798         * gst/apetag/apedemux.h:
18799         * gst/apetag/apetag.c: (plugin_init):
18800         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
18801         (plugin_init):
18802           APE v1/2 tag reader plus typefind function.
18803
18804 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18805
18806         * configure.ac:
18807         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18808         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18809           Remove hacks for older core. Require newer core version
18810           accordingly.
18811
18812 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18813
18814         * gst/cdxaparse/Makefile.am:
18815         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
18816         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
18817         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
18818         * gst/cdxaparse/gstcdxaparse.h:
18819         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
18820         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
18821         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
18822         (gst_cdxastrip_get_src_query_types),
18823         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
18824         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
18825         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
18826         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
18827         * gst/cdxaparse/gstcdxastrip.h:
18828           SVCD/VCD header stripping separated from CDXA image parsing.
18829         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
18830         (plugin_init):
18831           Add VCD/SVCD header typefinding for VCD/SVCD.
18832         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
18833         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
18834         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
18835         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
18836         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
18837         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
18838         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
18839         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
18840         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
18841         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
18842         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
18843         * sys/vcd/vcdsrc.h:
18844           Fix up, add seeking, querying, URI interface. Works in totem now.
18845
18846 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18847
18848         * configure.ac:
18849           back to CVS
18850
18851 === release 0.8.6 ===
18852
18853 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18854
18855         * NEWS:
18856         * RELEASE:
18857         * configure.ac:
18858         * po/af.po:
18859         * po/az.po:
18860         * po/cs.po:
18861         * po/en_GB.po:
18862         * po/hu.po:
18863         * po/it.po:
18864         * po/nb.po:
18865         * po/nl.po:
18866         * po/or.po:
18867         * po/sq.po:
18868         * po/sr.po:
18869         * po/sv.po:
18870         * po/uk.po:
18871           releasing 0.8.6, "IOU Love"
18872
18873 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18874
18875         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18876
18877         * gst/playback/gstplaybasebin.c:
18878           Fix unplayable files error handling.  Fixes #158365
18879
18880 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18881
18882         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18883
18884         * gst/typefind/gsttypefindfunctions.c:
18885           Fix broken mp3 typefinding.  Fixes #158375
18886
18887 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18888
18889         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18890
18891         * ext/ogg/gstoggdemux.c:
18892           Fix sync on broken files.  Fixes #158976
18893
18894 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18895
18896         patch by: Edward Hervey <bilboed@bilboed.com>
18897
18898         * ext/libpng/gstpngenc.c:
18899           Copy over buffer properties.  Fixes #158832
18900
18901 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18902
18903         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18904
18905         * ext/dvdread/dvdreadsrc.c:
18906           Fixes invalid reads (#158462)
18907
18908 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18909
18910         * sys/v4l/gstv4lsrc.c:
18911         * sys/v4l/gstv4lsrc.h:
18912         * sys/v4l/v4lsrc_calls.c:
18913           Probe less and cache it.  Fixes #159187.
18914
18915 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18916
18917         * gst/videorate/gstvideorate.c:
18918           Handle all video formats. Fixes #159186.
18919
18920 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
18921         * gst/synaesthesia/gstsynaesthesia.c:
18922         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
18923         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
18924         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
18925         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
18926         (gst_synaesthesia_change_state), (plugin_init):
18927         Fix up synaesthesia to work under different samplerates/ buffer sizes.
18928         Force 320x200 output, as that's the only thing the underlying
18929         synaesthesia implementation supports. Still needs to be made
18930         re-entrant.
18931
18932 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18933
18934         * configure.ac:
18935           Fix mpeg2enc configure check (similar to mplex check below).
18936
18937 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
18938
18939         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18940
18941         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18942           Fix for gcc-2.95 (fixes #158221).
18943
18944 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18945
18946         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18947           Re-add clock distribution hack (until new core is released).
18948           Fixes #158125.
18949
18950 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
18951         * configure.ac:
18952           fix mplex configure check segfaulting on some systems (bug #140994)
18953
18954 2004-11-13  Benjamin Otte  <otte@gnome.org>
18955
18956         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
18957           add debugging
18958         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18959           do a wait when we enter the loop func with no data available to
18960           write instead of getting into an 100% CPU loop by just returning and
18961           being called again by the scheduler
18962
18963 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
18964
18965         * configure.ac:
18966         * ext/libvisual/visual.c: (gst_visual_get_type),
18967         (libvisual_log_handler), (gst_visual_getcaps),
18968         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
18969         (plugin_init):
18970           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
18971         * ext/smoothwave/Makefile.am:
18972         * ext/smoothwave/demo-osssrc.c: (main):
18973         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
18974         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
18975         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
18976         (plugin_init):
18977         * ext/smoothwave/gstsmoothwave.h:
18978           Make gstsmoothwave a working element in the 20th century.
18979
18980         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
18981           Fix incorrect link function
18982
18983 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
18984
18985         * gst/volume/gstvolume.c:
18986           Allow buffer-frames=0.
18987
18988 2004-11-12 Iain <iaingnome@gmail.com>
18989
18990         * configure.ac: Check for polypaudio
18991
18992         * ext/Makefile.am: Build the polyp dir
18993
18994         * ext/polyp: The polypsink sources.
18995
18996 2004-10-30 Iain <iaingnome@gmail.com>
18997
18998         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
18999         caps to reflect the new number of channels.
19000
19001 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19002
19003         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19004           Fix for negotiation order problem. This would show when the
19005           ALSA loopfuction was called before any other function. ALSA
19006           wouldn't do anything because we're not negotiated yet, leading
19007           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19008
19009 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19010
19011         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19012
19013         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19014           No warnings (#157986).
19015
19016 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19017
19018         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19019           Prefer apev1/2 and id3v1 (at end of file) over musepack.
19020
19021 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19022
19023         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19024           Signal no-more-pads (so it works in playbin).
19025
19026 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19027
19028         * ext/musepack/gstmusepackreader.cpp:
19029           Workaround for older core.
19030
19031 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19032
19033         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19034           Actually test for odd width/height rather than testing whether
19035           a temporary variable that was 0 before we subtracted 1 is now
19036           not equal to zero (which it always is).
19037
19038 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19039
19040         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19041         Fix compilation if HAVE_XVIDEO is not defined
19042
19043 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19044
19045         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19046         Fix compilation if HAVE_XVIDEO is not defined
19047
19048 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
19049
19050         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19051         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19052         (gst_goom_change_state), (plugin_init):
19053         Use the bytestream adapter so goom doesn't depend on the input
19054         buffer size.
19055         Add a debug category
19056
19057 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19058
19059         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19060           Only set hardware parameters *after* negotiation. Before
19061           negotiation, it will set ANY and that seems to cause crashes
19062           (see e.g. #151288, #153227).
19063
19064 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19065
19066         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19067           This seems to be antique leftover. It needs to pass error
19068           checking.
19069         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19070         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19071         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19072         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19073           Fix GstXOverlay implementation (#151059).
19074
19075 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19076
19077         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19078           Don't assert (#157853).
19079
19080 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19081
19082         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19083           Fix bytes/samples confustion.
19084         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19085           Fix for underrun (#144389).
19086
19087 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19088
19089         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19090           Disable halfway-seek for pending release (since it needs a new
19091           core release).
19092
19093 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19094
19095         * sys/v4l/gstv4lsrc.c:
19096         * sys/v4l/gstv4lsrc.h:
19097         * sys/v4l/v4lsrc_calls.c:
19098           add autoprobe-fps property so we can separate autoprobing parts
19099
19100 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19101
19102         * sys/v4l/gstv4lsrc.c:
19103         * sys/v4l/v4lsrc_calls.c:
19104         initialise fourcc to catch unset fourcc's, and debug
19105
19106 2004-11-09  Wim Taymans  <wim@fluendo.com>
19107
19108         * gst/playback/README:
19109         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19110         * gst/playback/gstplaybin.c: (gst_play_bin_init),
19111         (gst_play_bin_dispose), (gst_play_bin_set_property),
19112         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19113         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19114         (gst_play_bin_get_formats), (gst_play_bin_convert),
19115         (gst_play_bin_get_query_types), (gst_play_bin_query):
19116         Cleanups and some more documentation.
19117
19118 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
19119
19120         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19121         (gst_cacasink_init), (gst_cacasink_chain):
19122         * ext/libcaca/gstcacasink.h:
19123         Cacasink inherits from VideoSink, so let that store the clock.
19124
19125 2004-11-09  Wim Taymans  <wim@fluendo.com>
19126
19127         * gst/playback/README:
19128         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19129         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19130         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19131         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19132         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19133         (setup_sinks):
19134         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19135         (gst_stream_info_is_mute), (gst_stream_info_set_property):
19136         * gst/playback/gststreaminfo.h:
19137         Updated README.
19138         Only switch groups if all streams have muted (EOSed).
19139         Send Tags in sync with the stream playback instead of in
19140         the playback/preroll phase.
19141         Some cleanups, free the fakesrc elements.
19142
19143 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19144
19145         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19146           buffer-frames property was missing
19147         * ext/arts/gst_arts.c:
19148           rate missing from sinkcaps
19149         * ext/audiofile/gstafparse.c:
19150         * ext/audiofile/gstafsink.c:
19151         * ext/audiofile/gstafsrc.c:
19152         * ext/swfdec/gstswfdec.c:
19153           int audio doesn't know buffer-frames
19154         * ext/cdparanoia/gstcdparanoia.c:
19155           int audio doesn't know chunksize either
19156         * ext/nas/nassink.c:
19157           it's endianness, not endianess
19158         * gst-libs/gst/audio/audio.h:
19159           make float standard pad template caps really describe float
19160         * gst/law/mulaw.c: (linear_factory):
19161           signed only, please
19162         * gst/mpegstream/gstdvddemux.c:
19163           widths of 20 are not valid
19164
19165 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19166
19167         Submitted by: Luca Ferretti <elle.uca@infinito.it>
19168
19169         * po/LINGUAS:
19170         * po/it.po:
19171           Add Italian
19172
19173 2004-11-08  Wim Taymans  <wim@fluendo.com>
19174
19175         * gst/playback/README:
19176         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19177         * gst/playback/gstplaybasebin.c: (probe_triggered),
19178         (gst_play_base_bin_change_state):
19179         Updated README, added more comments for fixmes etc..
19180
19181 2004-11-08  Wim Taymans  <wim@fluendo.com>
19182
19183         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19184         We can remove this hack now.
19185
19186 2004-11-08  Wim Taymans  <wim@fluendo.com>
19187
19188         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19189         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19190         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19191         Only mix AYUV for maximum quality.
19192
19193 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19194
19195         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19196         (gst_ogg_demux_push), (gst_ogg_pad_push):
19197           Let's act as if we're synchronized now! :).
19198         * ext/theora/theoradec.c: (theora_dec_chain):
19199           Add some debug.
19200
19201 2004-11-08  Wim Taymans  <wim@fluendo.com>
19202
19203         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19204         (gst_alpha_set_property), (gst_alpha_sink_link),
19205         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19206         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19207         (gst_alpha_init_params), (gst_alpha_chain):
19208         Implement alpha functions for AYUV too, this increases
19209         accuracy quite a bit.
19210
19211 2004-11-08  Wim Taymans  <wim@fluendo.com>
19212
19213         * gst/ffmpegcolorspace/avcodec.h:
19214         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19215         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19216         (gst_ffmpegcsp_avpicture_fill):
19217         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19218         (gst_ffmpegcsp_caps_remove_format_info):
19219         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19220         (shrink12), (img_get_alpha_info), (deinterlace_line),
19221         (deinterlace_line_inplace):
19222         * gst/ffmpegcolorspace/imgconvert_template.h:
19223         Added AYUV colorspace and handle RGBA a bit more respectful.
19224
19225 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19226
19227         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19228           Actually always send a discont (cornercase when resending the
19229           same serial-tagged chain twice).
19230
19231 2004-11-08  Julien MOUTTE  <julien@moutte.net>
19232
19233         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19234         (gst_ximagesink_finalize):
19235         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19236         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19237
19238 2004-11-08  Wim Taymans  <wim@fluendo.com>
19239
19240         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19241         Don't segfault on NULL data.
19242
19243 2004-11-08  Wim Taymans  <wim@fluendo.com>
19244
19245         * gst/playback/gstdecodebin.c: (unlinked):
19246         * gst/playback/gstplay-marshal.list:
19247         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19248         (gst_play_base_bin_init), (group_create), (get_active_group),
19249         (get_building_group), (group_destroy), (group_commit),
19250         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19251         (add_element_stream), (no_more_pads), (probe_triggered),
19252         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19253         (state_change), (setup_source), (gst_play_base_bin_get_property),
19254         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19255         (gst_play_base_bin_link_stream),
19256         (gst_play_base_bin_get_streaminfo):
19257         * gst/playback/gstplaybasebin.h:
19258         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19259         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19260         Add support for chained ogg files. Prepare for playlist
19261         support. This patch introduces the concept of pad groups, which
19262         together compose one playable media file.
19263
19264 2004-11-07  David Schleef  <ds@schleef.org>
19265
19266         * testsuite/gst-lint: Check for pad templates that aren't statically
19267         scoped.
19268
19269 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19270
19271         * configure.ac:
19272         * ext/Makefile.am:
19273         * ext/musepack/Makefile.am:
19274         * ext/musepack/gstmusepackdec.cpp:
19275         * ext/musepack/gstmusepackdec.h:
19276         * ext/musepack/gstmusepackreader.cpp:
19277         * ext/musepack/gstmusepackreader.h:
19278           Add musepack decoder.
19279         * ext/faad/gstfaad.c: (gst_faad_base_init):
19280           Make pad templates static.
19281         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19282         (plugin_init):
19283           Add musepack typefinder, make mp3 typefinding work halfway stream,
19284           which doesn't actually work yet because id3demux doesn't implement
19285           _get_length().
19286
19287 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19288
19289         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19290         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19291           Fix interrupt event handling (#144436).
19292
19293 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19294
19295         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19296           Hide unused glory.
19297
19298 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19299
19300         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19301
19302         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19303           Fix weird caps (#157548).
19304
19305 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
19306
19307         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19308
19309         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19310           Add missing NULL terminator (#157543).
19311
19312 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19313
19314         * gst/tcp/gsttcp.h:
19315         * gst/tcp/gsttcpclientsink.c:
19316         * gst/tcp/gsttcpclientsrc.c:
19317         * gst/tcp/gsttcpserversink.c:
19318         * gst/tcp/gsttcpserversrc.c:
19319           ports can go up to 65535.  Move common defines to gsttcp.h
19320
19321 2004-11-05  Wim Taymans  <wim@fluendo.com>
19322
19323         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19324         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19325         Added two more colorspaces.
19326
19327 2004-11-05  Wim Taymans  <wim@fluendo.com>
19328
19329         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19330         (gst_ffmpegcsp_avpicture_fill):
19331         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19332         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19333         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19334         More stride fixes.
19335
19336 2004-11-05  Wim Taymans  <wim@fluendo.com>
19337
19338         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19339         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19340         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19341         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19342         (gst_videomixer_loop):
19343         More stride fixes.
19344
19345 2004-11-05  Benjamin Otte  <otte@gnome.org>
19346
19347         * ext/mad/gstmad.c: (gst_mad_chain):
19348           don't overflow data buffer. Flush not needed sync data when syncing
19349           failed.
19350
19351 2004-11-04  Wim Taymans  <wim@fluendo.com>
19352
19353         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19354         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19355         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19356         (gst_alpha_init_params), (gst_alpha_chain),
19357         (gst_alpha_change_state):
19358         Updated the chroma keying algorithm with something more
19359         sophisticated.
19360
19361 2004-11-03  Wim Taymans  <wim@fluendo.com>
19362
19363         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19364         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19365         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19366         Fix stride issues. Does not completely work for odd
19367         heights.
19368
19369 2004-11-03  Wim Taymans  <wim@fluendo.com>
19370
19371         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19372         (gst_alpha_chroma_key), (gst_alpha_chain):
19373         Fix stride issues. Does not completely work for odd
19374         heights.
19375
19376 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
19377
19378         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19379         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19380         leak fixes
19381
19382 2004-11-03  Wim Taymans  <wim@fluendo.com>
19383
19384         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19385         (gst_ffmpegcsp_avpicture_fill):
19386         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19387         (avpicture_alloc):
19388         * gst/ffmpegcolorspace/imgconvert_template.h:
19389         Use correct _fill function to get correct strides.
19390
19391 2004-11-02  David Schleef  <ds@schleef.org>
19392
19393         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19394         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19395         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19396         Change all g_print()s to debugging.  Add a bunch of consistency
19397         checks.
19398
19399 2004-11-02  Wim Taymans  <wim@fluendo.com>
19400
19401         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19402         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19403         (unlinked), (no_more_pads), (close_link):
19404         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19405         (unknown_type), (add_element_stream), (new_decoded_pad),
19406         (removed_decoded_pad), (setup_source):
19407         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19408         (gst_stream_info_class_init), (gst_stream_info_init),
19409         (gst_stream_info_new), (gst_stream_info_dispose),
19410         (stream_info_mute_pad), (gst_stream_info_set_property),
19411         (gst_stream_info_get_property):
19412         * gst/playback/gststreaminfo.h:
19413         Fix playback of multiple files.
19414         a slightly different approach to handling dynamic pad removals.
19415         This one only looks at pads that we have linked.
19416
19417 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
19418
19419         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19420         free" warning from libc.
19421
19422 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19423
19424         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19425         (get_unconnected_element), (remove_starting_from), (pad_removed),
19426         (close_link):
19427           Implement support for dynamic pad changing. We listen to "live"
19428           pad removals (i.e. while playing) and re-setup autoplugging
19429           after that. Playbasebin/playbin need some more work for this
19430           to finally work, but decodebin supports (and replugs) chained
19431           ogg now.
19432
19433 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
19434
19435         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19436         (gst_alsa_finalize):
19437         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19438         (gst_cdaudio_finalize):
19439         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19440         (cdparanoia_finalize):
19441         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19442         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19443         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19444         (dvdreadsrc_finalize):
19445         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19446         (gst_flacdec_finalize):
19447         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19448         (gst_flacenc_finalize):
19449         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19450         (gst_gnomevfssink_finalize):
19451         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19452         (gst_gnomevfssrc_finalize):
19453         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19454         (gst_fameenc_finalize):
19455         * ext/nas/nassink.c: (gst_nassink_class_init),
19456         (gst_nassink_finalize):
19457         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19458         (gst_sdlvideosink_class_init):
19459         * ext/sndfile/gstsf.c: (gst_sf_dispose):
19460         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19461         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19462         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19463         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19464         (gst_x_window_listener_dispose):
19465         * gst/audioscale/gstaudioscale.c:
19466         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19467         (play_on_demand_finalize):
19468         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19469         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19470         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19471         (cdplayer_finalize):
19472         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19473         (gst_glimagesink_class_init):
19474         * sys/oss/gstosselement.c: (gst_osselement_class_init),
19475         (gst_osselement_finalize):
19476         * sys/oss/gstosssink.c: (gst_osssink_dispose):
19477         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19478         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19479           Fixes a bunch of problems with finalize and dispose functions,
19480           either assumptions that dispose is only called once, or not calling
19481           the parent class dispose/finalize function
19482
19483 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
19484
19485         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19486           added two api precondition guards
19487           use g_strdup with getenv to fix crash when using ENVVAR
19488
19489 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
19490         * ext/esd/esdsink.c: (gst_esdsink_class_init),
19491         (gst_esdsink_finalize):
19492         Use a finalize function, not dispose, and more importantly,
19493         call the parent class finalize function too
19494
19495 2004-11-01  Johan Dahlin  <johan@gnome.org>
19496
19497         * ext/ogg/gstoggdemux.c:
19498         * gst/tags/gstvorbistag.c:
19499         Plug leaks.
19500
19501 2004-10-31  Benjamin Otte  <otte@gnome.org>
19502
19503         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19504           lotsa memleaks today. But they're all small...
19505
19506 2004-10-31  Benjamin Otte  <otte@gnome.org>
19507
19508         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19509           another memleak crushed
19510
19511 2004-10-31  Benjamin Otte  <otte@gnome.org>
19512
19513         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19514           fix memleak
19515
19516 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19517
19518         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19519           Hack to prevent crash when going to READY inside signal handler
19520           while this function is active.
19521
19522 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19523
19524         * gst/ffmpegcolorspace/Makefile.am:
19525         * gst/ffmpegcolorspace/avcodec.h:
19526         * gst/ffmpegcolorspace/common.h:
19527         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19528         * gst/ffmpegcolorspace/dsputil.h:
19529         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19530         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19531         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19532         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19533         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19534         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19535         (gst_ffmpegcsp_avpicture_fill):
19536         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19537         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19538         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19539         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19540         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19541         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19542         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19543         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19544         * gst/ffmpegcolorspace/imgconvert.c:
19545         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19546         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19547         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19548         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19549         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19550         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19551         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19552         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19553         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19554         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19555         (grow21), (grow22), (grow41), (grow44), (conv411),
19556         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19557         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19558         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19559         (avpicture_free), (is_yuv_planar), (img_convert),
19560         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19561         (deinterlace_line_inplace), (deinterlace_bottom_field),
19562         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19563         * gst/ffmpegcolorspace/imgconvert_template.h:
19564         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19565         * gst/ffmpegcolorspace/mmx.h:
19566         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19567         (av_fast_realloc), (av_mallocz_static), (av_free_static),
19568         (av_freep), (avcodec_get_context_defaults),
19569         (avcodec_alloc_context), (avcodec_init):
19570           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19571           handling plus update from ffmpeg CVS. Large clean-up.
19572
19573 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19574
19575         * gst/playback/Makefile.am:
19576           We need the marshallers for decodebin, too.
19577
19578 2004-10-30  David Schleef  <ds@schleef.org>
19579
19580         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19581           quicktime typefinding work with 64-bit offsets.
19582
19583 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
19584
19585         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19586           Set EOS on the element when processing an EOS event.
19587         * ext/speex/gstspeexdec.h:
19588         * ext/speex/gstspeexenc.h:
19589           Only keep a const ptr to the mode
19590         * gst-libs/gst/riff/riff-media.c:
19591         (gst_riff_create_audio_caps_with_data),
19592         (gst_riff_create_audio_template_caps):
19593           Allow WMAV3, with up to 6 channels.
19594         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19595           Don't call gst_pad_set_event_function on a sink pad.
19596         * gst/mpegstream/gstdvddemux.c:
19597         (gst_dvd_demux_get_subpicture_stream),
19598         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19599           Copy the explicit caps that were set across to the cur_* pads,
19600           instead of trying to use a possibly non-existent negotiated caps.
19601           Reset the type of subpicture pads to UNKNOWN after calling
19602           init_stream, so that the caps get set.
19603
19604 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
19605
19606         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19607
19608         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19609           Don't touch buffer if it is of size 0 (fixes #151064).
19610
19611 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19612
19613         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19614           Synchronized discont handling.
19615
19616 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19617
19618         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19619         (gst_ogg_demux_push):
19620           Make seeking sort-of exact again (fixes #156387).
19621
19622 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19623
19624         * gst/playback/gstplaybasebin.c: (unknown_type),
19625         (add_element_stream), (new_decoded_pad),
19626         (gst_play_base_bin_change_state):
19627         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19628         (gst_stream_info_init), (gst_stream_info_new),
19629         (gst_stream_info_dispose), (gst_stream_info_get_property):
19630         * gst/playback/gststreaminfo.h:
19631           Make caps explicitely available. Makes testing for unsupported
19632           types possible. Improves error reporting.
19633
19634 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19635
19636         * gst/audioconvert/gstaudioconvert.c:
19637         (gst_audio_convert_buffer_to_default_format):
19638           Really don't touch read-only buffers (#156563).
19639
19640 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
19641
19642         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19643
19644         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19645           Fix memleak (#155223).
19646
19647 2004-10-29  Wim Taymans  <wim@fluendo.com>
19648
19649         * gst/tcp/.cvsignore:
19650         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19651         (gst_multifdsink_class_init), (gst_multifdsink_init),
19652         (gst_multifdsink_add), (gst_multifdsink_remove),
19653         (gst_multifdsink_remove_client_link), (is_sync_frame),
19654         (gst_multifdsink_new_client),
19655         (gst_multifdsink_handle_client_write),
19656         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19657         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19658         (gst_multifdsink_get_property):
19659         * gst/tcp/gstmultifdsink.h:
19660         Added burst on connect sync_method, deprecated sync_clients,
19661         streamlined the sync code some more.
19662
19663 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19664
19665         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19666         (gst_play_base_bin_change_state):
19667           Improve error reporting.
19668
19669 2004-10-28  Wim Taymans  <wim@fluendo.com>
19670
19671         * gst/tcp/Makefile.am:
19672         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19673         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19674         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19675         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19676         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19677         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19678         (gst_fdset_wait):
19679         Added more locks around fdset structures. Fixed/reworked
19680         the poll array resizing code.
19681         Added stress test for fdset.
19682
19683 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19684
19685         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19686         fix build
19687
19688 2004-10-28  Benjamin Otte  <otte@gnome.org>
19689
19690         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19691           fix link function to always query channels and query width for
19692           floats
19693         * configure.ac:
19694           add equalizer dir
19695         * gst/equalizer/Makefile.am:
19696         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19697         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19698         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19699         (arg_to_scale), (setup_filter),
19700         (gst_iir_equalizer_compute_frequencies),
19701         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19702         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19703         (plugin_init):
19704           add an equalizer
19705
19706 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19707
19708         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19709
19710         * po/LINGUAS:
19711         * po/nb.po:
19712           Added Norwegian Bokmaal translation
19713
19714 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19715
19716         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19717           Don't break on options (fixes #156488).
19718
19719 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19720
19721         * configure.ac:
19722         * ext/cdaudio/Makefile.am:
19723         * sys/Makefile.am:
19724           fix build on older automake
19725
19726 2004-10-26  Wim Taymans  <wim@fluendo.com>
19727
19728         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19729         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19730         Allow a little margin when negotiating the framerate.
19731
19732 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
19733
19734         * gst/level/gstlevel.c:
19735           synchonised naming of pads and pad-templates
19736
19737 2004-10-26  Wim Taymans  <wim@fluendo.com>
19738
19739         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19740         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19741         (_find_streams_check), (gst_ogg_demux_push):
19742         Fix EOS again. Needs to be done in a better way. We should not
19743         remove the pad if there is no new chained stream.
19744
19745 2004-10-26 Iain <iaingnome@gmail.com>
19746
19747         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
19748         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
19749         of the caps.
19750         * gst/interleave/interleave.c (interleave_class_init): Hook up release
19751         pad.
19752         (interleave_release_pad): Remove the pad.
19753         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
19754         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
19755         the set device.
19756         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
19757         attrs
19758         (gst_xvimagesink_xcontext_clear): Free the xcontext.
19759         (gst_xvimagesink_finalize): Free the par.
19760
19761 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19762
19763         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
19764         (gst_avimux_stop_file):
19765           First calculate the rate, and only then use it. Hdr.rate is a
19766           multiple and not a derivative of hdr.scale. Scale is not the
19767           same as blockalign but is solely related to rate.
19768
19769 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19770
19771         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
19772         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
19773           Implement seeking.
19774
19775 2004-10-25  James Henstridge  <james@jamesh.id.au>
19776
19777         Reviewed by:  David Schleef  <ds@schleef.org>
19778
19779         * examples/gstplay/player.c: (got_stream_length), (main):
19780         * examples/seeking/cdplayer.c: (update_scale):
19781         * examples/seeking/seek.c: (format_value), (update_scale):
19782         * examples/seeking/spider_seek.c: (format_value), (update_scale),
19783         (stop_seek):
19784         Build fixes on AMD64.
19785
19786 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19787
19788         reviewed by: Ronald Bultje <rbultje at gnome dot org>
19789
19790         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
19791         Fix for some v4l cards which hang in v4lsrc
19792
19793 2004-10-25  Wim Taymans  <wim@fluendo.com>
19794
19795         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
19796         (gst_ogg_demux_push), (gst_ogg_chains_clear):
19797         Make sure to remove the pad when a new chain is
19798         encountered. Set some vars to NULL so we don't try
19799         to reference freed memory.
19800
19801 2004-10-25  Wim Taymans  <wim@fluendo.com>
19802
19803         * examples/seeking/Makefile.am:
19804         * examples/seeking/cdplayer.c: (update_scale):
19805         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
19806         * examples/seeking/playbin.c: (make_playerbin_pipeline),
19807         (format_value), (update_scale), (iterate), (start_seek),
19808         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
19809         (print_usage), (main):
19810         Added some more examples, update others.
19811
19812 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19813
19814         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
19815         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19816         * ext/theora/theoradec.c: (theora_dec_chain):
19817         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19818           Add codec-name metadata.
19819
19820 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
19821
19822         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19823
19824         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19825         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19826         * ext/alsa/gstalsamixertrack.h:
19827         * po/POTFILES.in:
19828           ALSA mixer track label internationalization (#154054).
19829
19830 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19831
19832         * ext/theora/theoradec.c: (theora_dec_chain):
19833           Export bitrate as metadata.
19834
19835 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19836
19837         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19838         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19839         * ext/alsa/gstalsamixertrack.h:
19840           Fix names, fix loop.
19841
19842 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19843
19844         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
19845         (speex_dec_convert):
19846           sinkconvert function so oggdemux can get the file length (totem).
19847
19848 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
19849
19850         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19851
19852         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19853           Don't push incomplete packets.
19854         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
19855           Fix MPEG-4 audio typefinding.
19856
19857 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19858
19859         * sys/v4l/Makefile.am:
19860         * sys/v4l/gstv4l.c: (plugin_init):
19861         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
19862         (gst_v4lelement_init), (gst_v4lelement_dispose),
19863         (gst_v4lelement_change_state):
19864         * sys/v4l/gstv4lelement.h:
19865         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
19866         (gst_v4l_xoverlay_close), (idle_refresh),
19867         (gst_v4l_xoverlay_set_xwindow_id):
19868         * sys/v4l/gstv4lxoverlay.h:
19869         * sys/v4l/v4l-overlay_calls.c:
19870         * sys/v4l/v4l_calls.h:
19871         * sys/v4l2/Makefile.am:
19872         * sys/v4l2/gstv4l2.c: (plugin_init):
19873         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
19874         (gst_v4l2element_init), (gst_v4l2element_dispose),
19875         (gst_v4l2element_change_state):
19876         * sys/v4l2/gstv4l2element.h:
19877         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
19878         (gst_v4l2_xoverlay_close), (idle_refresh),
19879         (gst_v4l2_xoverlay_set_xwindow_id):
19880         * sys/v4l2/gstv4l2xoverlay.h:
19881         * sys/v4l2/v4l2-overlay_calls.c:
19882         * sys/v4l2/v4l2_calls.h:
19883           Remove client-side overlay handling, use the X-server v4l plugin
19884           for that. Nicer overlay, less code. Also make the plugin
19885           compileable without X (but then without overlay, obviously).
19886           Makes xwindowlistener obsolete, should we remove that?
19887
19888 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19889
19890         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
19891         (gst_osssrc_src_query):
19892         * sys/oss/gstosssrc.h:
19893           OK, so people want offset in DEFAULT. This time, actually fix all
19894           cases.
19895         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
19896           Add FPS properly.
19897
19898 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19899
19900         * gst/asfdemux/gstasfmux.c:
19901         * gst/avi/gstavimux.c:
19902           Framerate.
19903
19904 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19905
19906         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
19907           Fix properties (channel, norm, frequency).
19908
19909 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19910
19911         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
19912           Flag typo.
19913         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
19914           No warnings.
19915
19916 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19917
19918         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
19919           Fix hang.
19920
19921 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19922
19923         * sys/v4l2/gstv4l2element.h:
19924           Yet Another Hack (tm) for kernel header borkedness.
19925         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
19926         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
19927         (gst_v4l2src_link), (gst_v4l2src_getcaps),
19928         (gst_v4l2src_change_state):
19929         * sys/v4l2/gstv4l2src.h:
19930         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
19931         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
19932           Fix caps, keep track of state, work.
19933
19934 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19935
19936         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
19937           Quiet.
19938
19939 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19940
19941         * sys/oss/gstosssrc.c: (gst_osssrc_get):
19942           Don't mix bytes and samples.
19943
19944 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19945
19946         * ext/ogg/gstoggmux.c:
19947           Basic pad template which accepts OGM tracks, speex, flac, vorbis
19948           and theora. Any is incorrect.
19949         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
19950           Fix caps.
19951         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
19952         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
19953         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
19954         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
19955         * sys/v4l/gstv4lmjpegsrc.h:
19956         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
19957         (gst_v4lsrc_change_state):
19958         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
19959         (gst_v4lmjpegsrc_capture_stop):
19960           Fix caps. Keep track of internal state. Work.
19961
19962 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19963
19964         * ext/Makefile.am:
19965           Fix the build fixes.
19966
19967 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19968
19969         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
19970         (gst_ogg_demux_src_event), (_find_chain_seek),
19971         (gst_ogg_pad_push):
19972           Check for pad availability before using it.
19973         * ext/ogg/gstoggdemux.c: (_find_chain_process):
19974           Fix parsing of chained ogg. Needs more work on the decoder side.
19975
19976 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19977
19978         * gst/spectrum/Makefile.am:
19979         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
19980         (idle_func):
19981           Fix demo and reenable it. Yes, I'm currently playing with audio
19982           analysis tools
19983
19984 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19985
19986         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19987           We love it if files that start at zero work too...
19988
19989 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19990
19991         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
19992           Handle files with missing EOS headers.
19993
19994 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19995
19996         * gst/tcp/gsttcpserversink.c:
19997         (gst_tcpserversink_handle_server_read),
19998         (gst_tcpserversink_init_send):
19999         Zero some variables first (need for accept not to return EINVAL)
20000
20001 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20002
20003         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20004         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20005         * ext/theora/theoradec.c: (theora_dec_sink_convert),
20006         (theora_dec_chain):
20007         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20008         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20009           Seeking and querying finetune.
20010
20011 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20012
20013         * configure.ac:
20014         * ext/Makefile.am:
20015         * ext/raw1394/Makefile.am:
20016           fix the build
20017
20018 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20019
20020         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20021           Wrong return.
20022         * gst/playback/Makefile.am:
20023         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20024         * gst/playback/gstplay-marshal.list:
20025         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20026           Fix marshallers.
20027
20028 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20029
20030         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20031           Silence.
20032
20033 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20034
20035         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20036         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20037         (gst_ogg_pad_push):
20038           Yay for non-lineair granulepos in theora.
20039
20040 2004-10-18  Wim Taymans  <wim@fluendo.com>
20041
20042         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20043         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20044         * ext/dv/gstdvdec.h:
20045         Make sure we renegotiate aspect ratio when the camera switches.
20046
20047 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20048
20049         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20050         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20051           Start at zero.
20052         * ext/theora/theoradec.c: (theora_dec_chain):
20053           Skip headers. Bad idea for chained ogg, but fixes seeking.
20054
20055 2004-10-18  Wim Taymans  <wim@fluendo.com>
20056
20057         * configure.ac:
20058         I swear, this is the last time I touch this.
20059
20060 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20061
20062         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20063         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20064         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20065           Faster seeking.
20066         * ext/theora/theoradec.c: (theora_dec_sink_convert):
20067           Time-to-default conversion.
20068         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20069           Don't error on unknown packets, just skip. We should probably
20070           read them if we want to support chained ogg.
20071
20072 2004-10-18  Wim Taymans  <wim@fluendo.com>
20073
20074         * configure.ac:
20075         Added cdaudio to wrong list.
20076
20077 2004-10-18  Wim Taymans  <wim@fluendo.com>
20078
20079         * configure.ac:
20080         Revive cdaudio.
20081
20082 2004-10-18  Wim Taymans  <wim@fluendo.com>
20083
20084         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20085         (gst_dvdec_video_link), (gst_dvdec_push):
20086         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20087         (gst_smokeenc_resync), (gst_smokeenc_chain):
20088         Fix mimetype on smoke encoder.
20089         Add aspect ratio to dvdec. Not sure if these
20090         values are correct though....
20091
20092 2004-10-18  Wim Taymans  <wim@fluendo.com>
20093
20094         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20095         Fix vorbis property descriptions and ranges.
20096
20097 2004-10-18  Wim Taymans  <wim@fluendo.com>
20098
20099         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20100         Really do nothing when no data is available.
20101         Go to the playing state when the stream is not seekable
20102         instead of failing.
20103
20104 2004-10-18  Wim Taymans  <wim@fluendo.com>
20105
20106         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20107         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20108         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20109         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20110         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20111         Added uri handler for cd://
20112         Port to new API.
20113
20114 2004-10-18  Wim Taymans  <wim@fluendo.com>
20115
20116         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20117         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20118         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20119         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20120         (remove_prerolls), (unknown_type), (add_element_stream),
20121         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20122         (gst_play_base_bin_remove_element),
20123         (gst_play_base_bin_link_stream):
20124         * gst/playback/gstplaybin.c: (gen_video_element),
20125         (gen_vis_element), (remove_sinks), (setup_sinks):
20126         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20127         (gst_stream_info_get_type), (gst_stream_info_class_init),
20128         (gst_stream_info_init), (gst_stream_info_new),
20129         (gst_stream_info_dispose), (stream_info_mute_pad),
20130         (gst_stream_info_set_property), (gst_stream_info_get_property):
20131         * gst/playback/gststreaminfo.h:
20132         Add sink padtemplate to decodebin.
20133         Added some more comments.
20134         Make queue size configurable in playbasebin.
20135         Added possibility to use elements as sinks (ex cdaudio).
20136
20137 2004-10-15  Wim Taymans  <wim@fluendo.com>
20138
20139         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20140         (gst_speexenc_chain):
20141         Fix speex timestamps so that it gets muxed properly.
20142
20143 2004-10-15  Wim Taymans  <wim@fluendo.com>
20144
20145         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20146         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20147         (gst_dv1394src_init), (gst_dv1394src_dispose),
20148         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20149         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20150         (gst_dv1394src_event), (gst_dv1394src_get_formats),
20151         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20152         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20153         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20154         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20155         * ext/raw1394/gstdv1394src.h:
20156         Added conversion/query functions.
20157         Update buffer timestamps,
20158         Added signals.
20159         Added uri dv:// so it might play from the firewire in playbin.
20160         Fix a possible leak.
20161         Added debugging.
20162
20163 2004-10-15  Wim Taymans  <wim@fluendo.com>
20164
20165         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20166         (gst_dv1394src_init), (gst_dv1394src_set_property),
20167         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20168         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20169         * ext/raw1394/gstdv1394src.h:
20170         Added AV/C VTR control support needed for some cameras.
20171         Added automatic port detection.
20172         Added properties for selecting the channel.
20173         The configure.ac script is not yet updated to reflect the
20174         new libavc1394 and librom1394 dependencies.
20175
20176 2004-10-15  Wim Taymans  <wim@fluendo.com>
20177
20178         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20179         (qtdemux_parse), (gst_qtdemux_handle_esds):
20180         An esds box is not a container.
20181         Fix parsing of mp4v boxes.
20182         Do not try to renegotiate fps for each frame. Need to
20183         find a better method. This should fix mp4 playback.
20184
20185 2004-10-14  David Schleef  <ds@schleef.org>
20186
20187         * configure.ac: update for swfdec-0.3 and liboil-0.2
20188         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20189         * ext/swfdec/gstswfdec.h: same
20190         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20191         * gst/videotestsrc/videotestsrc.c: same
20192
20193 2004-10-14  Wim Taymans  <wim@fluendo.com>
20194
20195         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20196         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20197         (is_sync_frame), (gst_multifdsink_new_client),
20198         (gst_multifdsink_handle_client_write),
20199         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20200         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20201         Turn warnings into info.
20202         Don't allow a state change in the streaming thread.
20203
20204 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20205
20206         * ext/vorbis/oggvorbisenc.c:
20207         * ext/vorbis/vorbisdec.c:
20208           fix template sample rate
20209
20210 2004-10-13  Wim Taymans  <wim@fluendo.com>
20211
20212         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20213         Decoding the header first fixes some problems in resyncing
20214         in more mp3s.
20215
20216 2004-10-12  Wim Taymans  <wim@fluendo.com>
20217
20218         * gst/playback/gstplaybin.c: (gen_video_element),
20219         (gen_vis_element), (remove_sinks), (setup_sinks):
20220         Added vis plugin support, need to configure the vis
20221         element to activate it.
20222
20223 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20224
20225         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20226         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20227           Some debug.
20228         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20229         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20230         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20231         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20232         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20233         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20234         * gst/avi/gstavidemux.h:
20235           Support for openDML-2.0 indx/ix## chunks. Support for broken index
20236           recovery (where, if part of the index is broken, we will still read
20237           the rest of the index and recover the broken part by stream
20238           scanning). More broken media support. EOS workarounds. General AVI
20239           braindamage headache recovery. Aspirin included.
20240
20241 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20242
20243         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20244         (cdparanoia_event), (cdparanoia_query):
20245           Get rid of hideous lead-in.
20246
20247 2004-10-11  Wim Taymans  <wim@fluendo.com>
20248
20249         * gst/playback/gstplaybasebin.c: (setup_source):
20250         Wrong var used to get g_list_next.
20251
20252 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20253
20254         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20255         (cdparanoia_get), (cdparanoia_open):
20256           Report discid as metadata, add duration.
20257
20258 2004-10-11  Wim Taymans  <wim@fluendo.com>
20259
20260         * gst/playback/gstplaybasebin.c: (setup_source):
20261         Cleanup the previous pipeline a little earlier for the
20262         case that a source element provides raw data.
20263
20264 2004-10-11  Benjamin Otte  <otte@gnome.org>
20265
20266         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20267           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20268           consuming the last 128 bytes, even though it was valid mp3 data.
20269
20270 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20271
20272         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20273         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20274         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20275         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20276
20277 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20278
20279         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20280         Fix for webcams that support only specific width or height
20281
20282 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20283
20284         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20285
20286         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20287           Fix wrong discont event setup (fixes #154967).
20288
20289 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
20290
20291         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20292
20293         * gst/auparse/gstauparse.c: (gst_auparse_chain):
20294           Error out on invalid data (fixes #154807).
20295
20296 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
20297
20298         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20299
20300         * ext/dvdread/dvdreadsrc.c: (_read):
20301           Make titles > 0 work again (fixes #154834).
20302
20303 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20304
20305         * gst-libs/gst/riff/riff-media.c:
20306         (gst_riff_create_video_template_caps):
20307           WMV3 missing in template caps.
20308
20309 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20310
20311         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20312           OK, so the original code was too strict. It makes random AVI files
20313           hang for seconds upon opening, which is unacceptable and is far
20314           beyond the original goal of getting multiple chunks for one-chunk
20315           sounc stream files. So now do just that.
20316
20317 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20318
20319         * gst/playback/gstplaybasebin.c: (setup_source),
20320         (gst_play_base_bin_change_state):
20321           Actually clean up streaminfo if output fails. This would trigger
20322           if, for example, there was no CD in the drive. No preroll, so
20323           a streaminfo structure is created, but the subsequent state change
20324           of the thread fails.
20325         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20326           Don't change state if parent failed.
20327
20328 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20329
20330         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20331         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20332         (gen_video_element), (remove_sinks):
20333           Add small bits of code for screenshot handling.
20334
20335 2004-10-08  Wim Taymans  <wim@fluendo.com>
20336
20337         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20338         (gen_video_element), (gen_audio_element), (setup_sinks):
20339         Don't assume the user provided sinks are named "sink"...
20340
20341 2004-10-08  Wim Taymans  <wim@fluendo.com>
20342
20343         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20344         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20345         (gst_play_base_bin_link_stream):
20346         Do not try to autoplug sources that generate raw streams like
20347         cdparanoia.
20348         disconnect the preroll overrun signal when we don't need it anymore.
20349
20350 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
20351
20352         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20353         Added reworked patch from #154903 from milosz derezynski (deadchip).
20354
20355 2004-10-08  Wim Taymans  <wim@fluendo.com>
20356
20357         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20358         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20359         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20360         (cdparanoia_convert), (cdparanoia_uri_get_type),
20361         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20362         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20363         * ext/cdparanoia/gstcdparanoia.h:
20364         This adds the cdda://<tracknum> uri.
20365
20366 2004-10-08  Wim Taymans  <wim@fluendo.com>
20367
20368         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20369         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20370         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20371         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20372         (unknown_type), (gst_play_base_bin_remove_element),
20373         (gst_play_base_bin_link_stream):
20374         * gst/playback/gstplaybasebin.h:
20375         * gst/playback/gstplaybin.c: (gst_play_bin_init),
20376         (gst_play_bin_set_property), (gen_video_element),
20377         (gen_audio_element), (setup_sinks):
20378         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20379         (gst_stream_info_get_type), (gst_stream_info_class_init),
20380         (gst_stream_info_init), (gst_stream_info_new),
20381         (gst_stream_info_dispose), (stream_info_mute_pad),
20382         (gst_stream_info_set_property), (gst_stream_info_get_property):
20383         * gst/playback/gststreaminfo.h:
20384         Reuse the audio and video bins.
20385         Some internal cleanups in the stream selection code.
20386
20387 2004-10-08  Julien MOUTTE  <julien@moutte.net>
20388
20389         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20390         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20391         * sys/ximage/ximagesink.h:
20392         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20393         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20394         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20395         not coming from those elements. Moreover these elements should not keep
20396         the xid they have been given when in NULL state.
20397
20398 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20399
20400         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20401         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20402         * sys/ximage/ximagesink.h:
20403         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20404         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20405         * sys/xvimage/xvimagesink.h:
20406           Actually only create a new toplevel window if we're not gonna
20407           embed it right after.
20408
20409 2004-10-07  Wim Taymans  <wim@fluendo.com>
20410
20411         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20412         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20413         * gst/playback/gstplaybin.c: (setup_sinks):
20414         Implement muting/unmuting of streams, mute streams that are not
20415         used.
20416
20417 2004-10-07  Wim Taymans  <wim@fluendo.com>
20418
20419         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20420         (plugin_init):
20421         Added lame audio/x-ac3 typefind function.
20422
20423 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20424
20425         * configure.ac:
20426           bump nano to cvs
20427
20428 === release 0.8.5 ===
20429
20430 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20431
20432         * NEWS:
20433         * RELEASE:
20434         * configure.ac:
20435           releasing 0.8.5, "Take You On"
20436
20437 2004-10-06  Wim Taymans  <wim@fluendo.com>
20438
20439         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20440         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20441         (no_more_pads), (close_link), (type_found):
20442         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20443         * gst/playback/gstplaybin.c: (gen_video_element):
20444         Do not signal the no_more_pads after the first pad when
20445         we are plugging a non dynamic element with multiple
20446         output pads (like swfdec, dvdec, ...).
20447
20448 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20449
20450         * configure.ac:
20451           bump for prerelease
20452
20453 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20454
20455         * gst/wavparse/gstwavparse.c:
20456           add ATRAC3 to STATIC CAPS to fix a warning
20457
20458         * gst/matroska/ebml-read.c:
20459         * gst-libs/gst/riff/riff-read.c:
20460           fix typos
20461
20462 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20463
20464         * gst-libs/gst/riff/riff-media.c:
20465           generate caps for ATRAC3 audio streams
20466
20467         * gst/realmedia/rmdemux.c:
20468           generate caps for ATRAC3 audio streams
20469
20470 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20471
20472         * gst/wavparse/Makefile.am
20473         * gst/wavparse/riff.h
20474         * gst/wavparse/wavparse.vcproj
20475           riff.h removal (unused and duplication with riff-ids.h)
20476
20477 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20478
20479         * gst/wavparse/gstwavparse.h
20480           remove duplicated defines for audio codec codes
20481
20482         * gst-libs/gst/riff/riff-ids.h
20483         * gst/wavenc/riff.h:
20484           add "4CC" code for ATRAC3 audio streams
20485           add "4CC" code for ITU_G721_ADPCM (unused for now)
20486
20487 2004-10-06  Wim Taymans  <wim@fluendo.com>
20488
20489         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20490         Actually _do_ negotiation. Pass gdouble as arg instead
20491         of guint64 for the framerate.
20492
20493 2004-10-06  Wim Taymans  <wim@fluendo.com>
20494
20495         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20496         (find_compatibles), (close_pad_link), (try_to_link_1),
20497         (no_more_pads), (close_link), (type_found):
20498         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20499         * gst/playback/gstplaybin.c: (gen_video_element),
20500         (gen_audio_element):
20501         Set state on newly added element to READY so that negotiation
20502         can happen ASAP.
20503         Addes some more debug info.
20504         Do not try to plug pads with multiple caps structures or ANY
20505         because it is too dangerous since we do not do dynamic
20506         replugging.
20507
20508 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20509
20510         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20511
20512         * po/LINGUAS:
20513         * po/or.po:
20514           add Oriya translation
20515
20516 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20517
20518         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20519           Prevent overwrite of size member. Makes audio sound crappy.
20520
20521 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
20522
20523         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20524         Add rmvb to the list of known RealMedia extensions
20525
20526 2004-10-05  Wim Taymans  <wim@fluendo.com>
20527
20528         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20529         (mngdec_openstream), (mngdec_closestream),
20530         (mngdec_handle_sink_event), (mngdec_readdata),
20531         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20532         (mngdec_getcanvasline), (mngdec_refresh),
20533         (gst_mngdec_change_state):
20534         Set the framerate correctly.
20535
20536 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20537
20538         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20539           There was something wrong with the index massaging.
20540
20541 2004-10-04  Wim Taymans  <wim@fluendo.com>
20542
20543         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20544         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20545         (gst_smokedec_chain):
20546         * ext/jpeg/gstsmokedec.h:
20547         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20548         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20549         * ext/jpeg/gstsmokeenc.h:
20550         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20551         (smokecodec_decode_new), (smokecodec_info_free),
20552         (smokecodec_set_quality), (smokecodec_get_quality),
20553         (smokecodec_set_threshold), (smokecodec_get_threshold),
20554         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20555         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20556         (smokecodec_encode), (smokecodec_parse_id),
20557         (smokecodec_parse_header), (smokecodec_decode):
20558         * ext/jpeg/smokecodec.h:
20559         * ext/jpeg/smokeformat.h:
20560         Updated smoke, new bitstream, allows embedding in ogg.
20561
20562 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20563
20564         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20565           Fix seeking in some files. All this code is no longer needed (and
20566           actually breaks stuff) because we now synchronize the full index
20567           right when reading the header.
20568
20569 2004-10-04  Wim Taymans  <wim@fluendo.com>
20570
20571         * configure.ac:
20572         configure update for libmng.
20573
20574 2004-10-04  Wim Taymans  <wim@fluendo.com>
20575
20576         * ext/libmng/Makefile.am:
20577         * ext/libmng/gstmng.c: (plugin_init):
20578         * ext/libmng/gstmng.h:
20579         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20580         (gst_mngdec_base_init), (gst_mngdec_class_init),
20581         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20582         (gst_mngdec_loop), (gst_mngdec_get_property),
20583         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20584         (mngdec_closestream), (mngdec_handle_sink_event),
20585         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20586         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20587         (gst_mngdec_change_state):
20588         * ext/libmng/gstmngdec.h:
20589         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20590         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20591         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20592         (gst_mngenc_chain), (gst_mngenc_get_property),
20593         (gst_mngenc_set_property):
20594         * ext/libmng/gstmngenc.h:
20595         Added basic MNG decoder. Needs more work. The encoder does
20596         not work yet.
20597
20598 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20599
20600         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20601         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20602         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20603           Don't hang on length=0 chunks. Some negotiation fixes. Signal
20604           no-more-pads.
20605
20606 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20607
20608         * configure.ac:
20609           you need at least 1.0.4 of speex
20610
20611 2004-10-04 Iain <iaingnome@gmail.com>
20612
20613         * ext/speex/gstspeexdec.h: Revert the includes changes.
20614
20615         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20616
20617 2004-09-30 Iain <iaingnome@gmail.com>
20618
20619         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20620         found during init or set as a property instead of hardcoding /dev/audio
20621
20622 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20623
20624         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20625         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20626         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20627         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20628         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20629         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20630         (gst_rmdemux_dump_data):
20631           Use debug category, fix EOS handling. filesrc ! rmdemux now
20632           works.
20633
20634 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20635
20636         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20637         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20638         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20639           Improve allocation, cutting and sorting of the index. How takes a
20640           few seconds instead of minutes.
20641
20642 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
20643
20644         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20645           fixed compilation
20646
20647 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20648
20649         * gst-libs/gst/riff/riff-media.c:
20650         (gst_riff_create_video_caps_with_data),
20651         (gst_riff_create_video_template_caps):
20652           Add wing commander format mimetype/fourccs.
20653         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20654           Don't crash if some value is 0.
20655
20656 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20657
20658         * gst-libs/gst/riff/riff-media.c:
20659         (gst_riff_create_video_caps_with_data),
20660         (gst_riff_create_video_template_caps):
20661           Add DIB fourcc (raw, palettized 8-bit RGB).
20662         * gst-libs/gst/riff/riff-read.c:
20663         (gst_riff_read_strf_vids_with_data):
20664           Oops, fix strf_data reading bug.
20665         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20666           Use a non-NULL tag.
20667         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20668           Time for hacks. Sorry Dave. At least one quicktime movie (a
20669           trailer) that I've encountered contains multiple video tracks.
20670           One of those is the actual video track, the other are one-frame
20671           tracks (images). Unfortunately, the number of frames according
20672           to the trak header is 1 for each, so that doesn't help. So
20673           instead, I look at the duration and discard tracks with a
20674           duration shorter than 20% of the length of the stream. Better
20675           than nothing.
20676
20677 2004-10-01  Christian Schaller <christian@fluendo.com>
20678
20679         * ext/ivorbis/vorbis.c:
20680           Patch from Phil Blundell (Bug 152341)
20681
20682 2004-10-01  Wim Taymans  <wim@fluendo.com>
20683
20684         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20685         (speex_dec_get_formats), (speex_dec_convert),
20686         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20687         (speex_dec_chain), (gst_speexdec_get_property),
20688         (gst_speexdec_set_property):
20689         Small cleanups.
20690
20691 2004-10-01  Wim Taymans  <wim@fluendo.com>
20692
20693         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20694         (gst_wavparse_stream_init), (gst_wavparse_fmt),
20695         (gst_wavparse_other), (gst_wavparse_loop),
20696         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20697         (gst_wavparse_srcpad_event):
20698         * gst/wavparse/gstwavparse.h:
20699         Added some more debugging info.
20700         Fix the case where the length of the file is 0.
20701         Make sure we seek to sample borders.
20702
20703 2004-10-01  Wim Taymans  <wim@fluendo.com>
20704
20705         * gst/playback/README:
20706         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20707         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20708         (try_to_link_1), (no_more_pads), (close_link), (type_found):
20709         Add some debug info to decodebin, update README
20710
20711 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20712
20713         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20714           Don't use g_print(); use GST_DEBUG().
20715
20716 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20717
20718         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20719         (gst_ogg_mux_queue_pads):
20720           Handle EOS properly.
20721
20722 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20723
20724         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20725
20726         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20727         (gst_faad_chain), (gst_faad_change_state):
20728         * ext/faad/gstfaad.h:
20729           Allow playback of raw (unframed) MPEG AAC files (#148993).
20730
20731 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
20732
20733         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20734
20735         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20736           Throw error if we didn't recognize the stream. Fixes #152289.
20737
20738 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20739
20740         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20741           Fix negotiation.
20742
20743 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
20744
20745         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20746
20747         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20748           Fix memleak.
20749
20750 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
20751
20752         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20753
20754         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
20755           Solve #152805.
20756         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
20757           Solve 152806.
20758
20759 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20760
20761         * gst-libs/gst/riff/riff-media.c:
20762         (gst_riff_create_video_caps_with_data),
20763         (gst_riff_create_audio_caps_with_data):
20764           Add codec_data handling (like asfdemux used to do).
20765         * gst/asfdemux/gstasf.c: (plugin_init):
20766         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20767         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
20768           Use riff-media for caps creation instead of our own (mostly
20769           broken) copy of its functions.
20770
20771 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20772
20773         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
20774           Don't actually error out if we get another return value than
20775           -EINVAL. Opposite to what I first thought, drivers have random
20776           return values for this, although -EINVAL is the expected return
20777           value. Since this is not fatal, we shouldn't use
20778           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
20779
20780 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20781
20782         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
20783         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
20784         (dvdreadsrc_get_property), (_open), (_seek), (_read),
20785         (dvdreadsrc_get), (dvdreadsrc_open_file),
20786         (dvdreadsrc_change_state):
20787           Fix. Don't do one big huge loop around the whole DVD, that will
20788           cache all data and thus eat sizeof(dvd) (several GB) before we
20789           see something.
20790         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20791           Actually NULL'ify event after using it.
20792         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
20793         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
20794         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
20795         (gst_ebml_read_seek), (gst_ebml_read_skip):
20796           Handle events.
20797         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
20798         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
20799         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
20800           Fix timing (this will probably break if I seek using menus, but
20801           I didn't get there yet). VOBs and normal DVDs should now work.
20802           Add a mpeg2-only pad with high rank so this get autoplugged for
20803           MPEG-2 movies.
20804         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
20805         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
20806         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
20807         (gst_mpeg_demux_get_audio_stream),
20808         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
20809         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
20810           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
20811           MPEG-1 but use dvddemux for MPEG-2.
20812         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
20813         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
20814         (gst_mpeg_parse_parse_packhead):
20815           Timing. Only add pad template if it exists. Add sink template from
20816           class and not from ourselves. This means we will always use the
20817           correct sink template even if it is not the one defined in this
20818           file.
20819
20820 2004-09-29  Wim Taymans  <wim@fluendo.com>
20821
20822         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
20823         (gst_mpeg_demux_parse_pes):
20824         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
20825         Fix playback of mpeg again, timestamps where screwed up by
20826         patch 1.61.
20827
20828 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20829
20830         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
20831           Only return true if we actually filled something in. Prevents
20832           player applications from showing a random length for flac files.
20833         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
20834         (gst_riff_read_use_event), (gst_riff_read_handle_event),
20835         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
20836         (gst_riff_read_strf_vids_with_data),
20837         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
20838           OK, ok, so I implemented event handling. Apparently it's normal
20839           that we receive random events at random points without asking
20840           for it.
20841         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20842         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20843         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
20844         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20845         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
20846         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
20847         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
20848         * gst/avi/gstavidemux.h:
20849           Implement non-lineair chunk handling and subchunk processing.
20850           The first solves playback of AVI files where the audio and video
20851           data of individual buffers that we read are not synchronized.
20852           This should not happen according to the wonderful AVI specs, but
20853           of course it does happen in reality. It is also a prerequisite for
20854           the second. Subchunk processing allows us to cut chunks in small
20855           pieces and process each of these pieces separately. This is
20856           required because I've seen several AVI files with incredibly large
20857           audio chunks, even some files with only one audio chunk for the
20858           whole file. This allows for proper playback including seeking.
20859           This patch is supposed to fix all AVI A/V sync issues.
20860         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
20861         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
20862           Work.
20863         * gst/modplug/gstmodplug.cc:
20864           Proper return value setting for the query() function.
20865         * gst/playback/gstplaybasebin.c: (setup_source):
20866           Being in non-playing state (after, e.g., EOS) is not necessarily
20867           a bad thing. Allow for that. This fixes playback of short files.
20868           They don't actually playback fully now, because the clock already
20869           runs. This means that small files (<500kB) with a small length
20870           (<2sec) will still not or barely play. Other files, such as mod
20871           or flx, will work correctly, however.
20872
20873 2004-09-28  Wim Taymans  <wim@fluendo.com>
20874
20875         * ext/speex/gstspeex.c: (plugin_init):
20876         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
20877         (gst_speex_dec_class_init), (speex_dec_get_formats),
20878         (speex_get_event_masks), (speex_get_query_types),
20879         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
20880         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
20881         (gst_speexdec_get_property), (gst_speexdec_set_property),
20882         (speex_dec_change_state):
20883         * ext/speex/gstspeexdec.h:
20884         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
20885         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
20886         (gst_speexenc_base_init), (gst_speexenc_class_init),
20887         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
20888         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
20889         (gst_speexenc_src_query), (gst_speexenc_init),
20890         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
20891         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
20892         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
20893         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
20894         (gst_speexenc_chain), (gst_speexenc_get_property),
20895         (gst_speexenc_set_property), (gst_speexenc_change_state):
20896         * ext/speex/gstspeexenc.h:
20897         Rewrote speex encoder, make sure it can be embedded in ogg.
20898         Implemented speex decoder.
20899
20900 2004-09-28  Christian Schaller <christian@fluendo.com>
20901
20902         * configure.ac:
20903         Remove kioslave plugin. Markey is brewing a new working one
20904         * ext/Makefile.am: Remove kioslave plugin
20905         * ext/kio: remove
20906         * gst-plugins.spec.in: remove kio plugin from spec
20907
20908 2004-09-27  Wim Taymans  <wim@fluendo.com>
20909
20910         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20911         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20912         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
20913         (gst_multifdsink_new_client),
20914         (gst_multifdsink_handle_client_write),
20915         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20916         (gst_multifdsink_handle_clients):
20917         * gst/tcp/gstmultifdsink.h:
20918         Make syncing to keyframes actually work for new clients and lagging
20919         clients.
20920
20921 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20922
20923         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
20924         (gst_navigationtest_handle_src_event), (draw_box_planar411),
20925         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
20926         * gst/debug/gstnavigationtest.h:
20927           make navigationtest display button-press and button-release events
20928
20929 2004-09-26 Iain <iaingnome@gmail.com>
20930
20931         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
20932         the channels have received a new media event.
20933         (interleave_buffered_loop): Compresses a new media event on all
20934         channels into one.
20935
20936 2004-09-26 Iain <iaingnome@gmail.com>
20937
20938         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
20939         call the sinkpad's default event handler and not the srcpads. He also
20940         says this is confusing :)
20941         (gst_wavenc_stop_file): Company says that seek events only go upstream
20942         we should send a discontinuous downstream instead.
20943
20944 2004-09-25  Christian Schaller <christian@fluendo.com>
20945
20946         * Update SPEC file to be usable in conjunction with Fedora Core,
20947           Fedora.us and freshrpms packages
20948         * Fix typo in multifilesrc test Makefile
20949
20950 2004-09-24  Wim Taymans  <wim@fluendo.com>
20951
20952         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20953         Only signal the no_more_pads signal when we have
20954         added the stream to our list.
20955
20956 2004-09-24  Wim Taymans  <wim@fluendo.com>
20957
20958         * gst/playback/gstplaybasebin.c: (remove_prerolls),
20959         (new_decoded_pad):
20960         * gst/playback/gstplaybasebin.h:
20961         * gst/playback/gstplaybin.c: (setup_sinks):
20962         Don't try to preroll or decode more than one audio/video
20963         track.
20964
20965 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20966
20967         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
20968           Throw error if we failed to find a suitable output. This should
20969           throw an error if we successfully set up a pipeline (e.g. because
20970           we recognized a media file) but found no decodable streams in it
20971           (e.g. because it contains only media stream types for which we
20972           have no decoders, or because it's not a media type).
20973
20974 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20975
20976         * ext/dirac/Makefile.am:
20977         * ext/dirac/gstdirac.cc:
20978         * ext/dirac/gstdiracdec.cc:
20979         * ext/dirac/gstdiracdec.h:
20980           Do something. Don't actually know if this works because I don't
20981           have a demuxer yet.
20982         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
20983           Add channels=1 to caps returned from _getcaps().
20984         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
20985         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
20986         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
20987         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
20988         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
20989         (gst_ogm_parse_change_state):
20990           Separate between audio/video so ogmaudioparse actually uses the
20991           audio pad templates. Both audio and video work now, including
20992           autoplugging. Also use sometimes-srcpad hack.
20993         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
20994           Handle events better. Don't hang on infinite loops.
20995         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
20996         (gst_avi_demux_init), (gst_avi_demux_reset),
20997         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
20998         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
20999         (gst_avi_demux_change_state):
21000         * gst/avi/gstavidemux.h:
21001           Improve A/V sync. Still not perfect.
21002         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21003         (gst_ebml_read_skip):
21004           Handle events better.
21005         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21006         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21007         (qtdemux_audio_caps):
21008           Add IMA4. Improve event handling. Save offset after a seek when
21009           the headers are at the end of the file so that we don't end up in
21010           an infinite loop.
21011         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21012           Add low-priority typefind support for files with no length.
21013
21014 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21015
21016         * testsuite/multifilesink/Makefile.am:
21017         fix typo
21018
21019 2004-09-22  Julien MOUTTE  <julien@moutte.net>
21020
21021         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21022         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21023         mistakes from thaytan's patches.
21024
21025 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21026
21027         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21028           For completeness, XSync in the destroy function as xvimage does.
21029
21030 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
21031
21032         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21033            Correct caps negotiation
21034         * gst/volume/gstvolume.c: (volume_chain_float),
21035         (volume_chain_int16):
21036            Modify debug output to be little more informative
21037         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21038         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21039         (gst_xvimagesink_xvimage_destroy):
21040           Add XSync calls after detaching from the shared memory segment to
21041           avoid a crash.
21042
21043 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21044
21045         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21046         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21047         * ext/vorbis/vorbis.c: (plugin_init):
21048         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21049         (gst_vorbisenc_chain):
21050         * ext/vorbis/vorbisenc.h:
21051         remove explicit newmedia support from oggmux and vorbisenc
21052         add debug category to vorbisenc
21053         * gst/multifilesink/gstmultifilesink.c:
21054         (gst_multifilesink_class_init), (gst_multifilesink_init),
21055         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21056         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21057         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21058         (plugin_init):
21059         * gst/multifilesink/gstmultifilesink.h:
21060         add support for streamheader in multifilesink
21061
21062 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21063
21064         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21065         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21066         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21067           Prevent infinite loops. More correct error reporting.
21068         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21069           Error out if negotiation fails.
21070         * gst/playback/gstplaybasebin.c: (setup_source),
21071         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21072         (gst_play_base_bin_found_tag):
21073           Error/tag forwarding. Pre-roll fixes for source errors on state
21074           changes (e.g. "file does not exist") to prevent hangs.
21075
21076 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21077
21078         * testsuite/multifilesink/Makefile.am:
21079         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21080         (gst_newmedia_class_init), (gst_newmedia_init),
21081         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21082         (newfile_signal), (test_signal), (main):
21083         * testsuite/multifilesink/multifilesrc_test.c: (main):
21084         * testsuite/multifilesink/oggtheora_test.c:
21085         (gst_newmedia_base_init), (gst_newmedia_class_init),
21086         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21087         (test_format), (newfile_signal), (test_signal), (main):
21088         * testsuite/multifilesink/oggvorbis_test.c:
21089         (gst_newmedia_base_init), (gst_newmedia_class_init),
21090         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21091         (test_format), (newfile_signal), (test_signal), (main):
21092         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21093         (gst_newmedia_class_init), (gst_newmedia_init),
21094         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21095         (newfile_signal), (test_signal), (main):
21096         New media tests
21097
21098 2004-09-20  Christian Schaller <christian@fluendo.com>
21099
21100         * Fix mikmod license to LGPL as they have relicensed
21101         * Move Dirac and Effectv into LGPL section of README_license
21102
21103 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21104
21105         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21106         (gst_mad_change_state):
21107           Allow for mp3 rate/channels changes. However, only very
21108           conservatively. Reason that we *have* to enable this is smiply
21109           because the mad find_sync() function is not good enough, it will
21110           regularly sync on random data as valid frames and therefore make
21111           us provide random caps as *final* caps of the stream. The best fix
21112           I could think of is to simply require several of the same stream
21113           changes in a row before we change caps.
21114           The actual testcase that works now is #
21115         * ext/ogg/Makefile.am:
21116         * ext/ogg/gstogg.c: (plugin_init):
21117         * ext/ogg/gstogmparse.c:
21118           OGM support (video only for now; I need an audio sample file).
21119         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21120         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21121         (gst_asf_demux_add_video_stream):
21122           WMV extradata.
21123         * gst/playback/gstplaybasebin.c: (unknown_type):
21124           Don't error out on single unknown-types after all. It's wrong.
21125           If we found type of video and audio but not of a subtitle stream,
21126           it will still error out (which is unwanted). Will find a better fix
21127           later on.
21128         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21129         (ogmaudio_type_find), (plugin_init):
21130           OGM support.
21131
21132 2004-09-20  Johan Dahlin  <johan@gnome.org>
21133
21134         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21135         after setting caps.
21136
21137 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21138
21139         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21140         * gst/wavenc/gstwavenc.h:
21141         Added newmedia support to wavenc
21142
21143 2004-09-17  Wim Taymans  <wim@fluendo.com>
21144
21145         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21146         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21147         (gst_fdset_fd_can_write), (gst_fdset_wait):
21148         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21149         (gst_multifdsink_init), (gst_multifdsink_add),
21150         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21151         (gst_multifdsink_remove_client_link),
21152         (gst_multifdsink_client_queue_buffer),
21153         (gst_multifdsink_handle_client_write),
21154         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21155         (gst_multifdsink_close), (gst_multifdsink_change_state):
21156         * gst/tcp/gstmultifdsink.h:
21157         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21158         (gst_tcpserversink_removed):
21159         Small cleanups in fdset.c
21160         Use a hastable to map fd to the client structure for faster
21161         lookup in _remove and get_stats.
21162         Added virtual function to close the fds.
21163         Handle clients even when the select/poll call was unblocked because
21164         of a command.
21165         Implement syncing to keyframe in the recovery procedure.
21166
21167 2004-09-16 Iain <iaingnome@gmail.com>
21168
21169         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21170         try caps.
21171
21172 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21173
21174         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21175           Caps are only set if the type of the stream is unknown, but this
21176           is initialized in ->init_stream(), so set to UNKNOWN after calling
21177           ->init_stream() so that capsnego starts.
21178
21179 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21180
21181         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21182         (gst_avi_demux_stream_data):
21183           Just hardcode for raw audio then. AVI audio sucks.
21184
21185 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
21186
21187         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21188         * gst/matroska/matroska-mux.c: (audiosink_templ),
21189         (gst_matroska_mux_audio_pad_link):
21190         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21191         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21192
21193 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21194
21195         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21196         (gst_avi_demux_stream_data):
21197           Try to fix a/v sync issues.
21198
21199 2004-09-15  David Schleef  <ds@schleef.org>
21200
21201         * configure.ac: remove NASM check, since we don't use it.  Update
21202         dirac check to 0.4
21203         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21204         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21205         Initialized variables.
21206         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21207         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21208         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21209         SVQ3 format
21210
21211 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21212
21213         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21214         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21215         * gst/avi/gstavidemux.h:
21216           Fix for compressed audio (mp3) timestamp generation. How did this
21217           ever work?
21218
21219 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21220
21221         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21222           Volume is a double not a float.
21223
21224 2004-09-15  Wim Taymans  <wim@fluendo.com>
21225
21226         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21227         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21228         Don't close the fd in multifdsink as we didn't open it in the
21229         first place. Some cleanups.
21230
21231 2004-09-15  Wim Taymans  <wim@fluendo.com>
21232
21233         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21234         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21235         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21236         Fix the case where the muxer would mark pages as delta
21237         frames when they are not (vorbis only ogg).
21238
21239 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21240
21241         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21242         (gst_play_base_bin_change_state):
21243           Handle the case where we failed to setup a clear pipeline. This
21244           will throw an error (or EOS, another nice case) and if you don't
21245           catch that, the app will wait for the signal forever (and thus
21246           hang).
21247
21248 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21249
21250         * ext/gnomevfs/gstgnomevfssink.c:
21251         (gst_gnomevfssink_uri_get_protocols):
21252         * ext/gnomevfs/gstgnomevfssrc.c:
21253         (gst_gnomevfssrc_uri_get_protocols):
21254         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21255         * ext/gnomevfs/gstgnomevfsuri.h:
21256           Use _uri_new() instead of _open(), so it doesn't take as long and
21257           Christophe's computer won't hang.
21258         * gst/playback/gstplaybasebin.c: (unknown_type):
21259           Throw error on unknown media type, so apps actually display it.
21260
21261 2004-09-14  Brian Cameron  <brian.cameron@sun.com
21262
21263         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
21264           this script to work on Solaris since bash shell handles echo
21265           differenly than bash.
21266
21267 2004-09-17  Wim Taymans  <wim@fluendo.com>
21268
21269         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21270         (setup_source), (gst_play_base_bin_set_property),
21271         (gst_play_base_bin_add_element):
21272         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21273         Some more work on making sure seeking pauses the pipeline and
21274         that changing the uri actually does something.
21275
21276 2004-09-17  Wim Taymans  <wim@fluendo.com>
21277
21278         * gst/tcp/gstfdset.c: (gst_fdset_wait):
21279         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21280         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21281         (gst_tcpserversink_close):
21282         Be a bit more paranoid when freeing memory.
21283
21284 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21285
21286         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21287         (qtdemux_parse_trak):
21288           Don't crash by dividing by zero (see sample movie in #126922).
21289
21290 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21291
21292         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21293           Don't touch non-existing data (fixes crash on file in #140147).
21294
21295 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21296
21297         * gst/playback/gstplaybasebin.c:
21298         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21299           Handle double disposals, and proper change of URIs.
21300
21301 2004-09-13  Martin Eikermann <meiker@upb.de>
21302
21303         * gst/mpegstream/gstmpegparse.c:
21304           fix synchronistation for streams recorded from digital PCR
21305           fixes bug #119376
21306
21307 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21308
21309         * ext/gnomevfs/Makefile.am:
21310         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21311         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21312         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21313         (gst_gnomevfssink_uri_get_type),
21314         (gst_gnomevfssink_uri_get_protocols),
21315         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21316         (gst_gnomevfssink_uri_handler_init),
21317         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21318         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21319         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21320         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21321         (gst_gnomevfssrc_uri_get_type),
21322         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21323         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21324         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21325         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21326         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21327         * ext/gnomevfs/gstgnomevfsuri.h:
21328           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21329           of fake URIs to see which this version of Gnome-VFS likes, and
21330           uses that for the Gst-URI interface. Makes playbin support http://
21331           streams. Also fix up some stupid behaviour in gnomevfssrc.
21332
21333 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21334
21335         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21336         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21337         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21338         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21339           Update mixer (to sync with other sessions) if we try to obtain
21340           a new value. This makes alsamixer work accross applications.
21341         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21342           Only call sync functions if we're running, else alsalib asserts.
21343         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21344           Sometimes fails to compile. Possibly a gcc bug.
21345         * gst/playback/gstplaybin.c: (gen_video_element),
21346         (gen_audio_element):
21347           Add a reference to an application-provided object, because we lose
21348           this same reference if we add it to the bin. If we don't do this,
21349           we can only use this object once and thus crash if we go from
21350           ready to playing, back to ready and back to playing again.
21351           Also add an audioscale element because several cheap soundcards -
21352           like mine - don't support all samplerates.
21353         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21354         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21355           Fix wrong order or PAR calls. Makes automatically obtained PAR
21356           from the X server atually being used.
21357
21358 2004-09-12  David Schleef  <ds@schleef.org>
21359
21360         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21361         #151887, #152102, #152247.
21362         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21363         * examples/seeking/cdparanoia.c: same
21364         * examples/seeking/cdplayer.c: same
21365         * examples/seeking/seek.c: same
21366         * examples/seeking/spider_seek.c: same
21367         * examples/seeking/vorbisfile.c: same
21368         * examples/stats/mp2ogg.c: same
21369         * ext/esd/esdsink.c: (gst_esdsink_class_init),
21370         (gst_esdsink_dispose): Dispose of element properly.
21371         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21372         fixes.
21373         * ext/nas/nassink.c: (gst_nassink_class_init),
21374         (gst_nassink_dispose): Dispose of element correctly.
21375         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21376         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21377         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21378         Fix 64-bit warning.
21379         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21380         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21381         Fix 64-bit warning.
21382
21383 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
21384
21385         * configure.ac : change speex detection as 1.1.6 now uses
21386           .pc/pkg-config and they changed their headers location.
21387
21388 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
21389
21390         * gst/matroska/matroska-mux.h:
21391         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21392         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21393         (gst_matroska_mux_write_data):
21394           Write multiple blocks/frames per cluster.
21395                 Write meta-seek information (seek heads).
21396
21397 2004-09-09  Scott Wheeler <wheeler@kde.org>
21398
21399         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21400         (gst_play_bin_set_property), (gst_play_bin_get_property),
21401         (gen_audio_element), (gen_audio_element):
21402           Add a volume element / property to the pipeline.
21403
21404 2004-09-07  Wim Taymans  <wim@fluendo.com>
21405
21406         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21407         Copy timestamps from the master pad to the output buffers.
21408
21409 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21410
21411         * ext/raw1394/gstdv1394src.c:
21412           throw errors when applicable
21413
21414 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
21415
21416         * gst/matroska/ebml-ids.h:
21417         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21418         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21419         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21420           automatically convert unix time <-> ebml time when reading/writing
21421           a date, use gst_ebml_write_uint to write CUETIME,
21422           not gst_ebml_write_date.
21423         * gst/matroska/matroska-ids.h:
21424         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21425         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21426         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21427         (gst_matroska_mux_write_data):
21428           Write track and segment UIDs, write muxing date, write
21429           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21430           Create cues for audio only files.
21431
21432 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21433
21434         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21435         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21436           Re-commit ALSA switches.
21437         * gst/adder/gstadder.c: (gst_adder_loop):
21438           64-bit fix (#151416).
21439         * gst/debug/progressreport.c: (gst_progressreport_report):
21440           64-bit fix (#151419).
21441         * gst/matroska/matroska-demux.c:
21442         (gst_matroska_demux_parse_contents):
21443           64-bit fix (#151420).
21444         * gst/playback/test3.c: (update_scale):
21445           64-bit fix (#151421).
21446
21447 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21448
21449         * configure.ac:
21450           bump nano to cvs
21451
21452 === release 0.8.4 ===
21453
21454 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21455
21456         * configure.ac: releasing 0.8.4, "Alias"
21457
21458 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21459
21460         * ext/theora/Makefile.am:
21461           fix makefile.  Fixes #151462.
21462
21463 2004-08-30  Wim Taymans  <wim@fluendo.com>
21464
21465         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21466         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21467         (gst_multifdsink_remove_client_link),
21468         (gst_multifdsink_client_queue_buffer),
21469         (gst_multifdsink_handle_client_write):
21470         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21471         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21472         Fix some memory leaks.
21473
21474 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21475
21476         Patch by: David Schleef
21477
21478         * configure.ac:
21479         * sys/Makefile.am:
21480           rename our detection macro for V4L2.  Fixes #151236.
21481
21482 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21483
21484         Patch by: David Schleef
21485
21486         * configure.ac:
21487           check to define LAMEPRESET.  Fixes #151232.
21488
21489 2004-08-27  David Schleef  <ds@schleef.org>
21490
21491         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21492         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21493         (gst_glimagesink_fixate):  Move local variable declarations to
21494         make gcc-2.95 happy.
21495
21496 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21497
21498         * configure.ac:
21499           bump nano for prerelease
21500
21501 2004-08-27  David Schleef  <ds@schleef.org>
21502
21503         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21504         * sys/sunaudio/gstsunaudiosrc.c:
21505         * sys/sunaudio/gstsunaudiosrc.h:
21506
21507 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21508
21509         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21510         handle EOS correctly
21511         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21512         * gst/matroska/matroska-mux.h:
21513         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21514         VFW compatibility mode
21515
21516 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21517
21518         patch by: Zaheer Abbas Merali
21519
21520         * ext/ogg/gstoggmux.c:
21521         * ext/vorbis/vorbisenc.c:
21522         * ext/vorbis/vorbisenc.h:
21523           handle NEWMEDIA
21524
21525 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21526
21527         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21528         fix byte order reversion on little endian machines.
21529         * gst/matroska/matroska-mux.c: (audiosink_templ),
21530         (gst_matroska_mux_audio_pad_link):
21531         add TTA codec to the list of supported codecs.
21532         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21533         (gst_matroska_mux_start), (gst_matroska_mux_finish),
21534         (gst_matroska_mux_write_data):
21535         * gst/matroska/matroska-mux.h:
21536         write segment duration correctly, write muxing app string, fixes bugs
21537         #140897 and #140898.
21538         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21539         wait for all pads to be negotiated before starting to mux.
21540
21541 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21542
21543         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21544         * ext/lame/gstlame.h:
21545         Added new media support to lame
21546
21547 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21548
21549         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21550         send vorbis headers at the beginning of a stream, fixes bug #141554.
21551         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21552         bug #148950.
21553         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21554         (gst_matroska_demux_plugin_init):
21555         * gst/matroska/matroska-ids.h:
21556         enable demuxing of TTA audio streams, fixes bug #148951.
21557         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21558         enable typefinding for TTA audio files, fixes bug #148711.
21559         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21560         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21561         fixes playback of packed bitstream and xvid with bframes, bug #135407.
21562
21563 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
21564
21565         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21566         (gst_riff_read_element_data), (gst_riff_read_seek),
21567         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21568         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21569         <teuf@gnome.org>
21570
21571 2004-08-23 Iain <iaingnome@gmail.com>
21572
21573         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21574         tags. They appear to be handled differently to normal.
21575         (tag_list_to_id3_tag_foreach): Ditto.
21576
21577 2004-08-22  Wim Taymans  <wim@fluendo.com>
21578
21579         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21580         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21581         Make sure we never send -1 granulepos.
21582
21583 2004-08-20  Wim Taymans  <wim@fluendo.com>
21584
21585         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21586         (gst_ogg_mux_loop):
21587         I will accept bitchslappings with non sharp objects.
21588
21589 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21590
21591         * configure.ac:
21592         Clean up the test for lame presets
21593
21594 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21595
21596         * configure.ac:
21597         * ext/lame/Makefile.am:
21598         * ext/lame/gstlame.c: (gst_lame_class_init),
21599         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21600         Only enable lame presets if version of lame has presets in API
21601
21602 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
21603         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21604         * gst/udp/gstudpsrc.h:
21605           Don't call gst_pad_push in a get function. Fixes #150449
21606
21607 2004-08-18  Wim Taymans  <wim@fluendo.com>
21608
21609         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21610         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21611         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21612         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21613         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21614         (gst_fdset_wait):
21615         * gst/tcp/gstfdset.h:
21616         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21617         (gst_multifdsink_client_queue_buffer),
21618         (gst_multifdsink_handle_client_write):
21619         * gst/tcp/gstmultifdsink.h:
21620         Some extra checks in gstfdset.
21621         Only use send() when the fd is a socket. Don't try to
21622         read from write only fds.
21623
21624 2004-08-18  Wim Taymans  <wim@fluendo.com>
21625
21626         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21627         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21628         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21629         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21630         (gst_fdset_wait):
21631         Add more locking and bounds checking.
21632
21633 2004-08-18  Wim Taymans  <wim@fluendo.com>
21634
21635         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21636         Realloc test fdset in the lock and right before starting
21637         the poll call. Bump the limit to 4096.
21638
21639 2004-08-17  David Schleef  <ds@schleef.org>
21640
21641         * sys/sunaudio/Makefile.am:
21642         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21643         of rates and channels.  Make debugging less obnoxious.
21644
21645         Patch from Balamurali Viswanathan implementing a mixer for
21646         Sun audio.  (bug #144091):
21647         * sys/sunaudio/gstsunelement.c:
21648         * sys/sunaudio/gstsunelement.h:
21649         * sys/sunaudio/gstsunmixer.c:
21650         * sys/sunaudio/gstsunmixer.h:
21651
21652 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21653
21654         * gst/audioscale/gstaudioscale.c:
21655         * gst/audioscale/gstaudioscale.h:
21656         made audioscale resample from any sample rate to any sample rate
21657
21658 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21659
21660         * ext/libpng/gstpngdec.c:
21661           error out on unsupported types
21662
21663 2004-08-17  Iain <iaingnome@gmail.com>
21664
21665         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21666         mid_side and loose_mid_side properties if its a stereo stream.
21667
21668 2004-08-17  Wim Taymans  <wim@fluendo.com>
21669
21670         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21671         (theora_get_formats), (theora_dec_src_convert),
21672         (theora_dec_sink_convert), (theora_dec_src_query),
21673         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21674         Add a debug line.
21675
21676 2004-08-17  Wim Taymans  <wim@fluendo.com>
21677
21678         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21679         (gst_ogg_pad_push):
21680         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21681         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21682         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21683         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21684         Mark delta units in the muxer.
21685         Try to decode the packet after an out-of-sync error from
21686         libogg.
21687
21688 2004-08-17  Wim Taymans  <wim@fluendo.com>
21689
21690         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21691         (gst_multifdsink_init), (gst_multifdsink_add),
21692         (gst_multifdsink_client_queue_buffer),
21693         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21694         * gst/tcp/gstmultifdsink.h:
21695         Added option to send a keyframe to clients as the first buffer.
21696         Make timeout property writable.
21697
21698 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21699
21700         patch by: Wim Taymans
21701
21702         * gst/tcp/gstfdset.c:
21703         * gst/tcp/gstmultifdsink.c:
21704           fix index comparison, should include 0
21705
21706 2004-08-16  Wim Taymans  <wim@fluendo.com>
21707
21708         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21709         (gst_fdset_add_fd), (gst_fdset_remove_fd),
21710         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21711         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21712         (gst_fdset_wait):
21713           copy when reallocing for poll so the select arguments don't get
21714           changed during the call
21715
21716 2004-08-16  Wim Taymans  <wim@fluendo.com>
21717
21718         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21719         (gst_theora_enc_class_init), (theora_enc_sink_link),
21720         (theora_buffer_from_packet), (theora_enc_chain):
21721         Fix bug where buffers were not marked as keyframes
21722         correctly.
21723
21724 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21725
21726         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21727         (gst_lame_preset_get_type), (gst_lame_class_init):
21728         describe the enum values for vbr mode and presets more verbosely
21729
21730 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21731
21732         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21733         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21734         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21735         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21736         * ext/lame/gstlame.h:
21737         add preset property to lame so it can use lame presets
21738
21739 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21740
21741         * ext/lame/gstlame.c: (gst_lame_get_property):
21742         whoops forgot break, thanks teuf
21743
21744 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21745
21746         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21747         (gst_lame_class_init), (gst_lame_src_getcaps),
21748         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
21749         (gst_lame_get_property), (gst_lame_setup):
21750         * ext/lame/gstlame.h:
21751         fix lame's broken vbr stuff, allow it to resample if need be, and also
21752         make xing header optional
21753
21754 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21755
21756         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
21757         added getcaps function so samplerate doesnt get fixated to silly values
21758
21759 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21760
21761         * ext/lame/gstlame.c: (gst_lame_src_link):
21762         revert previous fix
21763
21764 2004-08-12  Johan Dahlin  <johan@gnome.org>
21765
21766         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
21767         checks. Doesn't matter what state we are in. Interfaces are a
21768         compile time thing, not runtime. It also broke the python bindings.
21769
21770 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21771
21772         * ext/lame/gstlame.c: (gst_lame_src_link):
21773         made source pad link function check if sinkpad is ok..fixes the problem
21774         where core fixates the output rate of lame stupidly
21775
21776 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
21777
21778         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
21779         * sys/v4l/v4l_calls.c:
21780         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
21781           fix fixate function to handle nonsimple caps.
21782           remove bogus check in _link
21783           cleanups
21784
21785 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21786
21787         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
21788         set default compression ratio parameter to 0.0 so bitrate parameter
21789         works :)
21790
21791 2004-08-11  David Schleef  <ds@schleef.org>
21792
21793         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
21794
21795 2004-08-11  David Schleef  <ds@schleef.org>
21796
21797         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
21798         before.
21799
21800 2004-08-11  David Schleef  <ds@schleef.org>
21801
21802         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
21803
21804 2004-08-11  David Schleef  <ds@schleef.org>
21805
21806         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
21807           license field
21808         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
21809         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
21810           LGPL.
21811         * gst/auparse/gstauparse.c: Fix plugin license field.
21812         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
21813         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
21814         * gst/rtp/gstrtp.c: Fix plugin license field.
21815
21816 2004-08-11  Wim Taymans  <wim@fluendo.com>
21817
21818         * gst/tcp/Makefile.am:
21819         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
21820         (ensure_size), (gst_fdset_new), (gst_fdset_free),
21821         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
21822         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
21823         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
21824         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21825         (gst_fdset_fd_can_write), (gst_fdset_wait):
21826         * gst/tcp/gstfdset.h:
21827         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21828         (gst_multifdsink_class_init), (gst_multifdsink_init),
21829         (gst_multifdsink_add), (gst_multifdsink_remove),
21830         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
21831         (gst_multifdsink_remove_client_link),
21832         (gst_multifdsink_handle_client_read),
21833         (gst_multifdsink_client_queue_data),
21834         (gst_multifdsink_client_queue_caps),
21835         (gst_multifdsink_client_queue_buffer),
21836         (gst_multifdsink_handle_client_write),
21837         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21838         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21839         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
21840         (gst_multifdsink_close):
21841         * gst/tcp/gstmultifdsink.h:
21842         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21843         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
21844         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
21845         (gst_tcpserversink_close):
21846         * gst/tcp/gsttcpserversink.h:
21847         Abstracted away the select call, implemented poll (yes we ran into
21848         the 1024 limit in production).
21849
21850 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21851
21852         * gst/tcp/gsttcp.c:
21853         * gst/tcp/gsttcpplugin.c:
21854           improve debuggging, remove assert
21855
21856 2004-08-10  Wim Taymans  <wim@fluendo.com>
21857
21858         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
21859         (gst_client_status_get_type), (gst_multifdsink_class_init),
21860         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
21861         (gst_multifdsink_handle_client_read),
21862         (gst_multifdsink_handle_client_write),
21863         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21864         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
21865         (gst_multifdsink_get_property):
21866         * gst/tcp/gstmultifdsink.h:
21867         * gst/tcp/gsttcp-marshal.list:
21868         Starting to prepare for specifying buffer time in other units
21869         than buffers. Expose remove reason in signal.
21870
21871 2004-08-10  Wim Taymans  <wim@fluendo.com>
21872
21873         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21874         (gst_multifdsink_remove), (gst_multifdsink_clear),
21875         (gst_multifdsink_remove_client_link),
21876         (gst_multifdsink_handle_client_read),
21877         (gst_multifdsink_client_queue_data),
21878         (gst_multifdsink_client_queue_buffer),
21879         (gst_multifdsink_handle_client_write),
21880         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
21881         (gst_multifdsink_chain), (gst_multifdsink_close):
21882         * gst/tcp/gstmultifdsink.h:
21883         Added more debugging info. Changed the way clients are
21884         removed from the lists. Fixed a bug where a bad file descriptor
21885         could cause many clients to be removed.
21886
21887 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21888
21889         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
21890           allow all pixel-aspect-ratios, not just 1:1
21891
21892 2004-08-09  David Schleef  <ds@schleef.org>
21893
21894         * sys/glsink/ARB_multitexture.h:  Remove old files.
21895         * sys/glsink/EXT_paletted_texture.h:
21896         * sys/glsink/NV_register_combiners.h:
21897         * sys/glsink/gstgl_nvimage.c:
21898         * sys/glsink/gstgl_pdrimage.c:
21899         * sys/glsink/gstgl_rgbimage.c:
21900         * sys/glsink/gstglsink.c:
21901         * sys/glsink/gstglsink.h:
21902         * sys/glsink/gstglxwindow.c:
21903         * sys/glsink/regcomb_yuvrgb.c:
21904
21905 2004-08-09  David Schleef  <ds@schleef.org>
21906
21907         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
21908         GL sink plugin.  (Bug #147302)
21909
21910         * configure.ac: Test for OpenGL
21911         * sys/Makefile.am: Use test for OpenGL
21912         * sys/glsink/Makefile.am:
21913         * sys/glsink/glimagesink.c: rewrite
21914         * sys/glsink/glimagesink.h: rewrite
21915
21916 2004-08-09  David Schleef  <ds@schleef.org>
21917
21918         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
21919         sane framerates.
21920         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
21921         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
21922         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
21923
21924 2004-08-09  Wim Taymans  <wim@fluendo.com>
21925
21926         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21927         (gst_multifdsink_add), (gst_multifdsink_get_stats),
21928         (gst_multifdsink_client_remove),
21929         (gst_multifdsink_handle_client_read),
21930         (gst_multifdsink_handle_client_write),
21931         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21932         Do a bit more logging, make the client_read code more robust.
21933
21934 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21935
21936         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
21937         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
21938         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
21939         (gst_jpegdec_init), (gst_jpegdec_chain):
21940         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
21941         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
21942           cleanups, debugging fixes and memleak plugging
21943
21944 2004-08-09  Wim Taymans  <wim@fluendo.com>
21945
21946         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21947         (theora_get_formats), (theora_dec_src_convert),
21948         (theora_dec_sink_convert), (theora_dec_src_query),
21949         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
21950         (theora_dec_change_state):
21951         Don't crash on missing header packets.
21952
21953 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21954
21955         * po/LINGUAS:
21956         * po/sq.po:
21957           Added Albanian translation (Laurent Dhima)
21958         * po/cs.po:
21959           updated
21960
21961 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21962
21963         * ext/lame/gstlame.c:
21964           fix/add debugging
21965
21966 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21967
21968         * sys/ximage/ximagesink.c:
21969         * sys/xvimage/xvimagesink.c:
21970           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
21971
21972 2004-08-06  Wim Taymans  <wim@fluendo.com>
21973
21974         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21975         (gst_multifdsink_add), (gst_multifdsink_get_stats),
21976         (gst_multifdsink_client_remove),
21977         (gst_multifdsink_handle_client_read),
21978         (gst_multifdsink_handle_client_write),
21979         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
21980         Make sure we don't try to read more from a client that what
21981         ioctl says us or we deadlock.
21982
21983 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21984
21985         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
21986         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
21987         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
21988           decouple running_time and n_frames so it can handle changing
21989           framerate while running
21990
21991 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21992
21993         * po/nl.po:
21994         * po/sv.po:
21995           updated translations
21996
21997 2004-08-04  Benjamin Otte  <otte@gnome.org>
21998
21999         * gst/videotestsrc/gstvideotestsrc.c:
22000         (gst_videotestsrc_get_capslist), (generate_capslist),
22001         (plugin_init):
22002           generate the list of supported caps at startup and reuse it instead
22003           of always generating it
22004
22005 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22006
22007         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22008           whoops, last checkin broke normal build
22009
22010 2004-08-03  Benjamin Otte  <otte@gnome.org>
22011
22012         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22013         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22014         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22015         (gst_alsa_mixer_get_option):
22016         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22017         (dvdnavsrc_print_event):
22018         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22019         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22020         (gst_ogg_mux_pad_unlink):
22021         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22022         (gst_multipart_mux_pad_unlink):
22023         * gst/videofilter/gstvideobalance.c:
22024         (gst_videobalance_colorbalance_set_value):
22025         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22026         (gst_videomixer_pad_unlink):
22027         * po/uk.po:
22028         * sys/oss/gstossmixer.c:
22029         * sys/v4l/gstv4lcolorbalance.c:
22030         * sys/v4l/gstv4ltuner.c:
22031         * sys/v4l/v4lsrc_calls.c:
22032         * sys/v4l2/gstv4l2colorbalance.c:
22033         * sys/v4l2/gstv4l2tuner.c:
22034           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22035
22036 2004-08-03  Benjamin Otte  <otte@gnome.org>
22037
22038         * examples/dynparams/filter.c: (ui_control_create):
22039         * examples/gstplay/player.c: (print_tag):
22040         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22041         * ext/gdk_pixbuf/gstgdkanimation.c:
22042         (gst_gdk_animation_iter_may_advance):
22043         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22044         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22045         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22046         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22047         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22048         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22049         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22050         * gst/sine/demo-dparams.c: (main):
22051         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22052         * testsuite/alsa/formats.c: (create_pipeline):
22053         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22054           fixes for G_DISABLE_ASSERT and friends
22055         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22056         (mp3_type_frame_length_from_header), (mp3_type_find),
22057         (plugin_init):
22058           require mp3 typefinding to have at least MIN_HEADERS valid headers
22059           add typefinding for AAC adts files
22060
22061 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
22062
22063         * sys/ximage/ximagesink.c:
22064         (gst_ximagesink_calculate_pixel_aspect_ratio):
22065         * sys/xvimage/xvimagesink.c:
22066         (gst_xvimagesink_calculate_pixel_aspect_ratio):
22067         Make sure we calculate pixel-aspect-ratio using floating point maths
22068
22069 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22070
22071         * po/uk.po:
22072           updated translation
22073
22074 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22075
22076         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22077         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22078           add debugging for display PAR calculation
22079
22080 2004-08-02  David Schleef  <ds@schleef.org>
22081
22082         * configure.ac: Fix mikmod CFLAGS.
22083
22084 2004-07-27  Benjamin Otte  <otte@gnome.org>
22085
22086         * gst/audioscale/gstaudioscale.c:
22087         - fix templates to only support S16, it's the only format that works
22088         - make caps nego code use try_set_caps_nonfixed and fixation instead
22089         of try_set_caps twice, which is not nice for autopluggers
22090         - change rank to secondary, so autopluggers can pick it up after
22091         audioconvert
22092
22093 2004-08-02  Iain <iain@prettypeople.org>
22094
22095         * gst/interleave/interleave.c (interleave_init),
22096         (interleave_request_new_pad),
22097         (interleave_pad_removed),
22098         (interleave_buffered_loop): Use the real pad count, not the artificial
22099         one.
22100
22101 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22102
22103         * configure.ac: bump nano back to development
22104
22105 === release 0.8.3 ===
22106
22107 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22108
22109         * configure.ac: releasing 0.8.3, "Water"
22110
22111 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22112
22113         * sys/xvimage/xvimagesink.c:
22114         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22115         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22116         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22117         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22118         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22119         * sys/xvimage/xvimagesink.h:
22120           apply similar PAR fixes as to ximagesink
22121
22122 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22123
22124         patch from: Benjamin Otte
22125
22126         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22127           add link function to lame.  Fixes #148986.
22128
22129 2004-08-02  Johan Dahlin  <johan@gnome.org>
22130
22131         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22132         fix debugging log
22133
22134 2004-07-30  David Schleef  <ds@schleef.org>
22135
22136         * gst/videomixer/Makefile.am: Fix things that should have been
22137         fixed in the last checkin.
22138
22139 2004-07-30  David Schleef  <ds@schleef.org>
22140
22141         * gst/multipart/Makefile.am: Fix things that should have been
22142         fixed in the last checkin.
22143
22144 2004-07-30  David Schleef  <ds@schleef.org>
22145
22146         * testsuite/multifilesink/Makefile.am: Fix unused variable.
22147
22148 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22149
22150         * configure.ac:
22151           bump nano for prerelease
22152         * po/af.po:
22153         * po/az.po:
22154         * po/cs.po:
22155         * po/en_GB.po:
22156         * po/hu.po:
22157         * po/nl.po:
22158         * po/sr.po:
22159         * po/sv.po:
22160         * po/uk.po:
22161           updates
22162
22163 2004-07-30  Wim Taymans  <wim@fluendo.com>
22164
22165         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22166         (gst_multifdsink_add), (gst_multifdsink_remove),
22167         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22168         (gst_multifdsink_client_remove),
22169         (gst_multifdsink_handle_client_write),
22170         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22171         * gst/tcp/gstmultifdsink.h:
22172         Recover from a select with a bad file descriptor by removing
22173         the client.
22174
22175 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22176
22177         * configure.ac:
22178           fix requirement of core
22179         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22180         (gst_play_pipeline_setup):
22181           don't use colorspace element.  do use hermescolorspace element.
22182           make macro to get a colorspace element.
22183           mark strings for translation.
22184         * po/POTFILES.in:
22185           add play.c
22186         * po/af.po:
22187         * po/az.po:
22188         * po/cs.po:
22189         * po/en_GB.po:
22190         * po/hu.po:
22191         * po/nl.po:
22192         * po/sr.po:
22193         * po/sv.po:
22194         * po/uk.po:
22195           update translations
22196
22197 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22198
22199         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22200         fix default for newmedia flag
22201
22202 2004-07-30  Wim Taymans  <wim@fluendo.com>
22203
22204         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22205         (gst_theora_dec_init), (theora_get_formats),
22206         (theora_dec_src_convert), (theora_dec_sink_convert),
22207         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22208         (theora_dec_chain), (theora_dec_set_property),
22209         (theora_dec_get_property):
22210         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22211         (gst_theora_enc_class_init), (gst_theora_enc_init),
22212         (theora_enc_sink_link), (theora_enc_chain),
22213         (theora_enc_set_property), (theora_enc_get_property):
22214         Added cropping option to theora decoder.
22215         Added border option to theora encoder.
22216
22217 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22218
22219         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22220         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22221         (gst_pngenc_set_property):
22222         * ext/libpng/gstpngenc.h:
22223         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
22224
22225 2004-07-30  Wim Taymans  <wim@fluendo.com>
22226
22227         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22228         (theora_enc_sink_link), (theora_enc_chain),
22229         (theora_enc_set_property), (theora_enc_get_property):
22230         Fix encoding of non-multiple-of-16 video.
22231
22232 2004-07-29  David Schleef  <ds@schleef.org>
22233
22234         * configure.ac: make test for audiofile more strict
22235
22236 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22237
22238         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22239           give different names to typefind functions
22240
22241 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22242
22243         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22244         (gst_ximagesink_calculate_pixel_aspect_ratio),
22245         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22246         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22247         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22248         (gst_ximagesink_get_property), (gst_ximagesink_init):
22249         * sys/ximage/ximagesink.h:
22250           allocate PAR's dynamically.
22251           use autodetected PAR if no object-set PAR is given.
22252           add workaround for directfb's X not setting physical size.
22253           fix to xvimagesink will follow tomorrow.
22254
22255 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22256
22257         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22258         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22259         (gst_shout2send_get_type), (gst_shout2send_set_clock),
22260         (gst_shout2send_class_init), (gst_shout2send_init),
22261         (set_shout_metadata), (gst_shout2send_set_metadata),
22262         (gst_shout2send_chain), (gst_shout2send_set_property),
22263         (gst_shout2send_get_property), (gst_shout2send_connect),
22264         (gst_shout2send_change_state):
22265         * ext/shout2/gstshout2.h:
22266         - fix for sending mp3 audio to icecast2 server, if pad link function not
22267         called before PAUSED state
22268         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22269         - added tagging support for mp3 audio broadcasted
22270         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22271         debug info
22272
22273 2004-07-28  Wim Taymans  <wim@fluendo.com>
22274
22275         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22276         (gst_ogg_demux_push):
22277         Return query failure when we don't know the length of
22278         an ogg stream insteda of returning TRUE with a bogus value.
22279
22280 2004-07-28  Wim Taymans  <wim@fluendo.com>
22281
22282         * ext/theora/theoradec.c: (theora_get_formats),
22283         (theora_dec_src_convert), (theora_dec_sink_convert),
22284         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22285         (theora_dec_chain):
22286         Don't screw up the 1 Chroma for 1 luma sample situation when we
22287         have an odd offset/width by adding a black border in those cases.
22288
22289 2004-07-28  Wim Taymans  <wim@fluendo.com>
22290
22291         * ext/theora/theoradec.c: (theora_get_formats),
22292         (theora_dec_src_convert), (theora_dec_sink_convert),
22293         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22294         (theora_dec_chain):
22295         * ext/theora/theoraenc.c: (theora_enc_sink_link):
22296         Added first attempt at cropping of the image as required by the
22297         theora spec. We need more properties in the caps (offset_x,
22298         offset_y,stride) to implement this correctly.
22299
22300 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
22301
22302         * ext/dvdnav/README:
22303           Update the README to use dvddemux
22304         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22305           Ensure getcaps returns a subset of the template caps
22306         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22307         (gst_mpeg2subt_init):
22308           Ensure getcaps returns a subset of the template caps
22309         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22310         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22311         (gst_dvd_demux_get_subpicture_stream),
22312         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22313         * gst/mpegstream/gstdvddemux.h:
22314           Set the explicit caps on the current_video pad before pushing
22315           anything
22316         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22317         (gst_mpeg_demux_get_audio_stream):
22318           Free caps used to gst_pad_set_explicit_caps, which takes a const
22319           GstCaps *
22320
22321 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
22322
22323         * configure.ac: update GStreamer requirement to 0.8.4 because of
22324           GstFraction.
22325
22326 2004-07-28  Wim Taymans  <wim@fluendo.com>
22327
22328         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22329         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22330         Add the pad to the element after setting up the caps. This
22331         makes it a lot easier to autoplug.
22332
22333 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22334
22335         * gst/median/gstmedian.c:
22336         * gst/mpeg2subt/gstmpeg2subt.c:
22337         * gst/mpegaudioparse/gstmpegaudioparse.c:
22338         * gst/mpegstream/gstdvddemux.c:
22339         * gst/mpegstream/gstmpegdemux.c:
22340         * gst/mpegstream/gstmpegpacketize.c:
22341         * gst/rtjpeg/gstrtjpeg.c:
22342         * gst/rtjpeg/gstrtjpegdec.c:
22343         * gst/rtjpeg/gstrtjpegenc.c:
22344         * gst/sine/gstsinesrc.c:
22345         * gst/smooth/gstsmooth.c:
22346         * gst/smpte/gstsmpte.c:
22347         * gst/smpte/gstsmpte.h:
22348         * gst/stereo/gststereo.c:
22349         * gst/videofilter/gstgamma.c:
22350         * gst/videofilter/gstvideobalance.c:
22351         * gst/videofilter/gstvideofilter.c:
22352         * gst/videofilter/gstvideoflip.c:
22353         * gst/videoscale/gstvideoscale.c:
22354         * gst/videoscale/videoscale.c:
22355         * gst/videotestsrc/gstvideotestsrc.c:
22356         * gst/videotestsrc/videotestsrc.c:
22357         * gst/wavenc/gstwavenc.c:
22358         * gst/wavparse/gstwavparse.c:
22359           fix local includes and 64 bits constants
22360
22361 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22362
22363         * win32/gst.sln:
22364         * gst-libs/gst/*/*.vcproj:
22365         * gst/*/*.vcproj:
22366           more working plugins
22367
22368 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22369
22370         * testsuite/alsa/Makefile.am:
22371         * testsuite/alsa/srcstate.c:
22372         add test for alsasrc changing state
22373
22374 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22375
22376         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22377         (gst_silence_get):
22378         * gst/silence/gstsilence.h:
22379         fix silence generation for 16bit raw audio
22380
22381 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22382
22383         * gst/matroska/matroska-demux.c:
22384         (gst_matroska_demux_parse_metadata),
22385         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22386         * gst/mpegaudio/common.c:
22387         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22388         (gst_videoscale_getcaps), (gst_videoscale_link),
22389         (gst_videoscale_src_fixate), (gst_videoscale_init),
22390         (gst_videoscale_finalize):
22391         * gst/videoscale/gstvideoscale.h:
22392         * gst/videotestsrc/gstvideotestsrc.c:
22393         (gst_videotestsrc_get_capslist):
22394         * gst/wavenc/gstwavenc.c:
22395         * sys/oss/gstossmixer.c: (fill_labels):
22396         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22397         (gst_ximagesink_handle_xevents),
22398         (gst_ximagesink_calculate_pixel_aspect_ratio),
22399         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22400         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22401         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22402         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22403         (gst_ximagesink_init), (gst_ximagesink_class_init):
22404         * sys/ximage/ximagesink.h:
22405         * sys/xvimage/xvimagesink.c:
22406         (gst_xvimagesink_calculate_pixel_aspect_ratio),
22407         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22408         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22409         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22410         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22411         * sys/xvimage/xvimagesink.h:
22412           first batch of pixel aspect ratio commits.
22413
22414 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22415
22416         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22417         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22418         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22419           handle stride, needs work if we want to move stride handling
22420           upstream, but works correctly for our purposes.
22421
22422 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22423
22424         * gst/videoscale/README:
22425           add testing examples
22426         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22427         (gst_videoscale_chain):
22428         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22429         (gst_videoscale_get_size):
22430           add get_size function that handles stride like videotestsrc.
22431           fixes conversion for YUV formats for as much as I can test them.
22432
22433 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
22434
22435         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22436         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22437         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22438         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22439         (gst_xvimagesink_xvimage_put):
22440           further cleanups, logging, error handling and synchronizing
22441
22442 2004-07-27  Wim Taymans  <wim@fluendo.com>
22443
22444         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22445         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22446         (gst_videomixer_pad_set_property),
22447         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22448         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22449         (gst_videomixer_class_init), (gst_videomixer_init),
22450         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22451         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22452         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22453         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22454         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22455         (gst_videomixer_loop), (plugin_init):
22456         Be a nicer negotiation citizen and provide a getcaps function on
22457         the srcpad. This also fixes a crash when resizing.
22458
22459 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22460
22461         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22462         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22463
22464 2004-07-27  Wim Taymans  <wim@fluendo.com>
22465
22466         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22467         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22468         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22469         (gst_pngenc_set_property):
22470         * ext/libpng/gstpngenc.h:
22471         Added snapshot property to pngenc.
22472         removed g_print from pngdec
22473
22474 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
22475
22476         * gst/ac3parse/ac3parse.vcproj
22477         * gst/adder/adder.vcproj
22478         * gst/alpha/alpha.vcproj
22479         * gst/alpha/alphacolor.vcproj
22480         * gst/asfdemux/asf.vcproj
22481         * gst/audioconvert/audioconvert.vcproj
22482         * gst/audiorate/audiorate.vcproj
22483         * gst/audioscale/audioscale.vcproj
22484         * gst/auparse/auparse.vcproj
22485         * gst/avi/avi.vcproj
22486         * gst/cdxaparse/cdxaparse.vcproj
22487         * gst/chart/chart.vcproj
22488         * gst/colorspace/colorspace.vcproj
22489         * gst/cutter/cutter.vcproj
22490         * gst/debug/debug.vcproj
22491         * gst/debug/efence.vcproj
22492         * gst/debug/navigationtest.vcproj
22493         * gst/deinterlace/deinterlace.vcproj
22494         * gst/effectv/effectv.vcproj
22495         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22496         * gst/filter/filter.vcproj
22497         * gst/flx/flxdec.vcproj
22498         * gst/goom/goom.vcproj
22499         * gst/interleave/interleave.vcproj
22500         * gst/law/alaw.vcproj
22501         * gst/law/mulaw.vcproj
22502         * gst/matroska/matroska.vcproj
22503         * gst/median/median.vcproj
22504         * gst/mixmatrix/mixmatrix.vcproj
22505         * gst/mpeg1sys/mpeg1systemencode.vcproj
22506         * gst/mpeg1videoparse/mp1videoparse.vcproj
22507         * gst/mpeg2sub/mpeg2subt.vcproj
22508         * gst/mpegaudio/mpegaudio.vcproj
22509         * gst/mpegaudioparse/mpegaudioparse.vcproj
22510         * gst/mpegstream/mpegstream.vcproj
22511         * gst/multifilesink/multifilesink.vcproj
22512         * gst/multipart/multipart.vcproj
22513         * gst/oneton/oneton.vcproj
22514         * gst/overlay/overlay.vcproj
22515         * gst/passthrough/passthrough.vcproj
22516         * gst/qtdemux/qtdemux.vcproj
22517         * gst/realmedia/rmdemux.vcproj
22518         * gst/rtjpeg/rtjpeg.vcproj
22519         * gst/rtp/rtp.vcproj
22520         * gst/silence/silence.vcproj
22521         * gst/sine/sinesrc.vcproj
22522         * gst/smooth/smooth.vcproj
22523         * gst/smpte/smpte.vcproj
22524         * gst/spectrum/spectrum.vcproj
22525         * gst/speed/speed.vcproj
22526         * gst/stereo/stereo.vcproj
22527         * gst/switch/switch.vcproj
22528         * gst/tags/tagedit.vcproj
22529         * gst/tcp/tcp.vcproj
22530         * gst/typefind/typefindfunctions.vcproj
22531         * gst/udp/udp.vcproj
22532         * gst/videobox/videobox.vcproj
22533         * gst/videocrop/videocrop.vcproj
22534         * gst/videodrop/videodrop.vcproj
22535         * gst/videofilter/gamma.vcproj
22536         * gst/videofilter/videobalance.vcproj
22537         * gst/videofilter/videofilter.vcproj
22538         * gst/videofilter/videoflip.vcproj
22539         * gst/videoflip/videoflip.vcproj
22540         * gst/videomixer/videomixer.vcproj
22541         * gst/videorate/videorate.vcproj
22542         * gst/videoscale/videoscale.vcproj
22543         * gst/videotestsrc/videotestsrc.vcproj
22544         * gst/virtualdub/virtualdub.vcproj
22545         * gst/volenv/volenv.vcproj
22546         * gst/volume/volume.vcproj
22547         * gst/wavenc/wavenc.vcproj
22548         * gst/wavparse/wavparse.vcproj
22549         * gst/y4m/y4menc.vcproj
22550         * gst-libs/gst/audio/audio.vcproj
22551         * gst-libs/gst/audio/audiofilter.vcproj
22552         * gst-libs/gst/colorbalance/colorbalance.vcproj
22553         * gst-libs/gst/idct/idtc.vcproj
22554         * gst-libs/gst/media-info/media-info.vcproj
22555         * gst-libs/gst/mixer/mixer.vcproj
22556         * gst-libs/gst/navigation/navigation.vcproj
22557         * gst-libs/gst/play/play.vcproj
22558         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22559         * gst-libs/gst/resample/resample.vcproj
22560         * gst-libs/gst/riff/riff.vcproj
22561         * gst-libs/gst/tuner/tuner.vcproj
22562         * gst-libs/gst/video/video.vcproj
22563         * gst-libs/gst/xoverlay/xoverlay.vcproj
22564           avoid problems with math.h, fix release dependancy
22565           rename GStreamer-0.8.lib to libgstreamer.lib
22566
22567 2004-07-27  Julien MOUTTE  <julien@moutte.net>
22568
22569         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22570         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22571         the atom is not available we have to unlock the mutex. Fixes #148023
22572
22573 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22574
22575         * gst-libs/gst/media-info/media-info.h:
22576           issue for a vararg macro with MSVC
22577
22578 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22579
22580         * gst/effectv/effectv.vcproj
22581         * gst-libs/gst/idct/idct.vcproj:
22582         * gst-libs/gst/media-info/media-info.vcproj:
22583         * gst-libs/gst/navigation/navigation.vcproj:
22584         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22585         * gst-libs/gst/video/video.vcproj:
22586         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22587           fixes for build problems
22588
22589 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22590
22591         * gst-libs/gst/audio/audio.def:
22592         * gst-libs/gst/audio/riff.def:
22593           add some definitions needed by plugins
22594
22595 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22596
22597         * gst/asfdemux/gstasfmux.c
22598           Fix some 64 bits constants to be glib friendly
22599
22600 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22601
22602         * gst/ac3parse/gstac3parse.c
22603         * gst/audioscale/gstaudioscale.c
22604         * gst/auparse/gstauparse.c
22605         * gst/colorspace/gstcolorspace.c
22606         * gst/colorspace/yuv2rgb.h
22607           local include fixes
22608
22609 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22610
22611         * win32/gst.sln
22612           add more plugins to the build
22613
22614 2004-07-26  Julien MOUTTE  <julien@moutte.net>
22615
22616         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22617         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22618
22619 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22620
22621         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22622         (gst_level_set_property), (gst_level_get_property),
22623         (gst_level_base_init), (gst_level_class_init):
22624           add debugging categories.  cleanups.
22625
22626 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22627
22628         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22629         (gst_videoscale_planar411), (gst_videoscale_planar400),
22630         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22631         (gst_videoscale_scale_nearest_str1),
22632         (gst_videoscale_scale_nearest_str2),
22633         (gst_videoscale_scale_nearest_str4),
22634         (gst_videoscale_scale_nearest_16bit),
22635         (gst_videoscale_scale_nearest_24bit):
22636           fixed stride issues
22637           tested with 320x240 -> 321, 322, 324 x240
22638           tested with YV12, I420, YUY2, UYVY
22639           fixed packed422rev (don't think it could have worked before)
22640           by testing with UYVY
22641
22642 2004-07-26  Benjamin Otte  <otte@gnome.org>
22643
22644         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22645         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22646         (plugin_init):
22647           add debugging category, add error checks like checking return values
22648           of setup calls, make sure it still works after
22649           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22650
22651 2004-07-26  Wim Taymans  <wim@fluendo.com>
22652
22653         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22654         (gst_mpeg_demux_get_audio_stream),
22655         (gst_mpeg_demux_process_private):
22656         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22657         Check for error codes from the negotiation functions. Make sure
22658         we really set the pad caps when a new pad is created.
22659
22660 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22661
22662         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22663         (gst_ffmpeg_caps_to_pix_fmt):
22664         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22665         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22666         (gst_ffmpegcolorspace_pad_link):
22667           don't make function do two things at the same time without reason.
22668
22669 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22670
22671         * gst/ac3parse/ac3parse.vcproj
22672         * gst/adder/adder.vcproj
22673         * gst/alpha/alpha.vcproj
22674         * gst/alpha/alphacolor.vcproj
22675         * gst/asfdemux/asf.vcproj
22676         * gst/audioconvert/audioconvert.vcproj
22677         * gst/audiorate/audiorate.vcproj
22678         * gst/audioscale/audioscale.vcproj
22679         * gst/auparse/auparse.vcproj
22680         * gst/avi/avi.vcproj
22681         * gst/cdxaparse/cdxaparse.vcproj
22682         * gst/chart/chart.vcproj
22683         * gst/colorspace/colorspace.vcproj
22684         * gst/cutter/cutter.vcproj
22685         * gst/debug/debug.vcproj
22686         * gst/debug/efence.vcproj
22687         * gst/debug/navigationtest.vcproj
22688         * gst/deinterlace/deinterlace.vcproj
22689         * gst/effectv/effectv.vcproj
22690         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22691         * gst/filter/filter.vcproj
22692         * gst/flx/flxdec.vcproj
22693         * gst/goom/goom.vcproj
22694         * gst/interleave/interleave.vcproj
22695         * gst/law/alaw.vcproj
22696         * gst/law/mulaw.vcproj
22697         * gst/matroska/matroska.vcproj
22698         * gst/median/median.vcproj
22699         * gst/mixmatrix/mixmatrix.vcproj
22700         * gst/mpeg1sys/mpeg1systemencode.vcproj
22701         * gst/mpeg1videoparse/mp1videoparse.vcproj
22702         * gst/mpeg2sub/mpeg2subt.vcproj
22703         * gst/mpegaudio/mpegaudio.vcproj
22704         * gst/mpegaudioparse/mpegaudioparse.vcproj
22705         * gst/mpegstream/mpegstream.vcproj
22706         * gst/multifilesink/multifilesink.vcproj
22707         * gst/multipart/multipart.vcproj
22708         * gst/oneton/oneton.vcproj
22709         * gst/overlay/overlay.vcproj
22710         * gst/passthrough/passthrough.vcproj
22711         * gst/qtdemux/qtdemux.vcproj
22712         * gst/realmedia/rmdemux.vcproj
22713         * gst/rtjpeg/rtjpeg.vcproj
22714         * gst/rtp/rtp.vcproj
22715         * gst/silence/silence.vcproj
22716         * gst/sine/sinesrc.vcproj
22717         * gst/smooth/smooth.vcproj
22718         * gst/smpte/smpte.vcproj
22719         * gst/spectrum/spectrum.vcproj
22720         * gst/speed/speed.vcproj
22721         * gst/stereo/stereo.vcproj
22722         * gst/switch/switch.vcproj
22723         * gst/tags/tagedit.vcproj
22724         * gst/tcp/tcp.vcproj
22725         * gst/typefind/typefindfunctions.vcproj
22726         * gst/udp/udp.vcproj
22727         * gst/videobox/videobox.vcproj
22728         * gst/videocrop/videocrop.vcproj
22729         * gst/videodrop/videodrop.vcproj
22730         * gst/videofilter/gamma.vcproj
22731         * gst/videofilter/videobalance.vcproj
22732         * gst/videofilter/videofilter.vcproj
22733         * gst/videofilter/videoflip.vcproj
22734         * gst/videoflip/videoflip.vcproj
22735         * gst/videomixer/videomixer.vcproj
22736         * gst/videorate/videorate.vcproj
22737         * gst/videoscale/videoscale.vcproj
22738         * gst/videotestsrc/videotestsrc.vcproj
22739         * gst/virtualdub/virtualdub.vcproj
22740         * gst/volenv/volenv.vcproj
22741         * gst/volume/volume.vcproj
22742         * gst/wavenc/wavenc.vcproj
22743         * gst/wavparse/wavparse.vcproj
22744         * gst/y4m/y4menc.vcproj
22745           more plugins supported under windows
22746
22747 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22748
22749         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22750         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
22751         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
22752         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22753         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
22754           Add debugging statements.  Use the sizes as returned by the
22755           *CreateImage calls.
22756
22757 2004-07-26  Johan Dahlin  <johan@gnome.org>
22758
22759         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
22760         the pad is negotiated.
22761
22762         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
22763
22764 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
22765
22766         * gst-libs/gst/colorbalance/colorbalance.vcproj:
22767         * gst-libs/gst/idct/idct.vcproj:
22768         * gst-libs/gst/media-info/media-info.vcproj:
22769         * gst-libs/gst/mixer/mixer.vcproj:
22770         * gst-libs/gst/navigation/navigation.vcproj:
22771         * gst-libs/gst/play/play.vcproj:
22772         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22773         * gst-libs/gst/resample/resample.vcproj:
22774         * gst-libs/gst/tuner/tuner.vcproj:
22775         * gst-libs/gst/video/video.vcproj:
22776         * gst-libs/gst/xoverlay/xoverlay.vcproj:
22777           more plugins supported under windows
22778
22779 2004-07-25 Iain <iain@prettypeople.org>
22780
22781         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
22782         pad now rather than when the pad is created because state changes wipe
22783         explicit caps (fixes #148043).
22784
22785 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
22786
22787         reviewed by Benjamin Otte  <otte@gnome.org>
22788
22789         * ext/mad/gstmad.c:
22790           fix mad plugin crashing on Sun (fixes #148289)
22791
22792 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22793
22794         * gst/avi/avi.def:
22795         * gst/avi/avi.vcproj:
22796         * gst/matroska/matroska.def:
22797         * gst/matroska/matroska.vcproj:
22798           remove unused .def files
22799
22800 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22801
22802         * gst-libs/gst/audio/gstaudiofilter.c:
22803           Clean the local include
22804
22805 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22806
22807         * win32/gst.sln:
22808         * gst-libs/gst/audio/audio.def:
22809         * gst-libs/gst/audio/audio.vcproj:
22810         * gst-libs/gst/audio/audiofilter.vcproj:
22811         * gst-libs/gst/audio/riff.def:
22812         * gst-libs/gst/audio/riff.vcproj:
22813         * gst-libs/gst/gst-libs.def:
22814         * gst-libs/gst/gst-libs.vcproj:
22815         * gst/avi/avi.vcproj:
22816         * gst/avi/avi.vcproj:
22817           Copy the files where needed after building, cleaner projects
22818
22819 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
22820
22821         * gst/matroska/ebml-write.c:
22822           Fix some 64 bits constants to be glib friendly
22823
22824 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
22825
22826         * win32/gst.sln:
22827         * gst-libs/gst/gst-libs.def:
22828         * gst-libs/gst/gst-libs.vcproj:
22829         * gst/matroska/matroska.def:
22830         * gst/matroska/matroska.vcproj:
22831           Add the preliminary canvas to build plugins on Win32
22832
22833 2004-07-23  Benjamin Otte  <otte@gnome.org>
22834
22835         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22836           don't enfore negotiation from source side, it breaks
22837           sinesrc ! audioconvert ! osssink
22838
22839 2004-07-22  David Schleef  <ds@schleef.org>
22840
22841         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
22842         for ELF files, since they can easily be recognized as audio/mpeg.
22843         (bug #147441)
22844
22845 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22846
22847         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22848         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
22849         (gst_videoscale_scale_nearest_24bit),
22850         (gst_videoscale_scale_nearest_16bit):
22851           fix 16bit and 24bit for stride (24bit might need testing)
22852           don't pretend we do more than one algorithm
22853
22854 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22855
22856         * configure.ac:
22857         * gst/Makefile.am:
22858         * gst/multifilesink/Makefile.am:
22859         * gst/multifilesink/gstmultifilesink.c:
22860         (gst_multifilesink_get_formats),
22861         (gst_multifilesink_get_query_types), (_do_init),
22862         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
22863         (gst_multifilesink_init), (gst_multifilesink_dispose),
22864         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
22865         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
22866         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
22867         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
22868         (gst_multifilesink_chain), (gst_multifilesink_change_state),
22869         (gst_multifilesink_uri_get_type),
22870         (gst_multifilesink_uri_get_protocols),
22871         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
22872         (gst_multifilesink_uri_handler_init), (plugin_init):
22873         * gst/multifilesink/gstmultifilesink.h:
22874         * testsuite/Makefile.am:
22875         * testsuite/multifilesink/Makefile.am:
22876         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
22877         (gst_newmedia_class_init), (gst_newmedia_init),
22878         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
22879         (newfile_signal), (test_signal), (main):
22880         multifilesink plugin for creating new files every time a new media
22881         discontinuity event occurs
22882
22883 2004-07-22  Wim Taymans  <wim@fluendo.com>
22884
22885         * gst/alpha/Makefile.am:
22886         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
22887         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
22888         (gst_alpha_color_init), (gst_alpha_color_set_property),
22889         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
22890         (transform), (gst_alpha_color_chain),
22891         (gst_alpha_color_change_state), (plugin_init):
22892         Stupid plugin to to RGBA to AYUV conversion because none of
22893         the colorspace plugins can handle that yet.
22894
22895 2004-07-22  Wim Taymans  <wim@fluendo.com>
22896
22897         * examples/seeking/seek.c: (update_scale), (main):
22898         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
22899         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
22900         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
22901         (gst_decode_bin_init), (gst_decode_bin_dispose),
22902         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
22903         (no_more_pads), (close_link), (type_found),
22904         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
22905         (plugin_init):
22906         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
22907         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
22908         (gst_play_base_bin_dispose), (queue_overrun),
22909         (gen_preroll_element), (remove_prerolls), (unknown_type),
22910         (no_more_pads), (new_stream), (setup_source),
22911         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
22912         (play_base_eos), (gst_play_base_bin_change_state),
22913         (gst_play_base_bin_add_element),
22914         (gst_play_base_bin_remove_element),
22915         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
22916         (gst_play_base_bin_unlink_stream),
22917         (gst_play_base_bin_get_streaminfo):
22918         * gst/playback/gstplaybin.c: (gen_video_element),
22919         (gen_audio_element):
22920         * gst/playback/gststreaminfo.h:
22921         More playback updates, attempt to fix things after the state change
22922         breakage.
22923
22924 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22925
22926         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
22927         (gst_videoscale_scale_nearest_16bit):
22928           comment algorithm
22929
22930 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22931
22932         * gst/videotestsrc/gstvideotestsrc.c:
22933         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
22934         (gst_videotestsrc_init), (gst_videotestsrc_get),
22935         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
22936         (gst_videotestsrc_get_property):
22937         * gst/videotestsrc/gstvideotestsrc.h:
22938         * gst/videotestsrc/videotestsrc.c:
22939         * gst/videotestsrc/videotestsrc.h:
22940           cleanup and commenting
22941
22942 2004-07-21  Wim Taymans  <wim@fluendo.com>
22943
22944         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
22945         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
22946         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
22947         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
22948         (_find_chain_get_unknown_part), (_find_streams_check),
22949         (gst_ogg_demux_push), (gst_ogg_pad_push):
22950         * ext/theora/theoradec.c: (theora_get_formats),
22951         (theora_dec_src_convert), (theora_dec_sink_convert),
22952         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22953         (theora_dec_chain):
22954         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22955         (vorbis_dec_convert), (vorbis_dec_src_query),
22956         (vorbis_dec_src_event), (vorbis_dec_event):
22957         More seeking fixes, oggdemux now supports seeking to time and
22958         uses the downstream element to convert granulepos to time.
22959         Seeking in theora-only ogg files now works.
22960
22961 2004-07-21  Wim Taymans  <wim@fluendo.com>
22962
22963         * ext/theora/theoradec.c: (gst_theora_dec_init),
22964         (theora_get_formats), (theora_get_event_masks),
22965         (theora_get_query_types), (theora_dec_src_convert),
22966         (theora_dec_sink_convert), (theora_dec_src_query),
22967         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
22968         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22969         (vorbis_get_event_masks), (vorbis_get_query_types),
22970         (gst_vorbis_dec_init), (vorbis_dec_convert),
22971         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
22972         Added query/convert/formats functions to vorbis and theora decoders
22973         so that the outside world can use them too. Fixed seeking on an
22974         ogg/theora/vorbis file by disabling the seeking seeking on the
22975         theora srcpad.
22976
22977 2004-07-21  Julien MOUTTE  <julien@moutte.net>
22978
22979         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22980         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
22981         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
22982         images creation for both elements. We don't create the image on caps
22983         nego or renego, we just destroy the internal one if present if it does
22984         not match the needs. The chain function takes care of creating a new
22985         image when needed.
22986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22987         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
22988         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22989         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
22990         the image format information. The buffer pool checks for the context
22991         image format and discard images with different formats.
22992         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
22993
22994 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22995
22996         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22997         (gst_ffmpegcolorspace_chain):
22998           no point in doing any chaining if the pad we want to push from
22999           isn't usable.
23000
23001 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23002
23003         * gst-libs/gst/riff/riff-media.c:
23004         (gst_riff_create_audio_caps_with_data):
23005           Fix double end-to-native symbol conversion (#148021).
23006
23007 2004-07-20  David Schleef  <ds@schleef.org>
23008
23009         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23010         Don't use an Atom that doesn't exist.
23011
23012 2004-07-20  Wim Taymans  <wim@fluendo.com>
23013
23014         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23015         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23016         (gst_multifdsink_client_remove),
23017         (gst_multifdsink_handle_client_write),
23018         (gst_multifdsink_queue_buffer):
23019         * gst/tcp/gstmultifdsink.h:
23020         More multifdsink stats. Avoid deadlock by releasing locks
23021         before sending out a signal.
23022
23023 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23024
23025         * po/LINGUAS:
23026         * po/hu.po:
23027           added Hungarian translation (Laszlo Dvornik)
23028
23029 2004-07-20  Wim Taymans  <wim@fluendo.com>
23030
23031         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23032         (gst_multifdsink_add), (gst_multifdsink_client_remove),
23033         (gst_multifdsink_handle_client_write),
23034         (gst_multifdsink_queue_buffer):
23035         * gst/tcp/gsttcp-marshal.list:
23036         Fixed the stupid marshal definition.
23037
23038 2004-07-20  Wim Taymans  <wim@fluendo.com>
23039
23040         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23041         (gst_multifdsink_init), (gst_multifdsink_add),
23042         (gst_multifdsink_client_remove),
23043         (gst_multifdsink_handle_client_write),
23044         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23045         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23046         (gst_multifdsink_init_send):
23047         * gst/tcp/gstmultifdsink.h:
23048         Added more stats, added timeout for a client, fixed some typos
23049         and added some comments.
23050
23051 2004-07-20  Wim Taymans  <wim@fluendo.com>
23052
23053         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23054         (gst_multifdsink_add), (gst_multifdsink_get_stats),
23055         (gst_multifdsink_client_remove),
23056         (gst_multifdsink_handle_client_write):
23057         * gst/tcp/gstmultifdsink.h:
23058         * gst/tcp/gsttcp-marshal.list:
23059         Added get_stats method that returns a GValueArray of
23060         stats values.
23061
23062 2004-07-19  Benjamin Otte  <otte@gnome.org>
23063
23064         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23065           make sure longname, description and author are valid UTF-8
23066
23067 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23068
23069         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23070         (gst_ximagesink_set_property):
23071         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23072         (gst_xvimagesink_set_property):
23073           make sure SYNCHRONOUS is respected after getting the X context
23074
23075 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23076
23077         * gst/matroska/matroska-demux.c:
23078         (gst_matroska_demux_handle_src_event),
23079         (gst_matroska_demux_parse_blockgroup):
23080         * gst/matroska/matroska-ids.h:
23081           add BlockReference tag and ignore it to clear out log.
23082           ignore NAVIGATION events to clear out log.
23083
23084 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23085
23086         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23087         (gst_matroska_demux_add_stream):
23088         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23089           add debug categories
23090
23091 2004-07-16  Wim Taymans  <wim@fluendo.com>
23092
23093         * ext/libpng/Makefile.am:
23094         * ext/libpng/gstpng.c: (plugin_init):
23095         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23096         (gst_pngdec_get_type), (gst_pngdec_base_init),
23097         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23098         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23099         * ext/libpng/gstpngdec.h:
23100         Added png decoder.
23101
23102 2004-07-16  Julien MOUTTE  <julien@moutte.net>
23103
23104         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23105         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23106         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23107         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23108         (gst_ximagesink_buffer_alloc):
23109         * sys/ximage/ximagesink.h:
23110         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23111         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23112         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23113         (gst_xvimagesink_buffer_alloc):
23114         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23115         again. Using internal data pointer of the x(v)image to store image's
23116         data to be coherent with the buffer alloc mechanism. Investigated the
23117         image destruction code to be sure that everything gets freed correctly.
23118
23119 2004-07-16  Wim Taymans  <wim@fluendo.com>
23120
23121         * gst-libs/gst/riff/riff-read.c:
23122         (gst_riff_read_strf_vids_with_data),
23123         (gst_riff_read_strf_auds_with_data):
23124         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23125         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23126         Make sure we don't create 0 sized subbuffers in riff-read.
23127         Signal the no more pads signal after reading the avi header.
23128
23129 2004-07-16  Wim Taymans  <wim@fluendo.com>
23130
23131         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23132         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23133         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23134         (gst_decode_bin_init), (gst_decode_bin_dispose),
23135         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23136         (no_more_pads), (close_link), (type_found),
23137         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23138         (gst_decode_bin_change_state), (plugin_init):
23139         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23140         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23141         (gst_play_base_bin_dispose), (queue_overrun),
23142         (gen_preroll_element), (remove_prerolls), (unknown_type),
23143         (no_more_pads), (new_stream), (setup_source),
23144         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23145         (play_base_eos), (gst_play_base_bin_change_state),
23146         (gst_play_base_bin_add_element),
23147         (gst_play_base_bin_remove_element),
23148         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23149         (gst_play_base_bin_unlink_stream),
23150         (gst_play_base_bin_get_streaminfo):
23151         * gst/playback/gstplaybasebin.h:
23152         Better error recovery. Added configurable preroll queue size. Faster
23153         detection of no-more-pads.
23154
23155 2004-07-16  Wim Taymans  <wim@fluendo.com>
23156
23157         * gst-libs/gst/video/video.h:
23158         Added 32 bits RGBA. Not sure if we should use another mime-type
23159         for alpha rgb. Currently the presence of the alpha_mask property
23160         signals an alpha channel.
23161
23162 2004-07-16  Wim Taymans  <wim@fluendo.com>
23163
23164         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23165         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23166         FPS seems to be 0.0 to MAX everywhere else.
23167
23168 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23169
23170         * gst-libs/gst/riff/riff-media.c:
23171         (gst_riff_create_video_caps_with_data):
23172           mp42/mp43 (no caps) exist too.
23173         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23174           Set pixel_width/height; we've got them in-caps.
23175         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23176         * gst/wavparse/gstwavparse.c: (plugin_init):
23177           Both are valid primary.
23178         * sys/oss/gstossmixer.c:
23179           Remove i18n hack and enable translations.
23180
23181 2004-07-15  Benjamin Otte  <otte@gnome.org>
23182
23183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23184         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23185           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23186
23187 2004-07-15  Benjamin Otte  <otte@gnome.org>
23188
23189         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23190         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23191         (gst_alsa_close_audio):
23192           disable some of the debugging code for now. Writing debugging to a
23193           buffer is broken in current alsalib releases.
23194
23195 2004-07-12  Benjamin Otte  <otte@gnome.org>
23196
23197         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23198           use bufferpools
23199
23200 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23201
23202         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23203         (theora_dec_src_query), (theora_dec_event):
23204         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23205           add debugging categories.  Remove \n's.
23206
23207 2004-07-13  Johan Dahlin  <johan@gnome.org>
23208
23209         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23210         (gst_play_bin_get_property): Impl.
23211
23212 2004-07-13  Wim Taymans  <wim@fluendo.com>
23213
23214         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23215         When trying to find the stream length, seek back N pages
23216         instead of just one, where N is the number of streams in
23217         the current chain.
23218
23219 2004-07-13  Wim Taymans  <wim@fluendo.com>
23220
23221         * gst-libs/gst/riff/riff-media.c:
23222         (gst_riff_create_audio_caps_with_data),
23223         (gst_riff_create_audio_caps),
23224         (gst_riff_create_audio_template_caps):
23225         * gst-libs/gst/riff/riff-media.h:
23226         * gst-libs/gst/riff/riff-read.c:
23227         (gst_riff_read_strf_vids_with_data),
23228         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23229         * gst-libs/gst/riff/riff-read.h:
23230         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23231         (gst_avi_demux_add_stream):
23232         Set codec_data on caps for avidemuxer.
23233
23234 2004-07-12  David Schleef  <ds@schleef.org>
23235
23236         * configure.ac: Fix test for Objective C
23237
23238 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
23239         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23240         (gst_gdk_pixbuf_chain):
23241           Add svg and pcx to template caps, and ensure that getcaps returns a
23242           subset of the template caps.
23243           Copy each row manually for output, as gdkpixbuf may pad the
23244           rowstride to a 32-bit word boundary.
23245
23246 2004-07-12  Wim Taymans  <wim@fluendo.com>
23247
23248         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23249         (gst_riff_create_video_template_caps):
23250         Fix the template caps to include some more media types.
23251
23252 2004-07-12  Wim Taymans  <wim@fluendo.com>
23253
23254         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23255         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23256         (compare_ranks), (print_feature), (gst_decode_bin_init),
23257         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23258         (try_to_link_1), (new_pad), (close_link), (type_found),
23259         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23260         (gst_decode_bin_change_state), (plugin_init):
23261         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23262         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23263         (gst_play_base_bin_dispose), (queue_overrun),
23264         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23265         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23266         (gst_play_base_bin_get_property), (play_base_eos),
23267         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23268         (gst_play_base_bin_remove_element),
23269         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23270         (gst_play_base_bin_unlink_stream),
23271         (gst_play_base_bin_get_streaminfo):
23272         * gst/playback/gstplaybasebin.h:
23273         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23274         (gst_play_bin_class_init), (gst_play_bin_init),
23275         (gst_play_bin_dispose), (gst_play_bin_set_property),
23276         (gst_play_bin_get_property), (gen_video_element),
23277         (gen_audio_element), (remove_sinks), (setup_sinks),
23278         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23279         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23280         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23281         (gst_play_bin_query), (plugin_init):
23282         * gst/playback/test4.c: (main):
23283         More fixes on reusing of the element.
23284
23285 2004-07-11  Benjamin Otte  <otte@gnome.org>
23286
23287         * ext/mad/gstmad.c: (normal_seek):
23288           allow seeking for other methods than just SET
23289
23290 2004-07-11  Andy Wingo  <wingo@pobox.com>
23291
23292         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23293         float, "any" caps -> buffer_frames=[0,MAX].
23294
23295         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23296         doesn't intersect our caps with the template any more. Do it
23297         ourselves.
23298         (interleave_buffered_loop): Use g_newa instead of malloc/free.
23299
23300 2004-07-09  Wim Taymans  <wim@fluendo.com>
23301
23302         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23303         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23304         (compare_ranks), (print_feature), (gst_decode_bin_init),
23305         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23306         (try_to_link_1), (new_pad), (close_link), (type_found),
23307         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23308         (gst_decode_bin_change_state), (plugin_init):
23309         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23310         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23311         (gst_play_base_bin_dispose), (queue_overrun),
23312         (gen_preroll_element), (remove_prerolls), (no_more_pads),
23313         (new_stream), (setup_source), (gst_play_base_bin_set_property),
23314         (gst_play_base_bin_get_property), (play_base_eos),
23315         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23316         (gst_play_base_bin_remove_element),
23317         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23318         (gst_play_base_bin_unlink_stream),
23319         (gst_play_base_bin_get_streaminfo):
23320         * gst/playback/gstplaybasebin.h:
23321         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23322         (gst_play_bin_class_init), (gst_play_bin_init),
23323         (gst_play_bin_dispose), (gst_play_bin_set_property),
23324         (gst_play_bin_get_property), (gen_video_element),
23325         (gen_audio_element), (remove_sinks), (setup_sinks),
23326         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23327         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23328         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23329         (gst_play_bin_query), (plugin_init):
23330         * gst/playback/test4.c: (main):
23331         Work on object reuse and seeking.
23332
23333 2004-07-09  Wim Taymans  <wim@fluendo.com>
23334
23335         * examples/seeking/seek.c: (iterate):
23336         Don't consume all CPU in the idle loop.
23337
23338 2004-07-09  Wim Taymans  <wim@fluendo.com>
23339
23340         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23341         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23342         Add pad to element *after* setting the pad functions so that
23343         the scheduler can use the correct ones.
23344
23345 2004-07-09  Wim Taymans  <wim@fluendo.com>
23346
23347         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23348         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23349         Sync to keyframe after seek
23350
23351 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23352
23353         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23354         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23355         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23356         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23357         * ext/libvisual/visual.c: (gst_visual_change_state):
23358         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23359         * ext/theora/theoradec.c: (theora_dec_change_state):
23360         * ext/theora/theoraenc.c: (theora_enc_change_state):
23361         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23362         * gst-libs/gst/navigation/navigation.c:
23363         * gst/adder/gstadder.c: (gst_adder_change_state):
23364         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23365         (gst_audio_convert_get_buffer):
23366         * gst/multipart/multipartdemux.c:
23367         (gst_multipart_demux_change_state):
23368         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23369         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23370         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23371         * gst/videoscale/gstvideoscale.c:
23372         (gst_videoscale_handle_src_event):
23373         * gst/volume/gstvolume.c: (volume_chain_int16):
23374           don't assert in state change, this should be done by the base
23375           GstElement class.
23376           various debugging fixes.
23377
23378 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23379
23380         * configure.ac:
23381         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23382         (gst_play_dispose), (gst_play_set_location),
23383         (gst_play_set_data_src), (gst_play_set_video_sink),
23384         (gst_play_set_audio_sink), (gst_play_set_visualization),
23385         (gst_play_connect_visualization), (gst_play_get_sink_element),
23386         (gst_play_get_all_by_interface):
23387         * gst-libs/gst/play/play.h:
23388           add new method to get elements implementing an interface.
23389           add various error logging
23390
23391 2004-07-08  Wim Taymans  <wim@fluendo.com>
23392
23393         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23394         (make_mpeg_pipeline), (make_mpegnt_pipeline),
23395         (make_playerbin_pipeline), (query_durations_elems),
23396         (query_durations_pads), (query_positions_elems),
23397         (query_positions_pads), (update_scale), (iterate), (stop_seek),
23398         (main):
23399         Added playbin seeking example.
23400
23401 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23402
23403         * gst-libs/gst/play/play.c: (gst_play_set_location),
23404         (gst_play_set_data_src), (gst_play_set_video_sink),
23405         (gst_play_set_audio_sink), (gst_play_set_visualization),
23406         (gst_play_connect_visualization), (gst_play_get_framerate):
23407           use a macro to look up elements from hash table
23408
23409 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23410
23411         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23412         (gst_play_get_length_callback), (gst_play_set_location),
23413         (gst_play_seek_to_time), (gst_play_set_data_src),
23414         (gst_play_set_video_sink), (gst_play_set_audio_sink),
23415         (gst_play_set_visualization), (gst_play_connect_visualization),
23416         (gst_play_get_sink_element):
23417         - add debugging info
23418         - fix looking up sink elements by iterating over complete caps
23419         - put everything except for source and autoplugger in a complete bin
23420
23421 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23422
23423         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23424         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23425         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23426         (gst_alsa_sink_write), (gst_alsa_sink_loop):
23427         * ext/alsa/gstalsasink.h:
23428         - add debugging info
23429         - clean up schizophrenia of data/buffer/event
23430         - fix double event unref error
23431
23432 2004-07-08  Wim Taymans  <wim@fluendo.com>
23433
23434         * gst/playback/Makefile.am:
23435         Add headers to noinst
23436
23437 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23438
23439         * tools/gst-launch-ext-m.m:
23440         * tools/gst-launch-ext.1.in:
23441           convert to the third millenium
23442
23443 2004-07-07  David Schleef  <ds@schleef.org>
23444
23445         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23446
23447 2004-07-07  Wim Taymans  <wim@fluendo.com>
23448
23449         * gst/playback/Makefile.am:
23450         * gst/playback/README:
23451         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23452         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23453         (compare_ranks), (print_feature), (gst_decode_bin_init),
23454         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23455         (try_to_link_1), (new_pad), (close_link), (type_found),
23456         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23457         (plugin_init):
23458         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23459         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23460         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23461         (gen_preroll_element), (no_more_pads), (new_stream),
23462         (setup_source), (gst_play_base_bin_set_property),
23463         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23464         (gst_play_base_bin_add_element),
23465         (gst_play_base_bin_remove_element),
23466         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23467         (gst_play_base_bin_unlink_stream),
23468         (gst_play_base_bin_get_streaminfo):
23469         * gst/playback/gstplaybasebin.h:
23470         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23471         (gst_play_bin_class_init), (gst_play_bin_init),
23472         (gst_play_bin_dispose), (gst_play_bin_set_property),
23473         (gst_play_bin_get_property), (gen_video_element),
23474         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23475         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23476         (gst_play_bin_get_formats), (gst_play_bin_convert),
23477         (gst_play_bin_get_query_types), (gst_play_bin_query),
23478         (plugin_init):
23479         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23480         (gst_stream_info_get_type), (gst_stream_info_class_init),
23481         (gst_stream_info_init), (gst_stream_info_new),
23482         (gst_stream_info_dispose), (gst_stream_info_set_property),
23483         (gst_stream_info_get_property):
23484         * gst/playback/gststreaminfo.h:
23485         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23486         (main):
23487         * gst/playback/test2.c: (main):
23488         * gst/playback/test3.c: (update_scale), (main):
23489         More playbin fixes. Added README. Do better element filtering.
23490         Added base class to preroll media. Added test apps.
23491
23492 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23493
23494         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23495         * ext/mpeg2dec/gstmpeg2dec.h:
23496           various debugging improvements.  Reset stream to next picture
23497           instead of sequence header, otherwise seeks cannot work.
23498
23499 2004-07-07  Wim Taymans  <wim@fluendo.com>
23500
23501         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23502         (gst_video_box_class_init), (gst_video_box_set_property),
23503         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23504         Use pad_alloc where possible.
23505
23506 2004-07-07  Wim Taymans  <wim@fluendo.com>
23507
23508         * sys/oss/gstosselement.c: (gst_osselement_reset),
23509         (gst_osselement_parse_caps):
23510         * sys/oss/gstosselement.h:
23511         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23512         Fix offset on osssrc.
23513
23514 2004-07-07  Wim Taymans  <wim@fluendo.com>
23515
23516         * ext/theora/theora.c: (plugin_init):
23517         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23518         (theora_dec_src_query), (theora_dec_chain):
23519         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23520         (theora_enc_sink_link), (theora_buffer_from_packet),
23521         (theora_push_packet), (theora_enc_chain):
23522         Fix theora granulepos calculation.
23523         Fix overflow in duration/position calculation.
23524         Bump rank to PRIMARY for theoradec.
23525         Use granulepos of last packet to calculate position.
23526         Set keyframe flag on buffers when needed.
23527
23528 2004-07-06  David Schleef  <ds@schleef.org>
23529
23530         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
23531         serious?  (Fixed, obviously.)
23532
23533 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23534
23535         * po/LINGUAS:
23536         * po/cs.po:
23537           added Czech translation (Miloslav Trmac)
23538
23539 2004-07-05  Wim Taymans  <wim@fluendo.com>
23540
23541         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23542         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23543         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23544         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23545         (close_link), (type_found), (gst_decode_bin_set_property),
23546         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23547         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23548         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23549         (gst_decode_bin_query), (plugin_init):
23550         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23551         (gst_play_bin_class_init), (gst_play_bin_init),
23552         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23553         (get_video_element), (new_pad), (setup_source),
23554         (gst_play_bin_set_property), (gst_play_bin_get_property),
23555         (gst_play_bin_change_state), (gst_play_bin_add_element),
23556         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23557         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23558         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23559         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23560         * gst/playback/test.c: (main):
23561         More fixes, cleaned up playbin, make it use decodebin. Added
23562         threaded property to playbin.
23563
23564 2004-07-05  Wim Taymans  <wim@fluendo.com>
23565
23566         * configure.ac:
23567         * gst/playback/Makefile.am:
23568         * gst/playback/decodetest.c: (main):
23569         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23570         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23571         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23572         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23573         (close_link), (type_found), (gst_decode_bin_set_property),
23574         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23575         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23576         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23577         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23578         (plugin_init):
23579         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23580         (gst_play_bin_class_init), (gst_play_bin_init),
23581         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23582         (collect_sink_pads), (find_compatibles), (close_pad_link),
23583         (try_to_link_1), (new_pad), (close_link), (type_found),
23584         (setup_source), (gst_play_bin_set_property),
23585         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23586         (compare_ranks), (gst_play_bin_collect_factories),
23587         (gst_play_bin_change_state), (gst_play_bin_add_element),
23588         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23589         (gst_play_bin_send_event), (gst_play_bin_get_formats),
23590         (gst_play_bin_convert), (gst_play_bin_get_query_types),
23591         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23592         * gst/playback/test.c: (main):
23593         Added some playback helper elements and some test apps, very alpha
23594         still.
23595
23596 2004-07-04  Benjamin Otte  <otte@gnome.org>
23597
23598         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23599           only restart audio when we indeed have an xrun to fix repeated
23600           xruns. Fix suggested by Giuliano Pochini.
23601
23602 2004-07-03  David Schleef  <ds@schleef.org>
23603
23604         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23605         call to gst_debug_log() if debugging is disabled (bug #145118)
23606
23607 2004-07-03  Benjamin Otte  <otte@gnome.org>
23608
23609         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23610           use our own functions for restarting the alsa device.
23611         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23612           I should apply patches myself - use MIN for the third argument, not
23613           the second, this fixes seeking
23614
23615 2004-07-02  David Schleef  <ds@schleef.org>
23616
23617         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23618         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
23619         do with the logic.
23620
23621 2004-07-02  David Schleef  <ds@schleef.org>
23622
23623         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
23624         output buffers.  Fix logic mistake.  (bug #144866)
23625
23626 2004-07-02  David Schleef  <ds@schleef.org>
23627
23628         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23629         on X.  (bug #144753)
23630
23631 2004-07-02  David Schleef  <ds@schleef.org>
23632
23633         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23634         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23635         (bug #144624)
23636         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23637         (gst_osselement_rate_probe_check): Add another workaround for
23638         buggy drivers (bug #145336)
23639
23640 2004-07-02  David Schleef  <ds@schleef.org>
23641
23642         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23643         Most systems don't have MSG_NOSIGNAL.
23644
23645 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23646
23647         * Makefile.am:
23648         * gst-libs/gst/colorbalance/Makefile.am:
23649         * gst-libs/gst/mixer/Makefile.am:
23650         * gst-libs/gst/play/Makefile.am:
23651         * gst-libs/gst/tuner/Makefile.am:
23652           (hopefully) fix both install and dist and make error message useful.
23653           needs testing across automakes.
23654
23655 2004-07-02  Benjamin Otte  <otte@gnome.org>
23656
23657         * ext/ogg/gstogg.c: (plugin_init):
23658           we require bytestream now
23659         * ext/ogg/gstoggdemux.c:
23660           huge diff to implement chain setup in a fast and generic way. This
23661           improves tag reading and startup of huge files (read: Theora videos)
23662           quite a bit. It probably contains bugs, too, so please test.
23663           Seeking is not improved to the fast method.
23664
23665 2004-06-29  Wim Taymans  <wim@fluendo.com>
23666
23667         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23668         * ext/ogg/gstoggmux.c:
23669         Fix memleak in oggdemux when running unconnected pads.
23670         doc update in mux, start working on keyframe mode.
23671
23672 2004-06-29  Benjamin Otte  <otte@gnome.org>
23673
23674         * sys/oss/gstosssink.c:
23675         * sys/oss/gstosssrc.c:
23676           advertise correct template caps - we indeed do non-native endianness
23677           and 8bit audio has no endianness
23678         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23679         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23680           avoid (wrong) duplications in getcaps function and return
23681           template caps
23682
23683 2004-06-29  Wim Taymans  <wim@fluendo.com>
23684
23685         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23686         (gst_multifdsink_class_init), (gst_multifdsink_add),
23687         (gst_multifdsink_remove), (gst_multifdsink_clear),
23688         (gst_multifdsink_client_remove),
23689         (gst_multifdsink_handle_client_read),
23690         (gst_multifdsink_client_queue_data),
23691         (gst_multifdsink_client_queue_caps),
23692         (gst_multifdsink_client_queue_buffer),
23693         (gst_multifdsink_handle_client_write),
23694         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23695         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23696         (gst_multifdsink_init_send), (gst_multifdsink_close):
23697         Fix wrong GList iteration that could crash the server when
23698         more then 2 clients disconnect at the same time. Read all the
23699         pending commands in one batch to recover from command storms under
23700         very heavy load.
23701
23702 2004-06-28  Wim Taymans  <wim@fluendo.com>
23703
23704         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23705         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23706         (gst_videomixer_pad_set_property),
23707         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23708         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23709         (gst_videomixer_class_init), (gst_videomixer_init),
23710         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23711         (pad_zorder_compare), (gst_videomixer_sort_pads),
23712         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23713         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23714         (gst_videomixer_update_queues), (gst_videomixer_loop),
23715         (plugin_init):
23716         Avoid divide by zero, choose masterpad as the pad with the highest
23717         framerate.
23718
23719 2004-06-27  Julien Moutte  <julien@moutte.net>
23720
23721         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23722         (gst_ximagesink_xwindow_new):
23723         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23724         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23725         function directly. We might want to call it from somewhere else one day.
23726
23727 2004-06-27  Julien Moutte  <julien@moutte.net>
23728
23729         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23730         (gst_ximagesink_xwindow_new):
23731         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23732         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23733         window decorations.
23734
23735 2004-06-27  Wim Taymans  <wim@fluendo.com>
23736
23737         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23738         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23739         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23740         (gst_dvdec_set_property), (gst_dvdec_get_property):
23741         * ext/dv/gstdvdec.h:
23742         Implement drop_factor property to lower the framerate with
23743         a factor.
23744
23745 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
23746
23747         * gst-libs/gst/colorbalance/Makefile.am:
23748         * gst-libs/gst/mixer/Makefile.am:
23749         * gst-libs/gst/play/Makefile.am:
23750         * gst-libs/gst/tuner/Makefile.am:
23751           unbreak Company's fix that didn't install the -enum.h files
23752
23753 2004-06-27  Wim Taymans  <wim@fluendo.com>
23754
23755         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
23756         (gst_dvdec_change_state):
23757         * ext/dv/gstdvdec.h:
23758         Fix timestamp, duration and offset of the buffers.
23759
23760 2004-06-27  Wim Taymans  <wim@fluendo.com>
23761
23762         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23763         (gst_multifdsink_class_init), (gst_multifdsink_add),
23764         (gst_multifdsink_remove), (gst_multifdsink_clear),
23765         (gst_multifdsink_client_remove),
23766         (gst_multifdsink_handle_client_read),
23767         (gst_multifdsink_client_queue_data),
23768         (gst_multifdsink_client_queue_caps),
23769         (gst_multifdsink_client_queue_buffer),
23770         (gst_multifdsink_handle_client_write),
23771         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23772         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23773         (gst_multifdsink_init_send), (gst_multifdsink_close):
23774         * gst/tcp/gstmultifdsink.h:
23775         * gst/tcp/gsttcpserversink.c:
23776         (gst_tcpserversink_handle_server_read),
23777         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
23778         More multifdsink fixes, more recovery policy fixes.
23779         Removed stupid g_print
23780
23781 2004-06-26  Wim Taymans  <wim@fluendo.com>
23782
23783         * gst/tcp/Makefile.am:
23784         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23785         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
23786         (gst_multifdsink_class_init), (gst_multifdsink_init),
23787         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
23788         (gst_multifdsink_handle_client_read),
23789         (gst_multifdsink_client_queue_data),
23790         (gst_multifdsink_client_queue_caps),
23791         (gst_multifdsink_client_queue_buffer),
23792         (gst_multifdsink_handle_client_write),
23793         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23794         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23795         (gst_multifdsink_chain), (gst_multifdsink_set_property),
23796         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
23797         (gst_multifdsink_close), (gst_multifdsink_change_state):
23798         * gst/tcp/gstmultifdsink.h:
23799         * gst/tcp/gsttcpplugin.c: (plugin_init):
23800         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
23801         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
23802         (gst_tcpserversink_handle_server_read),
23803         (gst_tcpserversink_handle_select),
23804         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
23805         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
23806         * gst/tcp/gsttcpserversink.h:
23807         Added multifdsink, made tcpserversink a subclass of fdsink, removed
23808         one of the locks, added recovery policy to multifdsink.
23809
23810 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23811
23812         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
23813           fix decision for when getting frames with same timestamp
23814         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23815         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
23816         (gst_v4lsrc_get_property):
23817         * sys/v4l/gstv4lsrc.h:
23818           add latency offset property
23819
23820 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23821
23822         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
23823         (plugin_init):
23824           fix debugging. add category.
23825
23826 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23827
23828         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23829           fix wrong offsets
23830
23831 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23832
23833         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23834         (gst_alsa_src_get_time), (gst_alsa_src_loop),
23835         (gst_alsa_src_change_state):
23836           return a time that is in sync with the element's processing
23837
23838 2004-06-25  Wim Taymans  <wim@fluendo.com>
23839
23840         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
23841         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
23842         (gst_tcpserversink_client_remove),
23843         (gst_tcpserversink_handle_client_read),
23844         (gst_tcpserversink_client_queue_data),
23845         (gst_tcpserversink_client_queue_caps),
23846         (gst_tcpserversink_client_queue_buffer),
23847         (gst_tcpserversink_handle_client_write),
23848         (gst_tcpserversink_queue_buffer),
23849         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
23850         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
23851         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
23852         (gst_tcpserversink_close):
23853         * gst/tcp/gsttcpserversink.h:
23854         Serversink rewrite. Really do non blocking writes to clients and
23855         maintain an internal queue to handle slower clients while not
23856         disturbing fast clients.
23857
23858 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23859
23860         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
23861           better debug, don't override OFFSET and OFFSET_END
23862
23863 2004-06-25  Iain <iain@prettypeople.org>
23864
23865         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
23866         name=source for the wavparse pipeline.
23867
23868 2004-06-24  Johan Dahlin  <johan@gnome.org>
23869
23870         * ext/theora/theoraenc.c (theora_enc_chain): Call
23871         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
23872         streamheader caps are set correctly.
23873
23874 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23875
23876         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23877         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
23878           respect minimum bitrate; same could be done for max bitrate
23879
23880 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23881
23882         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
23883         (gst_vorbisenc_setup):
23884           fix sample rate range
23885
23886 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23887
23888         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
23889         (gst_oggvorbisenc_setup):
23890         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
23891         (gst_vorbisenc_setup):
23892           resolve ambiguities in code and description
23893
23894 2004-06-24  Wim Taymans  <wim@fluendo.com>
23895
23896         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
23897         * ext/alsa/gstalsa.h:
23898         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23899         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
23900         Use alsa trigger_tstamp to get the timestamp of the first
23901         sample in the buffer for more precise sync. Some cleanups.
23902
23903 2004-06-24  Wim Taymans  <wim@fluendo.com>
23904
23905         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
23906         (gst_audiorate_init), (gst_audiorate_chain),
23907         (gst_audiorate_set_property), (gst_audiorate_get_property):
23908         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23909         (gst_videorate_chain):
23910         Added some logging, fixed an overflow bug in videorate.
23911
23912 2004-06-24  Benjamin Otte  <otte@gnome.org>
23913
23914         * ext/kio/Makefile.am:
23915           fix for builddir != srcdir and distcheck
23916
23917 2004-06-24  Benjamin Otte  <otte@gnome.org>
23918
23919         * gst-libs/gst/colorbalance/Makefile.am:
23920         * gst-libs/gst/mixer/Makefile.am:
23921         * gst-libs/gst/play/Makefile.am:
23922         * gst-libs/gst/tuner/Makefile.am:
23923         * gst/tcp/Makefile.am:
23924         * sys/dxr3/Makefile.am:
23925           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
23926           tarball.
23927           Also add all *.list files that were missing.
23928         * Makefile.am:
23929           add a distcheck hook to ensure the above doesn't happen again.
23930
23931 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
23932
23933         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
23934
23935 2004-06-23  Colin Walters  <walters@redhat.com>
23936
23937         * m4/Makefile.am: Distribute gst-fionread.m4.
23938
23939 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23940
23941         * configure.ac: back to dev
23942
23943 2004-06-23  Wim Taymans  <wim@fluendo.com>
23944
23945         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
23946         (gst_alsa_xrun_recovery):
23947         * ext/alsa/gstalsa.h:
23948         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23949         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
23950         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
23951         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
23952         (gst_alsa_src_loop):
23953         Add clock to alsasrc. Take new capture timestamp when
23954         restarting after an overrun. Split up some functions between
23955         alsasrc and alsasink.
23956
23957 === release 0.8.2 ===
23958
23959 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23960
23961         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
23962         (gst_alsa_change_state), (gst_alsa_update_avail),
23963         (gst_alsa_xrun_recovery):
23964         * ext/alsa/gstalsa.h:
23965         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23966           merge back changes from release
23967
23968 2004-06-23  Wim Taymans  <wim@fluendo.com>
23969
23970         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
23971         (gst_audiorate_init), (gst_audiorate_chain),
23972         (gst_audiorate_set_property), (gst_audiorate_get_property):
23973         Implement sample dropping and notify
23974
23975 2004-06-22  Wim Taymans  <wim@fluendo.com>
23976
23977         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23978         (theora_enc_sink_link), (theora_buffer_from_packet),
23979         (theora_push_packet), (theora_enc_chain):
23980         Some cleanups, make sure the timestamps are correct.
23981
23982 2004-06-22  Wim Taymans  <wim@fluendo.com>
23983
23984         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
23985         (gst_alsa_change_state), (gst_alsa_update_avail),
23986         (gst_alsa_xrun_recovery):
23987         * ext/alsa/gstalsa.h:
23988         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
23989         Cleanups, take queued samples into account when reporting
23990         the time.
23991
23992 2004-06-22  Wim Taymans  <wim@fluendo.com>
23993
23994         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
23995         (gst_videorate_init):
23996         Initialize the property as well.
23997
23998 2004-06-22  Wim Taymans  <wim@fluendo.com>
23999
24000         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24001         (gst_videorate_init), (gst_videorate_chain),
24002         (gst_videorate_set_property), (gst_videorate_get_property):
24003         Add property to make videorate silent.
24004         Add property to prefer new frames over old ones.
24005
24006 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24007
24008         * sys/osxvideo/Makefile.am:
24009         Workaround so that the osxvideo .so file gets linked with the
24010         Cocoa, OpenGL and QuickTime frameworks
24011
24012 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24013
24014         * sys/osxaudio/Makefile.am:
24015         Workaround so that the osxaudio .so file gets linked with the
24016         CoreAudio framework
24017
24018 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24019
24020         * configure.ac:
24021         Whoops, my fault...fixed build issues
24022
24023 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24024
24025         * configure.ac:
24026         Add objective-c support if running in Darwin/Mac OS X
24027         * sys/Makefile.am:
24028         * sys/osxvideo:
24029         * sys/osxvideo/Makefile.am:
24030         * sys/osxvideo/osxvideosink.h:
24031         * sys/osxvideo/osxvideosink.m:
24032         * sys/osxvideo/cocoawindow.h:
24033         * sys/osxvideo/cocoawindow.m:
24034         Add osxvideosink, a cocoa-based osx video sink
24035
24036
24037 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
24038         * ext/dvdnav/gst-dvd:
24039         Grab the gconf key from the right spot
24040         * gst/debug/gstnavseek.c: (gst_navseek_init),
24041         (gst_navseek_segseek), (gst_navseek_handle_src_event),
24042         (gst_navseek_chain):
24043         * gst/debug/gstnavseek.h:
24044           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24045           and loop parameters of a segment seek.
24046         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24047         (gst_videotestsrc_get_event_masks),
24048         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24049         * gst/videotestsrc/gstvideotestsrc.h:
24050           Add seeking support to videotestsrc
24051           Initialise the timestamp_offset variable.
24052
24053 2004-06-18  Wim Taymans  <wim@fluendo.com>
24054
24055         * ext/sidplay/gstsiddec.cc:
24056         Fix negotiation and set correct end offset.
24057
24058 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24059
24060         * configure.ac: branch and prerelease
24061
24062 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24063
24064         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24065         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24066         (gst_tcpclientsrc_init_receive):
24067         * gst/tcp/gsttcpclientsrc.h:
24068           read caps when connecting to server for GDP so we set them correctly
24069
24070 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24071
24072         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24073           notify drops and duplicates
24074         * gst/videoscale/videoscale.c: (videoscale_get_structure):
24075           no good reason to limit ourselves to 100x100
24076
24077 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24078
24079         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24080         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24081         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24082         (gst_v4lsrc_get_property):
24083         * sys/v4l/gstv4lsrc.h:
24084         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24085         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24086         (gst_v4l_set_audio):
24087         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24088         (gst_v4lsrc_try_capture):
24089         * sys/v4l/v4lsrc_calls.h:
24090           change try_palette to more general try_capture
24091           add autoprobe option so we can turn off autoprobing
24092           various fixes
24093
24094 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24095
24096         * configure.ac:
24097           add videorate
24098         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24099         (gst_ximagesink_class_init):
24100         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24101         (gst_xvimagesink_class_init):
24102           run them as finalize, not dispose, since dispose can be invoked
24103           multiple times
24104
24105 2004-06-17  Wim Taymans  <wim@fluendo.com>
24106
24107         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24108         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24109         * ext/alsa/gstalsa.h:
24110         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24111         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24112         (gst_alsa_src_change_state):
24113         * ext/alsa/gstalsasrc.h:
24114         Make the xrun code timestamp and offset the buffers correctly.
24115         moved the clock to the base class, use alsa methods to get time.
24116         Do correct timestamping on outgoing buffers.
24117
24118 2004-06-17  Wim Taymans  <wim@fluendo.com>
24119
24120         * gst/audiorate/Makefile.am:
24121         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24122         (gst_audiorate_base_init), (gst_audiorate_class_init),
24123         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24124         (gst_audiorate_set_property), (gst_audiorate_get_property),
24125         (gst_audiorate_change_state), (plugin_init):
24126         Added an audiorate converter that fills in gaps.
24127
24128 2004-06-17  Johan Dahlin  <johan@gnome.org>
24129
24130         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24131
24132 2004-06-16  Wim Taymans  <wim@fluendo.com>
24133
24134         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24135         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24136         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24137         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24138         (gst_v4lsrc_get_property):
24139         * sys/v4l/gstv4lsrc.h:
24140         Added a copy mode to v4lsrc where it will output a copied version
24141         of its internal hardware buffer.
24142         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24143         can't | them.
24144
24145 2004-06-16  Wim Taymans  <wim@fluendo.com>
24146
24147         * sys/oss/gstosssrc.c: (gst_osssrc_get):
24148         Timestamp fixes.
24149
24150 2004-06-16  Wim Taymans  <wim@fluendo.com>
24151
24152         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24153         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24154         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24155         (gst_v4lsrc_get_property):
24156         * sys/v4l/gstv4lsrc.h:
24157         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24158         Added a sync mode enum property to control v4lsrc timestamp method
24159         Removed the use-fixed-fps property and moved functionality in
24160         the enum.
24161         Don't error on an error value from v4l-conf, it might not always
24162         be a real error.
24163
24164 2004-06-16  Wim Taymans  <wim@fluendo.com>
24165
24166         * gst/videorate/Makefile.am:
24167         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24168         (gst_videorate_base_init), (gst_videorate_class_init),
24169         (gst_videorate_getcaps), (gst_videorate_link),
24170         (gst_videorate_init), (gst_videorate_chain),
24171         (gst_videorate_set_property), (gst_videorate_get_property),
24172         (gst_videorate_change_state), (plugin_init):
24173         Added a video timestamp corrector.
24174
24175 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24176
24177         fixed a potential leak with previous commit
24178
24179         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24180
24181 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24182
24183         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24184         Added missing refcount, fixes bug #144425
24185         Cheers Tim for finding the bug
24186
24187 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
24188
24189         * sys/v4l/gstv4l.c: (plugin_init):
24190         * sys/v4l/gstv4lcolorbalance.c:
24191         * sys/v4l/gstv4lcolorbalance.h:
24192         * sys/v4l/gstv4lelement.c:
24193         * sys/v4l/gstv4lelement.h:
24194         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24195         * sys/v4l/gstv4lmjpegsink.h:
24196         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24197         * sys/v4l/gstv4lmjpegsrc.h:
24198         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24199         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24200         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24201         * sys/v4l/gstv4lsrc.h:
24202         * sys/v4l/gstv4ltuner.c:
24203         * sys/v4l/gstv4ltuner.h:
24204         * sys/v4l/gstv4lxoverlay.c:
24205         * sys/v4l/gstv4lxoverlay.h:
24206         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24207         (gst_v4l_set_window), (gst_v4l_enable_overlay):
24208         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24209         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24210         (gst_v4l_set_audio):
24211         * sys/v4l/v4l_calls.h:
24212         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24213         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24214         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24215         (gst_v4lmjpegsink_playback_init),
24216         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24217         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24218         (gst_v4lmjpegsink_playback_stop),
24219         (gst_v4lmjpegsink_playback_deinit):
24220         * sys/v4l/v4lmjpegsink_calls.h:
24221         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24222         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24223         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24224         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24225         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24226         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24227         * sys/v4l/v4lmjpegsrc_calls.h:
24228         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24229         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24230         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24231         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24232         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24233         (gst_v4lsrc_try_palette):
24234         * sys/v4l/v4lsrc_calls.h:
24235           bunch of paranoia cleanups
24236
24237 2004-06-14  David Schleef  <ds@schleef.org>
24238
24239         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24240         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24241         Send discont events and change timestamps appropriately when
24242         we get a seek event.  (bug #144240)
24243         * ext/cdparanoia/gstcdparanoia.h:
24244
24245 2004-06-14  Benjamin Otte  <otte@gnome.org>
24246
24247         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24248           snd_pcm_hw_params_set_rate  since the latter fails for no good
24249           reason on some setups.
24250
24251 2004-06-14  David Schleef  <ds@schleef.org>
24252
24253         * gst/volume/demo.c: (value_changed_callback): exp10() is not
24254         standard.  Thank you for playing.
24255
24256 2004-06-14  Wim Taymans  <wim@fluendo.com>
24257
24258         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24259         Patch 1.3 broke the ordering of the colorspace info and
24260         made the plugin basically work by coincidence, reordered
24261         the info.
24262
24263 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24264
24265         * ext/lame/gstlame.c:
24266         * ext/mad/gstmad.c:
24267           sync caps.  Make sure mad can only output a list of rates, not
24268           a full range.  In the future, have three caps lists for each of the
24269           mpeg versions.  Change mpegversion to a double as well.
24270
24271 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
24272
24273         * gst/volume/.cvsignore:
24274         * gst/volume/Makefile.am:
24275         * gst/volume/demo.c: (value_changed_callback), (idler),
24276         (setup_gui), (main):
24277           added small demo app
24278
24279 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
24280         * ext/esd/esdsink.c: (gst_esdsink_change_state):
24281         * ext/esd/esdsink.h:
24282         Close the esd connection on pause, because esd will just wait -
24283         blocking all other esd clients indefinitely.
24284
24285 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
24286
24287         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24288           previous commit with GST_DEBUG
24289
24290 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24291
24292         * configure.ac:
24293           add a header check for a dvdread header in dvdnav.  Fixes #133002
24294
24295 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24296
24297         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24298         * gst/tcp/gsttcpclientsink.h:
24299         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24300         * gst/tcp/gsttcpclientsrc.h:
24301         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24302         (gst_tcpserversink_handle_server_read),
24303         (gst_tcpserversink_init_send):
24304         * gst/tcp/gsttcpserversink.h:
24305         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24306         * gst/tcp/gsttcpserversrc.h:
24307         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24308         version of IP)
24309
24310 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24311
24312         * configure.ac:
24313         Added ogg library so that OSX detects libtheora properly
24314
24315 2004-06-11  Wim Taymans  <wim@fluendo.com>
24316
24317         * ext/theora/theoradec.c: (theora_dec_chain),
24318         (theora_dec_change_state):
24319         Don't try to decode frames before we received a keyframe.
24320
24321 2004-06-11  Wim Taymans  <wim@fluendo.com>
24322
24323         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24324         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24325         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24326         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24327         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24328         Added property to set the maximum delay of a page.
24329
24330 2004-06-10  Wim Taymans  <wim@fluendo.com>
24331
24332         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24333         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24334         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24335         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24336         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24337         Added max-delay property to control the maximum amount
24338         of data to put in one page.
24339
24340 2004-06-10  Wim Taymans  <wim@fluendo.com>
24341
24342         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24343         (gst_theora_enc_init), (theora_enc_sink_link),
24344         (theora_buffer_from_packet), (theora_enc_set_property),
24345         (theora_enc_get_property):
24346         Set duration on encoded buffer, added some more properties
24347
24348 2004-06-10  Wim Taymans  <wim@fluendo.com>
24349
24350         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24351         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24352         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24353         * ext/theora/theoraenc.c: (theora_enc_chain):
24354         Fix refcounting bugs
24355
24356 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24357
24358         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24359         (gst_asf_demux_loop), (gst_asf_demux_process_file),
24360         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24361         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24362         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24363         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24364         (gst_asf_demux_change_state):
24365         * gst/asfdemux/gstasfdemux.h:
24366           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24367           feels like. I think we should set a new requirement for demuxers
24368           from now on to implement sane loop functions, data loops, query
24369           and seek functions before first commit into CVS. And this commit
24370           fixes all of the above.
24371
24372 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
24373
24374         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24375           vorbis comments are properly encoded in UTF-8 before adding them
24376           to a GstTagList
24377
24378 2004-06-09  Benjamin Otte  <otte@gnome.org>
24379
24380         * ext/alsa/gstalsa.c: (add_channels):
24381           handle min <= max correctly
24382         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24383         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24384           add fixation functions so we fixate correctly. No preferring of alaw
24385           anymore because it's the first structure.
24386         * ext/alsa/gstalsa.h:
24387         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24388         (gst_alsa_hw_params_dump):
24389           add functions to ease debugging in alsalib
24390         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24391         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24392         (gst_alsa_start_audio):
24393           only specify hw params if we really setup a format (fixes #134007 -
24394           or at least works around it)
24395
24396 2004-06-09  Wim Taymans  <wim@fluendo.com>
24397
24398         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24399         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24400         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24401         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24402         (gst_ogg_mux_loop):
24403         Use stream caps to setup the initial pages in the ogg stream.
24404         Correctly set the streamheader caps on the srcpad.
24405
24406 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24407
24408         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24409         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24410         (gst_v4lsrc_getcaps):
24411         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24412         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24413           add querying of fps lists for webcams.  Negotiating to a framerate
24414           now works.
24415
24416 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24417
24418         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24419         (theora_push_buffer), (theora_push_packet),
24420         (theora_set_header_on_caps), (theora_enc_chain):
24421           mark buffers and put on streamheader, raw theora streaming
24422           now works too, whee
24423
24424 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24425
24426         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24427         (gst_tcp_gdp_read_caps):
24428           do a looping read for caps and GDP headers too
24429
24430 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24431
24432         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24433         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24434           return EOS instead of NULL in _get
24435
24436 2004-06-08  Wim Taymans  <wim@fluendo.com>
24437
24438         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24439         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24440         (gst_tcp_gdp_write_caps):
24441         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24442         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24443         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24444         Memory leak fixes
24445
24446 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24447
24448         * ext/vorbis/Makefile.am:
24449         * ext/vorbis/vorbis.c: (plugin_init):
24450         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24451         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24452         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24453         (vorbis_parse_change_state):
24454         * ext/vorbis/vorbisparse.h:
24455           adding a vorbisparse element that marks the buffers, streaming
24456           raw vorbis using GDP now works, whee
24457
24458 2004-06-08  Wim Taymans  <wim@fluendo.com>
24459
24460         * ext/jpeg/Makefile.am:
24461         * ext/jpeg/README:
24462         * ext/jpeg/gstjpeg.c: (plugin_init):
24463         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24464         (gst_smokedec_base_init), (gst_smokedec_class_init),
24465         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24466         * ext/jpeg/gstsmokedec.h:
24467         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24468         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24469         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24470         (gst_smokeenc_resync), (gst_smokeenc_chain),
24471         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24472         * ext/jpeg/gstsmokeenc.h:
24473         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24474         (smokecodec_flush_destination), (smokecodec_term_destination),
24475         (smokecodec_init_source), (smokecodec_fill_input_buffer),
24476         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24477         (smokecodec_term_source), (smokecodec_encode_new),
24478         (smokecodec_decode_new), (smokecodec_info_free),
24479         (smokecodec_set_quality), (smokecodec_get_quality),
24480         (smokecodec_set_threshold), (smokecodec_get_threshold),
24481         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24482         (find_best_size), (abs_diff), (put), (smokecodec_encode),
24483         (smokecodec_parse_header), (smokecodec_decode):
24484         * ext/jpeg/smokecodec.h:
24485         Added a new simple jpeg based codec
24486
24487 2004-06-08  Wim Taymans  <wim@fluendo.com>
24488
24489         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24490         (gst_multipart_mux_loop):
24491         Fix memory leak
24492
24493 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24494
24495         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24496         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24497         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24498         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24499         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24500         * gst/tcp/gsttcpserversink.h:
24501           take streamheader into account
24502
24503 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24504
24505         * gst/level/Makefile.am:
24506         * gst/level/gstlevel.c: (gst_level_class_init):
24507           clean up marshal generation
24508
24509 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24510
24511         * gst/tcp/Makefile.am:
24512         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24513         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24514         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24515         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24516         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24517         (gst_tcpclientsrc_get_property):
24518         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24519         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24520         (gst_tcpserversink_handle_client_read),
24521         (gst_tcpserversink_handle_client_write),
24522         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24523         * gst/tcp/gsttcpserversink.h:
24524           add signals client-added and client-removed
24525         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24526         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24527         (gst_tcpserversrc_get_property):
24528         uniformized, change default protocol to NONE
24529         * gst/tcp/gsttcp-marshal.list: added
24530 2004-06-07  Benjamin Otte  <otte@gnome.org>
24531
24532         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24533           handle discont events if they happen before caps nego
24534
24535 2004-06-07  Wim Taymans  <wim@fluendo.com>
24536
24537         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24538         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24539         (gst_multipart_demux_plugin_init):
24540         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24541         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24542         (gst_multipart_mux_change_state):
24543         Small updates, fix a memleak
24544
24545 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24546
24547         * configure.ac: OSS portability
24548         * ext/arts/gst_arts.c: idem
24549         * sys/oss/gstosselement.c: idem
24550         * sys/oss/gstossmixer.c: idem
24551         * sys/oss/gstosssink.c: idem
24552         * sys/oss/gstosssrc.c: idem
24553         * sys/oss/oss_probe.c: idem
24554           - check for soundcard.h in different places for some BSD
24555
24556 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
24557
24558         * AUTHORS:
24559         Add me to the authors file
24560         * configure.ac:
24561         Increase the libdv requirement to >= version 0.100
24562         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24563         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24564         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24565         * ext/dv/gstdvdec.h:
24566         Add support for the new_media flag when sending DISCONT events
24567         Make the querying work when video pad is not linked
24568
24569 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24570
24571         reviewed by Benjamin Otte  <otte@gnome.org>
24572
24573         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24574           create a NULL-initialized array of pads, so we don't think they
24575           exist already. (fixes #143130)
24576
24577 2004-06-07  Benjamin Otte  <otte@gnome.org>
24578
24579         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24580         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24581         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24582           don't use // coments
24583
24584 2004-06-07  Benjamin Otte  <otte@gnome.org>
24585
24586         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24587           cast to GstClockTime to get higher granularity
24588         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24589           use gst_element_set_time_delay to get the exact time
24590         * ext/mad/gstmad.c: (gst_mad_chain):
24591           use the negotiated rate instead of the current frame's rate which
24592           might be wrong because of bit errors. This avoids emitting totally
24593           bogus timestamps and screwing sync.
24594         (fixes #143454)
24595
24596 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
24597
24598         reviewed by Benjamin Otte  <otte@gnome.org>
24599
24600         * gst/adder/gstadder.c: (gst_adder_loop):
24601           properly error out when no negotiation has happened yet. (fixes
24602           #143032)
24603
24604 2004-06-06  Benjamin Otte  <otte@gnome.org>
24605
24606         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24607           forward correctly transformed offset in discont events. Based on
24608           patch by Arwed v. Merkatz. (fixes #142851)
24609
24610 2004-06-06  David Schleef  <ds@schleef.org>
24611
24612         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24613         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
24614         problems on several systems.
24615
24616 2004-06-06  Benjamin Otte  <otte@gnome.org>
24617
24618         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24619           use explicit caps on the srcpad
24620         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24621           properly error out if caps couldn't be set (fixes #142764)
24622
24623 2004-06-06  Benjamin Otte  <otte@gnome.org>
24624
24625         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24626         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24627         (gst_alsa_start_audio):
24628           - don't call set_periods_integer anymore, it breaks the
24629           configuration randomly
24630           - call snd_pcm_hw_params_set_access directly instead of using masks
24631           - don't fail if the sw_params can't be set, just use the default
24632           params and hope it works. Alsalib has weird issues when you touch
24633           sw_params and does no proper error reporting about what failed.
24634         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24635         (gst_alsa_close_audio):
24636           make our alsa debugging go via gst debugging and not conditionally
24637           defined
24638         * ext/alsa/gstalsa.h:
24639           add ALSA_DEBUG_FLUSH macro
24640         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24641         (plugin_init):
24642           wrap alsa errors to be printed via the gst debugging system and not
24643           spammed to stderr
24644
24645 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24646
24647         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24648         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24649         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24650         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24651         (qtdemux_parse_trak):
24652         * gst/qtdemux/qtdemux.h:
24653           Bitch. Also known as seeking, querying & co.
24654         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24655         (gst_osssink_change_state):
24656         * sys/oss/gstosssink.h:
24657           Resyncing is for weenies, this hack is no longer needed and was
24658           broken anyway (since it - unintendedly - always leaves resync to
24659           TRUE).
24660
24661 2004-06-05  Andrew Turner <zxombie@hotpop.com>
24662
24663         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24664         * gst/tcp/gsttcpclientsrc.h: idem
24665           - define MSG_NOSIGNAL if not done
24666           - include unistd.h for off_t
24667           (fixes #143749)
24668
24669 2004-06-05  Benjamin Otte  <otte@gnome.org>
24670
24671         * configure.ac:
24672         * ext/kio/Makefile.am:
24673           check for qt's moc preprocessor explicitly and use it
24674
24675 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24676
24677         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24678           don't get a signal for EPIPE on socket writes
24679           (somebody check if this works on other platforms)
24680
24681 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24682
24683         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24684         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24685           check error condition on available samples correctly
24686
24687 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
24688
24689         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24690           avoid a segfault
24691         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24692         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24693         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24694         (gst_tcpserversrc_gdp_read_header):
24695          use ssize_t over size_t since the former is signed and thus the
24696          check for error codes can work
24697
24698 2004-06-02  Wim Taymans  <wim@fluendo.com>
24699
24700         reviewed by: Johan
24701
24702         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24703         (gst_multipart_mux_loop):
24704         Oops
24705
24706 2004-06-02  Wim Taymans  <wim@fluendo.com>
24707
24708         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24709         (gst_multipart_mux_init), (gst_multipart_mux_loop),
24710         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24711         (gst_multipart_mux_change_state):
24712         Added configurable boundary specifier, added the value as a
24713         caps field as well.
24714
24715 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24716
24717         * gst/tcp/gsttcp.c:
24718         * gst/tcp/gsttcpclientsrc.c:
24719         * gst/tcp/gsttcpclientsrc.h:
24720         * gst/tcp/gsttcpserversrc.c:
24721           - portability fix, to compile on OSX
24722             (fixes #143146)
24723
24724         * sys/osxaudio/gstosxaudioelement.c:
24725         * sys/osxaudio/gstosxaudiosink.c:
24726         * sys/osxaudio/gstosxaudiosrc.c:
24727           - compilation warnings on OSX
24728             (fixes #143153)
24729
24730 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24731
24732         * ext/vorbis/vorbisdec.c : sign warning fixes
24733
24734         * gst-libs/gst/mixer/mixertrack.c :
24735           do no use defines which are glib 2.4 specific
24736
24737 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
24738
24739         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24740           buffer since libflac doesn't expect it (reports a sync error when
24741           it encounters that)
24742
24743
24744 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
24745
24746         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
24747         * gst-libs/gst/mixer/mixertrack.c:
24748         (gst_mixer_track_get_property), (get_mixer_track_init),
24749         (get_mixer_track_get_property): Added property accessors
24750         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
24751         * gst-libs/gst/mixer/mixeroptions.c:
24752         (gst_mixer_options_get_values): Added
24753         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
24754         * gst-libs/gst/mixer/mixer.c: Fixed comment
24755
24756
24757 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24758
24759         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24760           improve error messages on open
24761
24762
24763 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
24764
24765         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24766           check if v4l-conf is in path
24767
24768 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
24769
24770         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
24771           change assert to a more readable error message
24772
24773 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
24774
24775         * gst-libs/gst/tuner/tunerchannel.h:
24776           - add a freq_multiplicator field to make the conversion
24777             between internal frequency unit and Hz
24778         * sys/v4l/gstv4lelement.c:
24779         * sys/v4l2/gstv4l2element.c:
24780           - change default video device to /dev/video0
24781         * sys/v4l/v4l_calls.c:
24782         * sys/v4l2/v4l2_calls.c:
24783           - we only expose frequency to the user in Hz instead of
24784             bastard v4lX unit (either 62.5kHz or 62.5Hz)
24785
24786 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
24787         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24788           Initialise b_o_s and e_o_s variables
24789         * gst-libs/gst/riff/riff-media.c:
24790         (gst_riff_create_video_caps_with_data):
24791           Add some unusual fourcc's from mplayer avi's
24792         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
24793           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
24794           autoplugging.
24795
24796 2004-05-28  Wim Taymans  <wim@fluendo.com>
24797
24798         * configure.ac:
24799         * gst/alpha/Makefile.am:
24800         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
24801         (gst_alpha_get_type), (gst_alpha_base_init),
24802         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
24803         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
24804         (gst_alpha_chroma_key), (gst_alpha_chain),
24805         (gst_alpha_change_state), (plugin_init):
24806         A plugin to add an alpha channel to I420 video. Can optionally do
24807         chroma keying.
24808         * gst/multipart/Makefile.am:
24809         * gst/multipart/multipart.c: (plugin_init):
24810         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24811         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
24812         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
24813         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24814         (gst_multipart_demux_change_state),
24815         (gst_multipart_demux_plugin_init):
24816         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
24817         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
24818         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
24819         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
24820         (gst_multipart_mux_pad_unlink),
24821         (gst_multipart_mux_request_new_pad),
24822         (gst_multipart_mux_handle_src_event),
24823         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
24824         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
24825         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24826         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
24827         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
24828         send multipart jpeg images to a browser.
24829         * gst/videobox/Makefile.am:
24830         * gst/videobox/README:
24831         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
24832         (gst_video_box_get_type), (gst_video_box_base_init),
24833         (gst_video_box_class_init), (gst_video_box_init),
24834         (gst_video_box_set_property), (gst_video_box_get_property),
24835         (gst_video_box_sink_link), (gst_video_box_i420),
24836         (gst_video_box_ayuv), (gst_video_box_chain),
24837         (gst_video_box_change_state), (plugin_init):
24838         Crops or adds borders around an image. can do alpha channel
24839         borders as well.
24840         * gst/videomixer/Makefile.am:
24841         * gst/videomixer/README:
24842         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
24843         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
24844         (gst_videomixer_pad_get_sink_event_masks),
24845         (gst_videomixer_pad_get_property),
24846         (gst_videomixer_pad_set_property),
24847         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
24848         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
24849         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
24850         (gst_videomixer_base_init), (gst_videomixer_class_init),
24851         (gst_videomixer_init), (gst_videomixer_request_new_pad),
24852         (gst_videomixer_handle_src_event),
24853         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
24854         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
24855         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
24856         (gst_videomixer_loop), (gst_videomixer_get_property),
24857         (gst_videomixer_set_property), (gst_videomixer_change_state),
24858         (plugin_init):
24859         Generic video mixer plugin, can handle multiple inputs all with
24860         different framerates and video sizes. Is fully alpha channel
24861         aware.
24862
24863 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24864
24865         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
24866           Select first track as master track. Not sure how else to handle
24867           that...
24868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
24869           Discard discont events. Should fix #142962.
24870
24871 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24872
24873         * ext/alsa/Makefile.am:
24874         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
24875         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
24876         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
24877         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
24878         (gst_alsa_mixer_get_option):
24879         * ext/alsa/gstalsamixer.h:
24880         * ext/alsa/gstalsamixeroptions.c:
24881         (gst_alsa_mixer_options_get_type),
24882         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
24883         (gst_alsa_mixer_options_new):
24884         * ext/alsa/gstalsamixeroptions.h:
24885         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
24886         * ext/alsa/gstalsamixertrack.h:
24887           Add enumerations (as GstMixerOptions). Make correct distinction
24888           between input/output tracks. Add capture/playback private flag.
24889           Use flag to decide on whether to set capture or playback volumes
24890           or switches. Use playback and record switches.
24891         * gst-libs/gst/mixer/Makefile.am:
24892         * gst-libs/gst/mixer/mixer-marshal.list:
24893         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
24894         (gst_mixer_set_option), (gst_mixer_get_option),
24895         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
24896         (gst_mixer_volume_changed), (gst_mixer_option_changed):
24897         * gst-libs/gst/mixer/mixer.h:
24898         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
24899         (gst_mixer_options_class_init), (gst_mixer_options_init),
24900         (gst_mixer_options_dispose):
24901         * gst-libs/gst/mixer/mixeroptions.h:
24902           Add GstMixerOptions.
24903         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
24904           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
24905           broken device detection on computers with multiple OSS sound
24906           cards.
24907
24908 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24909
24910         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24911           fixate nicely even when the peer is not negotiating
24912
24913 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24914
24915         * gst/audioconvert/gstaudioconvert.c:
24916         (gst_audio_convert_parse_caps):
24917           make sure we don't allow depth > width
24918         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
24919           fixate endianness to G_BYTE_ORDER as default
24920         * gst/audioscale/gstaudioscale.c:
24921           we don't handle another endianness as host-endianness
24922
24923 2004-05-25  David Schleef  <ds@schleef.org>
24924
24925         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
24926
24927 2004-05-24  Benjamin Otte  <otte@gnome.org>
24928
24929         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
24930         (gst_oggvorbisenc_setup):
24931           properly fail when we can't setup the vorbis encoder due to
24932           unsupported settings
24933         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
24934         (gst_vorbisenc_setup):
24935           same
24936         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
24937           fix case where warnings occured when one pad was unlinked while the
24938           other's link function was called
24939
24940 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24941
24942         * gst/tcp/Makefile.am:
24943           use GST_ENABLE_NEW
24944
24945 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24946
24947         * gst-libs/gst/resample/private.h:
24948           don't use optimizations that are #if 0'ed
24949
24950 2004-05-24  Wim Taymans  <wim@fluendo.com>
24951
24952         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
24953         Fix potential division by zero error and hopefully get
24954         the position query right to get correct timestamps on avi
24955         audio.
24956
24957 2004-05-24  Wim Taymans  <wim@fluendo.com>
24958
24959         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
24960         (gst_videoscale_scale_nearest_str2),
24961         (gst_videoscale_scale_nearest_str4),
24962         (gst_videoscale_scale_nearest_32bit),
24963         (gst_videoscale_scale_nearest_24bit),
24964         (gst_videoscale_scale_nearest_16bit):
24965         Fix the scaling algorithm and avoid a buffer overflow.
24966         removed the while loop in the scaling function as it
24967         was used for point sampling only.
24968
24969 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24970
24971         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
24972         (gst_id3_tag_class_init), (gst_id3_tag_init),
24973         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
24974         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
24975         (gst_id3_tag_send_tag_event):
24976           lots of fixes to make id3mux work and id3demux work correctly
24977
24978 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24979
24980         * ext/Makefile.am:
24981           add rules to build shout2send (was removed by accident
24982           when this module was no more marked experimental/broken)
24983
24984 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24985
24986         * ext/shout2/gstshout2.c:
24987         * ext/shout2/gstshout2.h:
24988           adding a "connection problem" signal to shout2send
24989           (fixes #142954)
24990
24991 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
24992
24993         * ext/kio/kioreceiver.cpp:
24994         * ext/kio/kioreceiver.h:
24995           fix sign comparison issues
24996
24997 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24998
24999         * gst/cdxaparse/gstcdxaparse.c:
25000         * gst/cdxaparse/gstcdxaparse.h:
25001           some renaming
25002           add some checks/sanity
25003           prepare for seek addition
25004
25005         * sys/sunaudio/gstsunaudio.c:
25006           remove exported dupe init function
25007
25008 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
25009
25010         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25011         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25012           Fix format conversion and position querying.
25013         * gst/debug/progressreport.c: (gst_progressreport_report):
25014           Don't output a bogus total value that we didn't query.
25015         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25016           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25017           only a blank window after xine has been used.
25018
25019 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
25020
25021         * m4/as-arts.m4:
25022           sync with upstream version to fix test on FC2
25023           readd with -ko to preserve Id header
25024
25025 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25026
25027         * configure.ac:
25028           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25029         * gst/tcp/gsttcpclientsrc.c: idem
25030         * gst/tcp/gsttcpserversink.c: idem
25031         * gst/tcp/gsttcpserversrc.c: idem
25032         * m4/gst-fionread.m4: idem
25033
25034         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25035
25036         * configure.ac: enable speex plugin for speex 1.1.5+
25037         * ext/speex/gstspeexenc.c: fix cast warning
25038
25039         * ext/esd/README: fix typo
25040
25041 2004-05-20  David Schleef  <ds@schleef.org>
25042
25043         * configure.ac: Minor cosmetic change to convince the buildbot to
25044         reautogen.
25045         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25046         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25047         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25048         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25049         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25050         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25051         More hacking.  Plays audio now.
25052
25053 2004-05-20  David Schleef  <ds@schleef.org>
25054
25055         * configure.ac:
25056         * sys/Makefile.am:
25057
25058 2004-05-20  David Schleef  <ds@schleef.org>
25059
25060         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
25061         * sys/osxaudio/gstosxaudio.c:
25062         * sys/osxaudio/gstosxaudioelement.c:
25063         * sys/osxaudio/gstosxaudioelement.h:
25064         * sys/osxaudio/gstosxaudiosink.c:
25065         * sys/osxaudio/gstosxaudiosink.h:
25066         * sys/osxaudio/gstosxaudiosrc.c:
25067         * sys/osxaudio/gstosxaudiosrc.h:
25068
25069 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25070
25071         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25072         (gst_vorbisenc_chain):
25073           put the codec headers on the caps as streamheader as well as
25074           pushing them out
25075
25076 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25077
25078         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25079         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25080         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25081         split up push_packet into two functions
25082
25083 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25084
25085         * gst/tcp/.cvsignore:
25086           ignore enums
25087         * gst/tcp/Makefile.am:
25088         * gst/tcp/README:
25089         * gst/tcp/gsttcp.c:
25090         * gst/tcp/gsttcp.h:
25091         * gst/tcp/gsttcpclientsink.c:
25092         * gst/tcp/gsttcpclientsink.h:
25093         * gst/tcp/gsttcpclientsrc.c:
25094         * gst/tcp/gsttcpclientsrc.h:
25095         * gst/tcp/gsttcpplugin.c:
25096         * gst/tcp/gsttcpserversink.c:
25097         * gst/tcp/gsttcpserversink.h:
25098         * gst/tcp/gsttcpserversrc.c:
25099         * gst/tcp/gsttcpserversrc.h:
25100           add new tcp elements
25101
25102 2004-05-19  Wim Taymans  <wim@fluendo.com>
25103
25104         * gst/law/mulaw-conversion.c: (mulaw_encode):
25105         Fix overflow bug in ulaw encoding.
25106
25107 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25108
25109         * ext/mad/gstmad.c: (gst_mad_handle_event):
25110           don't unref the event twice
25111
25112 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25113
25114         * configure.ac:
25115           remove -Wno-sign-compare
25116
25117 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25118
25119         * configure.ac:
25120           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25121           if you want to work against glib 2.2 and 2.4
25122
25123 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
25124
25125         * gst/tcp/Makefile.am:
25126         * gst/tcp/gsttcp.c:
25127         * gst/tcp/gsttcp.h:
25128         * gst/tcp/gsttcpsink.h:
25129         * gst/tcp/gsttcpsrc.h:
25130           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25131
25132 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25133
25134         * gst/debug/tests.c: (md5_get_value):
25135           fix segfault on gst-inspect
25136
25137 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25138
25139         * gst/debug/testplugin.c:
25140         * gst/debug/tests.c:
25141         * gst/debug/tests.h:
25142           add new extensible and configurable testing element. Current tests
25143           include buffer count, stream length, timestamp/duration matching and
25144           md5.
25145         * gst/debug/Makefile.am:
25146         * gst/debug/gstdebug.c: (plugin_init):
25147           add infrastructure for new element
25148
25149 2004-05-19  Johan Dahlin  <johan@gnome.org>
25150
25151         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25152         ending of the array. Fixes gst-inspect segfault on ppc.
25153
25154 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25155
25156         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25157
25158         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25159
25160 2004-05-18  David Schleef  <ds@schleef.org>
25161
25162         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25163         warnings (bugs, actually) noticed by gcc but not forte.
25164
25165 2004-05-18  David Schleef  <ds@schleef.org>
25166
25167         * sys/sunaudio/Makefile.am:
25168         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25169
25170 2004-05-18  David Schleef  <ds@schleef.org>
25171
25172         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25173         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
25174         to allow qtdemux to use non-seekable streams. (bug #142272)
25175
25176 2004-05-18  David Schleef  <ds@schleef.org>
25177
25178         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25179         (gst_resample_sinc_ft_float): Remove use of static temporary
25180         buffer.  This code was obviously not supposed to last long, but
25181         it's stuck in our ABI, so it required a little hack to make it
25182         ABI-compatible.  Fixes #142585.
25183         * gst-libs/gst/resample/resample.h: same.
25184
25185 2004-05-18  David Schleef  <ds@schleef.org>
25186
25187         * configure.ac: Add sunaudio
25188         * examples/Makefile.am: make gstplay depend on gconf
25189         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25190         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25191         (convert_table_lookup), (img_convert): remove c99-isms
25192         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25193           unsigned, to fix a warning on Solaris
25194         * gst/mpeg1sys/systems.c: bcopy->memcpy
25195         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25196         * sys/Makefile.am: Add sunaudio
25197
25198 2004-05-18  Wim Taymans  <wim@fluendo.com>
25199
25200         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25201         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25202         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25203         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25204         (gst_ogg_mux_loop):
25205         Fix an ugly memleak where the muxer didn't flush enough ogg
25206         pages. This also resulted in badly muxed ogg files.
25207
25208 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25209
25210         * gst/asfdemux/asfheaders.c :
25211         * gst/asfdemux/asfheaders.h :
25212         * gst/asfdemux/gstasfdemux.c :
25213           - fix ASF_OBJ_PADDING guid
25214           - add 3 new object guids (language list, metadata,
25215             extended stream properties)
25216           - add a function to parse extended header objects
25217
25218 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25219
25220         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25221           remove leftover debugging g_print
25222
25223 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25224
25225         * ext/mad/gstmad.c: (gst_mad_handle_event):
25226           Fix for when the first format in a discont event is not a
25227           byte-based one. Should fix #137710.
25228
25229 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25230
25231         * m4/a52.m4 : fix compilation with -Wall -Werror
25232         * m4/libfame.m4 : idem
25233         * m4/libmikmod.m4 : idem
25234
25235 2004-05-17  Benjamin Otte  <otte@gnome.org>
25236
25237         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25238           signal the new tags before giving up the reference
25239
25240 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25241
25242         * ext/shout2/gstshout2.c:
25243           use application/ogg instead of application/x-ogg (patch by Patrick
25244           Guimond, fixes #142432)
25245         * sys/oss/gstosselement.c: (gst_osselement_reset),
25246         (gst_osselement_sync_parms):
25247           don't set fragment size unless specified (fixes #142493)
25248
25249 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25250
25251         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25252           fixes #142664
25253
25254 2004-05-17  Benjamin Otte  <otte@gnome.org>
25255
25256         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25257           compute offsets correctly for internal buffers so timestamps are set
25258           correctly when we can't seek. Also handle cases where there are no
25259           offsets. (based on a patch by David Moore, fixes #142507)
25260
25261 2004-05-17  Benjamin Otte  <otte@gnome.org>
25262
25263         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25264           use correct variable when determining amount of data to skip so we
25265           don't skip into the void and segfault
25266
25267 2004-05-16  Benjamin Otte  <otte@gnome.org>
25268
25269         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25270           Hi, I'm a memleak
25271
25272 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25273
25274         * gst/asfdemux/gstasfdemux.c:
25275           - fix a mem leak and always propagate tags
25276           - add WMV3 to known video codecs (but no decoder yet)
25277           - replace "surplus data" at end of audio header for what
25278             it is : codec specific data
25279           - fix a typo
25280
25281 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
25282
25283         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
25284
25285         * gst-libs/gst/audio/audioclock.c:
25286           Fix wrong return type (#142205).
25287
25288 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25289
25290         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25291           Ignore CRCs by default (fixes #142566).
25292
25293 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25294
25295         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25296         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25297         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25298         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25299         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25300         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25301           Fix for cases where we fail to attach to a mixer.
25302
25303 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25304
25305         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25306           Don't touch events after not owning them anymore.
25307         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25308         (gst_wavparse_fmt), (gst_wavparse_other),
25309         (gst_wavparse_handle_seek), (gst_wavparse_loop),
25310         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25311         (gst_wavparse_srcpad_event):
25312         * gst/wavparse/gstwavparse.h:
25313           Add seeking, fix querying.
25314
25315 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25316
25317         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25318           - process comments even if they don't end with \0\0
25319             g_convert would ignore them if present and works well without them
25320
25321 2004-05-16  Benjamin Otte  <otte@gnome.org>
25322
25323         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25324           simplify caps
25325
25326 2004-05-16  Benjamin Otte  <otte@gnome.org>
25327
25328         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25329           don't write to memory we might not write to - g_convert does that
25330           for us anyway (fixes #142613)
25331         (gst_asf_demux_audio_caps):
25332           comment out gst_util_dump_mem
25333
25334 2004-05-16  Benjamin Otte  <otte@gnome.org>
25335
25336         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25337           compute correct expected timestamps after seek (broken since
25338           last commit)
25339         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25340           rename element and debugging category to gdkpixbufscale
25341
25342 2004-05-16  Benjamin Otte  <otte@gnome.org>
25343
25344         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25345           add error checking to snd_pcm_delay and remove duplicate call to
25346           snd_pcm_delay that caused issues (see inline code comments)
25347         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25348           make more readable and fix return value when snd_pcm_delay fails
25349         (fixes #142586)
25350
25351 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
25352         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25353         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25354         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25355         (gst_pixbufscale_link), (gst_pixbufscale_init),
25356         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25357         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25358         (gst_pixbufscale_get_property), (pixbufscale_init):
25359         * ext/gdk_pixbuf/pixbufscale.h:
25360         Add these files I forgot earlier
25361
25362 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
25363         * ext/gdk_pixbuf/Makefile.am:
25364         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25365         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25366         Add new pixbufscale element to scale RGB video
25367         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25368         and HYPER interpolation correctly.
25369         * ext/theora/theoraenc.c: (theora_enc_chain),
25370         Discard buffer and return if explicit caps could not be set
25371         (theora_enc_get_property):
25372         Make _get return kbps for the bitrate consistent with
25373         the _set function.
25374
25375
25376 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25377
25378         * ext/libvisual/visual.c: (gst_visual_chain):
25379           add missing visual_audio_analyze
25380
25381 2004-05-14  David Schleef  <ds@schleef.org>
25382
25383         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25384         is killed while we're playing.
25385         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25386         gst_element_no_more_pads().
25387
25388 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25389
25390         * gst-libs/gst/riff/riff-read.c :
25391           - fix INFO tag extraction in RIFF/AVI files
25392             because gst_event_unref (event) also freed taglist
25393           - avoid a mem leak
25394
25395 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25396
25397         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25398         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25399
25400         * gst/auparse/gstauparse.c :
25401           - add code (commented for now) to support audio/x-adpcm on src pad
25402             (we have no decoder for those layout yet)
25403
25404         * gst/cdxaparse/gstcdxaparse.c :
25405         * gst/cdxaparse/gstcdxaparse.h :
25406           - partial rewrite using RiffRead (ripped iain's wavparse code)
25407
25408         * gst/rtp/gstrtpL16enc.c : typo
25409         * gst/rtp/gstrtpgsmenc.c : typo
25410
25411 2004-05-13  Benjamin Otte  <otte@gnome.org>
25412
25413         * configure.ac:
25414           check for exact version of libvisual, it's not supposed to be
25415           API/ABI stable yet
25416
25417 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25418
25419         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25420           signal no-more-pads
25421
25422 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25423
25424         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25425         Report which format was used for GST_FORMAT_DEFAULT
25426         * gst/debug/Makefile.am:
25427         * gst/debug/gstdebug.c: (plugin_init):
25428         * gst/debug/progressreport.c: (gst_progressreport_base_init),
25429         (gst_progressreport_class_init), (gst_progressreport_init),
25430         (gst_progressreport_report), (gst_progressreport_set_property),
25431         (gst_progressreport_get_property), (gst_progressreport_chain),
25432         (gst_progressreport_plugin_init):
25433         Add progressreport element for testing.
25434
25435 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
25436
25437         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25438         * sys/v4l/gstv4lsrc.h:
25439         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25440         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25441         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25442         (gst_v4lsrc_grab_frame):
25443           add more debugging
25444           send a discont at start
25445
25446 2004-05-12  Colin Walters  <walters@redhat.com>
25447
25448         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25449         inflooping if we can't find a chunk.  Or in other words, don't blow
25450         chunks if we don't have a chunk to blow.
25451
25452 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
25453         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25454         Remove old debug output
25455         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25456         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25457         (gst_dvdec_set_property), (gst_dvdec_get_property):
25458         Change the quality setting to an enum, so it works from gst-launch
25459         Don't renegotiate a non-linked pad. Allows audio only decoding.
25460         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25461         (gst_deinterlace_link), (gst_deinterlace_init):
25462         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25463         (gst_videodrop_link):
25464         Some caps negotiation fixes
25465
25466 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25467
25468         * ext/tarkin/gsttarkin.c :
25469           - Change RANK from NONE to PRIMARY
25470         * ext/gdk_pixbuf/gstgdkpixbuf.c :
25471           - Change RANK from NONE to MARGINAL
25472         * ext/divx/gstdivxenc.c :
25473           - Change RANK from PRIMARY to NONE (encoder/spider issue)
25474
25475 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25476
25477         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25478         (gst_vorbisenc_push_packet):
25479           copy a function that was added between 1.0 and 1.0.1 until we
25480           depend on worthwhile features of post-1.0
25481
25482 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25483
25484         * configure.ac:
25485           enable shout2 by default
25486         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25487         (gst_shout2send_base_init), (gst_shout2send_init),
25488         (gst_shout2send_connect), (gst_shout2send_change_state):
25489         * ext/shout2/gstshout2.h:
25490           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25491           #142262)
25492         * ext/theora/theora.c: (plugin_init):
25493           don't set rank on encoders
25494
25495 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
25496
25497         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25498           Use codec_data property instead of flag1 and flag2 for wma
25499
25500 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25501
25502         * gst/cdxaparse/gstcdxaparse.c :
25503           - Add mpegversion to CAPS to make it link
25504           - Rank is as GST_RANK_SECONDARY instead of NONE
25505         * gst/auparse/gstauparse.c :
25506           - Document all audio encoding we can encounter from Solaris 9
25507             headers and libsndfile information.
25508           - Increase max. rate from 48000 to 192000 (to match other elements)
25509           - Don't try to play junk data between header and samples
25510
25511 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25512
25513         * ext/libvisual/visual.c: (gst_visual_getcaps):
25514           use the right caps depending on endianness (I hope)
25515         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25516           use GST_RANK_NONE for all non-decoding elements or spider gets
25517           mighty confused
25518
25519 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25520
25521         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25522           Fix some odd cases and fix BE metadata parsing of unicode16 text.
25523
25524 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25525
25526         * gst/switch/gstswitch.c: (gst_switch_release_pad),
25527         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25528         (gst_switch_loop), (gst_switch_get_type):
25529           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25530           HEADERS. Had to be said.
25531
25532 2004-05-10  David Schleef  <ds@schleef.org>
25533
25534         * configure.ac: Add prototype Dirac support.
25535         * ext/Makefile.am:
25536         * ext/dirac/Makefile.am:
25537         * ext/dirac/gstdirac.cc:
25538         * ext/dirac/gstdiracdec.cc:
25539
25540 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25541
25542         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25543         (gst_auparse_init), (gst_auparse_chain),
25544         (gst_auparse_change_state):
25545           Hack around spider. Remove me some day please.
25546
25547 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25548
25549         * gst/auparse/gstauparse.c: (gst_auparse_chain):
25550           Fix for some uninitialized variables in previous patch, also
25551           makes it work. Fixes #142286 while we're at it.
25552
25553 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25554
25555         * gst/auparse/gstauparse.c:
25556                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25557                 only unsupported formats are ADPCM/CCITT G.72x
25558                 reviewed by Ronald
25559         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25560
25561 2004-05-10  Wim Taymans  <wim@fluendo.com>
25562
25563         * ext/vorbis/Makefile.am:
25564         * ext/vorbis/README:
25565         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25566         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25567         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25568         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25569         (gst_oggvorbisenc_convert_sink),
25570         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25571         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25572         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25573         (get_constraints_string), (update_start_message),
25574         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25575         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25576         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25577         * ext/vorbis/oggvorbisenc.h:
25578         * ext/vorbis/vorbis.c: (plugin_init):
25579         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25580         (raw_caps_factory), (gst_vorbisenc_class_init),
25581         (gst_vorbisenc_init), (gst_vorbisenc_setup),
25582         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25583         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25584         * ext/vorbis/vorbisenc.h:
25585         Added a raw vorbis encoder to be used with the oggmuxer.
25586         We still need the old encoder for some gnome applications,
25587         read the README to find out how that works.
25588         The raw encoder is called "rawvorbisenc" until 0.9.
25589
25590 2004-05-10  Wim Taymans  <wim@fluendo.com>
25591
25592         * ext/ogg/gstogg.c: (plugin_init):
25593         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25594         (gst_ogg_print):
25595         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25596         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25597         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25598         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25599         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25600         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25601         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25602         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25603         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25604         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25605         Added an ogg muxer.
25606         Small typo fixes in the demuxer.
25607
25608 2004-05-10  Wim Taymans  <wim@fluendo.com>
25609
25610         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25611         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25612         (theora_enc_change_state), (theora_enc_set_property),
25613         (theora_enc_get_property):
25614         Mark the last packet with an EOS flag which is not really needed
25615         in gstreamer.
25616         Do some better video framerate initialisation.
25617         Update the buffer timestamp.
25618
25619 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
25620
25621         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25622         Return the result of the parent state change call
25623
25624 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25625
25626         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25627         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25628         * gst/law/alaw-encode.c : (idem)
25629         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25630         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25631         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25632
25633 2004-05-09  Benjamin Otte  <otte@gnome.org>
25634
25635         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25636           don't use a fixed buffer size when writing variable length data to
25637           it. Fixes memory corruption and makes alsasrc work
25638
25639 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25640
25641         * ext/gnomevfs/gstgnomevfssink.c:
25642         (_gst_boolean_allow_overwrite_accumulator),
25643         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25644           Run glib's default signal handler (??) in RUN_CLEANUP rather than
25645           RUN_LAST, and don't use that to set the accumulator value because
25646           then it's always FALSE.
25647
25648 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25649
25650         * gst-libs/gst/riff/riff-media.c:
25651         (gst_riff_create_video_caps_with_data),
25652         (gst_riff_create_audio_caps),
25653         (gst_riff_create_audio_template_caps):
25654         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25655           Fix for unaligned RIFF files (i.e. where all the chunks together
25656           in a LIST chunk are not of the same size as the size given in
25657           the LIST chunk header). Fixes several odd WAVE files. Also fix
25658           ADPCM (block_align property) in audio, so that wavparse based
25659           on this works now as it used to stand-alone.
25660
25661 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
25662
25663         reviewed by Benjamin Otte  <otte@gnome.org>
25664
25665         * ext/a52dec/gsta52dec.c:
25666         * ext/divx/gstdivxdec.c:
25667         * ext/divx/gstdivxenc.c:
25668         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25669         * ext/faac/gstfaac.c: (gst_faac_base_init):
25670         * ext/faad/gstfaad.c: (gst_faad_base_init):
25671         * ext/ivorbis/vorbisfile.c:
25672         * ext/lame/gstlame.c:
25673         * ext/libfame/gstlibfame.c:
25674         * ext/mpeg2enc/gstmpeg2enc.cc:
25675         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25676         * ext/sidplay/gstsiddec.cc:
25677         * ext/speex/gstspeexdec.c:
25678         * ext/speex/gstspeexenc.c:
25679         * ext/xvid/gstxviddec.c:
25680         * ext/xvid/gstxvidenc.c:
25681           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25682           (fixes #142193)
25683
25684 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25685
25686         * ext/alsa/gstalsa.c: (device_list),
25687         (gst_alsa_class_probe_devices):
25688         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25689           Fix alsa oddness in mixer after the combination of using mixer
25690           in source/sink elements and using hw:x,y instead of just hw:x.
25691
25692 2004-05-09  Benjamin Otte  <otte@gnome.org>
25693
25694         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25695         (gst_wavparse_create_sourcepad):
25696           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25697           sourcepads
25698
25699 2004-05-09  Benjamin Otte  <otte@gnome.org>
25700
25701         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25702           allow discont events before caps nego
25703
25704 2004-05-08  Benjamin Otte  <otte@gnome.org>
25705
25706         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25707           don't leak events
25708
25709 2004-05-08  Benjamin Otte  <otte@gnome.org>
25710
25711         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25712         (gst_level_change_state), (gst_level_init):
25713         * gst/level/gstlevel.h:
25714           figure out if we're initialized directly instead of keeping a
25715           variable that's wrong in 90% of cases
25716           don't initialize pads and then leak them and use a new unitialized
25717           pad. (fixes #142084)
25718           these were bugs so n00bish I didn't find them for an hour :/
25719
25720 2004-05-08 Iain <iain@prettypeople.org>
25721
25722         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25723         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25724         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25725         return the length that was read.
25726         (gst_riff_read_strf_auds): Allow fmt tags as well.
25727
25728 2004-05-07  David Schleef  <ds@schleef.org>
25729
25730         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25731         signed char assumption in faad.h.
25732
25733 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25734
25735         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25736           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25737
25738 2004-05-07  Colin Walters  <walters@redhat.com>
25739
25740         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25741         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25742         function.
25743         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25744         Add dispose function.
25745
25746 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
25747         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
25748           Fix caps nego and pad templates. RGB mode caps should
25749           work now.
25750         * ext/dvdnav/gst-dvd:
25751           Move mpeg2dec inside the thread because otherwise the
25752           queue rejects cap changes mid-stream
25753         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
25754         (gst_mpeg2dec_flush_decoder):
25755           For mpeg2dec > 0.4.0, call the flush function instead of
25756           manually extracting all in-flight frames.
25757         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
25758         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
25759           Change mime type video/dv go video/x-dv to match the
25760           rest of gst-plugins
25761
25762 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25763
25764         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25765         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
25766         (gst_alsa_sink_class_init):
25767         * ext/alsa/gstalsasink.h:
25768         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
25769         (gst_alsa_src_class_init):
25770         * ext/alsa/gstalsasrc.h:
25771           Make alsasink/src a subclass of alsamixer so that mixer stuff
25772           shows up in gst-rec. Needs some finetuning.
25773
25774 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25775
25776         * ext/lame/gstlame.c: (gst_lame_chain):
25777           simplify
25778         * ext/mad/gstmad.c: (gst_mad_handle_event):
25779           fix event leak
25780         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
25781           be able to detect mp3 files < 4096 bytes
25782
25783 2004-05-06  Wim Taymans  <wim@fluendo.com>
25784
25785         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25786         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25787         (theora_enc_set_property), (theora_enc_get_property):
25788         Also encode the first frame, cleanup some code.
25789
25790 2004-05-06  Wim Taymans  <wim@fluendo.com>
25791
25792         * ext/mpeg2enc/gstmpeg2enc.cc:
25793         Forward events first before deciding that negotiation was
25794         not performed.
25795
25796 2004-05-06  Wim Taymans  <wim@fluendo.com>
25797
25798         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
25799         First process the events before deciding that negotiation
25800         was not performed.
25801
25802 2004-05-06  Wim Taymans  <wim@fluendo.com>
25803
25804         * ext/theora/Makefile.am:
25805         * ext/theora/theora.c: (plugin_init):
25806         * ext/theora/theoradec.c: (theora_dec_change_state):
25807         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
25808         (gst_theora_enc_class_init), (gst_theora_enc_init),
25809         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
25810         (theora_enc_chain), (theora_enc_change_state),
25811         (theora_enc_set_property), (theora_enc_get_property):
25812         Added a theora encoder, grouped the encoder and decoder into the
25813         same plugin.
25814
25815 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
25816
25817         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
25818         (gst_jpegenc_chain):
25819         fix DURATION on outgoing buffers
25820         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
25821         debug using time formats
25822         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
25823         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
25824         (gst_xvimagesink_sink_link):
25825         windows with width/height 0 generate X errors, so don't allow them
25826
25827 2004-05-05  Wim Taymans  <wim@fluendo.com>
25828
25829         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
25830         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
25831         (gst_mpeg2dec_negotiate_format):
25832         * ext/mpeg2dec/gstmpeg2dec.h:
25833           removed the static pad template so that we can add the
25834           more accurate framerate value to the caps.
25835
25836
25837 2004-05-04  Benjamin Otte  <otte@gnome.org>
25838
25839         * configure.ac:
25840           check for kdemacros.h, too (should fix #141821)
25841         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
25842           don't crash if no header was sent, but nicely error out (fixes part
25843           of #141554)
25844
25845 2004-05-04  Wim Taymans  <wim@fluendo.com>
25846
25847         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
25848         parent dispose function to avoid segfault on destroy.
25849
25850 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
25851
25852         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25853         (plugin_init):
25854         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
25855         (gst_xvimagesink_sink_link):
25856         clean up debugging caps
25857         also recreate xvimage when format has changed
25858
25859 2004-05-04  Benjamin Otte  <otte@gnome.org>
25860
25861         * ext/libvisual/Makefile.am:
25862         * ext/libvisual/visual.c: (gst_visual_class_init),
25863         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
25864         (gst_visual_srclink), (gst_visual_chain),
25865         (gst_visual_change_state), (plugin_init):
25866           use a GstAdapter to correctly adapt buffer sizes - allows using a
25867           framerate
25868
25869 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25870
25871         * sys/v4l/gstv4lelement.h:
25872         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
25873         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
25874         (gst_v4lsrc_buffer_free):
25875         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
25876         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
25877         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
25878         (gst_v4lsrc_requeue_frame):
25879         move some debugging categories around
25880         query for fps index and set accordingly if found
25881
25882 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25883
25884         * ext/lame/gstlame.c:
25885         correct defaults that lame_init puts out of range
25886
25887 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25888
25889         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
25890         (gst_divxenc_class_init):
25891         fix range since -1 is the default
25892         * gst/mpeg1sys/gstmpeg1systemencode.c:
25893         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
25894         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
25895         (gst_rtjpegdec_chain):
25896         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
25897         (gst_rtjpegenc_chain):
25898         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
25899         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
25900         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
25901         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
25902         * sys/v4l/gstv4lsrc.c:
25903         * sys/v4l/v4l_calls.c: (gst_v4l_open):
25904         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25905         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25906         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
25907         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
25908           remove gst_info calls
25909
25910 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25911
25912         * Makefile.am:
25913         * po/af.po:
25914         * po/az.po:
25915         * po/en_GB.po:
25916         * po/nl.po:
25917         * po/sr.po:
25918         * po/sv.po:
25919           Updated translations
25920
25921 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
25922
25923         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
25924           refactor/comment code
25925
25926 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25927
25928         * gst/asfdemux/Makefile.am:
25929         * gst/asfdemux/asfheaders.c:
25930         * gst/asfdemux/asfheaders.h:
25931         * gst/asfdemux/gstasf.c: (plugin_init):
25932         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
25933         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
25934         (gst_asf_demux_setup_pad):
25935         * gst/asfdemux/gstasfdemux.h:
25936         * gst/asfdemux/gstasfmux.c:
25937         * gst/asfdemux/gstasfmux.h:
25938           Add tagging support to demuxer, split out registration in its own
25939           file instead of in demux (hacky), and prevent having some tables
25940           in our memory multiple times (in asfheaders.h).
25941
25942 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25943
25944         * gst/matroska/matroska-demux.c:
25945         (gst_matroska_demux_parse_metadata):
25946         * gst/matroska/matroska-ids.h:
25947           Basic tag reading support.
25948
25949 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25950
25951         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
25952           Really detect ac-3 audio.
25953         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
25954           really detect matroska files (off-by-1).
25955
25956 2004-04-30  David Schleef  <ds@schleef.org>
25957
25958         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25959         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
25960         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
25961         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
25962         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
25963         hackage -- parse a lot more atoms, extract a few tags.  One might even
25964         mistake this for tag support.  Maybe it is.
25965         * gst/qtdemux/qtdemux.h:
25966
25967 2004-04-30  Colin Walters  <walters@verbum.org>
25968
25969         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
25970
25971 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
25972
25973         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25974         (gst_ffmpegcolorspace_getcaps):
25975           remove broken nego fix
25976
25977 2004-04-30  Benjamin Otte  <otte@gnome.org>
25978
25979         * configure.ac:
25980         * ext/Makefile.am:
25981         * ext/libvisual/Makefile.am:
25982         * ext/libvisual/visual.c:
25983           add initial support for libvisual (http://libvisual.sourceforge.net)
25984           libvisual is still quite alpha, so expect crashes in there :)
25985
25986 2004-04-29  David Schleef  <ds@schleef.org>
25987
25988         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
25989         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
25990         up qtdemux to make it spit out codec_data.  Do _not_ look at this
25991         code; you will no longer respect me.
25992
25993 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25994
25995         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
25996         * ext/alsa/gstalsa.h :
25997         change alsa pcm device discovery to find more than 1 device
25998         per card. code review by Ronald.
25999
26000 2004-04-29  David Schleef  <ds@schleef.org>
26001
26002         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26003         Add a check for a driver bug on FreeBSD.  (bug #140565)
26004
26005 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26006
26007         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26008         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26009         (gst_jpegenc_getcaps):
26010           move format setting to inner loop
26011         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26012         (gst_ffmpegcolorspace_getcaps):
26013           use GST_PAD_CAPS if available so that we use already negotiated
26014           caps
26015         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26016         (qtdemux_parse_moov), (qtdemux_parse):
26017           extra debugging
26018         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26019         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26020           move hardcoded path to DEFINE
26021
26022 2004-04-28  David Schleef  <ds@schleef.org>
26023
26024         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
26025         (bug #140064)
26026
26027 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26028
26029         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26030           Don't probe for playback device if we're a source element. Fixes
26031           #139658.
26032
26033 2004-04-29  Benjamin Otte  <otte@gnome.org>
26034
26035         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26036         (gst_id3_tag_chain):
26037           rewrite buffer offset
26038
26039 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26040
26041         * configure.ac:
26042         * ext/Makefile.am:
26043         * ext/dts/Makefile.am:
26044         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26045         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26046         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26047         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26048         (gst_dtsdec_loop), (gst_dtsdec_change_state),
26049         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26050         (plugin_init):
26051         * ext/dts/gstdtsdec.h:
26052           New DTS decoder.
26053         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26054         (gst_faad_srcconnect):
26055           Add ESDS atom handling (.m4a).
26056
26057 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26058
26059         * ext/divx/gstdivxdec.c: (plugin_init):
26060           Remove comment that makes no sense.
26061         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26062           Fix for obvious typo that resulted in warnings during gst-register.
26063         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26064         (gst_xviddec_sink_link):
26065           Fix caps negotiation a bit better.
26066         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26067           We call this 'codec_data', not 'esds'.
26068
26069 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26070
26071         * gst/monoscope/gstmonoscope.c:
26072           make sure we only provide 256x128
26073         * gst/monoscope/monoscope.c: (monoscope_init):
26074           assert size of 256x128
26075
26076 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26077
26078         * Makefile.am:
26079         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26080         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26081           fixate to max width and height of device
26082
26083 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26084
26085         * Makefile.am:
26086         * sys/v4l/gstv4l.c:
26087         * sys/v4l/gstv4lsrc.c:
26088         * sys/v4l/v4l_calls.c:
26089         * sys/v4l/v4lsrc_calls.c:
26090           fix for qc-usb driver which fakes having more than one buffer
26091           by handing the same buffer twice, which confused GStreamer's/v4lsrc
26092           buffer_free override
26093           add debugging
26094
26095 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26096
26097         * Makefile.am:
26098         * gst/videotestsrc/gstvideotestsrc.c:
26099         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26100         (gst_videotestsrc_init), (gst_videotestsrc_get),
26101         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26102         * gst/videotestsrc/gstvideotestsrc.h:
26103           add num-buffers property
26104
26105         2004-04-26  Benjamin Otte  <otte@gnome.org>
26106
26107         * ext/mad/gstid3tag.c: (plugin_init):
26108           set id3mux rank to NONE so it doesn't confuse spider
26109           require audio/mpeg,mpegversion=1 in id3mux
26110
26111 2004-04-26  Benjamin Otte  <otte@gnome.org>
26112
26113         * configure.ac:
26114           detect faad correctly as non-working if it's indeed non-working
26115
26116 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
26117
26118         * Makefile.am:
26119         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26120         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26121         fix _getcaps so it only negotiates to its supported format
26122
26123 2004-04-25  Benjamin Otte  <otte@gnome.org>
26124
26125         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26126           fix memleak
26127
26128 2004-04-23  Benjamin Otte  <otte@gnome.org>
26129
26130         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26131           audio/x-raw-int with height rules! not. Now it's depth.
26132
26133 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26134
26135         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26136         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26137         (gst_wavparse_loop):
26138           Missing variable initialization. Add handling of DVI ADPCM. Fix
26139           mis-parsing of LIST chunks. This works around a bug where we mis-
26140           parse non-aligning LIST chunks (so LIST chunks where the contents
26141           don't align with the actual LIST size). The correct fix is to use
26142           rifflib, I'm not going to fix wavparse - too much work. All this
26143           fixes #104878.
26144
26145 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
26146
26147         reviewed by Benjamin Otte  <otte@gnome.org>
26148
26149         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26150           fix shoutcast not working (fixes #140844)
26151
26152 2004-04-22  Benjamin Otte  <otte@gnome.org>
26153
26154         * ext/hermes/gsthermescolorspace.c:
26155         (gst_hermes_colorspace_caps_remove_format_info):
26156         * gst/colorspace/gstcolorspace.c:
26157         (gst_colorspace_caps_remove_format_info):
26158         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26159         (gst_ffmpegcolorspace_caps_remove_format_info):
26160           s/gst_caps_simplify/gst_caps_do_simplify/
26161
26162 2004-04-22  Benjamin Otte  <otte@gnome.org>
26163
26164         * gst-libs/gst/riff/riff-media.c:
26165         (gst_riff_create_video_caps_with_data):
26166           mpegversion is an int
26167         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26168           don't try to create pad templates with NULL caps, use any caps
26169           instead.
26170
26171 2004-04-20  David Schleef  <ds@schleef.org>
26172
26173         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26174         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
26175         (bug #140384)
26176
26177 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26178
26179         reviewed by David Schleef
26180
26181         * ext/mad/gstid3tag.c: Add stdlib.h
26182         * gst/rtp/gstrtpgsmenc.c: same
26183         * gst/tags/gstid3tag.c: same
26184         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26185         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26186         GST_DISABLE_LOADSAVE use.
26187         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26188         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26189         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26190         atol(3)).
26191         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26192         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26193         strtoul(3)).
26194         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26195         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26196         $(ID3_CFLAGS).
26197         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26198         $(LIBFAME_CFLAGS).
26199
26200 2004-04-20  David Schleef  <ds@schleef.org>
26201
26202         * gst/realmedia/rmdemux.c:  This was supposed to part of the
26203         last checkin.  Same idea.
26204
26205 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
26206
26207         reviewed by David Schleef
26208
26209         * configure.ac: bump required gstreamer version to 0.8.1.1
26210         because of following changes [--ds]
26211
26212         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
26213         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26214         (gst_riff_read_header):  Use GST_READ_UINT*
26215         macros to access possibly unaligned memory.
26216
26217         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26218         (mp3_type_find):  Use GST_READ_UINT*
26219         macros to access possibly unaligned memory.
26220         (mp3_type_find, mpeg1_parse_header, qt_type_find)
26221         (speex_type_find): Likewise
26222
26223         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26224
26225         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26226         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26227         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26228         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26229         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26230         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
26231         macros to access possibly unaligned memory.
26232
26233         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26234         Likewise.
26235
26236         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26237         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26238
26239         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26240         Likewise.
26241
26242         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26243         (gst_mpeg2subt_chain_subtitle): Likewise.
26244
26245         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26246         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26247         Likewise.
26248
26249         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26250         Likewise.
26251
26252         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26253         Likewise.
26254
26255         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26256         Likewise.
26257
26258 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26259
26260         * configure.ac:
26261           update required version of GStreamer because of GST_TIME_FORMAT
26262
26263 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26264
26265         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26266           remove leftover g_print
26267         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26268           don't try setting only a subset of the caps. We don't want to kill
26269           autoplugging on purpose
26270
26271 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26272
26273         * sys/ximage/ximagesink.c: (plugin_init):
26274         * sys/xvimage/xvimagesink.c: (plugin_init):
26275           add debugging categories
26276
26277 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
26278
26279         * po/en_GB.po:
26280         * po/LINGUAS:
26281           Adding en_GB translation (Gareth Owen)
26282
26283 2004-04-20  David Schleef  <ds@schleef.org>
26284
26285         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26286         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26287         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26288         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26289         A number of new features and hacks to extract the esds atom and
26290         put it into the caps.  (bug #137724)
26291
26292 2004-04-19  David Schleef  <ds@schleef.org>
26293
26294         * gconf/Makefile.am: Fix for non-GNU make
26295         * gst-libs/gst/Makefile.am: Change directory order to handle
26296         GstPlay linking with gstinterfaces
26297         * gst-libs/gst/audio/make_filter: make use of tr portable
26298         * gst-libs/gst/play/Makefile.am: Add intended \
26299         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26300         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26301         function prototype instead of void *.
26302         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26303         macro.
26304         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26305         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26306         * gst/videofilter/make_filter: make use of tr portable
26307         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26308
26309 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
26310
26311         * po/LINGUAS:
26312         * po/uk.po:
26313           Added Ukrainian translation (Maxim V. Dziumanenko)
26314
26315 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26316
26317         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26318         (gst_gsmdec_link), (gst_gsmdec_chain):
26319           Fix capsnego, simplify chain function slightly.
26320         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26321           Add GSM.
26322
26323 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26324
26325         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26326         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26327         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26328           Hack to make wavparse work with spider (always -> sometimes pad).
26329           Fixes #135862 && #140411.
26330
26331 2004-04-18  Benjamin Otte  <otte@gnome.org>
26332
26333         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26334         (gst_osselement_rate_probe_check),
26335         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26336           get rid of \n in debug output
26337
26338 2004-04-17  Iain <iain@prettypeople.org>
26339
26340         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26341         not just EOS.
26342
26343 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26344
26345         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26346         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26347         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26348         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26349         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26350         (gst_id3_tag_change_state), (plugin_init):
26351           deprecate id3tag element and replace with id3demux/id3mux.
26352           great side effect: this ugly file is now even uglier, yay!
26353         * ext/mad/gstmad.h:
26354           remove non-available function
26355           update for new get_type
26356
26357 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26358
26359         * configure.ac:
26360           require mpeg2dec >= 0.4.0
26361
26362 2004-04-17  Benjamin Otte  <otte@gnome.org>
26363
26364         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26365         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26366         (gst_xvimagesink_set_xwindow_id):
26367           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26368           assorted cleanup fixes.
26369
26370 2004-04-16  David Schleef  <ds@schleef.org>
26371
26372         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26373         * sys/xvimage/xvimagesink.h: same
26374
26375 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
26376
26377         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26378           Fix GST_ELEMENT_ERROR with (NULL)
26379
26380 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26381
26382         * gst-libs/gst/riff/riff-media.c:
26383         (gst_riff_create_video_caps_with_data):
26384           Add div[3456] as fourccs for DivX 3 (fixes #140137).
26385
26386 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26387
26388         * gst-libs/gst/riff/riff-media.c:
26389         (gst_riff_create_video_caps_with_data),
26390         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26391         (gst_riff_create_video_template_caps),
26392         (gst_riff_create_audio_template_caps):
26393         * gst-libs/gst/riff/riff-media.h:
26394         * gst-libs/gst/riff/riff-read.c:
26395         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26396         * gst-libs/gst/riff/riff-read.h:
26397         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26398           Add MS RLE support. I added some functions to read out strf chunks
26399           into strf chunks and the data behind it. This is usually color
26400           palettes (as in RLE, but also in 8-bit RGB). Also use those during
26401           caps creation. Lastly, add ADPCM (similar to wavparse - which
26402           should eventually be rifflib based).
26403         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26404         (gst_matroska_demux_init), (gst_matroska_demux_reset):
26405         * gst/matroska/matroska-demux.h:
26406           Remove placeholders for some prehistoric tagging system. Didn't add
26407           support for any tag system really anyway.
26408         * gst/qtdemux/qtdemux.c:
26409           Add support for audio/x-m4a (MPEG-4) through spider.
26410         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26411         (gst_wavparse_loop):
26412           ADPCM support (#135862). Increase max. buffer size because we
26413           cannot split buffers for ADPCM (screws references) and I've seen
26414           files with 2048 byte chunks. 4096 seems safe for now.
26415
26416 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26417
26418         * configure.ac: bump nano to 1
26419
26420 === release 0.8.1 ===
26421
26422 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26423
26424         * configure.ac: releasing 0.8.1, "Comforting Sounds"
26425
26426 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26427
26428         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26429           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26430           Fixes #140058
26431
26432 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26433
26434         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26435           lower rank of dvddemux so that it's not used for mpeg playback.
26436
26437 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26438
26439         * configure.ac:
26440           save libs correctly when checking mad
26441
26442 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
26443
26444         * ext/mad/gstid3tag.c: (plugin_init):
26445           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
26446
26447 2004-04-13  David Schleef  <ds@schleef.org>
26448
26449         * common/m4/gst-feature.m4: Call -config scripts with
26450         --plugin-libs if it is supported.
26451         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26452         JPEG images are image/jpeg.
26453         * gst/debug/Makefile.am:
26454         * gst/debug/negotiation.c: (gst_negotiation_class_init),
26455         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26456         (gst_negotiation_update_caps), (gst_negotiation_get_property),
26457         (gst_negotiation_plugin_init): Add a property that acts like
26458         filter caps.
26459         * testsuite/gst-lint:  Move license checking to be a standard
26460         test.
26461
26462 2004-04-13  David Schleef  <ds@schleef.org>
26463
26464         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26465         patch from Sebastien Cote (bug #139958)
26466
26467 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26468
26469         * examples/gstplay/Makefile.am:
26470         * examples/gstplay/player.c: (main):
26471           make the commandline player example use gconf settings
26472
26473 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26474
26475         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26476         (gst_cacasink_sinkconnect), (gst_cacasink_init),
26477         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26478           init/end library during state transition, not object
26479           creation/disposal.  get rid of custom dispose handler.
26480
26481
26482 2004-04-12  Christian Schaller <Uraeus@gnome.org>
26483
26484         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26485         be a symlink
26486
26487 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26488
26489         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26490           Handle JUNK chunks inside data section. Prevents warnings.
26491
26492 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26493
26494         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26495         (gst_riff_create_video_template_caps):
26496           Add MS video v1.
26497         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26498         (gst_avi_demux_stream_data):
26499           Add support for "rec-list" chunks.
26500
26501 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26502
26503         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26504           Fix another codecname mismatch.
26505
26506 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26507
26508         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26509           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26510           so that MJPEG plays back.
26511
26512 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26513
26514         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26515         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26516         * gst/mpeg1videoparse/gstmp1videoparse.h:
26517           Fix for some slight mis-cuts in buffer parsing, and for some
26518           potential overflows or faults-causers. Adds disconts. Also fixes
26519           #139105 while we're at it.
26520
26521 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26522
26523         * configure.ac:
26524         * sys/v4l2/gstv4l2element.h:
26525           Workaround for missing struct v4l2_buffer declaration in Suse 9
26526           and Mandrake 10 linux/videodev2.h header file (#135919).
26527
26528 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26529
26530         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26531           Bail out if no filename was given.
26532
26533 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26534
26535         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26536         (gst_v4l2_fourcc_from_structure):
26537           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26538           Y41B somewhere).
26539
26540 2004-04-09  Benjamin Otte  <otte@gnome.org>
26541
26542         * ext/gnomevfs/gstgnomevfssink.c:
26543         (_gst_boolean_allow_overwrite_accumulator),
26544         (gst_gnomevfssink_class_init):
26545           fix erase signal - if any handler returns false the file will not be
26546           overwritten. If no handler is connected, the file will not be
26547           overwritten either.
26548           renamed signal to "allow-overwrite"
26549         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26550           free string when adding it to ID3 failed
26551         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26552           unref event when done
26553         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26554           free caps
26555         * gst/typefind/gsttypefindfunctions.c:
26556         (mpeg_video_stream_type_find):
26557           fix invalid read
26558
26559 2004-04-08  David Schleef  <ds@schleef.org>
26560
26561         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26562         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26563
26564 2004-04-08  David Schleef  <ds@schleef.org>
26565
26566         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26567         we don't support (bug #139532)
26568
26569 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
26570
26571         * ext/mad/gstmad.c: (gst_mad_handle_event),
26572         (gst_mad_check_caps_reset), (gst_mad_chain),
26573         (gst_mad_change_state):
26574           only set explicit caps if they haven't been set before for
26575           this stream.  MPEG-audio sample rate/channels aren't allowed
26576           to change in-stream.
26577           Fixes #139382
26578
26579 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26580
26581         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26582         (_gst_boolean_did_something_accumulator),
26583         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26584         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26585         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26586         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26587         (gst_gnomevfssink_change_state):
26588           Fix erase signal. Don't erase by default. Remove handoff signal.
26589           Remove erase property. Don't segfault. General cleanup.
26590
26591 2004-04-07  Benjamin Otte  <otte@gnome.org>
26592
26593         * gst-libs/gst/gconf/test-gconf.c: (main):
26594           add missing gst_init
26595
26596 2004-04-07  Benjamin Otte  <otte@gnome.org>
26597
26598         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26599           free the mutexes, too
26600
26601 2004-04-07  Benjamin Otte  <otte@gnome.org>
26602
26603         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26604           actually free the URI string
26605         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26606           compute offset correctly when passing discont events
26607         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26608           don't leak discont events
26609         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26610           add some missing breaks so caps aren't copied randomly
26611         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26612           if we realloc memory, we better use it
26613
26614 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26615
26616         * ext/mad/gstmad.c: (normal_seek):
26617           fix GST_FORMAT_TIME usage
26618
26619 2004-04-05  David Schleef  <ds@schleef.org>
26620
26621         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
26622         a deprecated function (hack!)
26623
26624 2004-04-05  Benjamin Otte  <otte@gnome.org>
26625
26626         * ext/esd/esdmon.c: (gst_esdmon_get):
26627           fix nonterminated vararg and memleak
26628
26629 2004-04-05  Benjamin Otte  <otte@gnome.org>
26630
26631         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26632         (gst_ladspa_init), (gst_ladspa_force_src_caps),
26633         (gst_ladspa_set_property), (gst_ladspa_get_property),
26634         (gst_ladspa_instantiate), (gst_ladspa_activate),
26635         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26636           clean up debugging
26637
26638 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
26639
26640         reviewed by Benjamin Otte  <otte@gnome.org>
26641
26642         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26643           check for broken LADSPA parameters (fixes #138635)
26644
26645 2004-04-05  Benjamin Otte  <otte@gnome.org>
26646
26647         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26648           advertise buffer-frames correctly on sinkpads
26649
26650 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26651
26652         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26653         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26654         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26655         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26656         (gst_mad_check_caps_reset), (gst_mad_chain):
26657         add more debugging, only reset caps when we're not in error state
26658
26659 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26660
26661         * ext/mad/gstmad.c: add debugging category, comment + cleanups
26662
26663 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26664
26665         reviewed by Benjamin Otte  <otte@gnome.org>
26666
26667         * configure.ac:
26668           fix == in test(1) operator
26669
26670 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
26671
26672         reviewed by Benjamin Otte  <otte@gnome.org>
26673
26674         * configure.ac:
26675           fix --export-symblos-regex to a working regex.
26676
26677 2004-04-04  Benjamin Otte  <otte@gnome.org>
26678
26679         * sys/oss/.cvsignore:
26680           add for oss_probe
26681
26682 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
26683
26684         reviewed by Benjamin Otte  <otte@gnome.org>
26685
26686         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26687           add missing 'new_media' argument (fixes #138168)
26688         * gst/matroska/matroska-demux.c:
26689         (gst_matroska_demux_handle_seek_event):
26690           add vararg terminator (fixes #138169)
26691
26692 2004-04-02  David Schleef  <ds@schleef.org>
26693
26694         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
26695         disted (bug #138914)
26696
26697 2004-04-01  Benjamin Otte  <otte@gnome.org>
26698
26699         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26700         (gst_alsa_close_audio):
26701           handle case better where a soundcard can't pause
26702         * ext/ogg/gstoggdemux.c:
26703           don't crash when we get events but don't have pads yet
26704
26705 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26706
26707         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26708           throw an error if we couldn't probe any caps.
26709
26710 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26711
26712         * ext/dvdnav/gst-dvd:
26713         Add a really simple sample DVD player
26714
26715 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
26716
26717         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26718         (gst_a52dec_push), (gst_a52dec_handle_event),
26719         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26720         (gst_a52dec_change_state):
26721         * ext/a52dec/gsta52dec.h:
26722           Use a debug category, Output timestamps correctly
26723           Emit tag info, Handle events, tell liba52dec about cpu
26724           capabilities so it can use MMX etc.
26725         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26726           Fix a crasher accessing invalid memory
26727         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26728         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26729         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26730         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26731         (dvdnavsrc_query):
26732           Some support for byte-format seeking.
26733           Small fixes for still frames and menu button overlays
26734         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26735         (gst_mpeg2dec_alloc_buffer):
26736           Use a debug category. Adjust the report level of several items to
26737           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26738           so it doesn't lose the GstBuffer pointer
26739         * gst/debug/Makefile.am:
26740         * gst/debug/gstdebug.c: (plugin_init):
26741         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26742         (gst_navseek_base_init), (gst_navseek_class_init),
26743         (gst_navseek_init), (gst_navseek_seek),
26744         (gst_navseek_handle_src_event), (gst_navseek_set_property),
26745         (gst_navseek_get_property), (gst_navseek_chain),
26746         (gst_navseek_plugin_init):
26747         * gst/debug/gstnavseek.h:
26748           Add the navseek debug element for seeking back and forth in a
26749           video stream using arrow keys.
26750         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
26751         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
26752         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
26753         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
26754         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
26755         (gst_mpeg2subt_parse_header), (gst_get_nibble),
26756         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
26757         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
26758         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
26759         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
26760         * gst/mpeg2sub/gstmpeg2subt.h:
26761           Pretty much a complete rewrite. Now a loopbased element. May still
26762           require work to properly synchronise subtitle buffers.
26763         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
26764         (gst_dvd_demux_send_subbuffer):
26765         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
26766           Don't attempt to create subbuffers of size 0
26767           Reduce a couple of error outputs to warnings.
26768         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
26769         (gst_y4mencode_chain):
26770         Output the y4m frame header correctly.
26771
26772 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26773
26774         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26775           throw errors instead of allowing SIGFPE
26776
26777 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
26778
26779         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
26780         (gst_gconf_render_bin_from_key):
26781           leak plugging and style fixing
26782
26783 2004-03-31  David Schleef  <ds@schleef.org>
26784
26785         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
26786         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
26787         (bug #138225)
26788         * gst/debug/Makefile.am:
26789         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
26790         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
26791         plugin.
26792         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
26793         (gst_negotiation_base_init), (gst_negotiation_class_init),
26794         (gst_negotiation_init), (gst_negotiation_getcaps),
26795         (gst_negotiation_pad_link), (gst_negotiation_chain),
26796         (gst_negotiation_set_property), (gst_negotiation_get_property),
26797         (gst_negotiation_plugin_init):  New element to talk about random
26798         negotiation things happening in a pipeline.
26799
26800 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26801
26802         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
26803           fix integer addition with help of Stefan Kost
26804
26805 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
26806
26807         * po/nl.po: updated Dutch translation (Elros Cyriatan)
26808
26809 2004-03-30  David Schleef  <ds@schleef.org>
26810
26811         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
26812         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
26813         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
26814         (bug #137504)
26815         * ext/mpeg2dec/gstmpeg2dec.h:
26816
26817 2004-03-30  David Schleef  <ds@schleef.org>
26818
26819         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
26820
26821 2004-03-30  David Schleef  <ds@schleef.org>
26822
26823         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
26824         Michael Petullo) to handle .mov
26825
26826 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26827
26828         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
26829         (gst_osselement_rate_check_rate):
26830           probe caps correctly for sound cards that only support one format
26831
26832 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26833
26834         * ext/kio/kiosrc.cpp: (process_events):
26835           update handling event processing if inside KDE - untested
26836
26837 2004-03-29  David Schleef  <ds@schleef.org>
26838
26839         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
26840         by 2 to not interfere with other colorspaces.
26841         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
26842         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
26843         one to not interfere with ffmpeg_colorspace.
26844
26845 2004-03-29  David Schleef  <ds@schleef.org>
26846
26847         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
26848         aren't in the caps.
26849         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
26850         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
26851
26852 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26853
26854         * gst-libs/gst/riff/riff-media.c:
26855           fail on error, don't try to set stuff on NULL caps
26856
26857 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26858
26859         * configure.ac:
26860         * ext/Makefile.am:
26861         * ext/kio/Makefile.am:
26862         * ext/kio/kioreceiver.cpp:
26863         * ext/kio/kioreceiver.h:
26864         * ext/kio/kiosrc.cpp:
26865         * ext/kio/kiosrc.h:
26866           add experimental kiosrc plugin
26867         * ext/alsa/gstalsaplugin.c: (plugin_init):
26868           initialize debugging category only when we're sure registering the
26869           plugins worked.
26870
26871 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26872
26873         * examples/gstplay/player.c: (main):
26874         * gst-libs/gst/play/play.c: (gst_play_class_init),
26875         (gst_play_set_location), (gst_play_set_data_src),
26876         (gst_play_set_video_sink), (gst_play_set_audio_sink),
26877         (gst_play_set_visualization), (gst_play_connect_visualization):
26878           check return values of element_set_state and return FALSE where
26879           failed
26880
26881 2004-03-29  Benjamin Otte  <otte@gnome.org>
26882
26883         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26884           try harder to check if an event is really a discont
26885
26886 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26887
26888         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
26889         * po/az.po:
26890
26891 2004-03-28  Benjamin Otte  <otte@gnome.org>
26892
26893         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
26894         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26895         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
26896           get rid of non-standard "..." ranges in case statements.
26897
26898 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
26899
26900         * gst/mpegstream/gstmpegdemux.c:
26901         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
26902         specific functionality split to the new dvddemux element.
26903         * gst/mpegstream/gstdvddemux.c:
26904         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
26905         streams, derived from mpegdemux.
26906         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
26907         up. SCR based timestamp rewriting can be turned off (will probably
26908         completely disappear soon).
26909         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
26910         hacking. General cleanup. All printf statements replaced by
26911         debugging messages. Almost complete libdvdnav support.
26912         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
26913         by events. New properties for audio and subpicture languages.
26914         (dvdnavsrc_update_highlight): Now uses events.
26915         (dvdnavsrc_user_op): Cleaned up.
26916         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
26917         based). Lots of cleanup, and propper support for most libdvdnav
26918         events.
26919         (dvdnavsrc_make_dvd_event): New function.
26920         (dvdnavsrc_make_dvd_nav_packet_event): New function.
26921         (dvdnavsrc_make_clut_change_event): New function.
26922
26923 2004-03-26  Benjamin Otte  <otte@gnome.org>
26924
26925         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
26926           fix bug where typefinding would claim it's theora whenever less then
26927           7 bytes of data were available
26928
26929 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26930
26931         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
26932         (gst_alawdec_base_init), (gst_alawdec_class_init),
26933         (gst_alawdec_init), (gst_alawdec_chain):
26934         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
26935         (gst_alawenc_base_init), (gst_alawenc_class_init),
26936         (gst_alawenc_init), (gst_alawenc_chain):
26937         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
26938         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
26939         (gst_mulawdec_init), (gst_mulawdec_chain):
26940         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
26941         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
26942         (gst_mulawenc_init), (gst_mulawenc_chain):
26943           Fix capsnego in all four, remove the unused property functions and
26944           simplify the chain functions slightly. I guess we could use macros
26945           or something similar for those, since the code is so similar, but
26946           I'm currently too lazy...
26947
26948 2004-03-24  David Schleef  <ds@schleef.org>
26949
26950         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26951         (gst_osselement_close_audio), (gst_osselement_probe_caps),
26952         (gst_osselement_get_format_structure),
26953         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
26954         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
26955         (gst_osselement_rate_int_compare): Add code to handle rate probing
26956         (bug #120883)
26957         * sys/oss/gstosselement.h: same
26958         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
26959         Use rate probing provided by osselement.
26960         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
26961
26962 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26963
26964         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
26965         (gst_xvidenc_get_property):
26966           ulong/int mess-up.
26967
26968 2004-03-24  David Schleef  <ds@schleef.org>
26969
26970         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
26971         (gst_speexdec_init):
26972         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
26973         (gst_speexenc_init):  Create the pad template correctly (from
26974         the static pad template, not a NULL pointer.)
26975
26976 2004-03-25  Benjamin Otte  <otte@gnome.org>
26977
26978         * gst/debug/Makefile.am:
26979         * gst/debug/breakmydata.c:
26980           add element that quasi-randomly changes bytes in the stream.
26981           Intended use is robustness checking of demuxers and decoders in
26982           media tests.
26983
26984 2004-03-24  Benjamin Otte  <otte@gnome.org>
26985
26986         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
26987         (gst_alsa_probe_hw_params):
26988         * ext/alsa/gstalsa.h:
26989           debugging output fixes
26990
26991 2004-03-24  Benjamin Otte  <otte@gnome.org>
26992
26993         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
26994           don't g_return_if_fail if element is PLAYING, fail silently as every
26995           other element.
26996         * gst/effectv/gstquark.c: (gst_quarktv_chain):
26997           only fix needed for cast lvalue issues in gst-plugins
26998         * gst/volenv/gstvolenv.c: (gst_volenv_init):
26999           add proxy_getcaps
27000
27001 2004-03-24  Benjamin Otte  <otte@gnome.org>
27002
27003         * gst/level/gstlevel.c: (gst_level_init):
27004           add proxying getcaps function, so level doesn't advertise impossible
27005           caps
27006
27007 2004-03-24  David Schleef  <ds@schleef.org>
27008
27009         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27010         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27011         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27012         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27013         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27014         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27015         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27016         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27017         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
27018         messages.  Divide the chunk size by the compression ratio
27019         (needed for MACE audio)
27020
27021 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27022
27023         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27024           Fix buffer overflow read error.
27025
27026 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27027
27028         * ext/alsa/gstalsa.h:
27029           Remove unused entry.
27030         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27031           Add cinepak.
27032         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27033         (gst_videodrop_link), (gst_videodrop_chain):
27034           Fix, sort of. Was horribly broken with new capsnego. Bah...
27035
27036 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
27037
27038         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27039         (plugin_init):
27040         Add a monkeysaudio typefind function
27041
27042 2004-03-23  Johan Dahlin  <johan@gnome.org>
27043
27044         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27045         (gst_play_video_fixate): Check so the structure has the field
27046         before trying to fixate them, this makes it possible to have
27047         fakesinks for video and audio output without printing errors on
27048         the output console.
27049
27050 2004-03-22  David Schleef  <ds@schleef.org>
27051
27052         * sys/oss/Makefile.am:
27053         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27054         (check_rate), (add_rate):  Rate probing test app.
27055
27056 2004-03-21  Benjamin Otte  <otte@gnome.org>
27057
27058         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27059         (_fixate_caps_to_int), (gst_audio_convert_fixate):
27060           add a fixation function that pretty much does the right thing (fixes
27061           #137556)
27062
27063 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
27064
27065         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27066
27067 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
27068
27069         reviewed by: Benjamin Otte  <otte@gnome.org>
27070
27071         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27072           terminate gst_event_new_discontinuous correctly (fixes parts of
27073           #137711)
27074
27075 2004-03-19  David Schleef  <ds@schleef.org>
27076
27077         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
27078         since it doesn't depend on X, and it's part of our ABI.
27079
27080 2004-03-19  Iain <iain@prettypeople.org>
27081
27082         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27083         is_int in the structure, not the local variable.
27084
27085 2004-03-19  David Schleef  <ds@schleef.org>
27086
27087         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27088         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27089         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27090         Improvements in caps negotiation.
27091
27092 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27093
27094         * po/LINGUAS:
27095         * po/af.po:
27096           adding Afrikaans (Petri Jooste)
27097
27098 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27099
27100         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27101         (gst_ffmpegcolorspace_chain):
27102         throw error instead of g_critical (#137588)
27103
27104 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
27105
27106         * Makefile.am:
27107         * configure.ac:
27108           dist common and m4 correctly
27109         * po/sv.po:
27110
27111 2004-03-17  David Schleef  <ds@schleef.org>
27112
27113         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
27114         (bug #137348)
27115
27116 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27117
27118         * po/LINGUAS:
27119         * po/sv.po:
27120           adding Swedish translation (Christian Rose)
27121
27122 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
27123
27124         * Makefile.am: use release.mak
27125
27126 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27127
27128         * common/ChangeLog:
27129         * common/gst-autogen.sh:
27130           add some explanation about the version detection
27131         * configure.ac:
27132           fix X check
27133
27134 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27135
27136         * configure.ac: bump nano to 1
27137
27138 === release 0.8.0 ===
27139
27140 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27141
27142         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27143
27144 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27145
27146         * configure.ac:
27147           update libtool version
27148         * gst-libs/gst/media-info/Makefile.am:
27149           actually use libtool version
27150
27151 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27152
27153         * configure.ac: fix speex detection to work with 1.0 but not 1.1
27154
27155 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27156
27157         * configure.ac:
27158         * gst-plugins.spec.in:
27159         * pkgconfig/Makefile.am:
27160         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27161         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27162         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27163         * pkgconfig/gstreamer-libs.pc.in:
27164         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27165         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27166         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27167         * pkgconfig/gstreamer-plugins.pc.in:
27168           remove @VERSION@ from some of the pc files since core and plugins
27169           are decoupled.
27170           created gstreamer-plugins.pc as it's a better name, but keeping
27171           -libs around for now to get fixes upstream done first.
27172
27173 2004-03-15  Julien MOUTTE <julien@moutte.net>
27174
27175         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27176         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27177         * gst-libs/gst/play/play.h:
27178
27179 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27180
27181         * *.c, *.cc: don't mix tabs and spaces
27182
27183 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27184
27185         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27186           use the new ffmpegcolorspace
27187         * gst-plugins.spec.in:
27188           package new colorspace and media-info
27189         * configure.ac:
27190         * pkgconfig/Makefile.am:
27191           fix some more disting issues
27192         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27193         * pkgconfig/gstreamer-media-info.pc.in:
27194           generate media-info pc files
27195
27196 2004-03-15  Johan Dahlin  <johan@gnome.org>
27197
27198         * *.h: Revert indenting
27199
27200 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27201
27202         * configure.ac:
27203           adding ffmpegcolorspace element
27204         * gst/ffmpegcolorspace/Makefile.am:
27205         * gst/ffmpegcolorspace/avcodec.h:
27206         * gst/ffmpegcolorspace/common.h:
27207         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27208         * gst/ffmpegcolorspace/dsputil.h:
27209         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27210         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27211         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27212         (gst_ffmpeg_caps_to_pix_fmt):
27213         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27214         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27215         (gst_ffmpegcolorspace_caps_remove_format_info),
27216         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27217         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27218         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27219         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27220         (gst_ffmpegcolorspace_set_property),
27221         (gst_ffmpegcolorspace_get_property),
27222         (gst_ffmpegcolorspace_register):
27223         * gst/ffmpegcolorspace/imgconvert.c:
27224         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27225         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27226         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27227         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27228         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27229         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27230         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27231         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27232         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27233         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27234         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27235         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27236         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27237         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27238         (img_get_alpha_info), (deinterlace_line),
27239         (deinterlace_line_inplace), (deinterlace_bottom_field),
27240         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27241         * gst/ffmpegcolorspace/imgconvert_template.h:
27242         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27243         * gst/ffmpegcolorspace/mmx.h:
27244         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27245           adding ffmpegcolorspace element supplied by Ronald after cleaning
27246           up and pulling in the right bits of upstream source.
27247           I'm sure a better C/compiler wizard could do some cleaning up (for
27248           example use GLIB's malloc stuff), but as a first pass this
27249           works very well
27250
27251 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
27252
27253         * ext/alsa/gstalsa.h:
27254           I assume Ronald forgot to commit the change to have cardname
27255           as a struct member.  Expect some public spanking at the next
27256           opportunity.
27257
27258 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27259
27260         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27261         (gst_alsa_open_audio), (gst_alsa_close_audio):
27262         * ext/alsa/gstalsa.c:
27263           Don't open the device if we're a mixer (= padless).
27264         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27265         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27266         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27267           Open mixer during state change rather than during object
27268           initialization. Also, get a device name. Currently in a somewhat
27269           hackish fashion, but I didn't really find something better.
27270
27271 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
27272
27273         * *.c, *.h: run gst-indent
27274
27275 2004-03-14  Benjamin Otte  <otte@gnome.org>
27276
27277         * gst/modplug/gstmodplug.cc:
27278         * gst/modplug/gstmodplug.h:
27279           set correct timestamps on outgoing buffers
27280
27281 2004-03-14  Benjamin Otte  <otte@gnome.org>
27282
27283         * gst/modplug/gstmodplug.cc:
27284           handle events - don't do crap when a discont arrives that's not
27285           necessary
27286           This allows correct loading and playback of mods in Rhythmbox
27287
27288 2004-03-14  Benjamin Otte  <otte@gnome.org>
27289
27290         * configure.ac:
27291         * gst-libs/gst/gconf/Makefile.am:
27292         * pkgconfig/Makefile.am:
27293           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27294           they get rebuilt properly
27295         * configure.ac:
27296           when checking for vorbis, try pkgconfig first.
27297         * gst/modplug/gstmodplug.cc:
27298           add fixate function
27299
27300 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27301
27302         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27303           Fix for obvious mistake, where we first shift the offset and then
27304           read a samplesize element assuming the old offset. Note that this
27305           part still has something weird, i.e. my movies containing those
27306           don't actually play well, but at least there's something that looks
27307           like sound now.
27308
27309 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
27310         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27311         (plugin_init):
27312         Add a typefind function for speex format
27313
27314 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27315
27316         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27317         (gst_asf_demux_setup_pad):
27318           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27319           instead of 0. Reason is simple: some elements have a fps range
27320           of 1-max instead of 0-max. So now ASF video actually works.
27321
27322 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27323
27324         * po/LINGUAS:
27325         * po/sr.po:
27326           adding serbian as a language
27327
27328 2004-03-13  Benjamin Otte  <otte@gnome.org>
27329
27330         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27331           return taglist correctly from _get function, don't gst_pad_push it.
27332           (fixes #137042)
27333
27334 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27335         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27336
27337 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27338
27339         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27340         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27341         (gst_alsa_mixer_track_new):
27342         * ext/alsa/gstalsamixertrack.h:
27343           Fix ancient leftovers... MixerTrack is a GObject.
27344
27345 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27346
27347         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27348         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27349           Don't block during probing...
27350
27351 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27352
27353         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27354         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27355         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27356         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27357         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27358         (gst_alsa_open_audio), (gst_alsa_close_audio):
27359         * ext/alsa/gstalsa.h:
27360           Add propertyprobe interface implementation, add some device-name
27361           property, all this so that it looks good in gnome-volume-control.
27362
27363 2004-03-12  David Schleef  <ds@schleef.org>
27364
27365         * configure.ac: the Hermes library controls hermescolorspace, not
27366         colorspace.
27367         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27368         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27369         not /* */
27370         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27371         * ext/sdl/sdlvideosink.h: ditto.
27372         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27373
27374 2004-03-12  Benjamin Otte  <otte@gnome.org>
27375
27376         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27377         (gst_x_overlay_got_xwindow_id):
27378         * gst-libs/gst/xoverlay/xoverlay.h:
27379           replace XID with unsigned long to get rid of the xlibs dependency in
27380           XOverlay (fixes #137004)
27381
27382 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
27383         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27384         (gst_agingtv_setup):
27385         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27386         (gst_dicetv_base_init), (gst_dicetv_class_init),
27387         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27388         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27389         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27390         (gst_edgetv_setup), (gst_edgetv_rgb32):
27391         * gst/effectv/gsteffectv.c:
27392         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27393         (gst_quarktv_set_property):
27394         * gst/effectv/gstrev.c: (gst_revtv_get_type),
27395         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27396         (gst_revtv_setup), (gst_revtv_rgb32):
27397         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27398         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27399         (gst_shagadelictv_init), (gst_shagadelictv_setup),
27400         (gst_shagadelictv_rgb32):
27401         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27402         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27403         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27404         * gst/effectv/gstwarp.c:
27405         Port everything that can be ported to videofilter and fix up the caps.
27406         Can someone with a big-endian machine please check these?
27407
27408 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27409
27410         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27411         (gst_osssink_chain), (gst_osssink_change_state):
27412           Latest fixes for A/V sync, audio playback and such. This is about
27413           all... MPEG playback issues are mostly related to the async build-
27414           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27415
27416 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27417
27418         patch from: Stephane Loeuillet
27419
27420         * configure.ac:
27421           use pkg-config for some libraries, falling back to the old .m4 way
27422           (fixes #131270)
27423         * m4/libdv.m4:
27424           removed
27425
27426 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27427
27428         * configure.ac:
27429         * tools/Makefile.am:
27430         * tools/Makefile.in:
27431         * tools/gst-launch-ext-m.m:
27432         * tools/gst-launch-ext.1.in:
27433         * tools/gst-visualise-m.m:
27434         * tools/gst-visualise.1:
27435         * tools/gst-visualise.1.in:
27436           reorganizing generation of script tools
27437
27438 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27439
27440         * ext/divx/gstdivxdec.c:
27441           Downgrade priority. We prefer ffdec_mpeg4.
27442         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27443         (gst_faad_chain), (gst_faad_change_state):
27444           Fix capsnego. Doesn't work for some sounds because we don't have
27445           a 5:1 to stereo element.
27446         * ext/xvid/gstxvid.c: (plugin_init):
27447           Add priority.
27448         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27449         (gst_osssink_change_state):
27450           Add discont handling.
27451
27452 2004-03-09  Colin Walters  <walters@verbum.org>
27453
27454         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27455         conversion.
27456
27457 2004-03-09  Benjamin Otte  <otte@gnome.org>
27458
27459         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27460           the signals take 2 arguments
27461
27462 2004-03-09  David Schleef  <ds@schleef.org>
27463
27464         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27465         (gst_alsa_fixate): Add fixate function.  (bug #136686)
27466         * ext/alsa/gstalsa.h:
27467         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27468
27469 2004-03-09  Benjamin Otte  <otte@gnome.org>
27470
27471         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27472         (gst_mikmod_change_state):
27473         * ext/mikmod/gstmikmod.h:
27474           make mikmod's loop function not loop infinitely and call
27475           gst_element_yield anymore
27476         * gst/modplug/gstmodplug.cc:
27477           fix pad negotiation (fixes #136590)
27478
27479 2004-03-09  David Schleef  <ds@schleef.org>
27480
27481         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
27482         doesn't conflict with the internal colorspace plugin.
27483         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
27484         satisfy the crappy-ass shell shipped by a certain vendor.
27485         * gst/videofilter/make_filter: same (bug #135299)
27486
27487 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27488
27489         * configure.ac: bump nano to 1
27490
27491 === release 0.7.6 ===
27492
27493 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27494
27495         * configure.in: releasing 0.7.6, "There"
27496
27497 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27498
27499         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27500         * pkgconfig/gstreamer-play.pc.in:
27501           synchronize the two
27502
27503 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27504
27505         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27506         (cdparanoia_open), (cdparanoia_event):
27507           fix/add error handling
27508         * po/POTFILES.in:
27509           add cdparanoia source
27510         * tools/Makefile.am:
27511           make scripts executable
27512
27513 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27514
27515         * configure.ac:
27516         * ext/vorbis/Makefile.am:
27517         * sys/Makefile.am:
27518           remove id3types, vorbisfile and xvideosink from the build (#133783)
27519
27520 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27521
27522         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27523           Fix metadata read crash (#136537).
27524
27525 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27526
27527         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27528         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27529           adding mime types, fixing the one-stop function
27530
27531 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27532
27533         * ext/nas/nassink.c and /ext/nas/nassink.h:
27534         More NAS love from Arwed von Merkatz
27535         So lets all sing 'Can you feel the NAS tonight'
27536
27537 2004-03-08  Christian Schaller <Uraeus@gnome.org>
27538
27539         * tools/gst-launch-ext.in:
27540         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27541
27542 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27543
27544         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27545         (gst_mpeg2dec_init):
27546         remove the user_data pad for now, because it is being used in
27547         fixating causing MPEG playback to fixate on 1000 Hz for playback.
27548         If someone knows how to fix this properly, please do.
27549
27550 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27551
27552         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27553         (gst_osssink_get_time):
27554         add a warning, IMO this won't get triggered anymore, remove later
27555
27556 2004-03-07  David Schleef  <ds@schleef.org>
27557
27558         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
27559         format (bug #136470)
27560
27561 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27562
27563         * gst-libs/Makefile.am:
27564         * gst-libs/gst/media-info/Makefile.am:
27565         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27566         (error_callback), (gst_media_info_error_create),
27567         (gst_media_info_error_element), (gmip_init), (gmip_reset),
27568         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27569         * gst-libs/gst/media-info/media-info-priv.h:
27570         * gst-libs/gst/media-info/media-info-test.c: (main):
27571         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27572         (gst_media_info_class_init), (gst_media_info_instance_init),
27573         (gst_media_info_set_source), (gst_media_info_read_with_idler),
27574         (gst_media_info_read_idler), (gst_media_info_read):
27575         * gst-libs/gst/media-info/media-info.h:
27576         fixed, should work now
27577
27578 2004-03-07  Christian Schaller <Uraeus@gnome.org>
27579
27580         * ext/nas/nassink.c:
27581         A bunch of NAS fixes from Arwed von Merkatz
27582
27583 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27584
27585         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27586         (qtdemux_parse_trak):
27587           Fix crash (j might be greater than n_samples, in which case we're
27588           writing outside the allocated space for the array) and memleak.
27589
27590 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27591
27592         * sys/oss/gstosssink.c: (gst_osssink_chain):
27593           And another caller that couldn't handle delay < 0 (unsigned
27594           integer overflow). Video now continues playing on an audio
27595           buffer underrun, and the clock continues working. Audio still
27596           stalls.
27597
27598 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27599
27600         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27601         (gst_osssink_get_time):
27602           get_delay() may return values lower than 0. In those cases, we
27603           should not actually cast to *unsigned* int64, that will break
27604           stuff horribly. In my case, it screwed up A/V sync in movies
27605           in totem rather badly.
27606
27607 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27608
27609         * ext/faac/gstfaac.c: (gst_faac_chain):
27610         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27611         * ext/libpng/gstpngenc.c: (user_write_data):
27612         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27613         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27614         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27615         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27616         Fix several misuse of gst_buffer_merge (it doesn't take ownership
27617         of any buffer), should fix some leaks. I hope I didn't unref buffers
27618         that shouldn't be...
27619
27620 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27621
27622         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27623         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27624         (error_callback), (gmi_reset), (gmi_seek_to_track),
27625         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27626         (gmip_find_type_post), (gmip_find_stream_post),
27627         (gmip_find_track_streaminfo_post):
27628         * gst-libs/gst/media-info/media-info-priv.h:
27629         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27630         (info_print), (main):
27631         * gst-libs/gst/media-info/media-info.c:
27632         (gst_media_info_error_create), (gst_media_info_error_element),
27633         (gst_media_info_instance_init), (gst_media_info_get_property),
27634         (gst_media_info_new), (gst_media_info_set_source),
27635         (gst_media_info_read_idler), (gst_media_info_read):
27636         * gst-libs/gst/media-info/media-info.h:
27637           first pass at making this work again.  This seems to work on
27638           tagged ogg/vorbis and mp3 files.
27639
27640 2004-03-06  Benjamin Otte  <otte@gnome.org>
27641
27642         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27643           fix huge leak: gst_buffer_merge doesn't unref the first argument
27644           itself.
27645
27646 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27647
27648         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27649           report layer/mode/emphasis
27650
27651 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27652
27653         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27654
27655 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27656
27657         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27658           signal serial
27659
27660 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27661
27662         * ext/vorbis/vorbis.c: (plugin_init):
27663         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27664         (gst_vorbis_dec_init), (vorbis_dec_event):
27665         add debug category
27666         make vorbisdec handle _BYTE and _TIME queries
27667
27668 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27669
27670         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27671           from the xing header
27672
27673 2004-03-06  Benjamin Otte  <otte@gnome.org>
27674
27675         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27676         (gst_audio_convert_link), (gst_audio_convert_change_state),
27677         (gst_audio_convert_buffer_from_default_format):
27678           do conversions from/to float correctly, fix some caps nego errors,
27679           export correct supported caps in template and getcaps, use correct
27680           caps in try_set_caps functions
27681
27682 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27683
27684         For some reason, I only committed a ChangeLog entry yesterday and
27685         not the corresponding code...
27686         * ext/mad/gstmad.c: Fix detection of Xing headers
27687         * gst/tags/gstid3tag.c: Changes to support TLEN tags
27688
27689 2004-03-06  Benjamin Otte  <otte@gnome.org>
27690
27691         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27692         (gst_ogg_demux_src_query):
27693           make sure to handle the case where there's no current chain
27694           gracefully.
27695
27696 2004-03-05  David Schleef  <ds@schleef.org>
27697
27698         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27699         Add fixate function. (bug #131128)
27700         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27701         (gst_sdlvideosink_fixate):  Add fixate function.
27702         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27703         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27704         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27705         Fix missing break that was causing ulaw to be interpreted as
27706         raw int.
27707
27708 2004-03-05  David Schleef  <ds@schleef.org>
27709
27710         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27711         Fix code that ignores return value of gst_buffer_merge().
27712         (bug #114560)
27713         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27714         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27715         * testsuite/gst-lint:  Check for above.
27716
27717 2004-03-05  David Schleef  <ds@schleef.org>
27718
27719         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
27720         caps and throw an element error.  (bug #136334)
27721
27722 2004-03-05  David Schleef  <ds@schleef.org>
27723
27724         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27725         (gst_faad_chain): Fix negotiation.
27726         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27727         key and button events.
27728         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27729         dung heap of code.
27730         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27731         depends on gconf
27732         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27733         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27734         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27735         function to encourage better negotiation, particularly between
27736         audioconvert and osssink.
27737         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27738         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
27739         more important.
27740         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
27741         typefinding.
27742         * gst/vbidec/vbiscreen.c:  Add glib header
27743         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
27744
27745 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
27746
27747         * ext/mad/gstmad.c: Fix detection of Xing headers
27748         * gst/tags/gstid3tag.c: Changes to support TLEN tags
27749
27750 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27751
27752         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
27753         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
27754           debug updates
27755
27756 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
27757
27758         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27759         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
27760         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
27761         files, and report the parsed length as a GST_TAG_DURATION tag.
27762         * gst/tags/gstid3tag.c: support TLEN (duration) tag
27763
27764 2004-03-05  Benjamin Otte  <otte@gnome.org>
27765
27766         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
27767           convert channels correctly. convert correctly to unsigned.
27768
27769 2004-03-05  Julien MOUTTE <julien@moutte.net>
27770
27771         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
27772         we have a window before clearing it.
27773
27774 2004-03-05  Julien MOUTTE <julien@moutte.net>
27775
27776         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
27777         have a window before clearing it.
27778
27779 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27780
27781         * gconf/gstreamer.schemas.in:
27782         * gst-libs/gst/gconf/Makefile.am:
27783           version installation path the same way as for 0.6
27784         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27785         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27786         * pkgconfig/gstreamer-play-uninstalled.pc.in:
27787           remove comment that was fixed
27788
27789 2004-03-05  David Schleef  <ds@schleef.org>
27790
27791         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
27792         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
27793         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
27794         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
27795         Add prototype code for handling seeking and querying.
27796
27797 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27798
27799         * examples/gstplay/player.c: (main):
27800           Initialize variables to NULL. Prevents a segfault because the
27801           (uninitialized) variable is not NULL, resulting in a crash on
27802           trying to reach error->message.
27803
27804 2004-03-05  Benjamin Otte  <otte@gnome.org>
27805
27806         * gst/audioconvert/gstaudioconvert.c:
27807         (gst_audio_convert_buffer_to_default_format):
27808         make float=>int conversion work correctly even in cornercases.
27809
27810 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
27811
27812         * debian/README.Debian:
27813         * debian/build-deps:
27814         * debian/changelog:
27815         * debian/control:
27816         * debian/control.in:
27817         * debian/copyright:
27818         * debian/gstreamer-a52dec.files:
27819         * debian/gstreamer-aa.files:
27820         * debian/gstreamer-alsa.files:
27821         * debian/gstreamer-alsa.manpages:
27822         * debian/gstreamer-arts.files:
27823         * debian/gstreamer-artsd.files:
27824         * debian/gstreamer-audiofile.files:
27825         * debian/gstreamer-avifile.files:
27826         * debian/gstreamer-cdparanoia.files:
27827         * debian/gstreamer-colorspace.files:
27828         * debian/gstreamer-doc.files:
27829         * debian/gstreamer-dv.files:
27830         * debian/gstreamer-dvd.files:
27831         * debian/gstreamer-esd.files:
27832         * debian/gstreamer-festival.files:
27833         * debian/gstreamer-flac.files:
27834         * debian/gstreamer-gconf.conffiles:
27835         * debian/gstreamer-gconf.files:
27836         * debian/gstreamer-gconf.postinst:
27837         * debian/gstreamer-gnomevfs.files:
27838         * debian/gstreamer-gsm.files:
27839         * debian/gstreamer-http.files:
27840         * debian/gstreamer-jack.files:
27841         * debian/gstreamer-jpeg.files:
27842         * debian/gstreamer-mad.files:
27843         * debian/gstreamer-mikmod.files:
27844         * debian/gstreamer-misc.files:
27845         * debian/gstreamer-mpeg2dec.files:
27846         * debian/gstreamer-oss.files:
27847         * debian/gstreamer-plugin-apps.files:
27848         * debian/gstreamer-plugin-apps.manpages:
27849         * debian/gstreamer-plugin-libs-dev.files:
27850         * debian/gstreamer-plugin-libs.files:
27851         * debian/gstreamer-plugin-template.postinst:
27852         * debian/gstreamer-plugin-template.postrm:
27853         * debian/gstreamer-sdl.files:
27854         * debian/gstreamer-sid.files:
27855         * debian/gstreamer-vorbis.files:
27856         * debian/gstreamer-x.files:
27857         * debian/mk.control:
27858         * debian/rules:
27859         Debian package info not maintained here.
27860
27861 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27862
27863         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
27864         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
27865         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
27866         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
27867         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
27868         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
27869         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
27870         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
27871         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
27872         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
27873         * gst-libs/gst/colorbalance/colorbalance.c:
27874         (gst_color_balance_class_init):
27875         * gst-libs/gst/colorbalance/colorbalancechannel.c:
27876         (gst_color_balance_channel_class_init):
27877         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27878         * gst-libs/gst/play/play.c: (gst_play_class_init):
27879         * gst-libs/gst/propertyprobe/propertyprobe.c:
27880         (gst_property_probe_iface_init):
27881         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
27882         * gst-libs/gst/tuner/tunerchannel.c:
27883         (gst_tuner_channel_class_init):
27884         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
27885         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
27886         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
27887         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
27888         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
27889         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
27890         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
27891         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
27892         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
27893           fix signals to use - instead of _
27894         * ext/libcaca/gstcacasink.h:
27895         * ext/sdl/sdlvideosink.h:
27896           fix header rename
27897
27898 2004-03-04  David Schleef  <ds@schleef.org>
27899
27900         * testsuite/gst-lint:  Add a check for bad signal names.
27901
27902 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
27903
27904         reviewed by David Schleef
27905
27906         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
27907         modified the alpha channel and caused a warning. (bug #136192)
27908
27909 2004-04-03  Christian Schaller <Uraeus@gnome.org>
27910
27911         * gst-plugins.spec.in:
27912         Change names of plugins to actually be correct. Try to keep things
27913         alphabetical to avoid getting beat up by Thomas
27914
27915 2004-03-03  Julien MOUTTE <julien@moutte.net>
27916
27917         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
27918         Using ximagesink as a default if no gconf key found. We should
27919         probably consider using alsasink instead of osssink for the audio
27920         part.
27921
27922 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
27923
27924         * configure.ac:
27925           fix --with-plugins, don't think it ever worked before
27926         * gst-plugins.spec.in:
27927           even more updates
27928
27929 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27930
27931         * ext/sdl/sdlvideosink.h:
27932         * sys/ximage/ximagesink.h:
27933         * sys/xvideo/xvideosink.h:
27934         * sys/xvimage/xvimagesink.h:
27935           Fix for move of gstvideosink.h -> videosink.h.
27936
27937 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
27938
27939         * gst-libs/gst/xwindowlistener/Makefile.am:
27940           this is a plugin library, not a library
27941
27942 2004-03-01  David Schleef  <ds@schleef.org>
27943
27944         * AUTHORS:  Added some names.  Add yourself if you're still
27945         missing.
27946
27947 2004-03-01  David Schleef  <ds@schleef.org>
27948
27949         * MAINTAINERS: Add
27950
27951 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27952
27953         * gst-plugins.spec.in: clean up spec file
27954
27955 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27956
27957         * gst-libs/gst/video/Makefile.am:
27958         * gst-libs/gst/video/gstvideosink.c:
27959         * gst-libs/gst/video/gstvideosink.h:
27960           rename gstvideosink.h to videosink.h to match other headers
27961         * gst/mixmatrix/Makefile.am:
27962           fix plugin filename
27963         * gst/tags/Makefile.am: fix plugin filename
27964
27965 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27966
27967         * gst/tags/Makefile.am: fix plugin filename
27968
27969 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
27970
27971         * examples/gstplay/player.c: (got_time_tick), (main):
27972           add error handler
27973           display time_tick more readably
27974         * gst/mixmatrix/Makefile.am:
27975           fix plugin file name
27976
27977 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
27978
27979         * sys/oss/gstosselement.c: (gst_osselement_probe),
27980         (device_combination_append), (gst_osselement_class_probe_devices):
27981         * sys/oss/gstosselement.h:
27982           Reworked enumeration of oss dsps and mixers so that gst-mixer works
27983           on my system using alsa oss emulation, fixes bug #135597
27984
27985 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
27986
27987         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
27988         (gst_videodrop_chain), (gst_videodrop_change_state):
27989         * gst/videodrop/gstvideodrop.h:
27990           Work based on timestamp of input data, not based on the expected
27991           framerate from the input. The consequence is that this element now
27992           not only scales framerates, but also functions as a framerate
27993           corrector or framerate stabilizer/constantizer.
27994
27995 2004-02-27  David Schleef  <ds@schleef.org>
27996
27997         patches from jmmv@menta.net (Julio M. Merino Vidal)
27998
27999         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28000         GST_ELEMENT_ERROR call (bug #135634)
28001         * gst/interleave/interleave.c: (interleave_buffered_loop),
28002         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28003         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28004         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28005         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28006         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28007         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28008         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28009         Fix GST_ELEMENT_ERROR call.
28010         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28011         GST_ELEMENT_ERROR call.
28012
28013 2004-02-27  Benjamin Otte  <otte@gnome.org>
28014
28015         * gst-libs/gst/audio/audio.h:
28016           add macro to make sure header isn't included twice
28017         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28018           don't use gst_buffer_free
28019         * gst/playondemand/filter.func:
28020           don't use gst_data_free. Free data only once.
28021
28022 2004-02-26  David Schleef  <ds@schleef.org>
28023
28024         * gst-libs/gst/colorbalance/Makefile.am:
28025         * gst-libs/gst/mixer/Makefile.am:
28026         * gst-libs/gst/tuner/Makefile.am:
28027         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28028         should not be disted, -marshal.h files should not be installed,
28029         and -enum.h files _should_ be installed.  Fix to make this the
28030         case.
28031
28032 === release 0.7.5 ===
28033
28034 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
28035
28036         * configure.ac: release 0.7.5, "Under The Sea"
28037
28038 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28039
28040         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28041         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28042         * gst/videoscale/gstvideoscale.c:
28043         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28044           assorted debug/warning fixes
28045
28046 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28047
28048         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28049         (gst_videoscale_init), (gst_videoscale_chain),
28050         (gst_videoscale_set_property), (plugin_init):
28051         * gst/videoscale/gstvideoscale.h:
28052         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28053         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28054         (gst_videoscale_planar400), (gst_videoscale_packed422),
28055         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28056         (gst_videoscale_24bit), (gst_videoscale_16bit),
28057         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28058         (gst_videoscale_scale_plane_slow),
28059         (gst_videoscale_scale_point_sample),
28060         (gst_videoscale_scale_nearest),
28061         (gst_videoscale_scale_nearest_str2),
28062         (gst_videoscale_scale_nearest_str4),
28063         (gst_videoscale_scale_nearest_32bit),
28064         (gst_videoscale_scale_nearest_24bit),
28065         (gst_videoscale_scale_nearest_16bit):
28066         add debugging category and use it properly
28067         fix use of GST_PTR_FORMAT
28068
28069 2004-02-25  Andy Wingo  <wingo@pobox.com>
28070
28071         * gst/interleave/interleave.c (interleave_buffered_loop): Always
28072         push only when channel->buffer is NULL. Prevents segfaults doing
28073         the state change after a nonlocal exit, like a scheme exception.
28074
28075         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28076         Handle the case where the intersected caps is empty.
28077
28078 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28079
28080         * gst/law/mulaw-decode.c: (mulawdec_link):
28081         * gst/law/mulaw.c: (plugin_init):
28082           fix mulawdec so it actually works again
28083
28084 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
28085
28086         reviewed by: David Schleef  <ds@schleef.org>
28087
28088         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28089         (gst_gamma_init), (gst_gamma_set_property),
28090         (gst_gamma_get_property), (gst_gamma_calculate_tables),
28091         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
28092         for RGB, with separate r g and b correction factors. (#131167)
28093
28094 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28095
28096         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28097           only signal tags for bitrate if they're > 0 (#134894)
28098
28099 2004-02-24  David Schleef  <ds@schleef.org>
28100
28101         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28102         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28103         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28104         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28105         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28106         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28107         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28108         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28109         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
28110         category.  Attempt to fix timestamp calculation.
28111
28112 2004-02-24  Johan Dahlin  <johan@gnome.org>
28113
28114         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28115
28116 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28117
28118         * configure.ac:
28119         * gconf/Makefile.am:
28120         * gconf/gstreamer.schemas:
28121         * gst-libs/gst/gconf/Makefile.am:
28122         * gst-libs/gst/gconf/gconf.c:
28123           version gconf schemas and install locations
28124
28125 2004-02-23  Benjamin Otte  <otte@gnome.org>
28126
28127         * ext/xine/xineinput.c: (gst_xine_input_dispose):
28128         (gst_xine_input_subclass_init):
28129           call parent dispose.
28130           change pad template for CD reader correctly
28131         * ext/xine/Makefile.am:
28132         * ext/xine/gstxine.h:
28133         * ext/xine/xine.c: (plugin_init):
28134         * ext/xine/xineaudiosink.c:
28135           wrap audio sinks, too
28136         * gst-libs/gst/resample/private.h:
28137         * gst-libs/gst/resample/resample.c: (gst_resample_init),
28138         (gst_resample_reinit), (gst_resample_scale),
28139         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28140         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28141         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28142         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28143         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28144         * gst-libs/gst/resample/resample.h:
28145         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28146         (gst_audioscale_class_init), (gst_audioscale_link),
28147         (gst_audioscale_get_buffer), (gst_audioscale_init),
28148         (gst_audioscale_chain), (gst_audioscale_set_property),
28149         (gst_audioscale_get_property):
28150         * gst/audioscale/gstaudioscale.h:
28151           s/resample_*/gst_resample_*/i to not clobber namespaces
28152
28153 2004-02-23  Julien MOUTTE  <julien@moutte.net>
28154
28155         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28156         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28157         (gst_riff_create_video_template_caps),
28158         (gst_riff_create_audio_template_caps),
28159         (gst_riff_create_iavs_template_caps):
28160         * gst-libs/gst/riff/riff-media.h:
28161         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28162         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28163         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28164         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28165         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28166         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28167         (gst_matroska_demux_plugin_init): First batch implementing audio and
28168         video codec tags in demuxers.
28169
28170 2004-02-22  Benjamin Otte  <otte@gnome.org>
28171
28172         * ext/xine/Makefile.am:
28173         * ext/xine/gstxine.h:
28174         * ext/xine/xine.c: (plugin_init):
28175         * ext/xine/xineinput.c:
28176           add input plugin wrapper. Playback from files, http, mms and cdda
28177           works.
28178         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28179           remove leftover G_GNUC_UNUSED
28180         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28181         (gst_asf_demux_identify_guid):
28182           improve debugging output
28183
28184 2004-02-22  Benjamin Otte  <otte@gnome.org>
28185
28186         reported by: Padraig O'Briain <padraig.obriain@sun.com>
28187
28188         * autogen.sh:
28189           replace test -e with test -x for mkinstalldirs to be more portable.
28190           (fixes #134816)
28191
28192 2004-02-22  Benjamin Otte  <otte@gnome.org>
28193
28194         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28195
28196         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28197           set rank to PRIMARY
28198         * gst/volume/gstvolume.c: (plugin_init):
28199           set rank to NONE
28200         fixes #134960
28201
28202 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
28203
28204         reviewed by Benjamin Otte  <otte@gnome.org>
28205
28206         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28207           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28208
28209 2004-02-22  Benjamin Otte  <otte@gnome.org>
28210
28211         * configure.ac:
28212           export [_]*{gst,Gst,GST}.* symbols from plugins
28213
28214 2004-02-22  Christophe Fergeau <teuf@gnome.org>
28215
28216         reviewed by: Benjamin Otte  <otte@gnome.org>
28217
28218         * ext/lame/gstlame.c: (add_one_tag):
28219         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28220         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28221         (gst_vorbisenc_metadata_set1):
28222         * gst/tags/gstid3tag.c:
28223         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28224           apply fixes from bugs #135042 (lame can't write tags) and #133817
28225           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28226
28227 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28228
28229         * configure.ac: Export only gst_plugin_desc from plugins.
28230          Note that this change only makes any effect with Linux using libtool
28231          1.5.2 or higher. Otherwise it is silently ignored, but it would build
28232          fine. And don't try to have several versions of libtool in different
28233          directories.
28234
28235 2004-02-20  Andy Wingo  <wingo@pobox.com>
28236
28237         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28238         interleave respectively.
28239
28240         * gst/interleave/deinterleave.c: New plugin: deinterleave
28241         (replaces on oneton).
28242         * gst/interleave/interleave.c: New plugin: interleave.
28243         * gst/interleave/plugin.h: Support file.
28244         * gst/interleave/plugin.c: Support file.
28245
28246         * configure.ac: Remove intfloat and oneton, add interleave.
28247
28248         * ext/sndfile/gstsf.c: Handle events better.
28249
28250         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28251         and float2int operation. int2float has scheduling problems as
28252         noted in in2float_chain.
28253
28254 2004-02-20  Benjamin Otte  <otte@gnome.org>
28255
28256         * ext/xine/Makefile.am:
28257         * ext/xine/gstxine.h:
28258         * ext/xine/xine.c:
28259         * ext/xine/xineaudiodec.c:
28260         * ext/xine/xinecaps.c:
28261           add first version of xine plugin wrapper. Currently only wraps the
28262           QDM2 win32 DLL, and even that only in proof-of-concept quality.
28263         * configure.ac:
28264         * ext/Makefile.am:
28265           add xine plugin wrapper, disabled by default. Use --enable-xine to
28266           build. Note that it'll segfault on gst-register if you don't remove
28267           the goom and tvtime post plugins from xine.
28268         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28269         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28270           add extradata parsing for QDM2.
28271           change around debugging prints.
28272
28273 2004-02-19  Benjamin Otte  <otte@gnome.org>
28274
28275         * ext/lame/gstlame.c: (gst_lame_chain):
28276         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28277           use gst_tag_list_insert when you want to insert tags
28278
28279 2004-02-18  David Schleef  <ds@schleef.org>
28280
28281         * configure.ac:  Move massink to gst-rotten
28282         * ext/Makefile.am:
28283         * ext/mas/Makefile.am:
28284         * ext/mas/massink.c:
28285         * ext/mas/massink.h:
28286
28287 2004-02-18  David Schleef  <ds@schleef.org>
28288
28289         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28290         typefinding, since it seems to be worse than nothing.
28291         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
28292         atom to recognize .mp4 and .m4a files as video/quicktime.
28293
28294 2004-02-18  David Schleef  <ds@schleef.org>
28295
28296         * gst/sine/demo-dparams.c: (quit_live),
28297         (dynparm_log_value_changed), (dynparm_value_changed), (main):
28298         Use double dparams, not float.
28299         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28300         (gst_sinesrc_init): Change sync default to FALSE, since multiple
28301         sync'd elements don't really work correctly.
28302         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28303         (volume_update_volume), (volume_get_property):  Change dparam
28304         to double.
28305
28306 2004-02-18  Julien MOUTTE  <julien@moutte.net>
28307
28308         * sys/ximage/ximagesink.c:
28309         (gst_ximagesink_xwindow_update_geometry),
28310         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28311         (gst_ximagesink_change_state), (gst_ximagesink_expose),
28312         (gst_ximagesink_init): Rework the way software video scaling works. So
28313         now we check on each chain call if the video frames are feeling the
28314         window. If not we try to renegotiate caps. On failure we memorize that
28315         and we won't try again for that PLAYING sessions.
28316         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28317         failure.
28318         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28319         synchronous flag.
28320
28321 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28322
28323         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28324           break up _link so we can give a better debug message for errors
28325
28326 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
28327
28328         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28329           set up debug category
28330
28331 2004-02-18  Julien MOUTTE <julien@moutte.net>
28332
28333         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28334         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28335         the way renegotiation work. The event handling function is not taking
28336         care of external windows and renegotiate method check for pad flags
28337         NEGOTIATING. Should fix : #133209
28338
28339 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28340
28341         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28342         pad is negotiating before trying renegotiation.
28343
28344 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28345
28346         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28347           pass on all possible mime types as typefind hints
28348
28349 2004-02-17  Julien MOUTTE <julien@moutte.net>
28350
28351         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28352         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28353         possible SHM leak if we crash. All other apps using XShm are doing
28354         that.
28355
28356 2004-02-17  Julien MOUTTE  <julien@moutte.net>
28357
28358         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28359         (gst_ximagesink_expose): Renegotiate size on expose.
28360         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28361         size on expose.
28362
28363 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28364
28365         * testsuite/alsa/sinesrc.c:
28366           cosmetic fix to fix compile issue with gcc 2.95.4
28367
28368 2004-02-16  Julien MOUTTE <julien@moutte.net>
28369
28370         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28371         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28372         failed opening the audio device.
28373         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28374         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28375         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28376         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28377         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28378         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28379         (gst_ximagesink_change_state), (gst_ximagesink_chain),
28380         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28381         Removing some useless g_return_if_fail like wingo suggested.
28382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28383         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28384         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28385         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28386         (gst_xvimagesink_update_colorbalance),
28387         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28388         (gst_xvimagesink_xcontext_clear),
28389         (gst_xvimagesink_get_fourcc_from_caps),
28390         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28391         (gst_xvimagesink_set_xwindow_id),
28392         (gst_xvimagesink_colorbalance_list_channels),
28393         (gst_xvimagesink_colorbalance_set_value),
28394         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28395         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28396
28397 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28398
28399         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28400           throw error when not negotiated instead of asserting
28401
28402 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28403
28404         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28405         correct data refcounting.
28406
28407 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28408
28409         * gst/switch/gstswitch.c: (gst_switch_change_state),
28410         (gst_switch_class_init): Cleaning the sinkpads correctly on state
28411         change, mostly the EOS flag.
28412
28413 2004-02-15  Julien MOUTTE  <julien@moutte.net>
28414
28415         * examples/gstplay/player.c: (got_eos), (main): Adding some
28416         output for debugging.
28417         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28418         timeouts if we go to any state different from PLAYING.
28419         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28420         more EOS bugs in riff lib.
28421
28422 2004-02-14  Julien MOUTTE  <julien@moutte.net>
28423
28424         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28425         visualization until i find a way to fix switch correctly.
28426         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28427         EOS arrives.
28428         * gst/switch/gstswitch.c: (gst_switch_release_pad),
28429         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28430         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28431         Reworked switch to get a more correct behaviour with events and refing
28432         of data stored in sinkpads.
28433         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28434         we don't pull from a pad in EOS.
28435
28436 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28437
28438         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28439           remove v1 tag even if we can't read it (makes sure we don't detect
28440           it again)
28441
28442 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28443
28444         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28445         (gst_alsa_xrun_recovery):
28446         * ext/alsa/gstalsa.h:
28447           try xrun recovery when wait failed. Make xrun recovery function
28448           return TRUE/FALSE to indicate success. (might fix #134354)
28449
28450 2004-02-13  David Schleef  <ds@schleef.org>
28451
28452         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28453         (dynparm_value_changed), (main): Convert from float to double.
28454         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28455
28456 2004-02-13  David Schleef  <ds@schleef.org>
28457
28458         * gst/silence/gstsilence.c: (gst_silence_class_init),
28459         (gst_silence_set_clock), (gst_silence_get),
28460         (gst_silence_set_property), (gst_silence_get_property):
28461         * gst/silence/gstsilence.h: Add sync property.
28462         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28463         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28464         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28465         * gst/sine/gstsinesrc.h: Add sync property.
28466
28467 2004-02-13  David Schleef  <ds@schleef.org>
28468
28469         * gst/intfloat/gstint2float.c: (conv_f32_s16),
28470         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
28471
28472 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28473
28474         * configure.ac:
28475         * ext/Makefile.am:
28476         * gst-libs/ext/Makefile.am:
28477           move ffmpeg plugin to gst-ffmpeg module
28478
28479 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
28480
28481         * configure.ac: use GST_ARCH to detect architecture
28482
28483 2004-02-12  Julien MOUTTE  <julien@moutte.net>
28484
28485         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28486
28487 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
28488
28489         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28490           classify LADSPA plugins based on number of src/sink pads
28491           (#133663, Stefan Kost)
28492         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28493           fix dparams registration
28494           (#133528, Stefan Kost)
28495         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28496           fix use of isprint and use g_ascii_isprint instead
28497           (#133316, Stefan Kost)
28498
28499 2004-02-11  David Schleef  <ds@schleef.org>
28500
28501         Convert a few inner loops to use liboil.  This is currently
28502         optional, and is only enabled if liboil is present (duh!).
28503         * configure.ac: Check for liboil-0.1
28504         * gst/intfloat/Makefile.am:
28505         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28506         (gst_int2float_chain_gint16):
28507         * gst/videofilter/Makefile.am:
28508         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28509         (tablelookup_u8), (gst_videobalance_planar411):
28510         * gst/videotestsrc/Makefile.am:
28511         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28512         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28513         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28514         (paint_hline_RGB565), (paint_hline_xRGB1555):
28515
28516 2004-02-11  David Schleef  <ds@schleef.org>
28517
28518         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28519         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28520         (gst_colorspace_getcaps), (gst_colorspace_link),
28521         (gst_colorspace_base_init), (gst_colorspace_init),
28522         (gst_colorspace_chain), (gst_colorspace_change_state),
28523         (plugin_init): Merge Ronald's patch (bug #117897) and update
28524         for new caps and negotiation.  Seems to work, although it
28525         shows off bugs in lcs.
28526
28527 2004-02-11  David Schleef  <ds@schleef.org>
28528
28529         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28530         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28531
28532 2004-02-11  David Schleef  <ds@schleef.org>
28533
28534         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28535         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28536         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28537         Add server and port properties
28538
28539 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28540
28541         * m4/a52.m4:
28542         * m4/aalib.m4:
28543         * m4/as-ffmpeg.m4:
28544         * m4/as-liblame.m4:
28545         * m4/as-slurp-ffmpeg.m4:
28546         * m4/check-libheader.m4:
28547         * m4/esd.m4:
28548         * m4/freetype2.m4:
28549         * m4/gconf-2.m4:
28550         * m4/glib.m4:
28551         * m4/gst-alsa.m4:
28552         * m4/gst-artsc.m4:
28553         * m4/gst-ivorbis.m4:
28554         * m4/gst-matroska.m4:
28555         * m4/gst-sdl.m4:
28556         * m4/gst-shout2.m4:
28557         * m4/gst-sid.m4:
28558         * m4/gtk.m4:
28559         * m4/libdv.m4:
28560         * m4/libfame.m4:
28561         * m4/libmikmod.m4:
28562         * m4/ogg.m4:
28563         * m4/vorbis.m4:
28564           fix underquotedness of macros (#133800)
28565         * m4/as-avifile.m4:
28566         * m4/xmms.m4:
28567           removed because no longer used
28568
28569 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
28570
28571         * configure.ac:
28572           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28573           by autopoint (fixes #132996)
28574
28575 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28576
28577         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28578         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28579         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28580         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28581           fix memleaks
28582
28583 2004-02-11  David Schleef  <ds@schleef.org>
28584
28585         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28586         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28587         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28588         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28589         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28590         (gst_jpegenc_class_init), (gst_jpegenc_init),
28591         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28592         (gst_jpegenc_chain), (gst_jpegenc_set_property),
28593         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
28594         * ext/jpeg/gstjpegenc.h: Fix negotiation.
28595
28596 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28597
28598         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28599         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28600         * ext/mikmod/gstmikmod.h:
28601           fix caps negotiation in mikmod
28602         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28603           output debug information
28604
28605 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28606
28607         * gst-libs/gst/colorbalance/Makefile.am:
28608         * gst-libs/gst/navigation/Makefile.am:
28609         * gst-libs/gst/xoverlay/Makefile.am:
28610           remove unused GST_OPT_CFLAGS from Makefiles
28611           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28612
28613 2004-02-07  David Schleef  <ds@schleef.org>
28614
28615         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28616         push events to pads that haven't been created (#133508)
28617
28618 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
28619
28620         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28621         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28622         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28623         (gst_dvdec_loop), (gst_dvdec_change_state):
28624         Second attempt at committing a working dvdec element.
28625
28626 2004-02-06  David Schleef  <ds@schleef.org>
28627
28628         Build fixes for OS X: (see #129600)
28629         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28630         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28631         (gst_riff_read_strf_iavs):
28632         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28633         (gst_avi_demux_stream_odml):
28634         * gst/playondemand/Makefile.am:
28635         * gst/rtp/rtp-packet.c:
28636
28637 2004-02-05  David Schleef  <ds@schleef.org>
28638
28639         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28640         last change, because it Just Doesn't Compile.
28641
28642 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28643
28644         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28645           skip undecodable id3v2 tag instead of keeping it
28646
28647 2004-02-05  David Schleef  <ds@schleef.org>
28648
28649         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28650         Unref leaked buffer.  (Noticed by Ronald)
28651
28652 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
28653
28654         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28655         Sync requires with other checks.  >= vs =.
28656
28657 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
28658
28659         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28660         (gst_dvdec_video_link), (gst_dvdec_loop):
28661         * ext/dv/gstdvdec.h:
28662           rework the caps negotiation so that dvdec works again instead
28663           of just segfaulting.
28664
28665 === release 0.7.4 ===
28666
28667 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
28668
28669         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28670         * configure.ac: changed for release
28671
28672 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28673
28674         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28675         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28676         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28677         * pkgconfig/gstreamer-play-uninstalled.pc.in:
28678           reworked patch by David Lehn to fix libdir and includedir for
28679           uninstalled libraries
28680           removed play and gconf from gstreamer-libs since they have their
28681           own pkgconfig files
28682
28683 2004-02-04  David Schleef  <ds@schleef.org>
28684
28685         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28686         memleak.
28687
28688 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28689
28690         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28691           use correct GST_TAG_ENCODER tag
28692
28693 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28694
28695         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28696           be sure to stop the clock when going to paused
28697         * sys/oss/gstosssink.c: (gst_osssink_change_state):
28698           reset number of transmitted when going to ready.
28699         fixes #132935
28700
28701 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
28702
28703         reviewed by Benjamin Otte
28704
28705         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28706           extract track count (fixes #133410)
28707
28708 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28709
28710         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28711           that should be !=, not == (fixes #132519)
28712
28713 2004-02-04  David Schleef  <ds@schleef.org>
28714
28715         Make sure set_explicit_caps() is called before adding pad.
28716         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28717         * gst/id3/gstid3types.c: (gst_id3types_loop):
28718         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28719         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28720
28721 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28722
28723         * configure.ac:
28724           bump nano to 2, first prerelease
28725           put back AM_PROG_LIBTOOL
28726
28727 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
28728
28729         * testsuite/alsa/Makefile.am:
28730           these are user test apps, not automatic testsuite tests
28731
28732 2004-02-04  David Schleef  <ds@schleef.org>
28733
28734         Convert GST_DEBUG_CAPS() to GST_DEBUG():
28735         * gst/mpeg1videoparse/gstmp1videoparse.c:
28736         (mp1videoparse_parse_seq):
28737         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28738         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28739         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28740         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28741         (gst_xvideosink_getcaps):
28742         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28743         * testsuite/gst-lint: more tests
28744
28745 2004-02-04  David Schleef  <ds@schleef.org>
28746
28747         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
28748         with the code that they would expand to.
28749         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
28750         (gst_flacdec_get_src_query_types),
28751         (gst_flacdec_get_src_event_masks):
28752         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
28753         (gst_gnomevfssrc_get_query_types),
28754         (gst_gnomevfssrc_get_event_mask):
28755
28756 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28757
28758         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28759         (gst_sinesrc_dispose):
28760           fix memleak by properly disposing sinesrc
28761
28762 2004-02-04  Julien MOUTTE  <julien@moutte.net>
28763
28764         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
28765         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
28766         an overlay to redraw the image because it has been exposed.
28767         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
28768         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
28769         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
28770         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
28771         interface
28772         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
28773         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
28774         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
28775         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
28776         interface
28777
28778 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28779
28780         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28781           more memleak fixage
28782
28783 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28784
28785         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28786         * gst/typefind/gsttypefindfunctions.c:
28787           fix memleaks shown by gst-typefind
28788
28789 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28790
28791         * common/glib-gen.mak:
28792           add hack rule to touch .Plo files
28793         * gst-libs/gst/colorbalance/Makefile.am:
28794         * gst-libs/gst/mixer/Makefile.am:
28795         * gst-libs/gst/play/Makefile.am:
28796         * gst-libs/gst/tuner/Makefile.am:
28797           remove glib_root variable
28798
28799 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28800
28801         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
28802           set explicit caps before adding the element, so the autopluggers can
28803           plug correctly.
28804         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28805         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
28806         (mpeg_video_type_find), (mpeg_video_stream_type_find),
28807         (dv_type_find):
28808           fix memleaks in typefind functions. gst_type_find_suggest takes a const
28809           argument.
28810
28811 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
28812
28813         * gst-libs/gst/colorbalance/Makefile.am:
28814         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
28815         * gst-libs/gst/colorbalance/colorbalance.c:
28816         * gst-libs/gst/colorbalance/colorbalance.h:
28817         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
28818         * gst-libs/gst/mixer/Makefile.am:
28819         * gst-libs/gst/mixer/mixer-marshal.list:
28820         * gst-libs/gst/mixer/mixer.c:
28821         * gst-libs/gst/mixer/mixer.h:
28822         * gst-libs/gst/mixer/mixermarshal.list:
28823         * gst-libs/gst/play/Makefile.am:
28824         * gst-libs/gst/play/play.h:
28825         * gst-libs/gst/tuner/Makefile.am:
28826         * gst-libs/gst/tuner/tuner-marshal.list:
28827         * gst-libs/gst/tuner/tuner.c:
28828         * gst-libs/gst/tuner/tuner.h:
28829         * gst-libs/gst/tuner/tunermarshal.list:
28830           use new glib-gen.mak snippet to clean up Makefile.am
28831           fix various bugs in Makefile.am's
28832
28833 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28834
28835         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
28836           handle chain parsing correctly in the multichain case
28837         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
28838         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
28839         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
28840         (theora_dec_chain):
28841           handle events and queries correctly
28842
28843 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28844
28845         * .cvsignore:
28846         Ignore generated file _stdint.h.
28847
28848 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28849
28850         * gst-libs/gst/colorbalance/Makefile.am:
28851         * gst-libs/gst/colorbalance/colorbalance.h:
28852         * gst-libs/gst/mixer/Makefile.am:
28853         * gst-libs/gst/mixer/mixer.h:
28854         * gst-libs/gst/play/Makefile.am:
28855         * gst-libs/gst/play/play.h:
28856         * gst-libs/gst/tuner/Makefile.am:
28857         * gst-libs/gst/tuner/tuner.h:
28858         Generate enum type code with glib-mkenums.
28859         * gst-libs/gst/colorbalance/.cvsignore:
28860         * gst-libs/gst/mixer/.cvsignore:
28861         * gst-libs/gst/play/.cvsignore:
28862         * gst-libs/gst/tuner/.cvsignore:
28863         Ignore generated files.
28864
28865 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28866
28867         * gst-libs/gst/audio/.cvsignore:
28868         Ignore generated file.
28869         * gst-libs/gst/audio/Makefile.am:
28870         Do not install example filter.
28871
28872 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
28873
28874         * examples/switch/.cvsignore:
28875         Ignore generated file.
28876
28877 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28878
28879         * common/m4/ax_create_stdint_h.m4:
28880         * configure.ac:
28881           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
28882           _stdint.h.
28883         * Makefile.am:
28884           remove generated _stdint.h in DISTCLEANFILES
28885         * ext/a52dec/gsta52dec.c:
28886           include _stdint.h for a52dec. (should fix #133064)
28887
28888 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
28889
28890         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
28891         (gst_tag_to_vorbis_comments):
28892         Add replaygain support to vorbistag
28893
28894 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
28895         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
28896         (gst_ffmpeg_caps_to_extradata):
28897           Fix SVQ3 caps flag properties
28898           Use glib macro for bytes swap
28899
28900 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28901
28902         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
28903         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
28904         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
28905         * ext/sndfile/gstsf.c: (plugin_init):
28906         * gst/avi/gstavi.c: (plugin_init):
28907         * sys/dxr3/dxr3init.c: (plugin_init):
28908         * sys/oss/gstossaudio.c: (plugin_init):
28909         * sys/v4l/gstv4l.c: (plugin_init):
28910         * sys/v4l2/gstv4l2.c: (plugin_init):
28911           remove textdomain calls
28912         * po/nl.po:
28913           update Dutch translation
28914
28915 2004-02-02  Julien MOUTTE  <julien@moutte.net>
28916
28917         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28918         (gst_play_set_audio_sink): Moving volume in the audio thread for
28919         instantaneous volume change. Maybe i will add another volume in front
28920         of visualization later, not sure yet though.
28921
28922 2004-02-02  Julien MOUTTE  <julien@moutte.net>
28923
28924         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28925         (gst_ximagesink_handle_xevents): Better X events handling, only take
28926         the latest events for configure and motion.
28927         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
28928
28929 2004-02-02  Jon Trowbridge  <trow@gnu.org>
28930
28931         reviewed by: David Schleef  <ds@schleef.org>
28932
28933         Fix memory leaks:
28934         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
28935         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
28936
28937 2004-02-02  David Schleef  <ds@schleef.org>
28938
28939         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
28940         of lines.
28941         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
28942         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28943         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
28944         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
28945         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
28946         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
28947         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
28948         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
28949         (gst_float2_2_int_link):
28950         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
28951         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
28952         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
28953         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
28954         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
28955         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
28956         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
28957         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
28958         * testsuite/gst-lint: Add tests for bzero and ;;
28959
28960 2004-02-02  David Schleef  <ds@schleef.org>
28961
28962         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
28963
28964 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
28965
28966         * ext/aalib/gstaasink.c: (gst_aasink_open):
28967         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
28968         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28969         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
28970         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
28971         (gst_afsink_close_file):
28972         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
28973         (gst_afsrc_close_file):
28974         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
28975         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
28976         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
28977         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
28978         * ext/esd/esdmon.c: (gst_esdmon_get):
28979         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
28980         * ext/faac/gstfaac.c: (gst_faac_chain):
28981         * ext/faad/gstfaad.c: (gst_faad_chain):
28982         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
28983         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28984         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
28985         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
28986         (gst_flacdec_loop):
28987         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28988         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
28989         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
28990         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
28991         (gst_gnomevfssink_close_file):
28992         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
28993         (gst_gnomevfssrc_open_file):
28994         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
28995         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
28996         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
28997         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
28998         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
28999         * ext/mad/gstmad.c: (gst_mad_chain):
29000         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29001         * ext/mpeg2dec/gstmpeg2dec.c:
29002         * ext/mpeg2enc/gstmpeg2enc.cc:
29003         * ext/mplex/gstmplex.cc:
29004         * ext/mplex/gstmplexibitstream.cc:
29005         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29006         (gst_ogg_demux_push):
29007         * ext/raw1394/gstdv1394src.c:
29008         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29009         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29010         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29011         (gst_sf_loop):
29012         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29013         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29014         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29015         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29016         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29017         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29018         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29019         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29020         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29021         (gst_riff_read_element_data), (gst_riff_read_seek),
29022         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29023         * gst/adder/gstadder.c: (gst_adder_loop):
29024         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29025         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29026         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29027         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29028         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29029         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29030         * gst/goom/gstgoom.c: (gst_goom_chain):
29031         * gst/id3/gstid3types.c: (gst_id3types_loop):
29032         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29033         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29034         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29035         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29036         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29037         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29038         (gst_ebml_read_float), (gst_ebml_read_header):
29039         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29040         (gst_matroska_demux_parse_blockgroup):
29041         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29042         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29043         * gst/oneton/gstoneton.c: (gst_oneton_chain):
29044         * gst/silence/gstsilence.c: (gst_silence_get):
29045         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29046         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29047         * gst/speed/gstspeed.c: (speed_loop):
29048         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29049         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29050         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29051         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29052         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29053         (gst_wavparse_loop):
29054         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29055         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29056         (dxr3audiosink_close):
29057         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29058         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29059         (dxr3videosink_close), (dxr3videosink_write_data):
29060         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29061         * sys/oss/gstosssink.c: (gst_osssink_chain):
29062         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29063         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29064         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29065         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29066         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29067         (gst_v4l_set_window), (gst_v4l_enable_overlay):
29068         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29069         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29070         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29071         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29072         (gst_v4l_set_audio):
29073         * sys/v4l/v4l_calls.h:
29074         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29075         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29076         (gst_v4lmjpegsink_playback_init),
29077         (gst_v4lmjpegsink_playback_start):
29078         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29079         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29080         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29081         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29082         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29083         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29084         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29085         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29086         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29087         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29088         (gst_v4l2_get_output), (gst_v4l2_set_output),
29089         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29090         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29091         (gst_v4l2_set_attribute):
29092         * sys/v4l2/v4l2_calls.h:
29093         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29094         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29095         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29096         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29097         (gst_v4l2src_capture_stop):
29098         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29099         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29100         (gst_ximagesink_chain):
29101         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29102         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29103         (gst_xvideosink_xwindow_new):
29104         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29105         (gst_xvimagesink_chain):
29106
29107 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29108
29109         * gst/volume/gstvolume.c: (gst_volume_set_volume),
29110         (gst_volume_get_volume), (volume_class_init), (volume_init),
29111         (volume_chain_int16), (volume_update_volume):
29112         * gst/volume/gstvolume.h:
29113           make code more readable by removing magic numbers
29114           make mixer interface export 0-100 range
29115           make it internally map to 0.0-1.0 range so users don't distort
29116           output by putting the sliders at full volume
29117
29118 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29119
29120         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29121         (gst_play_state_change), (gst_play_seek_to_time):
29122         block the tick callback for 0.5 secs after doing a seek
29123
29124 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29125
29126         * gst-libs/gst/play/play.c: (gst_play_new):
29127           check for GError
29128
29129 2004-02-01  Julien MOUTTE  <julien@moutte.net>
29130
29131         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29132         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29133         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29134         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29135         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29136         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29137
29138 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
29139
29140         * configure.ac:
29141         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29142           check for a function added in vorbis 1.1
29143
29144 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29145
29146         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29147         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29148           really start/stop clock only on PLAYING <=> PAUSED
29149         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29150           remove \n from debugging lines
29151         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29152           make it work when seeking does not
29153         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29154           reset on DISCONT
29155
29156 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29157
29158         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29159           start clock on PAUSED=>PLAYING, not later
29160         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29161           extract correct time for different discont formats
29162         (gst_alsa_sink_get_time):
29163           don't segfault when no format is negotiated yet, just return 0
29164         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29165         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29166         (gst_ogg_pad_push):
29167           handle flush and discont events correctly
29168         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29169           handle discont events correctly
29170
29171 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
29172
29173         * gst-libs/gst/play/play.c: (gst_play_error_quark),
29174         (gst_play_error_create), (gst_play_error_plugin),
29175         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29176         * gst-libs/gst/play/play.h:
29177           add error handling during creation
29178         * examples/gstplay/player.c: (main):
29179           use new gst_play_new
29180
29181
29182 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29183
29184         * ext/theora/theoradec.c: (theora_dec_chain):
29185           make comments work
29186         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29187         (vorbis_dec_src_event), (vorbis_dec_chain):
29188           add encoder tag, fix tag reading to be more error tolerant, change
29189           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29190           gst_pad_event_default.
29191         * gst/tags/gstvorbistag.c:
29192         (gst_tag_list_from_vorbiscomment_buffer):
29193           undefine function specific define at end of function
29194
29195 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
29196
29197         * ext/flac/gstflac.c: (plugin_init):
29198         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29199         * ext/flac/gstflacdec.h:
29200         * ext/flac/gstflacenc.h:
29201           Fix typos
29202
29203 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
29204
29205         * examples/gstplay/player.c: s/gstplay.h/play.h/
29206
29207 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29208
29209         * gst-libs/gst/play/Makefile.am:
29210         * gst-libs/gst/play/gstplay.c:
29211         * gst-libs/gst/play/gstplay.h:
29212         * gst-libs/gst/play/play.c:
29213           more surgery, operation complete
29214
29215 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29216
29217         * gst-libs/gst/play/play.old.c:
29218         * gst-libs/gst/play/play.old.h:
29219           after CVS surgery by moving, remove
29220         * gst-libs/gst/play/playpipelines.c:
29221           remove
29222
29223         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29224           add negotiation error
29225
29226 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29227
29228         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29229         (gst_ogg_demux_push):
29230           add some seeking debug info
29231           send a flush when seeking
29232
29233 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29234
29235         * configure.ac:
29236           use AC_C_INLINE
29237         * configure.ac:
29238         * ext/Makefile.am:
29239         * ext/theora/Makefile.am:
29240         * ext/theora/theoradec.c:
29241           add theora video decoder. Does just do simple decoding for now and
29242           has been tested against Theora cvs only. It only works when theora
29243           is compiled with --enable-static.
29244         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29245           always reset packetno on DISCONT
29246
29247 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29248
29249         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29250           Fix audio.
29251
29252 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29253
29254         * gst/mpegaudioparse/gstmpegaudioparse.c:
29255         (mp3_type_frame_length_from_header):
29256           Fix header parsing - stolen from ffmpeg (thank you! :) ).
29257
29258 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29259
29260         * ext/esd/esdsink.c: (gst_esdsink_init):
29261           Since we have static pad template caps, we don't need to negotiate;
29262           either the core errors out or we know the format.
29263
29264 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29265
29266         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29267         (gst_riff_read_seek):
29268         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29269         (gst_ebml_read_seek):
29270           Fix event handling.
29271
29272 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29273
29274         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29275           removee video/x-theora from vp3 decoder, it doesn't handle raw
29276           theora streams
29277         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29278           fix bug with finalizing element that never went to PAUSED
29279         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29280           length and position queries were swapped
29281         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29282         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29283         (vorbis_dec_src_event):
29284           implement querying time and bytes
29285
29286 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
29287
29288         * just about every source file:
29289           gst_element_error -> GST_ELEMENT_ERROR
29290
29291 2004-01-29  Julien MOUTTE  <julien@moutte.net>
29292
29293         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29294         emiting FLUSH and even before DISCONT.
29295         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29296         get the best instant seeking as possible yay!
29297
29298 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29299
29300         * gst/mpeg1videoparse/gstmp1videoparse.c:
29301         (gst_mp1videoparse_real_chain):
29302           Committed wrong version last week... Grr... Didn't notice until now.
29303
29304 2004-01-29  Julien MOUTTE <julien@moutte.net>
29305
29306         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29307         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29308         have_xwindow_id signal in xwindow_create.
29309
29310 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29311
29312         * ext/ogg/gstoggdemux.c:
29313           lots of changes - mainly support for chained bitstreams, seeking,
29314           querying and bugfixes of course
29315         * ext/vorbis/Makefile.am:
29316         * ext/vorbis/vorbisdec.c:
29317         * ext/vorbis/vorbisdec.h:
29318           add vorbisdec raw vorbis decoder
29319         * ext/vorbis/vorbis.c: (plugin_init):
29320           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29321         * gst/intfloat/Makefile.am:
29322         * gst/intfloat/float22int.c:
29323         * gst/intfloat/float22int.h:
29324         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29325           add float2intnew plugin. It converts multichannel interleaved float to
29326           multichannel interleaved int. The name should probably be changed.
29327         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29328         (plugin_init):
29329           add typefinding for raw theora video so oggdemux can detect it.
29330
29331 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29332
29333         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29334         sink element first.
29335         * gst/videoscale/gstvideoscale.c:
29336         (gst_videoscale_handle_src_event): Fixing src event handler.
29337
29338 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29339
29340         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29341         (gst_v4lsrc_open), (gst_v4lsrc_close),
29342         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29343         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29344         * sys/v4l/gstv4lsrc.h:
29345         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29346         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29347           Implement resizing... Hack. But that's why v4l is b0rked...
29348
29349 2004-01-28  Julien MOUTTE <julien@moutte.net>
29350
29351         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29352         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29353         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29354         (gst_ximagesink_xwindow_destroy):
29355         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29356         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29357         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29358         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29359         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29360         correctly cleaning the image created to check xshm calls on succes,
29361         added a lot of XSync calls in X11 functions, and fixed a segfault when
29362         no image format was defined before negotiation happened.
29363
29364 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29365
29366         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29367           use gst_element_get_time to get correct time
29368
29369 2004-01-28  Julien MOUTTE  <julien@moutte.net>
29370
29371         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29372         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29373         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29374         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29375         (gst_xvimagesink_check_xshm_calls),
29376         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29377         X plugins are now able to detect that XShm calls will fail even if the
29378         server claims that it has XShm support (remote displays most of the
29379         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29380         so that we use non XShm functions. This feature is almost useless for
29381         xvimagesink as Xv is not supported on remote displays anyway, but
29382         it might happen than even on the local display XShm calls fail.
29383
29384 2004-01-27  David Schleef  <ds@schleef.org>
29385
29386         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29387         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29388         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
29389         changed esdsink to only use 44100,16,2, since esd sucks at rate
29390         conversion and esdsink has had difficulty negotiating.
29391
29392 2004-01-27  Julien MOUTTE <julien@moutte.net>
29393
29394         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29395         (gst_play_seek_to_time): Fixing the way to get current position.
29396
29397 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29398
29399         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29400           use gst_element_get_time to get correct time
29401
29402 2004-01-27  Julien MOUTTE <julien@moutte.net>
29403
29404         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29405         fix ever... Inverting 2 lines of code make spider autoplug correctly
29406         tagged mp3 !
29407
29408 2004-01-27  David Schleef  <ds@schleef.org>
29409
29410         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29411         Use gst_pad_try_set_caps_nonfixed().
29412
29413 2004-01-27  David Schleef  <ds@schleef.org>
29414
29415         * gst/ac3parse/gstac3parse.c: update to checklist 5
29416         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
29417         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29418         * gst/audioscale/gstaudioscale.c: same
29419         * gst/auparse/gstauparse.c: same
29420         * gst/avi/gstavidemux.c: same
29421
29422 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29423
29424         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29425           stop processing after EOS
29426
29427 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29428
29429         * gst/asfdemux/asfheaders.h:
29430         * gst/asfdemux/gstasfdemux.c:
29431         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29432         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29433         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29434           lot's of fixes to make data extraction simpler and get the code
29435           architecture and compiler independant. Add debugging category
29436         * gst/goom/gstgoom.c: (gst_goom_change_state):
29437           reset channel count on PAUSED=>READY, not READY=>PAUSED
29438
29439 2004-01-26  Colin Walters  <walters@verbum.org>
29440
29441         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29442         code to pull a bigger buffer in iradio mode.  This as a side effect
29443         makes typefinding work.
29444
29445 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29446
29447         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29448         Fix SVQ3 decoding on PPC
29449
29450 2004-01-26  Julien MOUTTE <julien@moutte.net>
29451
29452         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29453         that one managed to stay there... Fixed.
29454
29455 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
29456
29457         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29458         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29459         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29460         (qtdemux_video_caps):
29461         * gst/qtdemux/qtdemux.h:
29462         Add SVQ3 specific flags to qtdemux and ffmpeg
29463
29464 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29465
29466         * gst-libs/gst/audio/audio.h:
29467           remove buffer-frames from audio caps
29468         * gst/audioconvert/gstaudioconvert.c:
29469           fix plugin to really work.
29470
29471 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29472
29473         * gst-libs/gst/mixer/mixer.c:
29474         * gst-libs/gst/propertyprobe/propertyprobe.c:
29475         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29476         (gst_tuner_find_channel_by_name):
29477         * gst-libs/gst/tuner/tuner.h:
29478           Add gtk-doc style comments. Also fix a function name.
29479
29480 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29481
29482         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29483         (gst_divxdec_negotiate):
29484           Fix for new capsnego - also fixes gst-player with divxdec.
29485
29486 2004-01-25  Julien MOUTTE  <julien@moutte.net>
29487
29488         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29489         (gst_play_identity_handoff), (gst_play_set_location),
29490         (gst_play_set_visualization), (gst_play_connect_visualization): Another
29491         try in visualization implementation. Still have an issue with switch
29492         blocking when pulling from video_queue and only audio comes out of
29493         spider.
29494         * gst/switch/gstswitch.c: (gst_switch_release_pad),
29495         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29496         release method. And check if the pad is usable before pulling.
29497
29498 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29499
29500         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29501         (gst_videobalance_init),
29502         (gst_videobalance_colorbalance_list_channels),
29503         (gst_videobalance_colorbalance_set_value),
29504         (gst_videobalance_colorbalance_get_value),
29505         (gst_videobalance_update_properties),
29506         (gst_videobalance_update_tables_planar411),
29507         (gst_videobalance_planar411):
29508         * gst/videofilter/gstvideobalance.h:
29509           Implement lookup-tables. +/- 10x faster.
29510
29511 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29512
29513         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29514         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29515           The index reading was broken. The rest worked fine, but the whole
29516           goal of my rewrite was to make avidemux readable, and this was
29517           not at all readable. Please use typed variables.
29518
29519 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29520
29521         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29522           Additional pad usability check.
29523         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29524         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29525         (gst_mp1videoparse_real_chain):
29526           Fix MPEG video stream parsing. The original plugin had several
29527           issues, including not timestamping streams where the source was
29528           not timestamped (this happens with PTS values in mpeg system
29529           streams, but MPEG video is also a valid stream on its own so
29530           that needs timestamps too). We use the display time code for that
29531           for now. Also, if one incoming buffer contains multiple valid
29532           frames, we push them all on correctly now, including proper EOS
29533           handling. Lastly, several potential segfaults were fixed, and we
29534           properly sync on new sequence/gop headers to include them in next,
29535           not previous frames (since they're header for the next frame, not
29536           the previous). Also see #119206.
29537         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29538         (bpf_from_header):
29539           Move caps setting so we only do it after finding several valid
29540           MPEG-1 fraes sequentially, not right after the first one (which
29541           might be coincidental).
29542         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29543         (mpeg_video_type_find), (mpeg_video_stream_type_find),
29544         (plugin_init):
29545           Add unsynced MPEG video stream typefinding, and change some
29546           probability values so we detect streams rightly. The idea is as
29547           follows: I can have an unsynced system stream which contains
29548           video. In the current code, I would randomly get a type for either
29549           system or video stream type found, because the probabilities are
29550           being calculated rather randomly. I now use fixed values, so we
29551           always prefer system stream if that was found (and that is how it
29552           should be). If no system stream was found, we can still identity                the stream as video-only.
29553
29554 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29555
29556         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29557         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29558           don't write to buffer. Extract data without the need of
29559           __attribute__ ((packed))
29560
29561 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29562
29563         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29564         (mpeg1_sys_type_find):
29565           Fix MPEG-1 stream typefinding.
29566
29567 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29568
29569         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29570           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29571
29572 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29573
29574         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29575         * ext/esd/gstesd.c: (plugin_init):
29576           private debugging, better error reporting
29577
29578 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29579
29580         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29581         (gst_riff_read_init), (gst_riff_read_change_state):
29582         * gst-libs/gst/riff/riff-read.h:
29583           Remove stuff fromold metadata system.
29584
29585 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29586
29587         * ext/ogg/gstoggdemux.c:
29588           Fix wrong file comment.
29589         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29590         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29591           Add metadata reading properly.
29592
29593 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29594
29595         * ext/Makefile.am:
29596           Fix nas DIST_SUBDIRS
29597           Uraeus:
29598           Fix bug where make distcheck doesn't get run on adding stuff to
29599           the build.
29600
29601 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29602
29603         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29604         * ext/divx/gstdivxdec.h:
29605           Fix divx3 ("msmpeg4") playback using divxdec.
29606
29607 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29608
29609         * gst/typefind/gsttypefindfunctions.c:
29610         (mp3_type_frame_length_from_header): fix bug in length computation
29611         (mp3_type_find): improve debugging output
29612
29613 2004-01-23  Julien MOUTTE  <julien@moutte.net>
29614
29615         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29616         (gst_play_set_location), (gst_play_seek_to_time),
29617         (gst_play_set_audio_sink), (gst_play_set_visualization),
29618         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29619         the pipeline from scratch. Visualization is back and switch went out as
29620         i realized it was not possible to use the way i wanted.
29621         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29622         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29623         clearing in state change from READY to NULL. So that one can clean the
29624         X ressources keeping the element.
29625         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29626         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29627         (gst_xvimagesink_colorbalance_set_value),
29628         (gst_xvimagesink_colorbalance_get_value),
29629         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29630         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29631         change from READY to NULL and fixed some stupid bugs in colorbalance
29632         get/set values. Also added the following feature : when nobody tries to
29633         set some values to the colorbalance levels before the xcontext is
29634         grabbed, then when creating channels list from Xv attributes we set the
29635         internal values to the Xv defaults. This way we handle buggy Xv drivers
29636         that set default hue values far from the middle of the range (Thanks
29637         to Jon Trowbridge for pointing that issue).
29638         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29639         colorbalance levels have been set before xcontext is grabbed.
29640
29641 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29642
29643         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29644           Fix the ossmixer case where we shouldn't open /dev/dsp* because
29645           it might block operations (which is bad for a mixer).
29646
29647 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29648
29649         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29650         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29651         (gmip_find_type_pre):
29652         * gst-libs/gst/media-info/media-info-priv.h:
29653         * gst-libs/gst/media-info/media-info.c:
29654         (gst_media_info_instance_init), (gst_media_info_read_idler):
29655         add fakesink to get caps on decoder src pad again
29656         fix callback prototype to match new have_type signal signature
29657
29658 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
29659
29660         * gst/adder/gstadder.c: (gst_adder_link):
29661           fix non-compile and cut-n-paste code
29662
29663 2004-01-21  David Schleef  <ds@schleef.org>
29664
29665         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29666         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29667         (gst_swfdec_init), (gst_swfdec_change_state):
29668         * ext/swfdec/gstswfdec.h:
29669         Fix negotiation.
29670         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29671         (gst_adder_request_new_pad): Fix negotiation.
29672         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29673         Add a fixate function.
29674         * gst/intfloat/gstfloat2int.c:
29675         * gst/intfloat/gstfloat2int.h:
29676         * gst/intfloat/gstint2float.c:
29677         * gst/intfloat/gstint2float.h:
29678         Completely rewrite the negotiation.  Doesn't quite work yet,
29679         due to some buffer-frames problem.
29680
29681 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
29682
29683         * ext/gnomevfs/gstgnomevfssrc.c:
29684         * sys/v4l2/v4l2_calls.h:
29685           fix includes for distcheck
29686
29687 2004-01-21  Christian Schaller <uraeus@gnome.org>
29688
29689         * ext/nas/
29690         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29691         based on earlier patch from Laurent Vivier
29692
29693 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
29694
29695         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29696         Fix wma caps property
29697         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29698         Fix typo (flags1 and flags2)
29699
29700 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29701
29702         * gst-libs/gst/media-info/media-info-priv.c:
29703         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29704         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29705         (gmip_find_stream), (gmip_find_track_metadata),
29706         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29707         (gmip_find_track_format):
29708         * gst-libs/gst/media-info/media-info-priv.h:
29709         * gst-libs/gst/media-info/media-info-test.c: (main):
29710         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29711         (gst_media_info_read_idler), (gst_media_info_read):
29712         * gst-libs/gst/media-info/media-info.h:
29713           register debugging category and use it for debugging
29714
29715 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29716
29717         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29718         (gst_vorbisfile_new_link):
29719           signal streaminfo through tags
29720
29721 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29722
29723         * ext/mplex/gstmplex.cc:
29724         * ext/mplex/gstmplexibitstream.cc:
29725           g++ doesn't like NULL in our i18n/error macros, should be
29726           either (NULL) or ("").
29727
29728 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29729
29730         * sys/dxr3/dxr3audiosink.c:
29731         * sys/dxr3/dxr3init.c:
29732         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29733         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29734           Fix more error error error errors (missing includes here).
29735
29736 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29737
29738         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29739           fix thomas' error errors.
29740
29741 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29742
29743         * ext/mpeg2enc/gstmpeg2enc.cc:
29744           fix error errors.
29745
29746 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
29747
29748         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29749         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29750           Fix for new error system.
29751
29752 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29753
29754         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29755           fix for new error reporting
29756
29757 2004-01-20  David Schleef  <ds@schleef.org>
29758
29759         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
29760         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
29761         (gst_ximagesink_set_xwindow_id): Change to using a framerate
29762         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
29763         and neither is 100+, most likely.
29764         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
29765         (gst_xvimagesink_getcaps): same
29766
29767 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29768
29769         * configure.ac:
29770           Up version requirement to 2.0.3 (not yet released) to avoid symbol
29771           clashes with ffmpeg.
29772
29773 2004-01-20  Julien MOUTTE  <julien@moutte.net>
29774
29775         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
29776         (gst_switch_init): Fixed switch element : proxying link and setting
29777         caps from src to sink on request.
29778
29779 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29780
29781         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29782         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29783         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29784         fix element_error
29785
29786 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29787
29788         * sys/v4l/v4l_calls.h:
29789         * sys/v4l2/v4l2_calls.h:
29790           element_error fixes
29791
29792 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29793
29794         * gst-libs/gst/gst-i18n-plugin.h:
29795           add locale.h
29796           remove config.h inclusion
29797
29798 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29799
29800         * autogen.sh:
29801           adding autopoint invocation
29802         * Makefile.am:
29803         * configure.ac:
29804         * gst-libs/gst/gettext.h:
29805           adding gettext bits
29806         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29807         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29808         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29809         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29810         (gst_gnomevfssink_close_file):
29811         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
29812         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
29813         * gst-libs/gst/gst-i18n-plugin.h:
29814         * gst/avi/gstavi.c: (plugin_init):
29815         * sys/dxr3/dxr3init.c: (plugin_init):
29816         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
29817         * sys/oss/gstossaudio.c: (plugin_init):
29818         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29819         * sys/v4l/gstv4l.c: (plugin_init):
29820         * sys/v4l/v4l_calls.c: (gst_v4l_open):
29821         * sys/v4l2/gstv4l2.c: (plugin_init):
29822         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29823         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
29824         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
29825         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
29826         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
29827         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
29828           make sure locale and translation domain are set
29829           fix translated strings
29830         * po/.cvsignore:
29831         * po/LINGUAS:
29832         * po/Makevars:
29833         * po/POTFILES.in:
29834         * po/nl.po:
29835           put translation files into place
29836         * sys/xvideo/imagetest.c: (main):
29837         * ext/dv/demo-play.c: (main):
29838           fix unnecessary translations
29839
29840 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29841
29842         * ext/sndfile/gstsf.c:
29843         * gst/avi/gstavimux.c:
29844         * ext/audiofile/gstafsink.c:
29845         * ext/audiofile/gstafsrc.c:
29846         * ext/gnomevfs/gstgnomevfssink.c:
29847         * ext/gnomevfs/gstgnomevfssrc.c:
29848         * sys/oss/gstosselement.c:
29849         * sys/v4l/v4l_calls.h:
29850           fix i18n include
29851
29852 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29853
29854         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29855         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29856         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29857         (gst_v4l2_get_output), (gst_v4l2_set_output),
29858         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29859         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29860         (gst_v4l2_set_attribute):
29861         update to new error handling
29862
29863 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29864
29865         * ext/sidplay/gstsiddec.cc:
29866         * gst/modplug/gstmodplug.cc:
29867           parenthese NULL because C++ seems angry about it
29868
29869 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
29870
29871         * gst-libs/gst/gst-i18n-plugin.h:
29872           add skeleton i18n stuff, but needs to be further implemented
29873
29874 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
29875
29876         * examples/gstplay/player.c: (main):
29877         * ext/aalib/gstaasink.c: (gst_aasink_open):
29878         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29879         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29880         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29881         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29882         (gst_afsink_close_file):
29883         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29884         (gst_afsrc_close_file):
29885         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29886         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29887         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29888         * ext/esd/esdmon.c: (gst_esdmon_get):
29889         * ext/esd/esdsink.c: (gst_esdsink_chain):
29890         * ext/faac/gstfaac.c: (gst_faac_chain):
29891         * ext/faad/gstfaad.c: (gst_faad_chain):
29892         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29893         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29894         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29895         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29896         (gst_flacdec_loop):
29897         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29898         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29899         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29900         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29901         (gst_gnomevfssink_close_file):
29902         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29903         (gst_gnomevfssrc_open_file):
29904         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29905         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29906         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29907         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29908         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29909         * ext/mad/gstmad.c: (gst_mad_chain):
29910         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29911         * ext/mpeg2dec/gstmpeg2dec.c:
29912         * ext/mpeg2enc/gstmpeg2enc.cc:
29913         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29914         * ext/mplex/gstmplex.cc:
29915         * ext/mplex/gstmplexibitstream.cc:
29916         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29917         (gst_ogg_demux_push), (gst_ogg_pad_push):
29918         * ext/raw1394/gstdv1394src.c:
29919         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29920         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29921         * ext/sidplay/gstsiddec.cc:
29922         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29923         (gst_sf_loop):
29924         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29925         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29926         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29927         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29928         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29929         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29930         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29931         * gst-libs/gst/Makefile.am:
29932         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29933         (gst_riff_read_element_data), (gst_riff_read_seek),
29934         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29935         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
29936         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29937         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29938         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29939         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29940         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29941         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29942         * gst/goom/gstgoom.c: (gst_goom_chain):
29943         * gst/id3/gstid3types.c: (gst_id3types_loop):
29944         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29945         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29946         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29947         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29948         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29949         (gst_ebml_read_float), (gst_ebml_read_header):
29950         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29951         (gst_matroska_demux_parse_blockgroup):
29952         * gst/modplug/gstmodplug.cc:
29953         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29954         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29955         * gst/oneton/gstoneton.c: (gst_oneton_chain):
29956         * gst/silence/gstsilence.c: (gst_silence_get):
29957         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29958         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29959         * gst/speed/gstspeed.c: (speed_loop):
29960         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29961         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29962         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29963         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29964         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29965         (gst_wavparse_loop):
29966         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29967         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29968         (dxr3audiosink_close):
29969         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29970         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29971         (dxr3videosink_close), (dxr3videosink_write_data):
29972         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29973         * sys/oss/gstosselement.h:
29974         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
29975         (gst_osssink_chain):
29976         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29977         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29978         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29979         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29980         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
29981         (gst_v4l_enable_overlay):
29982         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29983         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29984         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29985         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29986         (gst_v4l_set_audio):
29987         * sys/v4l/v4l_calls.h:
29988         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29989         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29990         (gst_v4lmjpegsink_playback_init),
29991         (gst_v4lmjpegsink_playback_start):
29992         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
29993         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
29994         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
29995         (gst_v4lmjpegsrc_requeue_frame):
29996         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29997         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29998         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29999         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30000         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30001         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30002         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30003         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30004         (gst_v4l2src_capture_stop):
30005         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30006         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30007         (gst_ximagesink_chain):
30008         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30009         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30010         (gst_xvideosink_xwindow_new):
30011         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30012         (gst_xvimagesink_chain):
30013         use new error signal, function and categories
30014
30015 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
30016
30017         * configure.ac:
30018         * ext/Makefile.am:
30019         * ext/musicbrainz/gsttrm.c:
30020         * ext/musicbrainz/gsttrm.h:
30021         * ext/musicbrainz/Makefile.am:
30022         Add a trm plugin
30023
30024 2004-01-18  Julien MOUTTE  <julien@moutte.net>
30025
30026         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30027         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30028         synchronous property for debugging.
30029         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30030         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30031         (gst_xvimagesink_set_property): Moving a pointer declaration to a
30032         smaller block, fixing indent.
30033
30034 2004-01-16  David Schleef  <ds@schleef.org>
30035
30036         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30037         property affects the video stream.
30038         * sys/xvimage/xvimagesink.c:
30039         * sys/xvimage/xvimagesink.h:
30040         Add synchronous property for debugging.  Should probably be
30041         disabled in non-CVS builds.  Make sure that the Xv attribute
30042         exists before we set it (crash!).  Fix a silly float bug that
30043         caused colorbalance to just not work.
30044
30045 2004-01-17  Christian Schaller <Uraeus@gnome.org>
30046
30047         * tools/gst-launch-ext.in - update for new plugins
30048
30049 2004-01-16  David Schleef  <ds@schleef.org>
30050
30051         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30052         already-freed caps.
30053
30054 2994-01-16  Christian Schaller <Uraeus@gnome.org>
30055
30056         * Update spec for new colorspace plugin and libcaca plugin
30057         * Fix compilation of libcaca plugin (clock -> id)
30058
30059 2004-01-16  Julien MOUTTE <julien@moutte.net>
30060
30061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30062         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30063         (gst_xvimagesink_set_xwindow_id),
30064         (gst_xvimagesink_colorbalance_set_value),
30065         (gst_xvimagesink_colorbalance_get_value),
30066         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30067         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30068         correct colorbalance properties. They can now be set when the element
30069         is still in NULL state. The values will be committed to the Xv Port
30070         when xcontext is initialized.
30071         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30072         brightness int values in the GstXvImagesink structure.
30073
30074 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30075
30076         * gst-libs/gst/Makefile.am:
30077           restructure so having local patches works easier.
30078
30079 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30080
30081         * ext/mpeg2enc/Makefile.am:
30082         * ext/mpeg2enc/gstmpeg2enc.cc:
30083         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30084           Bugfix with respect to EOS handling.
30085
30086 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30087
30088         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30089           Link with right caps (else, it segfaults).
30090         * ext/mplex/gstmplexjob.cc:
30091           Fix for slight API change in 1.6.1.93 release of mjpegtools.
30092
30093 2004-01-15  David Schleef  <ds@schleef.org>
30094
30095         * gst-libs/gst/audio/Makefile.am:
30096         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30097         from the template.
30098         * gst-libs/gst/audio/gstaudiofilter.c:
30099         * gst-libs/gst/audio/gstaudiofilter.h:
30100         Add bytes_per_sample and size and n_samples calculation.
30101         * gst-libs/gst/audio/gstaudiofilterexample.c:
30102         Remove, now autogenerated.
30103         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30104         Moved from gstaudiofilterexample, object name changed, code added
30105         so that it actually works.
30106         * gst-libs/gst/audio/make_filter:
30107         Script to build an audiofilter subclass from the template.
30108         * gst/colorspace/Makefile.am:
30109         * gst/colorspace/yuv2yuv.c:
30110         Remove file, since it's GPL, and we don't use it.
30111
30112 2004-01-15  Julien MOUTTE  <julien@moutte.net>
30113
30114         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30115         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30116         them use the buffer free function to test how the buffer was allocated.
30117
30118 2004-01-15  David Schleef  <ds@schleef.org>
30119
30120         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30121         that handles osssink fallback.
30122         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30123         (gst_audio_convert_getcaps):
30124         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30125         Add audio/x-qdm2 for QDM2 audio.
30126         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30127         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30128         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30129         Decrease minimum size to 16x16.
30130         * gst/wavparse/gstwavparse.c:
30131         Convert disabled pad template caps to new caps.
30132         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30133         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30134         (gst_xvimagesink_chain): Throw element error when display cannot
30135         be opened.  Increase minimum framerate to 1.0.  Check the data
30136         free function on a buffer to make sure it is the type we expect
30137         before manipulating it.
30138
30139 2004-01-15  Julien MOUTTE <julien@moutte.net>
30140
30141         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30142         (gst_videobalance_colorbalance_set_value): Implement passthru if
30143         settings are in the middle.
30144         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30145
30146 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30147
30148         * gst/videofilter/Makefile.am:
30149         * gst/volume/Makefile.am:
30150           Since we use videofilter symbols, link to it.
30151
30152 2004-01-15  Julien MOUTTE <julien@moutte.net>
30153
30154         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30155         mixer interface type to HARDWARE.
30156         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30157         type to SOFTWARE.
30158         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30159         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30160         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30161         (gst_volume_interface_init), (gst_volume_list_tracks),
30162         (gst_volume_set_volume), (gst_volume_get_volume),
30163         (gst_volume_set_mute), (gst_volume_mixer_init),
30164         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30165         (volume_init): Implementing mixer interface.
30166         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30167         * sys/oss/gstosselement.c: (gst_osselement_get_type),
30168         (gst_osselement_change_state): Removing some trailing commas in
30169         structures.
30170         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30171         interface type to HARDWARE.
30172         * sys/v4l/gstv4lcolorbalance.c:
30173         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30174         type to HARDWARE.
30175         * sys/v4l2/gstv4l2colorbalance.c:
30176         (gst_v4l2_color_balance_interface_init): Setting colorbalance
30177         interface type to HARDWARE.
30178         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30179         same code than ximagesink for event handling.
30180
30181 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30182
30183         * ext/snapshot/Makefile.am:
30184         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30185         (gst_snapshot_chain):
30186         * ext/snapshot/gstsnapshot.h:
30187           This has to be a joke... Snapshot should be connected to a tee,
30188           colorspace element before it and EOS after that, where the other
30189           src of the tee receives normal data.
30190           The current way is *wrong*.
30191
30192 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30193
30194         * ext/hermes/gsthermescolorspace.c:
30195           Fix another compile error. Same as below.
30196
30197 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30198
30199         * gst/colorspace/gstcolorspace.c:
30200         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30201         (gst_colorspace_i420_to_yv12):
30202           Fix compiling... Didn't test if it actually works.
30203
30204 2004-01-15  David Schleef  <ds@schleef.org>
30205
30206         * configure.ac:
30207         * gst/colorspace/Makefile.am:
30208         * gst/colorspace/gstcolorspace.c:
30209         * gst/colorspace/gstcolorspace.h:
30210         * gst/colorspace/yuv2rgb.c:
30211         * gst/colorspace/yuv2rgb.h:
30212         Duplicate the ext/hermes colorspace plugin, and remove Hermes
30213         code and GPL code.  Fix for new caps negotiation.  Rewrite
30214         much of the format handling code, and some of the conversion
30215         code.  Basically, rewrote almost everything.  This element
30216         handles I420, YV12 to RGB conversions.
30217         * ext/hermes/Makefile.am:
30218         * ext/hermes/gsthermescolorspace.c:
30219         Rename colorspace to hermescolorspace.  Fix negotiation issues.
30220         Remove non-Hermes related code.  This element handles lots of
30221         RGB to RGB conversions, but no YUV.
30222         * ext/hermes/gstcolorspace.c:
30223         * ext/hermes/gstcolorspace.h:
30224         * ext/hermes/rgb2yuv.c:
30225         * ext/hermes/yuv2rgb.c:
30226         * ext/hermes/yuv2rgb.h:
30227         * ext/hermes/yuv2rgb_mmx16.s:
30228         * ext/hermes/yuv2yuv.c:
30229         * ext/hermes/yuv2yuv.h:
30230         Remove old code.
30231
30232 2004-01-14  Colin Walters  <walters@verbum.org>
30233
30234         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30235         they've already been.
30236
30237 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30238
30239         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30240           assume tag mode when pad is not connected
30241
30242 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30243
30244         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30245           Don't update the time of the clock
30246         (gst_alsa_sink_loop):
30247           sync to the clock given to alsasink, not the own clock
30248         * sys/oss/gstosssink.c: (gst_osssink_chain):
30249           sync to the clock
30250         (gst_osssink_change_state):
30251           activate the clock
30252         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30253         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30254           remove bogus code that made DISCONT events unhandled
30255         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30256           explicitly case to double in _set_simple. (fixes 2nd warning in bug
30257           #131502)
30258         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30259         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30260         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30261           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30262           2nd warning in bug #131502)
30263
30264 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30265
30266         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30267         (gst_videobalance_colorbalance_set_value),
30268         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30269         for colorbalance interface implementation.
30270         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30271         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30272         (gst_ximagesink_dispose), (gst_ximagesink_init),
30273         (gst_ximagesink_class_init): Adding DISPLAY property.
30274         * sys/ximage/ximagesink.h: Adding display_name to store display.
30275         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30276         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30277         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30278         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30279         properties (they still need polishing though for gst-launch use : no
30280         xcontext yet, i ll do that tomorrow).
30281         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30282
30283 2004-01-14  Julien MOUTTE  <julien@moutte.net>
30284
30285         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30286         (gst_play_set_location), (gst_play_set_visualization): Preparing
30287         switch integration, adding videobalance in the pipeline.
30288
30289 2004-01-14  Julien MOUTTE <julien@moutte.net>
30290
30291         * gst-libs/gst/colorbalance/colorbalance.c:
30292         (gst_color_balance_class_init): Adding a default type.
30293         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30294         the type.
30295         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30296         (gst_videobalance_dispose), (gst_videobalance_class_init),
30297         (gst_videobalance_init), (gst_videobalance_interface_supported),
30298         (gst_videobalance_interface_init),
30299         (gst_videobalance_colorbalance_list_channels),
30300         (gst_videobalance_colorbalance_set_value),
30301         (gst_videobalance_colorbalance_get_value),
30302         (gst_videobalance_colorbalance_init): Implementing colorbalance
30303         interface.
30304         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30305         list.
30306         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30307         bug which was triggering a BadAccess X error when setting an overlay
30308         before pad was really negotiated.
30309         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30310         Using the colorbalance type macro.
30311
30312 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30313
30314         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30315         (gst_flacenc_chain):
30316           handle tags correctly
30317         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30318           extract ID3v1 tags correctly
30319
30320 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30321
30322         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30323         (plugin_init):
30324           Improve matroska typefinding for odd-typed headers...
30325
30326 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30327
30328         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30329           Fix for using incremental number on padnames.
30330
30331 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30332
30333         * ext/divx/gstdivxdec.c:
30334         * ext/divx/gstdivxenc.c:
30335           Set category to divx4linux instead of divx (too generic).
30336         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30337         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30338         (gst_wavparse_loop), (gst_wavparse_change_state):
30339         * gst/wavparse/gstwavparse.h:
30340           fix parsing of WAV files with non-standard fmt-tag size and fix
30341           skipping of unrecognized chunks... Someone please fix this thing
30342           to use rifflib so all this is automated.
30343         * sys/v4l/Makefile.am:
30344         * sys/v4l2/Makefile.am:
30345           Add X_CFLAGS because we depend on X (for overlay).
30346
30347 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
30348
30349         * ext/mpeg2dec/gstmpeg2dec.c:
30350           Don't issue a timestamp unless we tagged the frame
30351           with a PTS.
30352
30353 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30354
30355         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30356           Query the audio element to get the time, not the clock. We're
30357           interested in the element's time here.
30358
30359 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30360
30361         * ext/aalib/gstaasink.c: (gst_aasink_chain):
30362         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30363         * ext/esd/esdsink.c: (gst_esdsink_chain):
30364         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30365         * ext/mas/massink.c: (gst_massink_chain):
30366         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30367         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30368         (gst_matroska_demux_parse_metadata):
30369         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30370         (gst_mpeg_parse_release_locks):
30371         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30372         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30373         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30374         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30375         (gst_osssink_change_state):
30376         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30377         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30378         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30379         (gst_xvideosink_release_locks):
30380         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30381           use element time.
30382         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30383         (gst_alsa_clock_stop):
30384         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30385         (gst_audio_clock_get_internal_time):
30386           simplify for use with new clocking code.
30387         * testsuite/alsa/Makefile.am:
30388         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30389           fix testsuite for new caps system
30390
30391 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30392
30393         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30394         * ext/flac/gstflacenc.c: (add_one_tag):
30395           length is already host endian, no need to convert. Fixes playback of
30396           tagged files on PPC. (bug #128384)
30397
30398 2004-01-13  Julien MOUTTE <julien@moutte.net>
30399
30400         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30401         colorbalance interface stating if it is hardware based or software
30402         based.
30403         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30404         Removing a trailing comma.
30405         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30406         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30407         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30408         the documentation seems to be wrong on the -1000 to 1000 interval.
30409
30410 2004-01-12  David Schleef  <ds@schleef.org>
30411
30412         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30413         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30414         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30415         Fix negotiation.  Add a bufferalloc function for the sink pad,
30416         and generally clean up some of the code.
30417
30418 2004-01-12  Julien MOUTTE <julien@moutte.net>
30419
30420         * gst-libs/gst/colorbalance/colorbalancechannel.c:
30421         (gst_color_balance_channel_dispose): Adding safety check in dispose
30422         method.
30423         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30424         (gst_xvimagesink_xcontext_clear),
30425         (gst_xvimagesink_interface_supported),
30426         (gst_xvimagesink_colorbalance_list_channels),
30427         (gst_xvimagesink_colorbalance_set_value),
30428         (gst_xvimagesink_colorbalance_get_value),
30429         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30430         Adding colorbalance interface support to set XV parameters such as
30431         HUE, BRIGHTNESS, CONTRAST, SATURATION.
30432         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30433         interface.
30434
30435 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30436
30437         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30438         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30439         (gst_audio_convert_init), (gst_audio_convert_set_property),
30440         (gst_audio_convert_get_property), (gst_audio_convert_chain),
30441         (gst_audio_convert_link),
30442         (gst_audio_convert_buffer_to_default_format),
30443         (gst_audio_convert_buffer_from_default_format), (plugin_init):
30444           - implement _getcaps and use it
30445           - improve linking
30446           - remove float caps since no float conversion is actually done
30447           - remove properties and arguments that were to be used for rate
30448             conversion
30449
30450 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30451
30452         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30453         (gst_audio_structure_set_int):
30454         * gst-libs/gst/audio/audio.h:
30455           add helper functions for _getcaps matching the standard audio
30456           templates
30457
30458 2004-01-12  David Schleef  <ds@schleef.org>
30459
30460         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30461         Test that pad is negotiated before getting its caps.
30462
30463 2004-01-12  Julien MOUTTE <julien@moutte.net>
30464
30465         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30466         analyzing the pads of an element the bin is mostly in READY state so
30467         no caps were negotiated. This helper function needs to work with
30468         _get_caps directly then. I was not freeing them though, added that to
30469         fix the mem leak.
30470
30471 2004-01-12  Julien MOUTTE <julien@moutte.net>
30472
30473         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30474         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30475         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30476         than the free_func.
30477
30478 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
30479
30480         * sys/oss/gstossaudio.c: (plugin_init):
30481         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30482         * sys/oss/gstosselement.h:
30483           make an oss debugging category
30484           make failure more descriptive
30485
30486 2004-01-11  David Schleef  <ds@schleef.org>
30487
30488         * ext/ffmpeg/gstffmpeg.c:
30489         * ext/ffmpeg/gstffmpegcodecmap.c:
30490         * ext/ffmpeg/gstffmpegdec.c:
30491         * ext/ffmpeg/gstffmpegenc.c:
30492         * ext/ffmpeg/gstffmpegprotocol.c:
30493         * ext/gdk_pixbuf/gstgdkanimation.c:
30494         * ext/jpeg/gstjpeg.c:
30495         * ext/libpng/gstpng.c:
30496         * ext/mpeg2dec/perftest.c:
30497         * ext/speex/gstspeex.c:
30498         * gst-libs/gst/resample/dtos.c:
30499         * gst/intfloat/gstintfloatconvert.c:
30500         * gst/oneton/gstoneton.c:
30501         * gst/rtjpeg/RTjpeg.c:
30502         * gst/rtp/gstrtp.c:
30503         * sys/dxr3/dxr3init.c:
30504         * sys/glsink/gstgl_nvimage.c:
30505         * sys/glsink/gstgl_pdrimage.c:
30506         * sys/glsink/gstglsink.c:
30507         * testsuite/gst-lint:
30508         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30509
30510 2004-01-11  David Schleef  <ds@schleef.org>
30511
30512         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30513         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30514         * ext/gdk_pixbuf/gstgdkanimation.c:
30515         (gst_gdk_animation_iter_create_pixbuf):
30516         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30517         (gst_gdk_pixbuf_chain):
30518         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30519         * ext/jack/gstjack.c: (gst_jack_change_state):
30520         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30521         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30522         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30523         * gst/videofilter/gstvideofilter.c:
30524         (gst_videofilter_set_output_size):
30525         Remove all usage of gst_pad_get_caps(), and replace it with
30526         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30527
30528 2004-01-11  David Schleef  <ds@schleef.org>
30529
30530         * configure.ac:
30531         * ext/Makefile.am: Fixes to make ext/libcaca compile.
30532         * ext/divx/gstdivxdec.c:
30533         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30534         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30535         handle images that span multiple buffers.  Now work with both
30536         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30537         * ext/gdk_pixbuf/gstgdkpixbuf.h:
30538         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30539         video/video.h changes
30540         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30541         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30542         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30543         of GstData free function.
30544         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30545         same.
30546
30547 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30548
30549         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30550         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30551         (gst_v4l2element_get_property):
30552         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30553           add norm, channel and frequency properties.
30554         * sys/v4l2/gstv4l2tuner.c:
30555           fixes for tuner interface changes
30556         * sys/v4l2/gstv4l2element.h:
30557         * sys/v4l2/gstv4l2src.c:
30558         * sys/v4l2/gstv4l2src.h:
30559         * sys/v4l2/v4l2src_calls.c:
30560         * sys/v4l2/v4l2src_calls.h:
30561           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30562
30563 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30564
30565         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30566         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30567         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30568         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30569         * gst-libs/gst/tuner/tuner.h:
30570           GObjects aren't const.
30571           Add find_by_name functions.
30572           Add checks to _changed functions.
30573         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30574         (gst_v4l_tuner_get_norm):
30575           Fixes for above.
30576
30577 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30578
30579         * gst-libs/gst/video/video.h:
30580           Fix caps template names to be understandable.
30581           Prefix everything with GST_VIDEO.
30582         * ext/aalib/gstaasink.c:
30583         * ext/divx/gstdivxdec.c:
30584         * ext/divx/gstdivxenc.c:
30585         * ext/gdk_pixbuf/gstgdkpixbuf.c:
30586         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30587         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30588         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30589         * ext/libcaca/gstcacasink.c:
30590         * ext/libpng/gstpngenc.c: (raw_caps_factory):
30591         * ext/snapshot/gstsnapshot.c:
30592         * ext/swfdec/gstswfdec.c:
30593         * ext/xvid/gstxviddec.c:
30594         * ext/xvid/gstxvidenc.c:
30595         * gst/chart/gstchart.c:
30596         * gst/deinterlace/gstdeinterlace.c:
30597         * gst/effectv/gsteffectv.c:
30598         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30599         * gst/goom/gstgoom.c:
30600         * gst/median/gstmedian.c:
30601         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30602         (gst_monoscope_srcconnect), (gst_monoscope_chain):
30603         * gst/overlay/gstoverlay.c:
30604         * gst/smooth/gstsmooth.c:
30605         * gst/smpte/gstsmpte.c:
30606         * gst/synaesthesia/gstsynaesthesia.c:
30607         * gst/videocrop/gstvideocrop.c:
30608         * gst/videodrop/gstvideodrop.c:
30609         * gst/y4m/gsty4mencode.c:
30610         * sys/qcam/gstqcamsrc.c:
30611         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30612           Make them work with new video.h file.
30613         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30614         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30615         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30616         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30617           Make it work with new buffer allocation system.
30618
30619 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30620
30621         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30622         pad_alloc_buffer implementation to use ->srcpad
30623         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30624         pad_alloc_buffer implementation to use ->srcpad
30625         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
30626         pad_alloc_buffer implementation to use ->srcpad
30627         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30628         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30629         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30630         a reference to everything we need.
30631         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30632         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30633         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30634         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30635         a reference to everything we need.
30636         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30637
30638 2004-01-11  David Schleef  <ds@schleef.org>
30639
30640         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30641         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30642         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30643         structure members.
30644         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30645         value during a resize/renegotiation.
30646         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30647         gst_pad_alloc_buffer();
30648         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30649         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30650         structure members.
30651         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30652         Fix for rename of buffer private structure members.
30653         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30654         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30655         Fix for rename of buffer private structure members.
30656         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30657         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30658         Fix for rename of buffer private structure members.
30659
30660 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
30661
30662         reviewed by: David Schleef <ds@schleef.org>
30663
30664         * gst/videofilter/Makefile.am:
30665         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
30666         from the patch by ds to fit in with recent make_filter changes.
30667
30668 2004-01-11  Julien MOUTTE  <julien@moutte.net>
30669
30670         * configure.ac: Adding examples/switch/Makefile
30671         * examples/Makefile.am: Adding examples/switch
30672         * examples/switch/Makefile.am: Adding switcher example.
30673         * examples/switch/switcher.c: (got_eos), (idle_iterate),
30674         (switch_timer), (main): Adding an example demonstrating switch usage
30675         with 2 videotestsrc showing different patterns.
30676         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30677         (gst_switch_init): Fixing switch with the new caps system.
30678
30679 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30680
30681         * gst-libs/gst/video/video.h:
30682           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30683           They should probably be like
30684           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30685
30686 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30687
30688         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30689         (qtdemux_parse_trak):
30690           fix audio chunk size/timestamp calculation
30691
30692 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30693
30694         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30695           fix SVQ3 caps
30696
30697 2004-01-11  Steve Baker  <steve@stevebaker.org>
30698
30699         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30700         (gst_agingtv_base_init), (gst_agingtv_class_init),
30701         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30702         (gst_agingtv_set_property), (gst_agingtv_get_property):
30703         Port agingTV to videofilter
30704
30705 2004-01-09  Julien MOUTTE <julien@moutte.net>
30706
30707         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30708         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30709
30710 2004-01-09  Julien MOUTTE <julien@moutte.net>
30711
30712         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30713         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30714         * gst-libs/gst/xoverlay/xoverlay.c:
30715         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30716         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30717         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30718         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30719         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30720         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30721         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30722         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30723         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30724         interface implementation to handle xid being 0 and fix some bugs
30725         triggered by Benjamin's testcase.
30726         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30727         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30728         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30729         the bufferalloc_function to replace bufferpools, fixing the XOverlay
30730         interface implementation to handle xid being 0 and fix some bugs
30731         triggered by Benjamin's testcase.
30732
30733 2004-01-09  David Schleef  <ds@schleef.org>
30734
30735         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
30736         mouse pointer events.  It works.
30737
30738 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30739
30740         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30741           Use explicit caps - fix capsnego.
30742         * ext/xvid/gstxviddec.c:
30743         * ext/xvid/gstxvidenc.c:
30744           Remove macro-inside-macro which caused compile errors.
30745         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30746           Error out if it's not a RIFF file. Else we error out without
30747           gst_element_error() which is not good...
30748
30749 2004-01-08  David Schleef  <ds@schleef.org>
30750
30751         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30752         Fix pad_link function to handle formats that ffmpeg returns
30753         as multiple caps structures.
30754         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
30755         Only complain if source buffer is _smaller_ than expected.
30756         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
30757         (gst_videoscale_handle_src_event): Resize navigation events
30758         when passing them upstream.
30759         * gst/videotestsrc/gstvideotestsrc.c:
30760         * gst/videotestsrc/gstvideotestsrc.h:
30761         * gst/videotestsrc/videotestsrc.c:
30762         * gst/videotestsrc/videotestsrc.h:
30763         Rewrite many of the buffer painting functions to handle odd
30764         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
30765         been verified to work with my video card.
30766         * testsuite/gst-lint:  Add check for elements calling
30767         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
30768
30769 2004-01-08  David Schleef  <ds@schleef.org>
30770
30771         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
30772         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
30773
30774 2004-01-08  Julien MOUTTE  <julien@moutte.net>
30775
30776         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
30777         configure event is not emiting the desired size signal. That fixes
30778         aspect ratio issues with gst-player.
30779
30780 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30781
30782         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
30783           Fix capsnego.
30784
30785 2004-01-08  Julien MOUTTE  <julien@moutte.net>
30786
30787         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
30788         public method to fire size signal.
30789
30790 2004-01-07  Julien MOUTTE  <julien@moutte.net>
30791
30792         * examples/gstplay/Makefile.am: Adding the interface library.
30793         * gst-libs/gst/play/Makefile.am: Adding the interface library.
30794         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
30795         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
30796         GST_IS_X_OVERLAY before signal connect.
30797         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
30798         Removing the have_video_size signal.
30799         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
30800         and associated public method.
30801         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30802         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
30803         signal.
30804         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
30805         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
30806         signal.
30807         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
30808         Using XOverlay public method to fire size signal.
30809
30810 2004-01-07  David Schleef  <ds@schleef.org>
30811
30812         * gst/videofilter/Makefile.am:
30813         * gst/videofilter/gstvideotemplate.c:
30814         * gst/videofilter/make_filter:
30815         Create gstvideoexample.c in a srcdir!=builddir friendly way.
30816         Convert make_filter to /bin/sh script.
30817
30818 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
30819
30820         * gst/modplug/gstmodplug.cc: fix element description
30821
30822 2004-01-07  Julien MOUTTE  <julien@moutte.net>
30823
30824         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
30825         (got_video_size): Adding some new lines in g_print calls.
30826         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30827         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
30828         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
30829         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
30830         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
30831         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
30832         Complete code review, reverting some stuff i disagree with, adding
30833         some fixes : time synchronization on invalid timestamps, renegotiation
30834         of private window.
30835         * sys/ximage/ximagesink.h:
30836         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
30837         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
30838         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
30839         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
30840         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
30841         (gst_xvimagesink_buffer_new),
30842         (gst_xvimagesink_navigation_send_event),
30843         (gst_xvimagesink_set_xwindow_id),
30844         (gst_xvimagesink_get_desired_size),
30845         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
30846         stuff i disagree with, adding some fixes : Renegotiation of private
30847         window, implementing get_desired_size.
30848
30849 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30850
30851         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
30852         (gst_afsink_handle_event):
30853         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
30854         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
30855         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
30856         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
30857         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
30858           Fix for instantiate-test (see core). Also remove dead code from
30859           jpegenc (which still needs fixing, but that's lower on my TODO
30860           list...).
30861         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
30862           Never return NULL as caps.
30863
30864 2004-01-07  David Schleef  <ds@schleef.org>
30865
30866         * configure.ac:
30867         * ext/Makefile.am:
30868         * ext/librfb/Makefile.am:
30869         * ext/librfb/gstrfbsrc.c:
30870         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
30871         is the protocol used by VNC.
30872
30873 2004-01-07  David Schleef  <ds@schleef.org>
30874
30875         * gst/videofilter/gstvideotemplate.c:
30876         * gst/videofilter/gstvideotemplate.h:
30877         * gst/videofilter/make_filter:
30878         Merge videotemplate header into source file.
30879         * gst/effectv/Makefile.am:
30880         * gst/effectv/gsteffectv.c: (plugin_init):
30881         * gst/effectv/gstwarp.c:
30882         Make warpTV a subclass of videofilter.
30883
30884 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30885
30886         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
30887           Add guard against invalid utf-8 conversions in mad. Just in case.
30888
30889 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30890
30891         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30892           Fix for bug shown by poisoning
30893
30894 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30895
30896         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30897         (gst_v4lmjpegsrc_buffer_free):
30898         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30899         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
30900         (gst_v4lsrc_buffer_free):
30901           Fix for removed bufferpools.
30902
30903 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
30904
30905         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30906         Fix caps negotiation.
30907
30908         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
30909         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
30910         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
30911         (dvdnavsrc_event):
30912         * ext/mpeg2dec/gstmpeg2dec.c:
30913         * gst-libs/gst/navigation/navigation.c:
30914         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
30915         * gst-libs/gst/navigation/navigation.h:
30916         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
30917         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
30918         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
30919         Super-simple first version of mouse and keyboard events. Clicking
30920         on a DVD menu now works, although it may not take you where you
30921         expected.
30922
30923         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30924         * gst/videotestsrc/gstvideotestsrc.c:
30925         (gst_videotestsrc_src_fixate):
30926         These fixate functions were broken - they never actually
30927         fixated :)
30928
30929 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30930
30931         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
30932         (gst_icecastsend_init):
30933           fix for new caps system.
30934         * gst-libs/gst/mixer/mixertrack.h:
30935         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
30936           Add 'master track' flag (for tools like ACME that only want to
30937           change the main volume).
30938
30939 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
30940
30941         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
30942         (gst_xvid_csp_to_caps):
30943         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
30944         * ext/xvid/gstxvidenc.c:
30945         ifdef out ARGB type when it isn't available
30946         in xvidcore 1.0.0beta2
30947
30948 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30949
30950         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30951           When we have received a new SCR right in the first buffer after
30952           a seek (so in the same cycle that handles the discont), we should
30953           handle the buffer instead of unreffing it, else we lose data.
30954
30955 2004-01-06  Iain <iain@prettypeople.org>
30956
30957         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
30958           buffer-frames caps too.
30959
30960         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
30961           caps that we need, don't destroy them all and rebuild them. And when
30962           creating src pads, use the src pad template rather than the sink...
30963
30964 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
30965
30966         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
30967           Add pad to element *after* setting functions such as event handler.
30968           Without this, the scheduler (opt) will link pads, set the event
30969           handler from the default event function (dispatcher in gstpad.c)
30970           and *after* that, we will set our own event function, which will
30971           thus never be used (and thus mpegdemux doesn't handle events).
30972
30973 2004-01-04  David Schleef  <ds@schleef.org>
30974
30975         Fix the fixate functions to handle new prototype:
30976         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
30977         * gst/videotestsrc/gstvideotestsrc.c:
30978         (gst_videotestsrc_src_fixate):
30979         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
30980         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
30981         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
30982
30983 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30984
30985         * sys/ximage/ximagesink.h:
30986         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
30987         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
30988         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
30989         (gst_ximagesink_xoverlay_init):
30990           assorted fixes to make (re)embedding work
30991         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
30992         (gst_ximagesink_get_desired_size):
30993           implement desired size additions to XOverlay
30994
30995 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30996
30997         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
30998         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
30999         (gst_x_overlay_got_desired_size):
31000         * gst-libs/gst/xoverlay/xoverlay.h:
31001           Add optional "desired size" signal and querying.
31002
31003 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31004
31005         * gst/matroska/matroska-demux.c:
31006         (gst_matroska_demux_parse_blockgroup):
31007           Fix EBML-laced block parsing. Diffs are relative to previous
31008           lace, not the first lace. Thanks to Mosu from the Matroska
31009           team for detecting this.
31010         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31011         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31012         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31013         (gst_wavparse_change_state):
31014         * gst/wavparse/gstwavparse.h:
31015           Quickfix for capsnego.
31016
31017 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31018
31019         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31020           Fix indenting, fix pad creation.
31021
31022 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31023
31024         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31025         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31026         (gst_xviddec_sink_link):
31027           Implement src_getcaps() so proper size caps is negotiated.
31028
31029 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31030
31031         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31032           Finish flac decoder on EOS. See #116178.
31033
31034 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31035
31036         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31037         (gst_matroska_demux_add_stream):
31038         * gst/matroska/matroska-ids.h:
31039           Add getcaps() function to fix capsnego...
31040
31041 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31042
31043         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31044         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31045         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31046           Fix more integer overflows. Again, see #126967.
31047
31048 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31049
31050         * ext/mpeg2dec/gstmpeg2dec.c:
31051           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31052           #130416.
31053
31054 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31055
31056         * configure.ac:
31057         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31058         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31059         * ext/xvid/gstxvid.h:
31060         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31061         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31062         (gst_xviddec_src_link), (gst_xviddec_sink_link),
31063         (gst_xviddec_change_state):
31064         * ext/xvid/gstxviddec.h:
31065         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31066         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31067         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31068         (gst_xvidenc_link), (gst_xvidenc_set_property),
31069         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31070         * ext/xvid/gstxvidenc.h:
31071           Update xvid plugin to latest xvid (1.0.0-beta3) API.
31072
31073 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31074
31075         * gst/rtp/rtp-packet.c:
31076           Add sys/types.h include, since OS X doesn't define in_addr_t
31077           in netinet/in.h, like it does on Linux (see #129600).
31078
31079 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
31080
31081         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
31082
31083         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31084           Correct logic of dispose function (see #129306).
31085
31086 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31087
31088         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31089         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31090         (gst_mpeg_parse_init):
31091         * gst/mpegstream/gstmpegparse.h:
31092           Remove clock (which was never provided, i.e. dead code), and
31093           also fix integer overflows at high PTS values (see #126967).
31094
31095 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31096
31097         * ext/flac/gstflacdec.c:
31098         * ext/libpng/gstpngenc.h:
31099         * ext/mikmod/gstmikmod.h:
31100           OS X fixes (see #126628).
31101
31102 2004-01-02  David Schleef  <ds@schleef.org>
31103
31104         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31105         (gst_alsa_src_base_init): Remove bogus "src" request pad.
31106         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31107         (gst_mpeg_parse_class_init): Move pad template registration
31108         to class_init, since the derived class (mpegdemux) doesn't
31109         want them.
31110
31111 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31112
31113         * sys/ximage/Makefile.am:
31114         * sys/xvideo/Makefile.am:
31115         * sys/xvimage/Makefile.am:
31116           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31117           after installation (see #127664).
31118
31119 2004-01-02  David Schleef  <ds@schleef.org>
31120
31121         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31122         (gst_ffmpegenc_connect):  Negotiation fixes.
31123         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31124         Remove inappropriate gst_caps_free().
31125         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31126         Reenable Ronald's internal resize code, since the core handles
31127         it correctly now.
31128
31129 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31130
31131         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31132         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31133         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31134           Fix pad template stuff.
31135
31136 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31137
31138         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31139         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31140           fix signed integer reading/writing.
31141
31142 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31143
31144         * ext/alsa/README:
31145           Remove outdated document
31146
31147 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
31148
31149         * gst/cutter/gstcutter.c: (gst_cutter_init):
31150           src pad was being created twice - oops.
31151
31152 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31153
31154         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31155           Comment out internal resize. It doesn't handle the resulting
31156           XEvent internally, does another try_set_caps() which leads to
31157           a really nice loop.
31158           Real fix will come when Julien and Dave are awake. ;).
31159
31160 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31161
31162         * ext/mpeg2enc/gstmpeg2enc.cc:
31163           fix const/nonconst compile issue.
31164
31165 2004-01-02  David Schleef  <ds@schleef.org>
31166
31167         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31168         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31169         Add fixate function and a check for bad formats.
31170
31171 2004-01-01  David Schleef  <ds@schleef.org>
31172
31173         Negotiation fixes:
31174         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31175         (gst_audiofilter_init):
31176         * gst/debug/efence.c: (gst_efence_init):
31177         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31178         (gst_deinterlace_init):
31179         * gst/volume/gstvolume.c: (volume_connect):
31180
31181 2004-01-01  David Schleef  <ds@schleef.org>
31182
31183         Convert elements to use gst_pad_use_explicit_caps() where
31184         appropriate:
31185         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31186         * ext/audiofile/gstafparse.c: (gst_afparse_init),
31187         (gst_afparse_open_file):
31188         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31189         (gst_afsrc_open_file):
31190         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31191         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31192         (gst_ffmpegdec_chain):
31193         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31194         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31195         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31196         (gst_gdk_pixbuf_chain):
31197         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31198         (gst_jpegdec_chain):
31199         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31200         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31201         (gst_mikmod_negotiate):
31202         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31203         (gst_mpeg2dec_negotiate_format):
31204         * ext/mpeg2enc/gstmpeg2enc.cc:
31205         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31206         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31207         (gst_speexdec_sinkconnect):
31208         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31209         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31210         (gst_vorbisfile_new_link):
31211         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31212         (gst_ac3parse_chain):
31213         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31214         (gst_asf_demux_setup_pad):
31215         * gst/auparse/gstauparse.c: (gst_auparse_init),
31216         (gst_auparse_chain):
31217         * gst/id3/gstid3types.c: (gst_id3types_loop):
31218         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31219         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31220         (mp1videoparse_parse_seq):
31221         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31222         (bpf_from_header):
31223         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31224         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31225         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31226         (gst_mpeg_parse_send_data):
31227         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31228         (gst_qtdemux_add_stream):
31229         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31230         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31231         (gst_wavparse_parse_fmt):
31232
31233 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31234
31235         * configure.ac:
31236           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31237           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31238           it therefore uses the wrong include paths. Too bad... Note
31239           that 1.6.1.93 is not release yet. ;).
31240           Also add a check for mplex, which is now using the lib'ified
31241           mplex from mjpegtools, too.
31242         * ext/ffmpeg/gstffmpegcodecmap.c:
31243           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31244           issues. I don't think ffmpeg handles 3ivx correctly, so this
31245           probably won't work. But it won't hurt either.
31246         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31247         (gst_ffmpegdec_chain):
31248         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31249         (gst_ffmpegenc_chain_audio):
31250           Fix memleak in audio encoding. Close codec if open fails, this
31251           calls the cleanup routines so we can re-use the context.
31252         * ext/mpeg2enc/gstmpeg2enc.cc:
31253           Fix pad template names/types, fix memory issue with getcaps().
31254         * ext/mpeg2enc/gstmpeg2encoder.cc:
31255         * ext/mpeg2enc/gstmpeg2encoder.hh:
31256           Fix compile issue with new caps system (const thingy).
31257         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31258         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31259           We read a first frame right on initing, so that we have a caps
31260           when we init the output. This caps is cached in padprivate and
31261           read as first frame.
31262         * ext/mplex/Makefile.am:
31263         * ext/mplex/gstmplex.cc:
31264         * ext/mplex/gstmplex.h:
31265         * ext/mplex/gstmplex.hh:
31266         * ext/mplex/gstmplexibitstream.cc:
31267         * ext/mplex/gstmplexibitstream.hh:
31268         * ext/mplex/gstmplexjob.cc:
31269         * ext/mplex/gstmplexjob.hh:
31270         * ext/mplex/gstmplexoutputstream.cc:
31271         * ext/mplex/gstmplexoutputstream.hh:
31272           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31273           had issues, didn't do capsnego, supported only a subset of the
31274           mplex features and required a mplex fork in our local CVS. Plus
31275           that it worked agaist a very old mplex version. Rewriting was
31276           faster than updating it.
31277         * gst-libs/ext/Makefile.am:
31278         * gst-libs/ext/mplex/INSTRUCT:
31279         * gst-libs/ext/mplex/Makefile.am:
31280         * gst-libs/ext/mplex/README:
31281         * gst-libs/ext/mplex/TODO:
31282         * gst-libs/ext/mplex/ac3strm_in.cc:
31283         * gst-libs/ext/mplex/audiostrm.hh:
31284         * gst-libs/ext/mplex/audiostrm_out.cc:
31285         * gst-libs/ext/mplex/aunit.hh:
31286         * gst-libs/ext/mplex/bits.cc:
31287         * gst-libs/ext/mplex/bits.hh:
31288         * gst-libs/ext/mplex/buffer.cc:
31289         * gst-libs/ext/mplex/buffer.hh:
31290         * gst-libs/ext/mplex/fastintfns.h:
31291         * gst-libs/ext/mplex/format_codes.h:
31292         * gst-libs/ext/mplex/inputstrm.cc:
31293         * gst-libs/ext/mplex/inputstrm.hh:
31294         * gst-libs/ext/mplex/lpcmstrm_in.cc:
31295         * gst-libs/ext/mplex/mjpeg_logging.cc:
31296         * gst-libs/ext/mplex/mjpeg_logging.h:
31297         * gst-libs/ext/mplex/mjpeg_types.h:
31298         * gst-libs/ext/mplex/mpastrm_in.cc:
31299         * gst-libs/ext/mplex/mpegconsts.cc:
31300         * gst-libs/ext/mplex/mpegconsts.h:
31301         * gst-libs/ext/mplex/mplexconsts.hh:
31302         * gst-libs/ext/mplex/multplex.cc:
31303         * gst-libs/ext/mplex/outputstream.hh:
31304         * gst-libs/ext/mplex/padstrm.cc:
31305         * gst-libs/ext/mplex/padstrm.hh:
31306         * gst-libs/ext/mplex/stillsstream.cc:
31307         * gst-libs/ext/mplex/stillsstream.hh:
31308         * gst-libs/ext/mplex/systems.cc:
31309         * gst-libs/ext/mplex/systems.hh:
31310         * gst-libs/ext/mplex/vector.cc:
31311         * gst-libs/ext/mplex/vector.hh:
31312         * gst-libs/ext/mplex/videostrm.hh:
31313         * gst-libs/ext/mplex/videostrm_in.cc:
31314         * gst-libs/ext/mplex/videostrm_out.cc:
31315         * gst-libs/ext/mplex/yuv4mpeg.cc:
31316         * gst-libs/ext/mplex/yuv4mpeg.h:
31317         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31318         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31319           We don't fork mjpegtools' mplex in our CVS anymore.
31320         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31321         (gst_avi_demux_add_stream):
31322         * gst/avi/gstavidemux.h:
31323           Add getcaps() function for proper caps nego. This makes some
31324           parts of AVI playback/reading work.
31325         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31326           Resize window on new capsnego. This is probably wrong, but
31327           I'm still committing it because with current capsnego, the
31328           first successfull capsnego is auto-fixated, therefore rounded
31329           down to the lowest values in the caps. this results in a 16x16
31330           XWindow that is not reized when real capsnego finishes.
31331           Dave, I see more cases of this, do you know a proper solution?
31332         * tools/gst-launch-ext.in:
31333           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31334
31335 2003-12-31  David Schleef  <ds@schleef.org>
31336
31337         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31338         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31339           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31340
31341 2003-12-30  David Schleef  <ds@schleef.org>
31342
31343         * ext/ffmpeg/gstffmpegcolorspace.c:
31344         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31345         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31346         (gst_ffmpegcsp_chain): Negotiation fixes
31347         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31348         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31349         (gst_audio_convert_link), (gst_audio_convert_channels):
31350         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31351         (gst_audioscale_link), (gst_audioscale_get_buffer),
31352         (gst_audioscale_chain): Negotiation fixes
31353         * gst/audioscale/gstaudioscale.h:
31354         * gst/videofilter/gstvideofilter.c:
31355         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31356         (gst_videofilter_link), (gst_videofilter_init),
31357         (gst_videofilter_set_output_size), (gst_videofilter_setup),
31358         (gst_videofilter_find_format_by_structure):
31359         * gst/videofilter/gstvideofilter.h: Negotiation fixes
31360         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31361         (gst_videoscale_link):
31362         * gst/videoscale/videoscale.c: (videoscale_get_structure),
31363         (videoscale_find_by_structure), (gst_videoscale_setup):
31364         * gst/videoscale/videoscale.h: Negotiation fixes
31365         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31366         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31367         function, restrict resizing to a multiple of 4 (hack until
31368         everyone supports odd sizes correctly).
31369
31370 2003-12-29  Colin Walters  <walters@verbum.org>
31371
31372         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31373         signed.
31374
31375 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
31376
31377         * ext/sndfile/gstsf.c: (gst_sf_loop):
31378           Fix warning about discarding const qualifier
31379
31380 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
31381
31382         * gst/cutter/gstcutter.c:
31383         * gst/videoscale/gstvideoscale.c:
31384         * gst/volenv/gstvolenv.c:
31385         * gst-libs/gst/audio/audio.c:
31386         * gst-libs/gst/video/video.c:
31387           Fix warnings
31388
31389 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31390
31391         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31392           Don't send ALSA debugging to stderr.
31393         * ext/alsa/gstalsa.h:
31394           Use GST_WARNING instead of g_warning when ALSA functions fail.
31395
31396 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31397
31398         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31399           Free XVAdapterInfo correctly.
31400
31401 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31402
31403         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31404         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31405           Make id3tag use correct caps nego.
31406
31407 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
31408
31409         * ext/ivorbis/vorbis.c:
31410         * ext/ivorbis/vorbisenc.h:
31411         * ext/ivorbis/vorbisfile.c:
31412           Modify so that it uses the new caps things
31413
31414 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31415
31416         * testsuite/spider/spider1.c: (main):
31417         * testsuite/spider/spider2.c: (main):
31418         * testsuite/spider/spider3.c: (main):
31419           Make tests compile again. They probably don't work.
31420
31421 2003-12-24  Colin Walters  <walters@verbum.org>
31422
31423         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31424         we can't fixate the caps anymore.
31425
31426 2003-12-23  David Schleef  <ds@schleef.org>
31427
31428         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31429         * sys/oss/gstosssink.c: (gst_osssink_init),
31430         (gst_osssink_sink_fixate): Add fixate function.
31431
31432 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31433
31434         * ext/ffmpeg/gstffmpegcodecmap.c:
31435         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31436         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31437         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31438         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31439         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31440         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31441         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31442           fix typo in RGB masks, and move back to "old" colorspace
31443           capsnego code until whoever wrote this new crap has actually
31444           tested it so that it works.
31445           And yes, this works, keep it that way please.
31446
31447 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31448
31449         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31450         (gst_divxdec_init), (gst_divxdec_negotiate):
31451         * ext/divx/gstdivxdec.h:
31452         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31453         (gst_divxenc_init):
31454         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31455         (gst_faac_sinkconnect), (gst_faac_srcconnect):
31456         * ext/mpeg2enc/gstmpeg2enc.cc:
31457         * ext/mpeg2enc/gstmpeg2encoder.cc:
31458         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31459         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31460         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31461         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31462         (dxr3spusink_init):
31463         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31464         (dxr3videosink_init):
31465           Fix caps breakage after Dave's caps branch merge.
31466
31467 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31468
31469         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31470           Fix for 24bpp display.
31471
31472 2003-12-23  Colin Walters  <walters@verbum.org>
31473
31474         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31475         a GnomeVFSHandle directly.
31476
31477 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31478
31479         * gst/volume/Makefile.am:
31480         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31481         (volume_base_init), (volume_init):
31482           Reenable volume element and fix to work with new caps stuff.
31483           Rhythmbox needs this.
31484
31485 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31486
31487         * gst/qtdemux/qtdemux.c: (plugin_init):
31488           qtdemux requires bytestream
31489
31490 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31491
31492         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31493           Fix remaining caps handling errors due to CAPS merge.
31494
31495 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31496
31497         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31498         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31499         (gst_faad_srcconnect):
31500           Port to new caps system.
31501
31502 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31503
31504         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31505         (got_video_size), (main): using g_print instead of g_message.
31506         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31507         signal which was not emitted because of "switch" element added to the
31508         bin but not connected. (Removing from the bin temporarily)
31509
31510 2003-12-21  Julien MOUTTE  <julien@moutte.net>
31511
31512         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31513         find X development files. I don't understand the previous tests and
31514         they fail on my debian/ppc unstable. This one works.
31515         * examples/gstplay/player.c: (main): Set the pipeline to READY before
31516         exiting.
31517         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31518         (gst_play_set_video_sink), (gst_play_set_audio_sink),
31519         (gst_play_set_visualization): Add some safety checks in set_ methods
31520         and state_change. This was throwing some ugly CRITICAL messages when
31521         pipeline was getting disposed and casts were failing.
31522
31523 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
31524
31525         * configure.ac:
31526           Improve mpeg2enc detection. This is for distributions that do
31527           ship mjpegtools, but without mpeg2enc. Also does object check
31528           for might there ever be ABI incompatibility.
31529         * ext/mpeg2enc/gstmpeg2enc.cc:
31530           Add Andrew as second maintainer (he's helping me), and also add
31531           an error if no caps was set. This happens if I pull before capsnego
31532           and that's something I should solve sometime else.
31533         * gst/matroska/matroska-demux.c:
31534         (gst_matroska_demux_parse_blockgroup):
31535           Fix time parsing.
31536         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31537         (gst_matroska_mux_track_header):
31538           Add caps to templates.
31539         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31540           Add mpegversion=1 to prevent confusion with MPEG/AAC.
31541         * gst/mpegstream/gstmpegdemux.c:
31542           Remove layer since it causes warnings about unfixed caps.
31543         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31544           Fix obvious typo (we error out if caps were set, we should of
31545           course error out if *no* caps were set).
31546         * sys/oss/gstosselement.c: (gst_osselement_convert):
31547           Fix format conversion, we confused bits/bytes.
31548         * sys/oss/gstosselement.h:
31549           Improve documentation for 'bps'.
31550         * sys/v4l/TODO:
31551           Remove stuff about plugins that need removing - this was done
31552           ages ago.
31553         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31554         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31555         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31556         (gst_v4lsrc_src_query):
31557         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31558         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31559           Add get_query_types(), get_formats() and query() functions.
31560
31561 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
31562
31563         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31564           * moved CVS to freedesktop.org