gst/typefind/gsttypefindfunctions.c: Fix for variable not initialized.
[platform/upstream/gstreamer.git] / ChangeLog
1 2006-03-10  Edward Hervey  <edward@fluendo.com>
2
3         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
4         Fix for variable not initialized.
5
6 2006-03-09  Wim Taymans  <wim@fluendo.com>
7
8         * ext/libvisual/visual.c: (gst_visual_get_type),
9         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
10         (gst_visual_chain):
11         Small cleanups.
12
13         * ext/theora/gsttheoradec.h:
14         * ext/theora/theoradec.c: (gst_theora_dec_init),
15         (gst_theora_dec_reset), (_theora_granule_time),
16         (theora_dec_src_convert), (theora_dec_sink_convert),
17         (theora_dec_src_query), (theora_dec_src_event),
18         (theora_dec_sink_event), (theora_handle_comment_packet),
19         (theora_handle_header_packet), (theora_dec_push),
20         (theora_handle_data_packet), (theora_dec_chain),
21         (theora_dec_change_state):
22         Add simple QoS.
23
24 2006-03-09  Wim Taymans  <wim@fluendo.com>
25
26         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
27         (audiocast_register_listener), (gst_gnome_vfs_src_start):
28         Some cleanups.
29
30 2006-03-09  Wim Taymans  <wim@fluendo.com>
31
32         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
33         Don't try to activate NULL chains.
34
35 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
36
37         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
38           Fix invalid memory access to region before peek'd data (#332964).
39
40 2006-03-09  Wim Taymans  <wim@fluendo.com>
41
42         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
43         * ext/pango/gsttextrender.c: (gst_text_render_init):
44         * gst/adder/gstadder.c: (gst_adder_init):
45         Don't leak padtemplates, patch by Christophe Fergeau,
46         closes #333510.
47
48 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
49
50         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
51           Fix invalid memory access: make sure string passed to
52           regexec() is NUL-termianted.
53
54 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
55
56         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
57         (mp3_type_find):
58           Refactor mpeg/audio typefinding to make it more maintainable
59           and easier to fine-tune. Make probing into middle of the file
60           work properly (fixes #333900, also see #152688).
61
62 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
63
64         * gst/typefind/gsttypefindfunctions.c:
65         (utf8_type_find_have_valid_utf8_at_offset):
66           Remove part from previous commit that was bogus:
67           g_utf8_validate() does in fact not accept embedded
68           zeroes, so we don't need to check for those (thanks
69           to Mike for the hint).
70
71 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
72
73         * gst/typefind/gsttypefindfunctions.c:
74         (utf8_type_find_count_embedded_zeroes),
75         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
76           Make plain/text typefinder more conservative: firstly, check
77           for embedded zeroes, which are perfectly valid UTF-8 characters,
78           but also a fairly good sign that something is not a plain text
79           file; secondly, probe into the middle of the file if possible.
80           If we can't probe into the middle, limit the probability value
81           to be returned to TYPE_FIND_POSSIBLE (see #333900).
82
83 2006-03-08  Michael Smith  <msmith@fluendo.com>
84
85         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
86           Make typefind function name for mpeg4 video unique.
87
88 2006-03-08  Wim Taymans  <wim@fluendo.com>
89
90         * ext/libvisual/visual.c: (gst_visual_init),
91         (gst_visual_clear_actors), (gst_visual_dispose),
92         (gst_visual_reset), (gst_visual_src_setcaps),
93         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
94         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
95         (gst_visual_chain), (gst_visual_change_state):
96         Cleanups, post nice errors.
97         Handle sink and src events.
98         Implement simple QoS.
99
100         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
101         Use new basesink methods to configure max-lateness.
102         Small doc update.
103
104         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
105         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
106         Debug statement cleanups.
107
108         * gst/volume/gstvolume.c: (gst_volume_class_init):
109         Simple cleanup.
110
111 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
112
113         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
114         (gst_text_overlay_init), (gst_text_overlay_set_property),
115         (gst_text_overlay_get_property):
116           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
117           as string type properties, but mark them deprecated. Add
118           'halignment' and 'valignment' properties that use enums
119           instead of strings.
120
121 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
122
123         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
124           Allow palettes with less than 256 colours in AVI files
125           (#333488, patch by: Fabrizio Gennari).
126
127 2006-03-07  Julien MOUTTE  <julien@moutte.net>
128
129         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
130         (gst_text_overlay_video_event): Fix wrong EOS handling on text
131         pad. We were releasing the queued text buffer when we should keep
132         it until video pad gets EOS or discard the text buffer because it's
133         too old. That was eating the last subtitle buffer. Add some more
134         debug.
135
136 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
137
138         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
139         (gst_text_overlay_video_chain):
140           Fix invalid memory access (we can't access a buffer after it's been
141           pushed downstream without taking a reference); fix memory leak (if
142           there's no text to render, bail out before allocating stuff).
143
144 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
145
146         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
147         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
148         * ext/pango/gsttextoverlay.h:
149           If input is plain text, escape it before passing it to
150           pango_layout_set_markup().
151
152 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
153
154         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
155           Don't ignore flow return from gst_pad_push().
156
157 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
158
159         * ext/libvisual/visual.c: (gst_visual_getcaps),
160         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
161         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
162         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
163         (gst_vorbisenc_convert_sink):
164         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
165         (gst_audio_duration_from_pad_buffer):
166         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
167         (gst_audio_filter_chain):
168         * gst-libs/gst/rtp/gstbasertpdepayload.c:
169         (gst_base_rtp_depayload_setcaps):
170         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
171         (gst_video_get_size):
172         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
173           Don't leak references returned by gst_pad_get_parent()
174           (#333663, based on patch by: Christophe Fergeau).
175
176 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
177
178         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
179           change location param details
180         * gst/volume/gstvolume.c: (plugin_init):
181           correct plugin description
182
183 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
184
185         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
186         (gst_gnome_vfs_src_check_get_range):
187           Override GstBaseSrc::check_get_range() in order to avoid opening
188           the resource just to check whether we can operate in pull-mode or
189           not - we can predict that pretty well from the URI alone. Should
190           fix problems with last.fm (#331690). (Requires latest core CVS).
191
192 2006-03-06  Wim Taymans  <wim@fluendo.com>
193
194         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
195         (gst_video_sink_class_init):
196         Throw away frames that are later than 20 ms.
197
198 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
199
200         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
201           Set depth on WMA caps (#333545, patch by: Fabrizio Gennari).
202
203 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
204
205         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
206         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
207           put Theora BOS pages before others.  This hardcodes
208           the Ogg/Theora I profile, but hey.
209
210 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
211
212         * ext/ogg/README:
213           updated with some examples
214         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
215         (granulepos_add), (theora_buffer_from_packet):
216         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
217         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
218         (gst_vorbisenc_chain):
219           implement strategy from ext/ogg/README
220         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
221         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
222         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
223         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
224           Fix muxer so that oggz-validate is happy with all streams;
225           except for no eos mark, and the BOS page ordering
226         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
227         (check_buffer_granulepos):
228         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
229           update tests to check for OFFSET being set as requested
230           fixed type of granulepos, it's not a ClockTime
231
232 2006-03-05  Julien MOUTTE  <julien@moutte.net>
233
234         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
235         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
236         Check that the xvimage we are creating has a correct size
237         before returning it. (#314897)
238
239 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
240
241         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
242           Give id3 and ape tag typefinders a rank slightly higher
243           than PRIMARY to ensure they're always run before any of
244           the other typefinders (in particular wav and mp3) (#324186).
245
246 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
247
248         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
249           Add support for '3IVD' fourcc (#333403).
250
251 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
252
253         * configure.ac:
254           Bump requirements to GStreamer CVS for the new error enum.
255
256         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
257           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
258           space left on the device (fixes #333352).
259
260 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
261
262         * win32/vs6:
263           add a project file for libgstvolume
264           update the workspace
265
266 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
267
268         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
269         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
270         (GST_START_TEST):
271           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
272           Set IN_CAPS on header buffers
273
274 2006-03-02  Wim Taymans  <wim@fluendo.com>
275
276         * docs/plugins/Makefile.am:
277         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
278         * docs/plugins/gst-plugins-base-plugins-sections.txt:
279         Add audioresample to docs.
280
281         * gst/audioconvert/gstaudioconvert.c:
282         Add revision date.
283
284         * gst/audioresample/gstaudioresample.c:
285         (gst_audioresample_base_init), (gst_audioresample_class_init),
286         (gst_audioresample_init), (gst_audioresample_dispose),
287         (audioresample_get_unit_size), (audioresample_transform_caps),
288         (resample_set_state_from_caps), (audioresample_transform_size),
289         (audioresample_set_caps), (audioresample_event),
290         (audioresample_do_output), (audioresample_transform),
291         (audioresample_pushthrough), (gst_audioresample_set_property),
292         (gst_audioresample_get_property), (plugin_init):
293         * gst/audioresample/gstaudioresample.h:
294         Added docs.
295         Small code cleanups.
296
297 2006-03-02  Wim Taymans  <wim@fluendo.com>
298
299         * docs/plugins/Makefile.am:
300         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
301         * docs/plugins/gst-plugins-base-plugins-sections.txt:
302         Added videoscale to docs.
303
304         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
305         (gst_video_rate_swap_prev), (gst_video_rate_event),
306         (gst_video_rate_chain):
307         Fix typo in docs.
308
309         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
310         (gst_video_scale_init), (gst_video_scale_prepare_size),
311         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
312         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
313         * gst/videoscale/gstvideoscale.h:
314         Added docs, examples.
315         Some code cleanups.
316         Post errors instead of g_warning.
317
318 2006-03-02  Wim Taymans  <wim@fluendo.com>
319
320         * docs/libs/gst-plugins-base-libs-docs.sgml:
321         * docs/libs/gst-plugins-base-libs-sections.txt:
322         * docs/libs/gst-plugins-base-libs.types:
323         * docs/plugins/Makefile.am:
324         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
325         * docs/plugins/gst-plugins-base-plugins-sections.txt:
326         Added some more docs to libs and plugins.
327
328         * gst-libs/gst/audio/gstringbuffer.c:
329         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
330         * gst-libs/gst/audio/gstringbuffer.h:
331         Document ringbuffer some more.
332
333         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
334         (gst_video_rate_setcaps), (gst_video_rate_reset),
335         (gst_video_rate_init), (gst_video_rate_flush_prev),
336         (gst_video_rate_swap_prev), (gst_video_rate_event),
337         (gst_video_rate_chain), (gst_video_rate_change_state):
338         * gst/videorate/gstvideorate.h:
339         Fix videorate to use segments.
340         Make it work with 0/1 framerates (closes #331903)
341         Handle EOS correctly.
342         Added docs.
343
344 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
345
346         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
347         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
348         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
349           In state change function, first chain up to parent class,
350           then handle downwards state change stuff. Remove some
351           commented out cruft from 0.8 code.
352
353 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
354
355         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
356         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
357         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
358         (gst_ogm_parse_chain):
359           Don't remove/re-add source pad if the new caps are the same as
360           the old caps anyway (#333042). When removing source pad, don't
361           unref it afterwards - we didn't ref it when adding. Sprinkle some
362           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
363           after using gst_pad_get_parent(). Return downstream flow return
364           value in chain function.
365
366 2006-03-02  Wim Taymans  <wim@fluendo.com>
367
368         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
369         * docs/plugins/gst-plugins-base-plugins.args:
370         * docs/plugins/gst-plugins-base-plugins.hierarchy:
371         * docs/plugins/gst-plugins-base-plugins.interfaces:
372         * docs/plugins/gst-plugins-base-plugins.signals:
373         Fix hierarchy, added some more elements to the docs.
374
375         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
376         (gst_ffmpegcsp_get_type):
377         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
378         Fix docs for ffmpegcolorspace.
379
380 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
381
382         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
383         (apetag_type_find), (ape_type_find), (plugin_init):
384           Some typefinding fine-tuning:
385           - rank ID3/APE tags in order of preference via probabilities, so that
386             ID3v2 > APEv2 > APEv1 > ID3v1.
387           - three or four bytes don't really justify MAXIMUM probability,
388             change those to 'very likely' (musepack and monkeysaudio).
389
390 2006-03-01  Wim Taymans  <wim@fluendo.com>
391
392         * docs/plugins/Makefile.am:
393         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
394         * docs/plugins/gst-plugins-base-plugins-sections.txt:
395         * ext/alsa/gstalsamixer.c:
396         * ext/alsa/gstalsamixer.h:
397         * ext/alsa/gstalsamixerelement.c:
398         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
399         * ext/alsa/gstalsamixerelement.h:
400         * ext/alsa/gstalsasink.c:
401         * ext/alsa/gstalsasink.h:
402         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
403         (gst_alsasrc_init):
404         * ext/alsa/gstalsasrc.h:
405         Added alsa docs.
406         Small code cleanups.
407
408 2006-03-01  Wim Taymans  <wim@fluendo.com>
409
410         * ext/theora/Makefile.am:
411         Dist new header too,
412
413 2006-03-01  Wim Taymans  <wim@fluendo.com>
414
415         * docs/plugins/Makefile.am:
416         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
417         * docs/plugins/gst-plugins-base-plugins-sections.txt:
418         * ext/gnomevfs/gstgnomevfssink.h:
419         * ext/gnomevfs/gstgnomevfssrc.h:
420         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
421         * ext/vorbis/vorbisdec.h:
422         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
423         * ext/vorbis/vorbisenc.h:
424         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
425         (vorbis_parse_chain), (vorbis_parse_change_state):
426         * ext/vorbis/vorbisparse.h:
427         * gst/audioconvert/gstaudioconvert.h:
428         * gst/tcp/gsttcpserversink.h:
429         * gst/videotestsrc/gstvideotestsrc.c:
430         * gst/videotestsrc/gstvideotestsrc.h:
431         * gst/volume/gstvolume.c:
432         * gst/volume/gstvolume.h:
433         Fix some more docs.
434         Added docs for vorbisdec and vorbisparse.
435         Fix vorbisparse.
436
437 2006-03-01  Wim Taymans  <wim@fluendo.com>
438
439         * docs/plugins/Makefile.am:
440         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
441         * docs/plugins/gst-plugins-base-plugins-sections.txt:
442         * ext/pango/gstclockoverlay.h:
443         * ext/pango/gsttextoverlay.h:
444         * ext/pango/gsttextrender.h:
445         * ext/pango/gsttimeoverlay.h:
446         * ext/theora/gsttheoradec.h:
447         * ext/theora/gsttheoraenc.h:
448         * ext/theora/theoradec.c:
449         * ext/theora/theoraenc.c:
450         * gst/audioconvert/gstaudioconvert.h:
451         * gst/audiotestsrc/gstaudiotestsrc.h:
452         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
453         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
454         * gst/tcp/gstmultifdsink.h:
455         Updated/added documentation.
456
457         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
458         (gst_text_overlay_halign_get_type),
459         (gst_text_overlay_wrap_mode_get_type),
460         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
461         (gst_text_overlay_init), (gst_text_overlay_set_property),
462         (gst_text_overlay_get_property):
463         Fix up properties to be enums instead of string to make bindings,
464         introspection and automatic GUI creation possible.
465         Add getters for the properties.
466
467 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
468
469         * gst/audiotestsrc/gstaudiotestsrc.c:
470           added defines of M_PI and M_PI_2
471         * gst/ffmpegcolorspace/avcodec.h:
472           removed #include "stdint.h" for win32 as _stdint.h is 
473           autogenerated to win32/common
474         * win32/common/libgstaudio.def:
475         * win32/common/libgsttag.def:
476           added some exports
477         * win32/vs6:
478           some project files bugs corrected
479         * win32/vs7:
480           project files are reset to the default vs7 configuration 
481           (they link to msvcr71.dll using default optimizations)
482           
483 2006-02-28  Wim Taymans  <wim@fluendo.com>
484
485         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
486         Fix some docs.
487
488 2006-02-28  Edward Hervey  <edward@fluendo.com>
489
490         * ext/alsa/gstalsasrc.c:
491         Set proper class on the ElementDetails:
492         Source/Audio instead of Src/Audio/
493
494 2006-02-28  Edward Hervey  <edward@fluendo.com>
495
496         * gst/videoscale/vs_scanline.c:
497         (vs_scanline_resample_nearest_RGBA):
498         Revert optimization in videoscale. It should go in liboil and have
499         an appropriate liboil function.
500
501 2006-02-28  Wim Taymans  <wim@fluendo.com>
502
503         * gst-libs/gst/audio/gstbaseaudiosink.c:
504         (gst_base_audio_sink_provide_clock):
505         Don't try to provide a clock in the NULL state.
506
507 2006-02-28  Wim Taymans  <wim@fluendo.com>
508
509         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
510         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
511         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
512         (gst_ogg_demux_deactivate_current_chain),
513         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
514         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
515         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
516         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
517         Use GstSegment infrastructure to remove duplicated code
518         and handle more seek cases correctly.
519
520 2006-02-28  Wim Taymans  <wim@fluendo.com>
521
522         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
523         (gst_ffmpegcsp_transform):
524         Don't ignore return code from ffmpeg convert function.
525
526         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
527         Split out some long statements to ease debugging.
528
529 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
530
531         * ext/libvisual/visual.c: (gst_visual_init),
532         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
533         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
534         being able to renegotiate the size. Instead, use the negotiation
535         algorithm from the goom plugin to pick an initial output caps. 
536
537         Also, allow theoretical libvisual plugins that might support non-GL 
538         output even if they also do GL.
539
540 2006-02-26  Julien MOUTTE  <julien@moutte.net>
541
542         * ext/libvisual/visual.c: (gst_visual_init),
543         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
544         (plugin_init): Load only non GL plugins. Fix some memleaks and 
545         possible negotiation issues.
546
547 2006-02-25  Julien MOUTTE  <julien@moutte.net>
548
549         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
550
551 2006-02-24  Michael Smith  <msmith@fluendo.com>
552
553         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
554         (cmml_type_find), (plugin_init):
555           Fix CMML type find function to not require a specific minor version
556           of the CMML header.
557
558           Add an MPEG4 video elementary stream typefind function.
559
560 2006-02-04  Michael Smith  <msmith@fluendo.com>
561
562         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
563         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
564         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
565         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
566         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
567         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
568           Annodex support in ogg demuxer. Doesn't do very much without the
569           other annodex patches (to come).
570
571 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
572
573         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
574           Pick up palette for MS video v1 (#327028, patch by:
575           Fabrizio Gennari <fabrizio dot get at tiscali dot it>)
576
577 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
578
579         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
580         (gst_ffmpegcsp_caps_remove_format_info),
581         (gst_ffmpegcsp_get_unit_size):
582           The 'palette_data' field from incoming RGB caps shouldn't be
583           proxied on outgoing YUV caps; also, restrict unit size
584           adjustment in case of paletted data only to the unit that
585           actually has a palette. Fixes #330711.
586
587 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
588
589         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
590         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
591         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
592         (gst_ffmpegcsp_get_unit_size):
593           Plug some memory leaks.
594
595 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
596
597         * sys/ximage/Makefile.am:
598         * sys/xvimage/Makefile.am:
599           Add some _CFLAGS and _LIBS that seem to be missing
600           and/or required for Cygwin (see #317048).
601
602 2006-02-22  Wim Taymans  <wim@fluendo.com>
603
604         * ext/alsa/gstalsasrc.c:
605         Fix description as pointed out by caugier.
606
607 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
608
609         Reviewed by : Edward Hervey  <edward@fluendo.com>
610
611         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
612         (qt_type_find):
613         Better 3gp typefinding (#331526).
614
615 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
616
617         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
618           Don't send EOS event here, the base class will send one for us.
619   
620         * gst/playback/gstplaybasebin.c: (prepare_output):
621           Subpictures without video stream aren't allowed either.
622         
623         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
624           Fix debug statement copy'n'paste-o.
625
626 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
627
628         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
629           Fix issues with mixer keeping state when muting/unmuting
630           and when changing the volume whilst muted (see #331763
631           and #331765).
632
633 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
634
635         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
636         (parse_subrip), (gst_sub_parse_format_autodetect):
637           Set right caps given that we send escaped text. Also,
638           honour <i></i>, <b></b> and <u></u> markers that can be found
639           in .srt files (fixes #310202).
640
641 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
642
643         * gst-libs/gst/audio/mixerutils.c:
644         (element_factory_rank_compare_func):
645           Make order in which elements are tried more determinable.
646
647 2006-02-20  Julien MOUTTE  <julien@moutte.net>
648
649         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
650         (remove_element_chain), (cleanup_decodebin),
651         (gst_decode_bin_change_state): Make decodebin reusable by
652         fixing remove_element_chain first and then introduce a
653         cleaner in state change to ->NULL. (Closes #331678)
654
655 2006-02-19  Wim Taymans  <wim@fluendo.com>
656
657         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
658         use 0666 mask when creating files so umask gets applied
659         correctly. Fixes #331295.
660
661 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
662
663         * gst/subparse/Makefile.am:
664         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
665         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
666         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
667         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
668         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
669         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
670         * gst/subparse/gstssaparse.h:
671         * gst/subparse/gstsubparse.c: (plugin_init):
672           Add very basic parser for SSA subtitle streams (as often
673           found in matroska files).
674
675 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
676
677         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
678           That should be text/x-pango-markup, not text/x-pango-layout.
679
680 2006-02-19  Julien MOUTTE  <julien@moutte.net>
681
682         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
683         Polishing.
684
685 2006-02-19  Julien MOUTTE  <julien@moutte.net>
686
687         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
688         (gst_text_overlay_finalize), (gst_text_overlay_init),
689         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
690         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
691         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
692         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
693         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
694         Fix state change deadlock.
695
696 2006-02-19  Julien MOUTTE  <julien@moutte.net>
697
698         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
699         (gst_text_overlay_finalize), (gst_text_overlay_init),
700         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
701         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
702         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
703         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
704         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
705         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
706         and subtitles files.
707
708 2006-02-19  Julien MOUTTE  <julien@moutte.net>
709
710         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
711         should be considered as row.
712
713 2006-02-19  Julien MOUTTE  <julien@moutte.net>
714
715         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
716         (cb_probe):
717         * gst/playback/gststreaminfo.h: Introduce language informations.
718
719 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
720
721         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
722         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
723         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
724         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
725         Set shared memory segments to be deleted as soon as we have attached,
726         that way they get cleaned up automatically if we crash.
727
728 2006-02-18  Julien MOUTTE  <julien@moutte.net>
729
730         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
731         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
732         functions are called with lock held.
733
734 2006-02-18  Julien MOUTTE  <julien@moutte.net>
735
736         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
737         (gst_text_overlay_finalize), (gst_text_overlay_init),
738         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
739         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
740         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
741         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
742         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
743         (gst_text_overlay_change_state): Refactoring of textoverlay
744         without collectpads. This now supports sparse subtitles coming
745         from a demuxer instead of a sub file. Seeking is still broken 
746         though. Need to discuss with wtay some more on how to handle
747         seeking correctly.
748         * ext/pango/gsttextoverlay.h:
749         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
750         subtitles coming from the demuxer.
751
752 2006-02-17  Wim Taymans  <wim@fluendo.com>
753
754         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
755         (gst_vorbisenc_convert_sink):
756         Use some more scaling functions.
757
758 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
759
760         * ext/cdparanoia/gstcdparanoiasrc.c:
761         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
762         (gst_cd_paranoia_paranoia_callback),
763         (gst_cd_paranoia_src_signal_is_being_watched),
764         (gst_cd_paranoia_src_read_sector):
765         * ext/cdparanoia/gstcdparanoiasrc.h:
766           Add back 'transport-error' and 'uncorrected-error' signals and
767           make them actually be fired when bad stuff happens (#319340).
768
769 2006-02-17  Wim Taymans  <wim@fluendo.com>
770
771         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
772         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
773         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
774         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
775         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
776         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
777         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
778         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
779         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
780         (gst_ring_buffer_clear):
781         Small cleanups.
782         Added some G_LIKELY.
783
784 2006-02-17  Wim Taymans  <wim@fluendo.com>
785
786         * gst-libs/gst/audio/TODO:
787         Update TODO
788
789         * gst-libs/gst/audio/gstbaseaudiosink.c:
790         (gst_base_audio_sink_get_offset):
791         When trying to play samples ASAP and we don't have a
792         previous sample, try to play at position 0 instead of
793         an invalid position.
794
795 2006-02-17  Wim Taymans  <wim@fluendo.com>
796
797         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
798         (gst_alsasink_reset):
799         Also release lock when we get an error in _reset();
800         fix an error message.
801
802 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
803
804         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
805         (gst_alsasink_init), (get_channel_free_structure),
806         (caps_add_channel_configuration), (gst_alsasink_getcaps),
807         (gst_alsasink_close):
808         * ext/alsa/gstalsasink.h:
809           Add support for more than 2 channels (#326720).
810
811 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
812
813         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
814           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
815           with 4 or 6 channels, assume a default channel layout to make things
816           work (not sure there's anything else we can do in those cases).
817
818 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
819
820         * gst-libs/gst/audio/multichannel.c:
821           Minor docs fix.
822
823         * gst-libs/gst/riff/Makefile.am:
824         * gst-libs/gst/riff/riff-ids.h:
825         * gst-libs/gst/riff/riff-media.c:
826         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
827           Add support for WAVEFORMATEX, eg. PCM audio with more than two
828           channels and a channel layout map.
829           
830 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
831
832         Reviewed by Edward Hervey  <edward@fluendo.com>
833
834         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
835         C-level optimization of the RGBA nearest neighbour function.
836         Eventually this might end up in liboil with vectorized versions.
837
838 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
839
840         * gst-libs/gst/audio/multichannel.c:
841         (gst_audio_get_channel_positions):
842           When we have more than 2 channels, but no channel layout is
843           specified in the caps, return some default channel layout
844           to the caller and warn about about a possibly buggy element
845           (could be buggy filtercaps as well of course) (#317038).
846
847 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
848
849         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
850           Add gst-libs/gst/cdda to list of lib search paths.
851
852 2006-02-15  Andy Wingo  <wingo@pobox.com>
853
854         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
855         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
856         to the Lord Jesus that I do not have to touch the ogg muxer ever
857         again.
858
859 2006-02-15  Edward Hervey  <edward@fluendo.com>
860
861         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
862         quicktime movie files can also contain 'uuid' atoms.
863
864 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
865
866         * gst/audioconvert/plugin.c: (plugin_init):
867           Register the GstAudioChannelPosition enum type with the type
868           system in the plugin_init function, so that it is known before
869           any element actually makes use of multi-channel stuff. This is
870           required for example if one wants to be able to deserialise/use
871           a caps string with channel positions before any pipeline has
872           been setup and started, like with gst-launch.
873
874 2006-02-14  Wim Taymans  <wim@fluendo.com>
875
876         * gst-libs/gst/audio/gstringbuffer.c:
877         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
878         (gst_ring_buffer_samples_done), (wait_segment),
879         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
880         Add some compiler G_(UN_)LIKELY help.
881         SIGNAL the ringbuffer waiters when going to PAUSED as well to
882         make sure they can exit their functions. Should fix #330748
883
884 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
885
886         * Makefile.am:
887         * configure.ac:
888         * win32/MANIFEST:
889         * win32/common/_stdint.h:
890           Windows does not have long long; copy the generated _stdint.h
891         * win32/common/interfaces-enumtypes.c:
892         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
893         (gst_mixer_track_flags_get_type),
894         (gst_tuner_channel_flags_get_type):
895         * win32/common/multichannel-enumtypes.c:
896         (gst_audio_channel_position_get_type):
897           update
898
899 2006-02-13  Wim Taymans  <wim@fluendo.com>
900
901         * gst-libs/gst/audio/gstbaseaudiosink.c:
902         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
903         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
904         Always sync on first sample we receive when starting.
905
906 2006-02-13  Wim Taymans  <wim@fluendo.com>
907
908         * gst/playback/gstplaybin.c: (gen_vis_element):
909         Update vis bin docs.
910         Move queue after tee so we don't queue video buffers but
911         audio samples instead. Fixes problems where the video queue
912         is filled and the audio queue empty.
913
914 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
915
916         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
917           No need to push an EOS event here, GstBaseSrc will do that for us
918           when we return FLOW_UNEXPECTED.
919           
920 2006-02-12  Wim Taymans  <wim@fluendo.com>
921
922         * gst-libs/gst/audio/gstbaseaudiosink.c:
923         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
924         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
925         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
926         Use scale functions when possible.
927         Fix error messages.
928         Free clockid when after waiting for EOS.
929         Use G_(UN_)LIKLY when it makes sense.
930         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
931
932 2006-02-12  Edward Hervey  <edward@fluendo.com>
933
934         * gst/playback/gstplaybasebin.c: (prepare_output): 
935         Remove stray semi-colon (fixes #330888).
936
937 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
938
939         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
940         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
941         Fix up the XShm call testing so that we catch errors, and don't
942         cause new ones by attempting to detach from a segment we failed
943         to attach to. Fixes #312439.
944
945 2006-02-10  Edward Hervey  <edward@fluendo.com>
946
947         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
948         Added flv file typefind (video/x-flv).
949
950 2006-02-10  Edward Hervey  <edward@fluendo.com>
951
952         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
953         (gst_riff_create_video_template_caps):
954         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
955         Also added the caps to the default set of riff video caps.
956
957 2006-02-09  Andy Wingo  <wingo@pobox.com>
958
959         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
960         time and the end time of the last packet in the page.
961         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
962         on the pages in our queue, set the duration as well. Reflow a
963         debug statement.
964         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
965         Fixes bad muxing order.
966
967 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
968
969         * gst-libs/gst/rtp/gstbasertppayload.c:
970         (gst_basertppayload_setcaps), (gst_basertppayload_push):
971           update seqnum before setting it on the packet; this makes sure
972           that the timestamp and seqnum properties match after pushing
973           a buffer
974
975 2006-02-09  Andy Wingo  <wingo@pobox.com>
976
977         * gst-libs/gst/audio/gstringbuffer.c
978         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
979         overflow after 13.5 hours of recording. Kapow!
980
981         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
982         the buffer size -- we don't care about underrun/overrun reporting
983         right now, just need to return a useful value.
984
985 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
986
987         * configure.ac:
988           Back to CVS
989
990 === release 0.10.3 ===
991
992 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
993
994         * configure.ac:
995           releasing 0.10.3, "Under Pressure"
996
997 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
998
999         * configure.ac:
1000         Drat. Bump libtool version number for new API.
1001         Prelease 0.10.2.3 (of 0.10.3)
1002
1003 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
1004
1005         * configure.ac:
1006         * win32/common/config.h:
1007         0.10.2.2 prerelease (of 0.10.3).
1008
1009 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
1010
1011         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
1012           Revert Andy's newsegment change pending a more correct
1013           fix.
1014
1015 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
1016
1017         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
1018         (qt_type_find), (plugin_init):
1019           detect more files as 3gp
1020           group and reorder the iso file formats
1021
1022 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1023
1024         * ext/vorbis/vorbis.c: (plugin_init):
1025           Register musicbrainz tags, so apps don't have to.
1026
1027 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1028
1029         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
1030         (gst_tag_to_vorbis_tag):
1031           Make sure we called gst_tag_register_musicbrainz_tags()
1032           before possibly mapping a vorbiscomment string from/to a
1033           musicbrainz tag.
1034
1035 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1036
1037         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
1038           In case we can't find the required number of consecutive
1039           mpeg audio frames to positively identify an MPEG audio
1040           stream, check if there's at least a valid mpeg audio
1041           frame right at offset 0 and if so suggest mpeg/audio
1042           caps with a very low probability (#153004).
1043
1044 2006-02-07  Andy Wingo  <wingo@pobox.com>
1045
1046         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
1047         a TIME segment if we get timestamped buffers. Requires recent
1048         fixes in core to work properly.
1049
1050 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1051
1052         * gst/playback/gstplaybasebin.c: (prepare_output):
1053           Don't print the URI as part of the error message, it
1054           makes error dialogs look rather ugly, especially if
1055           the URI is very long or has characters in it that
1056           need escaping.
1057
1058 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1059
1060         * gst/playback/gstplaybasebin.c: (prepare_output):
1061           Error out if we have only text or subtitles, but nothing
1062           else. Also error out if we have subtitles but no video
1063           stream.
1064
1065 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1066
1067         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
1068           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
1069           Post an error message on the bus when we encounter an
1070           error, which will hopefully be more meaningful than the
1071           'Internal Flow Error' message users get to see if we
1072           just return GST_FLOW_ERROR.
1073
1074 2006-02-07  Andy Wingo  <wingo@pobox.com>
1075
1076         * configure.ac (GST_MAJORMINOR): Update core version req to
1077         0.10.2.2, for the collectpads API addition (#330244).
1078
1079 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
1080
1081         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1082           Return FALSE from plugin_init() when GnomeVFS can't
1083           be initialised for some reason (#328423).
1084
1085 2006-02-06  Julien MOUTTE  <julien@moutte.net>
1086
1087         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
1088         Stick to seeking theory until i find the bug.
1089         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
1090
1091 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
1092
1093         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1094         (theora_enc_finalize), (theora_enc_sink_setcaps),
1095         (theora_set_header_on_caps), (theora_enc_chain),
1096         (theora_enc_change_state):
1097         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
1098           Make theoraenc and the tests leak free. Like, really.
1099
1100 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
1101
1102         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1103         (theora_enc_finalize), (theora_enc_sink_setcaps):
1104           Add a finalize method to ensure we clean up state even if
1105           someone omitted the state change back to NULL.
1106
1107         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
1108         (gst_vorbisenc_chain):
1109           Free some more leaked bits.
1110
1111         * tests/check/pipelines/theoraenc.c: (start_pipeline),
1112         (stop_pipeline):
1113           Wait for state changes to happen if they're ASYNC.
1114
1115           This ought to teach those fancy pants buildbots a lesson.
1116
1117 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
1118
1119         * gst-libs/gst/tag/gstid3tag.c:
1120           Add mapping for ID3 International Standard Recording Code
1121           tag "TSRC"
1122
1123 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
1124
1125         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
1126           Don't leak tag names.
1127
1128 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1129
1130         * docs/libs/gst-plugins-base-libs-docs.sgml:
1131         * docs/libs/gst-plugins-base-libs-sections.txt:
1132         * gst-libs/gst/tag/gstid3tag.c:
1133         * gst-libs/gst/tag/gstvorbistag.c:
1134         * gst-libs/gst/tag/tags.c:
1135           Split libgsttag docs into multiple sections.
1136
1137 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1138
1139         * docs/libs/Makefile.am:
1140         * docs/libs/gst-plugins-base-libs-docs.sgml:
1141         * docs/libs/gst-plugins-base-libs-sections.txt:
1142         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
1143         * gst-libs/gst/tag/gstvorbistag.c:
1144         * gst-libs/gst/tag/tag.h:
1145         * gst-libs/gst/tag/tags.c:
1146           Add libgsttag to the docs.
1147
1148 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1149
1150         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
1151         (gst_text_overlay_init), (gst_text_overlay_src_event),
1152         (gst_text_overlay_collected): Fix clockoverlay.
1153
1154 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1155
1156         * docs/libs/compiling.sgml:
1157           Fix typo: it's pkg-config, not pkg-gconfig
1158
1159         * docs/libs/gst-plugins-base-libs-docs.sgml:
1160         * docs/libs/gst-plugins-base-libs-sections.txt:
1161         * docs/libs/tmpl/gstgconf.sgml:
1162           There is no libgstgconf in 0.10, remove it
1163           from the docs.
1164
1165 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1166
1167         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
1168         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1169         (gst_text_overlay_src_event), (gst_text_overlay_collected):
1170         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1171         (gst_sub_parse_class_init), (gst_sub_parse_init),
1172         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
1173         (parse_mpsub), (parser_state_init), (handle_buffer),
1174         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
1175         * gst/subparse/gstsubparse.h: Introduce seeking code.
1176
1177 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1178
1179         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1180           Add comment about LANGUAGE tag inconsistency (we want
1181           ISO-639-1, but extract three-letter identifiers?)
1182
1183         * po/POTFILES.in:
1184           Add two translatable files.
1185
1186 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1187
1188         * gst-libs/gst/tag/Makefile.am:
1189         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1190         * gst-libs/gst/tag/tag.h:
1191         * gst-libs/gst/tag/tags.c:
1192         (gst_tag_register_musicbrainz_tags_internal),
1193         (gst_tag_register_musicbrainz_tags):
1194           Forward-port some tags stuff from the 0.8 branch. This is
1195           mostly the addition of musicbrainz tags and their mapping
1196           to vorbistags, and a vorbistag mapping of the language tag.
1197
1198 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1199
1200         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
1201         refactoring.
1202
1203 2006-02-04  David Schleef  <ds@schleef.org>
1204
1205         * ext/ogg/gstoggmux.c:
1206         * gst/typefind/gsttypefindfunctions.c:
1207           Add Dirac typefinding and add dirac format to oggmux.
1208
1209 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1210
1211         * gst/playback/gstdecodebin.c: (try_to_link_1):
1212           Don't put essential function call into
1213           g_return_*() macro, otherwise it'll all be
1214           replaced by NOOPs when compiling with
1215           G_DISABLE_CHECKS defined.
1216
1217 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
1218
1219         * ext/ogg/gstoggdemux.c:
1220         * ext/ogg/gstoggparse.c:
1221         * gst/tcp/gsttcpserversink.c:
1222         * sys/v4l/v4lsrc_calls.c:
1223         * sys/v4l/v4lsrc_calls.h:
1224         Just make it compile with --disable-gst-debug.
1225
1226 2006-02-03  Wim Taymans  <wim@fluendo.com>
1227
1228         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
1229         (gst_alsasink_class_init), (gst_alsasink_init),
1230         (gst_alsasink_write), (gst_alsasink_reset):
1231         * ext/alsa/gstalsasink.h:
1232         Add lock to protect alsa calls.
1233         Implement reset to flush samples ASAP, does not work
1234         with dmix though.
1235
1236 2006-02-02  Wim Taymans  <wim@fluendo.com>
1237
1238         * gst-libs/gst/audio/gstbaseaudiosink.c:
1239         (gst_base_audio_sink_provide_clock):
1240         Ugh.. getting late I guess...
1241
1242 2006-02-02  Wim Taymans  <wim@fluendo.com>
1243
1244         * gst-libs/gst/audio/gstbaseaudiosink.c:
1245         (gst_base_audio_sink_provide_clock),
1246         (gst_base_audio_sink_set_property),
1247         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
1248         Don't try to provide a clock when we are not negotiated since
1249         we might not be able to make it run.
1250
1251 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1252
1253         * gst/playback/gstdecodebin.c: (try_to_link_1):
1254           Unlinking two source pads is ... hard.
1255
1256 2006-02-02  Wim Taymans  <wim@fluendo.com>
1257
1258         * gst-libs/gst/audio/TODO:
1259         Updated.
1260
1261         * gst-libs/gst/audio/gstbaseaudiosink.c:
1262         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
1263         On EOS, wait till the last sample is played before posting EOS.
1264
1265 2006-02-01  Philippe Kalaf <burger at speedy dot org>
1266
1267         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1268           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
1269           setting queue_delay to zero. Also avoid thread being started if
1270           queue_delay is zero.
1271
1272 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1273
1274         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
1275           Make test work again by connecting fakesinks to each decoded pad,
1276           which makes the pipeline wait until each fakesink has a buffer
1277           queued before going to PAUSED state. At that point we know the
1278           decodebin pads are negotiated.
1279
1280 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1281
1282         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
1283         (gst_cdda_base_src_handle_event):
1284         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
1285           Pass unhandled queries to the parent class's query function.
1286
1287 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1288
1289         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
1290         (gst_ogg_pad_src_query):
1291         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
1292         * ext/theora/theoradec.c: (theora_dec_src_query),
1293         (theora_dec_sink_query):
1294         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
1295         (vorbis_dec_sink_query):
1296         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
1297         (gst_vorbisenc_sink_query):
1298         * gst/adder/gstadder.c: (gst_adder_query):
1299           Pass unhandled queries upstream instead of just
1300           dropping them (#326447). Also, fix supported
1301           query types list for some elements.
1302
1303 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1304
1305         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
1306         (paris_type_find), (ilbc_type_find), (plugin_init):
1307           Fix typefinding for audio/x-au, audio/x-paris and
1308           audio/iLBC-sh. We cannot use the START_WITH macros
1309           here, because there can only be one typefind factory
1310           with the same name (caps), so the second one would
1311           replace the first one and the first one would never
1312           be called when doing typefinding (see #161712).
1313           
1314
1315 2006-01-31  Wim Taymans  <wim@fluendo.com>
1316
1317         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
1318         (vorbis_handle_header_packet), (vorbis_dec_push),
1319         (vorbis_handle_data_packet):
1320         Use scale_int when we can, add some more scaling.
1321         Check packettype before parsing it.
1322
1323 2006-01-31  Wim Taymans  <wim@fluendo.com>
1324
1325         * ext/theora/theoradec.c: (_theora_granule_time),
1326         (theora_dec_src_convert), (theora_dec_sink_convert):
1327         Call right _scale functions.
1328         Use parameter instead of some other random value.
1329
1330 2006-01-31  Wim Taymans  <wim@fluendo.com>
1331
1332         * ext/theora/theoradec.c: (_theora_granule_frame),
1333         (_theora_granule_time), (_inc_granulepos),
1334         (theora_dec_src_convert), (theora_dec_sink_convert),
1335         (theora_handle_type_packet), (theora_handle_data_packet),
1336         (theora_dec_chain):
1337         Use higher precision timestamps calculation.
1338         Convert some other conversions to _scale.
1339
1340 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
1341
1342         * gst/audiotestsrc/gstaudiotestsrc.c:
1343         (gst_audio_test_src_create_sine_table), (plugin_init):
1344         * gst/volume/gstvolume.c: (plugin_init):
1345           initialize gst_controller before using
1346
1347 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
1348
1349         * tests/check/pipelines/theoraenc.c:
1350         * tests/check/pipelines/vorbisenc.c:
1351         Define constant using G_GINT64_CONSTANT to avoid errors when
1352         passing it around - otherwise it gets truncated to 32 bits.
1353
1354         Fixes failing tests.
1355
1356 2006-01-31  Andy Wingo  <wingo@pobox.com>
1357
1358         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
1359         caps being set doesn't have a framerate value. Basically a stopgap
1360         measure.
1361
1362         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
1363         technically correct enough to put into core though.
1364         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
1365         DURATION. Fixes theoraenc ! oggmux.
1366
1367         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
1368         fraction, not double.
1369
1370 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
1371
1372         * win32/vs7:
1373         add vs7 project files created by Sergey Scobich
1374
1375 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
1376
1377         * win32/vs8:
1378         add vs8 project files created by Sergey Scobich
1379         
1380 2006-01-30  Andy Wingo  <wingo@pobox.com>
1381
1382         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
1383         timestamp + duration, not just timestamp -- ogg pages should be
1384         ordered by stop time. Necessary fix given the change in vorbis
1385         timestamps.
1386
1387         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
1388         (gst_theora_enc_init): Pull the granule shift out of the encoder.
1389         (granulepos_add): New function, handles the messiness of adjusting
1390         granulepos values.
1391         (theora_buffer_from_packet):
1392         (theora_enc_chain):
1393         (theora_enc_sink_event): Use granulepos_add, not +.
1394
1395         * tests/check/pipelines/theoraenc.c
1396         (check_buffer_granulepos_from_starttime): Just check the frame
1397         count, not the actual granulepos -- we can't dictate to the
1398         encoder when it should be placing keyframes.
1399
1400 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1401
1402         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1403           SERVICE_NOT_AVAILABLE happens for example when you're trying to
1404           play an http:// stream from a server that's not serving
1405
1406 2006-01-30  Andy Wingo  <wingo@pobox.com>
1407
1408         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
1409         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
1410         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
1411         available.
1412
1413         * ext/theora/gsttheoraenc.h:
1414         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
1415         although theoraenc was timestamping correctly. Added handling of
1416         streams that start with nonzero timestamps.
1417
1418         * tests/check/Makefile.am:
1419         * tests/check/pipelines/theoraenc.c: New file, basically does same
1420         tests as vorbisenc.
1421
1422         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
1423
1424 2006-01-30  Wim Taymans  <wim@fluendo.com>
1425
1426         * gst-libs/gst/audio/gstaudiosink.c:
1427         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
1428         (gst_audioringbuffer_pause):
1429         Implement pause that does not wait for completion.
1430
1431         * gst-libs/gst/audio/gstbaseaudiosink.c:
1432         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1433         Don't drop buffers when going to PAUSED but perform preroll on
1434         remaining samples now that core base class supports this.
1435
1436         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
1437         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
1438         (gst_ring_buffer_commit):
1439         Pause should not signal waiters.
1440         Implement return value of _commit correctly.
1441
1442 2006-01-30  Andy Wingo  <wingo@pobox.com>
1443
1444         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
1445
1446         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
1447         updated to timestamp from the first sample, not the last.
1448         (gst_vorbisenc_buffer_from_header_packet): New function, takes
1449         special care of granulepos and timestamp for header packets.
1450         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
1451         when the first buffer has a nonzero timestamp.
1452
1453         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
1454         (GstVorbisEnc.subgranule_offset): New members. Take care of the
1455         case when the first audio buffer we get has a nonzero timestamp.
1456         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
1457         properly timestamp vorbis buffers with the time of the first
1458         sample, not the last.
1459         
1460         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
1461         vorbis_granule_time_copy -- now it takes the granule/subgranule
1462         offset into account.
1463
1464         * tests/check/pipelines/vorbisenc.c: New test for correctness of
1465         timestamps, durations, and granulepos on buffers produced by
1466         vorbisenc.
1467
1468 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
1469
1470         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1471         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
1472           Patch from Eric Jonas to support conversions to/from UYVY 
1473           (Fixes: #324626)
1474
1475 2006-01-30  Julien MOUTTE  <julien@moutte.net>
1476
1477         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
1478         (setup_subtitle), (setup_source), (set_active_source):
1479         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
1480         (gen_text_element), (gen_audio_element), (gen_vis_element),
1481         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
1482
1483 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
1484
1485         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
1486         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
1487                 use gst_guint64_to_gdouble to be compliant with vs6
1488         * gst/playback/gstdecodebin.c: (try_to_link_1)
1489         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
1490                 use G_GINT64_CONSTANT for int64 constants
1491         * win32/common/libgstinterfaces.def:
1492                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
1493         * win32/vs6:
1494                 update and add new project files
1495                 
1496 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1497
1498         * Makefile.am:
1499         * win32/MANIFEST:
1500         * win32/common/interfaces-enumtypes.c:
1501         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
1502         (gst_mixer_track_flags_get_type),
1503         (gst_tuner_channel_flags_get_type):
1504         * win32/common/interfaces-enumtypes.h:
1505         * win32/common/multichannel-enumtypes.c:
1506         (gst_audio_channel_position_get_type):
1507         * win32/common/multichannel-enumtypes.h:
1508           add a win32-update rule like in core, and copy over enumtypes files
1509
1510 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1511
1512         * win32/MANIFEST:
1513         * win32/common/config.h:
1514         * win32/common/config.h.in:
1515           add config files just like in core
1516
1517 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
1518
1519         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
1520           Make gcc-4.1 happy (part of #327357).
1521
1522 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1523
1524         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
1525         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
1526         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
1527         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
1528         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
1529         (gst_alsasrc_unprepare), (gst_alsasrc_read):
1530           Update all error messages.  All of them should either use
1531           the default translated message, or actually provide a
1532           translatable string.
1533           Make the string for channel count problems meaningful.
1534
1535 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1536
1537         * sys/v4l/v4l_calls.c: (gst_v4l_open):
1538           check for and throw RESOURCE_BUSY
1539
1540 2006-01-27  David Schleef  <ds@schleef.org>
1541
1542         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
1543           checked in this change -- it requires liboil features not
1544           in 0.3.6.  Revert parts.
1545
1546 2006-01-27  David Schleef  <ds@schleef.org>
1547
1548         * REQUIREMENTS:
1549         * configure.ac: update liboil requirement to 0.3.6
1550         * gst/videoscale/Makefile.am:
1551         * gst/videoscale/vs_scanline.c: liboilify
1552
1553 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
1554
1555         * ext/libvisual/visual.c: (get_buffer):
1556           When pad_alloc returns a GstFlowReturn other
1557           than GST_FLOW_OK, make sure it is passed upstream.
1558
1559 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
1560
1561         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
1562         (gst_alsasink_class_init):
1563           Free the device name string.
1564
1565         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
1566         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
1567         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
1568           Don't remove a pad from the collectpads structure until it
1569           is released - it's a request pad, and may receive data again
1570           if the element gets moved back to PLAYING state.
1571
1572         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1573           Ensure we turn on double buffering on the Xv port, and
1574           set the colour key to something dark and mysterious that
1575           isn't black.
1576
1577 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
1578
1579         * ext/alsa/gstalsaplugin.c: (plugin_init):
1580         * ext/cdparanoia/gstcdparanoiasrc.c:
1581         (gst_cd_paranoia_src_base_init), (plugin_init):
1582         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1583         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
1584           - a library should not call setlocale. see "Libraries" node in
1585             gettext manual
1586           - make sure all plugins that use translation do bindtextdomain
1587             to point to the localedir
1588         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
1589         (setup_sinks), (plugin_init):
1590           all this, and check for NULL when creating sinks
1591
1592 2006-01-27  Julien MOUTTE  <julien@moutte.net>
1593
1594         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
1595         (plugin_init): Make typefinding of subtitles work again.
1596
1597 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
1598
1599         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
1600         (mp3_type_frame_length_from_header), (mp3_type_find),
1601         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
1602         (plugin_init):
1603           Backport a bunch of typefinding fixes from the 0.8 branch.
1604           Also, improve wavpack typefinding: if we can't peek the
1605           entire wavpack block, try to parse the bits we can get and
1606           see if we find what we're looking for in those.
1607
1608 2006-01-26  Julien MOUTTE  <julien@moutte.net>
1609
1610         * sys/ximage/ximagesink.c:
1611         (gst_ximagesink_calculate_pixel_aspect_ratio):
1612         * sys/xvimage/xvimagesink.c:
1613         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
1614         more cases of pixel aspect ratio.
1615
1616 2006-01-26  Edward Hervey  <edward@fluendo.com>
1617
1618         * gst/playback/gstdecodebin.c: (pad_probe):
1619         Also consider the flush-start and tag events as unblockers
1620         for the pad probes.
1621
1622 2006-01-26  Julien MOUTTE  <julien@moutte.net>
1623
1624         * gst/playback/gstplaybin.c: (gst_play_bin_init),
1625         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
1626         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
1627         On the fly visualisation switch, works disabling, enabling as
1628         well but it won't be able to enable vis in a playbin that was
1629         created with no visualisation.
1630
1631 2006-01-25  Wim Taymans  <wim@fluendo.com>
1632
1633         * gst-libs/gst/audio/gstbaseaudiosink.c:
1634         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1635         Undo previous commit that returned WRONG_STATE sooner, it breaks 
1636         resume after pause.
1637
1638 2006-01-25  Wim Taymans  <wim@fluendo.com>
1639
1640         * gst-libs/gst/audio/gstbaseaudiosink.c:
1641         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
1642         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
1643         Improve debugging.
1644         Post error when caps cannot be parsed.
1645         Resync on discontinuity in the stream.
1646         Clip samples to segment boundaries.
1647         return WRONG_STATE sooner when we are flushing.
1648
1649         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
1650         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
1651         Make audiosrc operate in TIME.
1652         Set TIMESTAMP and DURATION on buffers.
1653
1654 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
1655
1656         * tests/examples/seek/seek.c: (main):
1657           Output tag messages as well.
1658
1659 2006-01-23  Edward Hervey  <edward@fluendo.com>
1660
1661         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
1662         (free_pad_probes), (remove_fakesink), (pad_probe),
1663         (close_pad_link), (gst_decode_bin_change_state):
1664         Replace GstPadBlockCallback with pad probes that detect
1665         first buffer AND eos before removing fakesink.
1666         Fixes hang with demuxers doing EOS while pre-rolling.
1667         Solves #328279
1668
1669 2006-01-23  Andy Wingo  <wingo@pobox.com>
1670
1671         * ext/alsa/gstalsasink.c:
1672         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1673         (gst_base_rtp_depayload_setcaps),
1674         (gst_base_rtp_depayload_add_to_queue),
1675         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
1676         
1677         Patch by: Jens Granseuer <jensgr at gmx dot net>
1678
1679 2006-01-22  Julien MOUTTE  <julien@moutte.net>
1680
1681         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
1682         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1683         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
1684         frames. We might get a frame destroyed after changing state to
1685         NULL, adding a safety check on xcontext.
1686
1687 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
1688
1689         * gst-libs/gst/interfaces/xoverlay.c:
1690           Fix prepare-xwindow-id code example in the docs - we need to
1691           ignore all messages that aren't element messages as well.
1692           
1693 2006-01-21  Julien MOUTTE  <julien@moutte.net>
1694
1695         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
1696           I think one day i'll completely undestand how caps negotiation
1697           is supposed to work. This refactoring handles buffer_alloc
1698           called with caps we can't handle. We definitely don't want a
1699           set_caps with those caps, so we define and allocate a buffer
1700           we would like to receive.
1701
1702 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
1703
1704         * gst/playback/gstplaybasebin.c: (setup_source):
1705           Free iterator when done.
1706
1707 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
1708
1709         * gst-libs/gst/audio/gstbaseaudiosink.c:
1710         (gst_base_audio_sink_render):
1711           Fix playback of non-synchronised streams by assuming a rate
1712           of 1.0 instead of a random one.
1713
1714           Makes this work again:
1715
1716           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
1717           endianness=(int)4321, signed=(boolean)true, width=(int)16,
1718           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
1719           audioresample ! alsasink
1720
1721 === release 0.10.2 ===
1722
1723 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
1724
1725         * configure.ac:
1726           releasing 0.10.2, "Then the devil is six"
1727
1728 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
1729
1730         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
1731         * gst/playback/gststreamselector.c:
1732         (gst_stream_selector_set_property):
1733           Comment out broken code that connects to the state-changed signal.
1734           At this point, changing current stream selection is broken, but 
1735           stuff like gst-launch playbin current-audio=1 works and filters
1736           to the chosen stream.
1737
1738 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
1739
1740         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
1741           Fix #327216 (null dereference in vorbisdec)
1742
1743 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
1744
1745         * ext/theora/theoradec.c: (theora_handle_comment_packet):
1746           Post taglist actually on bus instead of just freeing it
1747           (fixes #327114 and totem bug #327080).
1748
1749         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
1750           Use gst_element_found_tags_for_pad(), so that the tags
1751           are sent downstream as an event as well.
1752
1753 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
1754
1755         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1756         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
1757         (gst_ximagesink_buffer_alloc):
1758         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
1759         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
1760         (gst_xvimagesink_buffer_alloc):
1761           move all regularly occurring messages to GST_LOG level
1762           add some more object logs
1763
1764 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
1765
1766         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
1767           fix a silly segfault
1768
1769 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
1770
1771         * docs/libs/gst-plugins-base-libs-docs.sgml:
1772         * docs/libs/gst-plugins-base-libs-sections.txt:
1773         * gst-libs/gst/audio/mixerutils.c:
1774         * gst-libs/gst/audio/mixerutils.h:
1775           Add docs for mixerutils stuff.
1776
1777 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
1778
1779         * gst/playback/gstplaybasebin.c: (setup_source):
1780           Fix playback for sources that emit raw audio or
1781           raw video streams (e.g.: cd audio sources) (#325984).
1782
1783 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1784
1785         * gst-libs/gst/audio/mixerutils.c:
1786         (gst_audio_mixer_filter_do_filter):
1787           actually save the element we create
1788
1789 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
1790
1791         * gst-libs/gst/cdda/gstcddabasesrc.c:
1792         (gst_cdda_base_src_handle_track_seek):
1793           No need to post a tag message on the bus when seeking
1794           within the same track, only post it when the current
1795           track changes.
1796
1797 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
1798
1799         * gst/playback/gstplaybasebin.c: (group_destroy),
1800         (probe_triggered), (new_decoded_pad), (mute_group_type),
1801         (set_active_source):
1802         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
1803         * gst/playback/gststreamselector.c:
1804         (gst_stream_selector_base_init),
1805         (gst_stream_selector_set_property),
1806         (gst_stream_selector_request_new_pad):
1807           Reenable stream selection. These mechanisms need a complete overhaul
1808           in the face of 0.8->0.10 changes though.
1809
1810 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
1811
1812         * ext/ogg/gstoggdemux.c:
1813           Change the pad template to src_%d to match the pads that 
1814           are created from it. decodebin needs this information in order
1815           to decide that oggdemux is capable of producing multiple pads
1816           (and hence needs queues inserted).
1817
1818         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
1819         (gst_ogg_mux_collected):
1820           Make debug output more useful by using GST_PTR_FORMAT.
1821
1822 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1823
1824         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
1825
1826         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
1827           Set depth and width for alaw/mulaw (fixes #326601).
1828
1829 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
1830
1831         * tests/icles/Makefile.am:
1832           don't build the tests if we don't have the libs
1833
1834 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
1835
1836         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
1837         (gst_cd_paranoia_paranoia_callback):
1838           Don't try to free NULL pointers.
1839
1840 2006-01-10  Edward Hervey  <edward@fluendo.com>
1841
1842         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
1843         (gst_audio_rate_change_state), (plugin_init):
1844         Add debugging category.
1845         Fix type issues.
1846         Add case for incoming buffers without valid offset/offset_end.
1847
1848 2006-01-10  Michael Smith  <msmith@fluendo.com>
1849
1850         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
1851           Don't leak GCond in audio sources.
1852
1853 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
1854
1855         * gst/playback/gstplaybin.c: (gen_audio_element):
1856           Don't leak an autoaudiosink/alsasink when we generate
1857           a new audio element. (old code, I guess)
1858
1859 2006-01-10  Michael Smith  <msmith@fluendo.com>
1860
1861         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
1862           Support float audio in audiorate.
1863           Use width rather than depth for selecting sample width.
1864
1865 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
1866
1867         * gst/videotestsrc/videotestsrc.h:
1868           Use GLib types here (that way we don't have to include the
1869           generated _stdint.h header, which makes life easier for win32
1870           folks that don't use autotools for the build) (#325990, patch
1871           by: Sergey Scobich).
1872
1873 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
1874
1875         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
1876         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
1877         (gst_ring_buffer_pause), (wait_segment):
1878         * gst-libs/gst/audio/gstringbuffer.h:
1879           Name (private) union, makes Forte compiler happy (this time
1880           for real) (#324900).
1881
1882 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1883
1884         * gst-libs/gst/audio/Makefile.am:
1885           Link against libgstinterfaces, needed for mixer
1886           and property probe stuff.
1887
1888 2006-01-09  Edward Hervey  <edward@fluendo.com>
1889
1890         * gst-libs/gst/Makefile.am:
1891
1892 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
1893
1894         * gst-libs/gst/audio/Makefile.am:
1895         * gst-libs/gst/audio/mixerutils.c:
1896         (gst_audio_mixer_filter_do_filter),
1897         (gst_audio_mixer_filter_check_element),
1898         (gst_audio_mixer_filter_probe_feature),
1899         (element_factory_rank_compare_func),
1900         (gst_audio_default_registry_mixer_filter):
1901         * gst-libs/gst/audio/mixerutils.h:
1902           Add gst_audio_default_registry_mixer_filter() utility
1903           function.
1904
1905 2006-01-03  Michael Smith  <msmith@fluendo.com>
1906
1907         * gst/audioresample/resample.h:
1908           As before, but for o_buf
1909
1910 2006-01-03  Michael Smith  <msmith@fluendo.com>
1911
1912         * gst/audioresample/resample.h:
1913           Declare struct _ResampleState.buffer as unsigned char *, not void *,
1914           since we do arithmetic on it.
1915
1916 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
1917
1918         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
1919         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
1920         (gst_ring_buffer_pause), (wait_segment):
1921         * gst-libs/gst/audio/gstringbuffer.h:
1922           Sun's Forte compiler doesn't seem to like anonymous structs,
1923           so use same setup as in GstBaseSrc (fixes #324900).
1924
1925 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
1926
1927         * configure.ac:
1928         * gst/volume/Makefile.am:
1929         * gst/volume/demo.c:
1930           move old example to tests/examples/volume/volune.c
1931         * tests/examples/Makefile.am:
1932         * tests/examples/seek/seek.c: (main):
1933           change window-close event from "delete-event" to "destroy"
1934         * tests/examples/volume/Makefile.am:
1935         * tests/examples/volume/volume.c: (value_changed_callback),
1936         (setup_gui), (message_received), (eos_message_received), (main):
1937           fix event handling and bus usage
1938
1939 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
1940
1941         * gst/audiotestsrc/gstaudiotestsrc.c:
1942         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
1943         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
1944         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
1945         (gst_audio_test_src_create_square),
1946         (gst_audio_test_src_create_saw),
1947         (gst_audio_test_src_create_triangle),
1948         (gst_audio_test_src_create_silence),
1949         (gst_audio_test_src_create_white_noise),
1950         (gst_audio_test_src_create_pink_noise),
1951         (gst_audio_test_src_init_sine_table),
1952         (gst_audio_test_src_create_sine_table),
1953         (gst_audio_test_src_change_wave),
1954         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
1955         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
1956         * gst/audiotestsrc/gstaudiotestsrc.h:
1957           update to basesrc changes, implement segmented seeking and eos
1958           handling, add a 'sine-tab' waveform for performance critical playback
1959
1960 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
1961
1962         * po/POTFILES.in:
1963           ... and this time the other modified file that I missed last time.
1964
1965 2005-12-29  Michael Smith  <msmith@fluendo.com>
1966
1967         * gst/playback/gstdecodebin.c: (new_pad):
1968           Fix non-C89 variable declaration not at the start of a block. Should
1969           help some compilers.
1970
1971 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
1972
1973         * tests/check/Makefile.am:
1974           And now fix 'make distcheck' (builddir != srcdir)
1975
1976 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
1977
1978         * configure.ac:
1979         * ext/cdparanoia/Makefile.am:
1980         * ext/cdparanoia/gstcdparanoia.c:
1981         * ext/cdparanoia/gstcdparanoia.h:
1982         * ext/cdparanoia/gstcdparanoiasrc.c:
1983         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
1984         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
1985         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
1986         (gst_cd_paranoia_paranoia_callback),
1987         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
1988         (gst_cd_paranoia_src_set_property),
1989         (gst_cd_paranoia_src_get_property), (plugin_init):
1990         * ext/cdparanoia/gstcdparanoiasrc.h:
1991           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
1992           plugin again (there are still fixes required to playbin to make
1993           cdda:// uris work there).
1994
1995 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
1996
1997         * tests/check/Makefile.am:
1998           Fix test case compilation.
1999
2000 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2001
2002         * gst-libs/gst/cdda/gstcddabasesrc.c:
2003         (gst_cdda_base_src_update_duration),
2004         (gst_cdda_base_src_calculate_cddb_id):
2005           An integer is not a string. Fix access to uninitialised variable.
2006
2007         * tests/check/Makefile.am:
2008           Add cddabasesrc unit test; also actually enable the vorbis test.
2009
2010         * tests/check/generic/states.c:
2011           Blacklist new cd audio elements as well.
2012
2013         * tests/check/libs/cddabasesrc.c:
2014           Unit test for GstCddaBaseSrc (discid calculation mostly).
2015
2016 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2017
2018         * docs/libs/Makefile.am:
2019         * docs/libs/gst-plugins-base-libs-docs.sgml:
2020         * docs/libs/gst-plugins-base-libs-sections.txt:
2021         * docs/libs/gst-plugins-base-libs.types:
2022           Add docs for libgstcdda/GstCddaBaseSrc.
2023
2024         * gst-libs/gst/interfaces/mixertrack.h:
2025           Do one struct member per line with a semicolon at the end, that way
2026           even gtk-doc might parse it without complaining.
2027
2028 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2029
2030         * configure.ac:
2031         * gst-libs/gst/Makefile.am:
2032         * gst-libs/gst/cdda/Makefile.am:
2033         * gst-libs/gst/cdda/base64.c:
2034         * gst-libs/gst/cdda/base64.h:
2035         * gst-libs/gst/cdda/gstcddabasesrc.c:
2036         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
2037         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
2038         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
2039         (gst_cdda_base_src_get_property),
2040         (gst_cdda_base_src_get_track_from_sector),
2041         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
2042         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
2043         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
2044         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
2045         (gst_cdda_base_src_uri_get_protocols),
2046         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
2047         (gst_cdda_base_src_uri_handler_init),
2048         (gst_cdda_base_src_setup_interfaces),
2049         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
2050         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
2051         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
2052         (gst_cdda_base_src_add_tags),
2053         (gst_cdda_base_src_add_index_associations),
2054         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
2055         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
2056         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
2057         (gst_cdda_base_src_create):
2058         * gst-libs/gst/cdda/gstcddabasesrc.h:
2059         * gst-libs/gst/cdda/sha1.c:
2060         * gst-libs/gst/cdda/sha1.h:
2061           Add new libgstcdda with GstCddaBaseSrc class.
2062
2063 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2064
2065         * ext/gnomevfs/gstgnomevfssink.h:
2066           Use GstBaseSinkClass as parent_class member for class struct, not
2067           GstBaseSink.
2068
2069 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2070
2071         * gst/videotestsrc/gstvideotestsrc.c:
2072         (gst_video_test_src_class_init), (gst_video_test_src_start):
2073           Add start method to reset running time and number of frames sent
2074           when starting up (fixes #324696; patch by: Michal Benes).
2075
2076 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2077
2078         * docs/plugins/Makefile.am:
2079         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2080         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2081         * docs/plugins/gst-plugins-base-plugins.args:
2082         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2083         * docs/plugins/gst-plugins-base-plugins.signals:
2084           Add docs stuff for gnomevfssrc and gnomevfssink.
2085
2086         * ext/gnomevfs/gstgnomevfssrc.c:
2087           Fix example pipeline in gtk-doc blurb.
2088
2089 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2090
2091         * ext/gnomevfs/Makefile.am:
2092         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
2093         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
2094         (gst_gnome_vfs_handle_get_type), (plugin_init):
2095         * ext/gnomevfs/gstgnomevfs.h:
2096         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
2097         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
2098         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
2099         (gst_gnome_vfs_sink_set_property),
2100         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
2101         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
2102         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
2103         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
2104         (gst_gnome_vfs_sink_uri_get_type),
2105         (gst_gnome_vfs_sink_uri_get_protocols),
2106         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
2107         (gst_gnome_vfs_sink_uri_handler_init):
2108         * ext/gnomevfs/gstgnomevfssink.h:
2109           Port gnomevfssink; add gtk-doc blurb.
2110
2111         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
2112         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
2113         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
2114         (gst_gnome_vfs_src_uri_get_type),
2115         (gst_gnome_vfs_src_uri_get_protocols),
2116         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
2117         (gst_gnome_vfs_src_uri_handler_init),
2118         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
2119         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
2120         (gst_gnome_vfs_src_send_additional_headers_callback),
2121         (gst_gnome_vfs_src_received_headers_callback),
2122         (gst_gnome_vfs_src_push_callbacks),
2123         (gst_gnome_vfs_src_pop_callbacks),
2124         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
2125         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
2126         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
2127         * ext/gnomevfs/gstgnomevfssrc.h:
2128           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
2129           file; add gtk-doc blurb with example pipelines.
2130
2131 === release 0.10.1 ===
2132
2133 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
2134
2135         * configure.ac:
2136           releasing 0.10.1, "Dobro Dedek"
2137
2138 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
2139
2140         * gst/typefind/gsttypefindfunctions.c:
2141         iLBC30 and iLBC20 added to typefind.
2142
2143 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
2144
2145         * gst-libs/gst/audio/gstbaseaudiosink.c:
2146         (gst_base_audio_sink_class_init):
2147         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2148         (gst_base_audio_src_class_init):
2149           update strings, values are in microseconds
2150           change the default sink buffer time to something that is smaller
2151           (to help software volume mixing have a slightly lower delay) but
2152           still be acceptable on Wim's laptop
2153
2154 2005-12-20  Edward Hervey  <edward@fluendo.com>
2155
2156         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
2157         Made a quack, forgot to add DUCK to the riff video template.
2158
2159 2005-12-19  Edward Hervey  <edward@fluendo.com>
2160
2161         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
2162         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
2163         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
2164         (gst_ogm_parse_chain):
2165         Make sure pads are initialized correctly.
2166         * gst-libs/gst/riff/riff-ids.h:
2167         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2168         (gst_riff_create_video_template_caps):
2169         Add a whole bunch of FOURCC <=> MimeType.
2170         Extend the riff video pad template to support the newly added fourcc.
2171
2172 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
2173
2174         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
2175         (gst_ogg_demux_activate_chain):
2176           Extra debug output when activating/deactivating chains.
2177
2178         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2179         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
2180         (unlinked):
2181           Remove a queue from our list when it becomes unlinked.
2182           Don't add queues to elements in class 'Demux' if they
2183           can only produce one pad 
2184
2185 2005-12-18  Julien MOUTTE  <julien@moutte.net>
2186
2187         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
2188         (gst_video_sink_get_type): Add a debug category.
2189
2190 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
2191
2192         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2193         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
2194           Handle downstream newsegment by sending our own newsegment before the
2195           next buffer to be released. (#323900)
2196
2197 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
2198
2199         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2200         (gst_base_rtp_depayload_set_gst_timestamp):
2201           add queue delay to new segment as well (as opposed to just the first
2202           buffer). (bug #322347)
2203
2204 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
2205
2206         * ext/libvisual/visual.c: (make_valid_name):
2207           change some char* into char[]
2208         * gst/audiotestsrc/gstaudiotestsrc.c:
2209         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
2210         (gst_audio_test_src_create):
2211         * gst/audiotestsrc/gstaudiotestsrc.h:
2212           prepare to handle EOS and SEGMENT_DONE
2213
2214 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2215
2216         * tests/check/generic/states.c: (GST_START_TEST):
2217           Blacklist cdparanoia element in state test.
2218
2219 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2220
2221         * gst/tcp/gsttcp.c:
2222         * gst/tcp/gsttcpclientsink.c:
2223         * gst/tcp/gsttcpserversink.c:
2224         * gst/tcp/gsttcpserversrc.c:
2225           Add <string.h> includes for memset and FD_ZERO (fixes #323878;
2226           patch by: Benjamin Pineau).
2227
2228 2005-12-15  Michael Smith  <msmith@fluendo.com>
2229
2230         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
2231         (gst_video_rate_chain):
2232           Fix timestamping for videorate when the first buffer it sees has a
2233           non-zero timestamp. Fix some misleading debug output.
2234
2235 2005-12-15  Michael Smith  <msmith@fluendo.com>
2236
2237         * gst/audioresample/gstaudioresample.c:
2238           Don't leak all input buffers to audioresample.
2239
2240 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2241
2242         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
2243           Don't operate on empty text buffers. Strip newlines and
2244           tabs only from the end of the text, but leave them intact
2245           in the middle. Fix typo in gtk-doc description.
2246
2247 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2248
2249         * gst/playback/gstplaybasebin.c:
2250         * gst/playback/gstplaybin.c: (handoff):
2251           Make sure the video frame buffer we return to apps via the
2252           "frame" property always has caps set on it. Modify
2253           _gst_gvalue_set_object() macro to handle NULL objects
2254           gracefully too.
2255
2256 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
2257
2258         * gst/audiotestsrc/gstaudiotestsrc.c:
2259         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
2260         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
2261         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
2262         (gst_audio_test_src_create):
2263         * gst/audiotestsrc/gstaudiotestsrc.h:
2264         Adjust to some recent api changes and add wtays new cool seeking
2265         capabillities
2266
2267 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
2268
2269         * ext/alsa/Makefile.am:
2270         * ext/alsa/gstalsadeviceprobe.c:
2271         * ext/alsa/gstalsadeviceprobe.h:
2272           Helper functions to add device probing via the GstPropertyProbe
2273           interface to a class.
2274
2275         * ext/alsa/gstalsamixer.h:
2276           Comment out GST_ALSA_MIXER, it returns a struct that's not
2277           used.
2278
2279         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
2280           Add some debug info. 
2281
2282         * ext/alsa/gstalsamixerelement.c:
2283         (gst_alsa_mixer_element_interface_supported),
2284         (gst_implements_interface_init),
2285         (gst_alsa_mixer_element_init_interfaces),
2286         (gst_alsa_mixer_element_class_init),
2287         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
2288         (gst_alsa_mixer_element_set_property),
2289         (gst_alsa_mixer_element_get_property),
2290         (gst_alsa_mixer_element_change_state):
2291         * ext/alsa/gstalsamixerelement.h:
2292           Add 'device' and 'device-name' properties. Add GstPropertyProbe
2293           for device handling (gnome-volume-control will need that).
2294
2295 2005-12-12  Christian Schaller  <uraeus@gnome.org>
2296
2297         * ext/Makefile.am: fix cdparanoia entry
2298         * gst-plugins-base.spec.in: add cdparanoia
2299
2300 2005-12-12  Michael Smith  <msmith@fluendo.com>
2301
2302         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
2303           Use the correct function to free list of typefind factories.
2304
2305 2005-12-12  Wim Taymans  <wim@fluendo.com>
2306
2307         * gst/videotestsrc/gstvideotestsrc.c:
2308         (gst_video_test_src_class_init), (gst_video_test_src_init),
2309         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
2310         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
2311         (gst_video_test_src_create):
2312         * gst/videotestsrc/gstvideotestsrc.h:
2313         Implement seeking in videotestsrc.
2314         Small cleanups.
2315
2316 2005-12-12  Wim Taymans  <wim@fluendo.com>
2317
2318         * ext/cdparanoia/Makefile.am:
2319         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
2320         (gst_paranoia_endian_get_type), (_do_init),
2321         (cdparanoia_class_init), (cdparanoia_init),
2322         (cdparanoia_set_property), (cdparanoia_get_property),
2323         (cdparanoia_do_seek), (cdparanoia_is_seekable),
2324         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
2325         (cdparanoia_convert), (cdparanoia_get_query_types),
2326         (cdparanoia_query), (cdparanoia_set_index),
2327         (cdparanoia_uri_set_uri):
2328         * ext/cdparanoia/gstcdparanoia.h:
2329         Partially ported cdparanoia now that basesrc can support a
2330         plugin like this..
2331
2332 2005-12-12  Wim Taymans  <wim@fluendo.com>
2333
2334         * tests/examples/seek/scrubby.c: (main):
2335         Set higher priority for bus events so they don't get reordered with
2336         gtk gui events.
2337
2338         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2339         (flush_toggle_cb), (main):
2340         Added checkbox to disable flushing seeks. 
2341         Disable scrubbing when doing non flushing seeks.
2342
2343 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
2344
2345         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
2346         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
2347         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
2348         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
2349           Implement some sort of event handling that doesn't rely on
2350           g_return_if_fail; make sure we always push the last chunk of an 
2351           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
2352           state change function; remove some old cruft. Seeking is still
2353           rather unlikely to work though.
2354
2355         * tools/.cvsignore:
2356           Ignore more.
2357
2358 2005-12-11  Julien MOUTTE  <julien@moutte.net>
2359
2360         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
2361         Fixed a leak of the current image reference when cleaning up.
2362         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
2363
2364 2005-12-09  Michael Smith  <msmith@fluendo.com>
2365
2366         * tools/Makefile.am:
2367         * tools/gst-launch-ext-m.m:
2368           Remove gst-launch-ext. It doesn't work, and is no longer
2369           particularly useful.
2370
2371 2005-12-08  Luca Ognibene  <luogni@tin.it>
2372
2373         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
2374           don't pass random values to ogmparse convert function.
2375           Make seeking possible in the exile1.ogm file.
2376
2377 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
2378
2379         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
2380         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
2381           Work around refcount problem with g_value_set_object() that occur
2382           if the core has been compiled against GLib-2.6 (g_value_set_object()
2383           will only g_object_ref() the element, but the caller will
2384           gst_object_unref() it and bad things will happen due to the way
2385           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
2386           totem for people on FC4 using Thomas's 0.10 RPMs.
2387           
2388 2005-12-07  Edward Hervey  <edward@fluendo.com>
2389
2390         Time to welcome ogm to 0.10 :)
2391         
2392         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
2393         (gst_ogg_pad_typefind):
2394         Oggdemux can now properly typefind elements with dynamic pads.
2395         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
2396         Properly set caps on src pad, and set caps on outgoing buffers.
2397
2398 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2399
2400         * ext/alsa/gstalsamixer.h:
2401         * ext/alsa/gstalsamixerelement.h:
2402         * ext/alsa/gstalsamixeroptions.h:
2403         * ext/alsa/gstalsamixertrack.h:
2404         * ext/alsa/gstalsasink.c:
2405         * ext/alsa/gstalsasink.h:
2406         * ext/alsa/gstalsasrc.c:
2407         * ext/alsa/gstalsasrc.h:
2408         * ext/cdparanoia/gstcdparanoia.h:
2409         * ext/gnomevfs/gstgnomevfsuri.h:
2410         * ext/ogg/gstoggdemux.c:
2411         * ext/ogg/gstoggmux.c:
2412         * ext/pango/gsttextoverlay.h:
2413         * ext/theora/theoradec.c:
2414         * ext/theora/theoraenc.c:
2415         * ext/vorbis/vorbisdec.h:
2416         * ext/vorbis/vorbisenc.c:
2417         * ext/vorbis/vorbisenc.h:
2418         * ext/vorbis/vorbisparse.h:
2419         * gst-libs/gst/audio/gstaudioclock.h:
2420         * gst-libs/gst/audio/gstaudiosink.c:
2421         * gst-libs/gst/audio/gstaudiosink.h:
2422         * gst-libs/gst/audio/gstaudiosrc.c:
2423         * gst-libs/gst/audio/gstaudiosrc.h:
2424         * gst-libs/gst/audio/gstbaseaudiosink.c:
2425         * gst-libs/gst/audio/gstbaseaudiosink.h:
2426         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2427         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2428         * gst-libs/gst/audio/gstringbuffer.h:
2429         * gst-libs/gst/audio/multichannel.h:
2430         * gst-libs/gst/floatcast/floatcast.h:
2431         * gst-libs/gst/interfaces/colorbalance.c:
2432         * gst-libs/gst/interfaces/colorbalance.h:
2433         * gst-libs/gst/interfaces/colorbalancechannel.h:
2434         * gst-libs/gst/interfaces/mixer.h:
2435         * gst-libs/gst/interfaces/mixeroptions.h:
2436         * gst-libs/gst/interfaces/mixertrack.h:
2437         * gst-libs/gst/interfaces/navigation.h:
2438         * gst-libs/gst/interfaces/propertyprobe.h:
2439         * gst-libs/gst/interfaces/tuner.h:
2440         * gst-libs/gst/interfaces/tunerchannel.h:
2441         * gst-libs/gst/interfaces/tunernorm.h:
2442         * gst-libs/gst/interfaces/xoverlay.h:
2443         * gst-libs/gst/netbuffer/gstnetbuffer.h:
2444         * gst-libs/gst/riff/riff-ids.h:
2445         * gst-libs/gst/riff/riff-media.h:
2446         * gst-libs/gst/riff/riff-read.h:
2447         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2448         * gst-libs/gst/rtp/gstbasertppayload.c:
2449         * gst-libs/gst/rtp/gstbasertppayload.h:
2450         * gst-libs/gst/rtp/gstrtpbuffer.c:
2451         * gst-libs/gst/rtp/gstrtpbuffer.h:
2452         * gst-libs/gst/tag/gsttageditingprivate.h:
2453         * gst-libs/gst/tag/gstvorbistag.c:
2454         (gst_tag_list_from_vorbiscomment_buffer):
2455         * gst-libs/gst/tag/tag.h:
2456         * gst-libs/gst/video/video.h:
2457         * gst/adder/gstadder.c:
2458         * gst/adder/gstadder.h:
2459         * gst/audioconvert/audioconvert.c:
2460         * gst/audioconvert/audioconvert.h:
2461         * gst/audioconvert/gstaudioconvert.c:
2462         * gst/audioconvert/gstchannelmix.c:
2463         * gst/audioconvert/gstchannelmix.h:
2464         * gst/audiorate/gstaudiorate.c:
2465         * gst/audioresample/buffer.h:
2466         * gst/audioresample/functable.h:
2467         * gst/audioresample/gstaudioresample.c:
2468         * gst/audioresample/resample.h:
2469         * gst/ffmpegcolorspace/avcodec.h:
2470         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2471         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
2472         * gst/ffmpegcolorspace/imgconvert.c:
2473         * gst/ffmpegcolorspace/imgconvert_template.h:
2474         * gst/playback/gstdecodebin.c:
2475         * gst/playback/gstplaybasebin.h:
2476         * gst/playback/gstplaybin.c:
2477         * gst/playback/gststreaminfo.h:
2478         * gst/tcp/gstfdset.c:
2479         * gst/tcp/gstfdset.h:
2480         * gst/tcp/gstmultifdsink.c:
2481         * gst/tcp/gstmultifdsink.h:
2482         * gst/tcp/gsttcp.h:
2483         * gst/tcp/gsttcpclientsrc.c:
2484         * gst/tcp/gsttcpclientsrc.h:
2485         * gst/tcp/gsttcpplugin.h:
2486         * gst/tcp/gsttcpserversink.c:
2487         * gst/tcp/gsttcpserversrc.c:
2488         * gst/typefind/gsttypefindfunctions.c:
2489         * gst/videorate/gstvideorate.c:
2490         * gst/videotestsrc/gstvideotestsrc.h:
2491         * gst/videotestsrc/videotestsrc.h:
2492         * sys/v4l/gstv4lcolorbalance.h:
2493         * sys/v4l/gstv4ltuner.h:
2494         * sys/v4l/gstv4lxoverlay.h:
2495         * sys/v4l/v4l_calls.h:
2496         * sys/v4l/videodev_mjpeg.h:
2497         * tests/check/elements/audioconvert.c:
2498         * tests/check/elements/audioresample.c:
2499         * tests/check/elements/audiotestsrc.c:
2500         * tests/check/elements/videotestsrc.c:
2501         * tests/check/elements/volume.c:
2502         * tests/examples/seek/scrubby.c:
2503         * tests/examples/seek/seek.c:
2504           expand tabs
2505
2506 === release 0.10.0 ===
2507
2508 2005-12-05   <thomas (at) apestaart (dot) org>
2509
2510         * configure.ac:
2511           releasing 0.10.0, "Mont-d'or"
2512
2513 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
2514
2515         * tests/examples/seek/Makefile.am:
2516         Build fix for when gtk is not available.
2517
2518 2005-12-05  Andy Wingo  <wingo@pobox.com>
2519
2520         * ext/libvisual/visual.c: (get_buffer):
2521         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
2522         * ext/pango/gsttextrender.c: (gst_text_render_chain):
2523         * ext/theora/theoradec.c: (theora_handle_data_packet):
2524         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
2525         (theora_enc_chain):
2526         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2527         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2528         Update for alloc_buffer changes.
2529
2530 2005-12-05  Andy Wingo  <wingo@pobox.com>
2531
2532         patch by: Kai Vehmanen <kv2004 eca cx>
2533         
2534         * gst-libs/gst/rtp/gstbasertpdepayload.c
2535         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
2536
2537 2005-12-04  Andy Wingo  <wingo@pobox.com>
2538
2539         patch by: Sebastien Cote <sebas642 yahoo ca>
2540         
2541         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
2542         Fixes #319172.
2543
2544 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
2545
2546         * docs/plugins/Makefile.am:
2547         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2548         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2549         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2550         * ext/pango/gstclockoverlay.c:
2551         * ext/pango/gsttextoverlay.c: 
2552         * ext/pango/gsttextrender.c:
2553         * ext/pango/gsttimeoverlay.c:
2554           Add gtk-doc blurbs to pango elements.
2555
2556 2005-12-02  Wim Taymans  <wim@fluendo.com>
2557
2558         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
2559         * gst/audioresample/buffer.h:
2560         * gst/audioresample/gstaudioresample.c:
2561         * gst/audioresample/gstaudioresample.h:
2562         * gst/audioresample/resample.c: (resample_input_flush),
2563         (resample_input_pushthrough), (resample_input_eos),
2564         (resample_get_output_size_for_input),
2565         (resample_get_input_size_for_output), (resample_get_output_size),
2566         (resample_get_output_data):
2567         * gst/audioresample/resample.h:
2568         * gst/audioresample/resample_ref.c: (resample_scale_ref):
2569         Fix audioresample, seek torture, new segments, reverse negotiation
2570         etc.. work fine.
2571
2572 2005-12-02  Wim Taymans  <wim@fluendo.com>
2573
2574         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2575         Small cleanups.
2576
2577 2005-12-02  Wim Taymans  <wim@fluendo.com>
2578
2579         * gst/audioconvert/gstaudioconvert.c:
2580         (gst_audio_convert_transform):
2581         Post errors.
2582
2583 === release 0.9.7 ===
2584
2585 2005-12-01   <thomas (at) apestaart (dot) org>
2586
2587         * configure.ac:
2588           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
2589
2590 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2591
2592         * Makefile.am:
2593         * po/hu.po:
2594         * win32/MANIFEST:
2595         * win32/gst.sln:
2596           add win32 MANIFEST file
2597           do something to the hungarian translation
2598
2599 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
2600
2601         * ext/Makefile.am:
2602           Add $(PANGO_DIR) to SUBDIRS
2603
2604         * ext/pango/gstclockoverlay.c:
2605         * ext/pango/gsttimeoverlay.c:
2606           Fix and improve element descriptions.
2607
2608 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2609
2610         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2611         * docs/plugins/inspect/plugin-libvisual.xml:
2612         * docs/plugins/inspect/plugin-pango.xml:
2613           add pango plugin to docs
2614
2615 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2616
2617         * configure.ac:
2618         * ext/Makefile.am:
2619           moved pango to base
2620
2621 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2622
2623         * configure.ac:
2624         * tests/Makefile.am:
2625         * tests/icles/.cvsignore:
2626         * tests/icles/Makefile.am:
2627         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
2628         (close_display), (resize_window), (move_window), (create_window),
2629         (terminate_playback), (pause_playback), (start_playback), (main):
2630           add stress test for xoverlay from Julien
2631
2632 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2633
2634         * docs/libs/tmpl/gstcolorbalance.sgml:
2635         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2636         * gst-libs/gst/rtp/gstbasertppayload.c:
2637         * gst-libs/gst/rtp/gstrtpbuffer.c:
2638         * gst-libs/gst/rtp/gstrtpbuffer.h:
2639           Do burger's rename for rtp payloaders and depayloaders
2640
2641 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2642
2643         * win32/:
2644           add Visual Studio 6 build files
2645
2646 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2647
2648         * docs/libs/gst-plugins-base-libs-docs.sgml:
2649         * docs/libs/gst-plugins-base-libs-sections.txt:
2650         * docs/libs/tmpl/gstaudio.sgml:
2651         * docs/libs/tmpl/gstringbuffer.sgml:
2652         * gst-libs/gst/interfaces/xoverlay.c:
2653         * gst-libs/gst/video/gstvideofilter.c:
2654         * gst-libs/gst/video/gstvideosink.c:
2655           update documentation
2656
2657 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2658
2659         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
2660         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
2661         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
2662         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2663         (gst_multi_fd_sink_get_stats),
2664         (gst_multi_fd_sink_remove_client_link),
2665         (gst_multi_fd_sink_handle_client_read),
2666         (gst_multi_fd_sink_client_queue_data),
2667         (gst_multi_fd_sink_client_queue_caps),
2668         (gst_multi_fd_sink_client_queue_buffer),
2669         (gst_multi_fd_sink_new_client),
2670         (gst_multi_fd_sink_handle_client_write),
2671         (gst_multi_fd_sink_recover_client),
2672         (gst_multi_fd_sink_queue_buffer),
2673         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
2674         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
2675         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
2676         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
2677         * gst/tcp/gstmultifdsink.h:
2678         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
2679         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
2680         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
2681         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
2682         (gst_tcp_client_sink_set_property),
2683         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
2684         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
2685         * gst/tcp/gsttcpclientsink.h:
2686         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
2687         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
2688         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
2689         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
2690         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
2691         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
2692         * gst/tcp/gsttcpclientsrc.h:
2693         * gst/tcp/gsttcpplugin.c: (plugin_init):
2694         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
2695         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
2696         (gst_tcp_server_sink_finalize),
2697         (gst_tcp_server_sink_handle_server_read),
2698         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
2699         (gst_tcp_server_sink_set_property),
2700         (gst_tcp_server_sink_get_property),
2701         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
2702         * gst/tcp/gsttcpserversink.h:
2703         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
2704         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
2705         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
2706         (gst_tcp_server_src_set_property),
2707         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
2708         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
2709         * gst/tcp/gsttcpserversrc.h:
2710           more borgifying
2711
2712 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2713
2714         * docs/plugins/Makefile.am:
2715         * docs/plugins/gst-plugins-base-plugins.args:
2716         * docs/plugins/inspect/plugin-libvisual.xml:
2717         * gst/audioconvert/plugin.h:
2718         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
2719         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
2720         (gst_audio_rate_setcaps), (gst_audio_rate_init),
2721         (gst_audio_rate_chain), (gst_audio_rate_set_property),
2722         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
2723         (plugin_init):
2724         * gst/audiotestsrc/gstaudiotestsrc.c:
2725         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
2726         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
2727         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
2728         (gst_audio_test_src_get_query_types),
2729         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
2730         (gst_audio_test_src_create_square),
2731         (gst_audio_test_src_create_saw),
2732         (gst_audio_test_src_create_triangle),
2733         (gst_audio_test_src_create_silence),
2734         (gst_audio_test_src_create_white_noise),
2735         (gst_audio_test_src_init_pink_noise),
2736         (gst_audio_test_src_generate_pink_noise_value),
2737         (gst_audio_test_src_create_pink_noise),
2738         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
2739         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
2740         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
2741         (plugin_init):
2742         * gst/audiotestsrc/gstaudiotestsrc.h:
2743         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
2744         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
2745         (gst_sub_parse_init), (gst_sub_parse_formats),
2746         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
2747         (convert_encoding), (get_next_line),
2748         (gst_sub_parse_data_format_autodetect),
2749         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
2750         (gst_sub_parse_loop), (gst_sub_parse_chain),
2751         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
2752         (plugin_init):
2753         * gst/subparse/gstsubparse.h:
2754         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
2755         (gst_video_rate_base_init), (gst_video_rate_class_init),
2756         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
2757         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
2758         (gst_video_rate_init), (gst_video_rate_event),
2759         (gst_video_rate_chain), (gst_video_rate_set_property),
2760         (gst_video_rate_get_property), (gst_video_rate_change_state),
2761         (plugin_init):
2762         * gst/videoscale/gstvideoscale.c:
2763         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
2764         (gst_video_scale_src_template_factory),
2765         (gst_video_scale_sink_template_factory),
2766         (gst_video_scale_get_type), (gst_video_scale_base_init),
2767         (gst_video_scale_class_init), (gst_video_scale_init),
2768         (gst_video_scale_set_property), (gst_video_scale_get_property),
2769         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
2770         (gst_video_scale_prepare_size), (parse_caps),
2771         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
2772         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
2773         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
2774         (plugin_init):
2775         * gst/videoscale/gstvideoscale.h:
2776         * gst/videotestsrc/gstvideotestsrc.c:
2777         (gst_video_test_src_pattern_get_type),
2778         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
2779         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
2780         (gst_video_test_src_set_pattern),
2781         (gst_video_test_src_set_property),
2782         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
2783         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
2784         (gst_video_test_src_event), (gst_video_test_src_get_times),
2785         (gst_video_test_src_create), (plugin_init):
2786         * gst/videotestsrc/gstvideotestsrc.h:
2787         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
2788         (gst_video_test_src_smpte), (gst_video_test_src_snow),
2789         (gst_video_test_src_black):
2790         * gst/videotestsrc/videotestsrc.h:
2791           borgify further
2792           clean up docs a little
2793
2794 2005-11-30  Wim Taymans  <wim@fluendo.com>
2795
2796         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2797         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2798         (gst_basertppayload_event), (gst_basertppayload_push),
2799         (gst_basertppayload_change_state):
2800         * gst-libs/gst/rtp/gstbasertppayload.h:
2801         closed #320644.
2802
2803 2005-11-30  Julien MOUTTE  <julien@moutte.net>
2804
2805         * docs/libs/gst-plugins-base-libs-docs.sgml:
2806         * docs/libs/gst-plugins-base-libs-sections.txt:
2807         * gst-libs/gst/video/gstvideofilter.c:
2808         * gst-libs/gst/video/gstvideosink.c:
2809         * gst-libs/gst/video/gstvideosink.h: Adding docs.
2810
2811 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2812
2813         * LICENSE:
2814           move
2815         * po/af.po:
2816         * po/az.po:
2817         * po/cs.po:
2818         * po/en_GB.po:
2819         * po/hu.po:
2820         * po/it.po:
2821         * po/nb.po:
2822         * po/nl.po:
2823         * po/or.po:
2824         * po/sq.po:
2825         * po/sr.po:
2826         * po/sv.po:
2827         * po/uk.po:
2828         * po/vi.po:
2829         * Makefile.am:
2830           update
2831         * scripts/autoplugins.sh:
2832           remove
2833
2834 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2835
2836         * Makefile.am:
2837         * configure.ac:
2838         * examples/Makefile.am:
2839         * examples/capsfilter/Makefile.am:
2840         * examples/capsfilter/capsfilter1.c:
2841         * examples/gob/Makefile.am:
2842         * examples/gob/gst-identity2.gob:
2843         * examples/indexing/.cvsignore:
2844         * examples/indexing/Makefile.am:
2845         * examples/indexing/indexmpeg.c:
2846         * examples/seeking/.cvsignore:
2847         * examples/seeking/Makefile.am:
2848         * examples/seeking/cdparanoia.c:
2849         * examples/seeking/cdplayer.c:
2850         * examples/seeking/chained.c:
2851         * examples/seeking/scrubby.c:
2852         * examples/seeking/seek.c:
2853         * examples/stats/Makefile.am:
2854         * examples/stats/mp2ogg.c:
2855         * examples/switch/.cvsignore:
2856         * examples/switch/Makefile.am:
2857         * examples/switch/switcher.c:
2858         * tests/Makefile.am:
2859         * tests/check/generic/.cvsignore:
2860         * tests/check/pipelines/.cvsignore:
2861         * tests/examples/Makefile.am:
2862         * tests/examples/seek/Makefile.am:
2863           reorganize stuff under tests/
2864
2865 2005-11-30  Edward Hervey  <edward@fluendo.com>
2866
2867         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2868         Go away you stupid GstStaticPadTemplate memleak.
2869
2870 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
2871
2872         * gst-libs/gst/net/Makefile.am:
2873         * gst-libs/gst/net/README:
2874         * gst-libs/gst/net/gstnetbuffer.c:
2875         * gst-libs/gst/net/gstnetbuffer.h:
2876           this was moved to "netbuffer"
2877
2878 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
2879
2880         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
2881         (gst_video_filter_class_init), (gst_video_filter_init):
2882         * gst-libs/gst/video/gstvideofilter.h:
2883           borgify name to bring in line with other classes
2884
2885 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
2886
2887         * gst/audioscale/.cvsignore:
2888         * gst/audioscale/Makefile.am:
2889         * gst/audioscale/README:
2890         * gst/audioscale/audioscale.vcproj:
2891         * gst/audioscale/dtof.c:
2892         * gst/audioscale/dtos.c:
2893         * gst/audioscale/functable.c:
2894         * gst/audioscale/gstaudioscale.c:
2895         * gst/audioscale/gstaudioscale.h:
2896         * gst/audioscale/private.h:
2897         * gst/audioscale/resample.c:
2898         * gst/audioscale/resample.h:
2899         * gst/audioscale/test.c:
2900           remove
2901
2902 2005-11-30  Edward Hervey  <edward@fluendo.com>
2903
2904         * gst-libs/gst/netbuffer/Makefile.am:
2905         really, really tired
2906
2907 2005-11-30  Edward Hervey  <edward@fluendo.com>
2908
2909         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
2910         Update for new GstTypeFindFactory _register()
2911
2912 2005-11-30  Edward Hervey  <edward@fluendo.com>
2913
2914         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
2915         Let's not override libgstnet from core for no reason...
2916         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
2917         Ok, maybe not so quick next time.
2918
2919 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
2920
2921         * configure.ac:
2922         * gst-libs/gst/Makefile.am:
2923           moved gst-libs/gst/net to netbuffer through CVS surgery
2924           remove old directory
2925           updating build to accomodate
2926           (#322257)
2927
2928 2005-11-29  Andy Wingo  <wingo@pobox.com>
2929
2930         * pkgconfig/gstreamer-plugins-base.pc.in:
2931         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2932         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
2933         (#322257).
2934
2935 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
2936
2937         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
2938         3rd time's the charm. Correct ref-counting for discarded buffers.
2939
2940 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
2941
2942         * gst/playback/gststreamselector.c:
2943         (gst_stream_selector_class_init),
2944         (gst_stream_selector_set_property),
2945         (gst_stream_selector_get_property),
2946         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
2947         Fix ref-counting
2948
2949 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
2950
2951         * gst/subparse/gstsubparse.c: (feed_textbuf):
2952           Don't access already unref'ed buffer.
2953
2954 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
2955
2956         * gst/playback/gststreamselector.c:
2957         (gst_stream_selector_class_init), (gst_stream_selector_init),
2958         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
2959         (gst_stream_selector_get_property),
2960         (gst_stream_selector_get_linked_pad),
2961         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
2962         * gst/playback/gststreamselector.h:
2963         Add the active-pad property for playbin to use shortly. Ignore buffers
2964         from any other pad, returning GST_FLOW_NOT_LINKED
2965
2966 2005-11-29  Julien MOUTTE  <julien@moutte.net>
2967
2968         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
2969         patch from bug #322704 (Alessandro Decina).
2970
2971 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
2972
2973         * gst-libs/gst/audio/Makefile.am:
2974           folded audiofilter into the audio library
2975
2976 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
2977
2978         * gst/videoscale/gstvideoscale.h:
2979         * gst/videoscale/gstvideoscale.c:
2980           remove unimplemented scale methods
2981
2982 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
2983
2984         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
2985           Don't leak caps.
2986
2987 2005-11-28  Julien MOUTTE  <julien@moutte.net>
2988
2989         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
2990         (gst_ximagesink_setcaps):
2991         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
2992         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
2993         happens (only visible on ximagesink but bug is in xv too) set_caps was
2994         destroying the internal x[v]image used to memcpy non locally alloced
2995         buffers so that it got renewed on next _chain. The issue is that 
2996         _expose will try to put that image as it reffed it in _put.
2997         Using gst_buffer_unref instead of destroy fixes it !
2998
2999 2005-11-28  Edward Hervey  <edward@fluendo.com>
3000
3001         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
3002         (try_to_link_1), (queue_filled_cb):
3003         Better use of the queues. Start with a small size queue and only increase
3004         the size of the queues when the other queues are empty.
3005
3006 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
3007
3008         * gst-libs/gst/video/Makefile.am:
3009           compile in copied-over videofilter into the video library
3010         * gst-libs/gst/video/videosink.h:
3011           rename the header to gstvideosink.h since it's a base GstObject class
3012         * sys/ximage/ximagesink.h:
3013         * sys/xvimage/xvimagesink.h:
3014           use the new header
3015
3016 2005-11-28  Wim Taymans  <wim@fluendo.com>
3017
3018         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
3019         * gst/playback/gstplaybasebin.h:
3020         Prepare to handle errors betters.
3021
3022         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
3023         Set sinks to PAUSED first before adding and linking them so that
3024         we don't interrupt dataflow.
3025
3026 2005-11-28  Wim Taymans  <wim@fluendo.com>
3027
3028         * gst-libs/gst/audio/TODO:
3029         Updated TODO
3030
3031         * gst-libs/gst/audio/gstaudiosink.c:
3032         (gst_audioringbuffer_open_device),
3033         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
3034         (gst_audioringbuffer_release):
3035         Small cleanups.
3036
3037         * gst-libs/gst/audio/gstbaseaudiosink.c:
3038         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
3039         (gst_base_audio_sink_change_state):
3040         Slave to the master clock when going to PLAYING and unslave when
3041         going to PAUSED.
3042
3043         * gst-libs/gst/audio/gstringbuffer.c:
3044         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
3045         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
3046         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
3047         (gst_ring_buffer_clear_all), (wait_segment),
3048         (gst_ring_buffer_commit), (gst_ring_buffer_read),
3049         (gst_ring_buffer_advance):
3050         * gst-libs/gst/audio/gstringbuffer.h:
3051         Add some docs and cleanups.
3052
3053 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3054
3055         * sys/xvimage/xvimagesink.c:
3056         (gst_xvimagesink_navigation_send_event): Fix navigation events
3057         coordinates translation with pixel aspect ratios.
3058
3059 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3060
3061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
3062         Use calculated video geometry from _setcaps instead of buffer
3063         caps to respect pixel aspect ratio. (fixes #322388)
3064
3065 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3066
3067         * docs/libs/tmpl/gstcolorbalance.sgml:
3068         * docs/libs/tmpl/gstmixer.sgml:
3069         * docs/libs/tmpl/gstxoverlay.sgml:
3070         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
3071         interface.
3072
3073 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3074
3075         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
3076         Refuse to create an XvImage if we can't find the format.
3077
3078 2005-11-28  Edward Hervey  <edward@fluendo.com>
3079
3080         * gst-libs/gst/riff/riff-media.c:
3081         (gst_riff_create_audio_template_caps):
3082         Add ATRAC3 to the list of riff-possible audio caps.
3083         I know we still don't have a plugin for atrac3, but it's saner to output
3084         that than a cryptic mimetype.
3085
3086 2005-11-27  Edward Hervey  <edward@fluendo.com>
3087
3088         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
3089         Don't try to create a zero-sized subbuffer.
3090
3091 2005-11-27  Julien MOUTTE  <julien@moutte.net>
3092
3093         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
3094         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
3095         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
3096         (gst_ximagesink_expose): Fixed a tricky race.
3097         * sys/ximage/ximagesink.h:
3098         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3099         (gst_xvimagesink_expose): Fixed a tricky race.
3100         * sys/xvimage/xvimagesink.h:
3101
3102 2005-11-27  Edward Hervey  <edward@fluendo.com>
3103
3104         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
3105         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
3106         Remove unused properties, and add queues between demuxers and decoders
3107         so that a lot more files can preroll properly.
3108
3109 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3110
3111         * gst-libs/gst/net/Makefile.am:
3112         * gst-libs/gst/rtp/Makefile.am:
3113         * gst-libs/gst/tag/Makefile.am:
3114           remove silly include
3115         * gst/tags/Makefile.am:
3116         * gst/tags/gsttagediting.c:
3117         * gst/tags/gsttageditingprivate.h:
3118         * gst/tags/tagedit.vcproj:
3119           remove directory, is as good as empty
3120
3121 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3122
3123         * configure.ac:
3124           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
3125         * gst-libs/Makefile.am:
3126         * gst-libs/gst/audio/Makefile.am:
3127         * gst-libs/gst/interfaces/Makefile.am:
3128         * gst-libs/gst/net/Makefile.am:
3129         * gst-libs/gst/riff/Makefile.am:
3130         * gst-libs/gst/rtp/Makefile.am:
3131         * gst-libs/gst/tag/Makefile.am:
3132         * gst-libs/gst/video/Makefile.am:
3133           and use them
3134
3135 2005-11-27  Julien MOUTTE  <julien@moutte.net>
3136
3137         * docs/libs/tmpl/gstcolorbalance.sgml:
3138         * docs/libs/tmpl/gstmixer.sgml:
3139         * docs/libs/tmpl/gstxoverlay.sgml:
3140         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
3141         * sys/ximage/ximagesink.h:
3142         * sys/xvimage/xvimagesink.h: More and more documentation.
3143
3144 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3145
3146         * docs/libs/gst-plugins-base-libs-docs.sgml:
3147         * docs/libs/gst-plugins-base-libs-sections.txt:
3148         * docs/libs/tmpl/gstcolorbalance.sgml:
3149         * docs/libs/tmpl/gstmixer.sgml:
3150         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
3151         to documentation.
3152
3153 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3154
3155         * docs/plugins/Makefile.am:
3156         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3157         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3158         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
3159
3160 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3161
3162         * docs/plugins/Makefile.am:
3163         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3164         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3165         * docs/plugins/inspect/plugin-adder.xml:
3166         * docs/plugins/inspect/plugin-alsa.xml:
3167         * docs/plugins/inspect/plugin-audioconvert.xml:
3168         * docs/plugins/inspect/plugin-audiorate.xml:
3169         * docs/plugins/inspect/plugin-audioresample.xml:
3170         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3171         * docs/plugins/inspect/plugin-decodebin.xml:
3172         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3173         * docs/plugins/inspect/plugin-gnomevfs.xml:
3174         * docs/plugins/inspect/plugin-ogg.xml:
3175         * docs/plugins/inspect/plugin-playbin.xml:
3176         * docs/plugins/inspect/plugin-subparse.xml:
3177         * docs/plugins/inspect/plugin-tcp.xml:
3178         * docs/plugins/inspect/plugin-theora.xml:
3179         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3180         * docs/plugins/inspect/plugin-video4linux.xml:
3181         * docs/plugins/inspect/plugin-videorate.xml:
3182         * docs/plugins/inspect/plugin-videoscale.xml:
3183         * docs/plugins/inspect/plugin-videotestsrc.xml:
3184         * docs/plugins/inspect/plugin-volume.xml:
3185         * docs/plugins/inspect/plugin-vorbis.xml:
3186         * docs/plugins/inspect/plugin-ximagesink.xml:
3187         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
3188         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
3189
3190 2005-11-26  Edward Hervey  <edward@fluendo.com>
3191
3192         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
3193         Properly return GstFlowReturn from gst_pad_push in chain functions.
3194
3195 2005-11-25  Michael Smith  <msmith@fluendo.com>
3196
3197         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
3198         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
3199         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
3200         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
3201           Handle various conditions better when we don't understand a stream.
3202           Removes a heap of CRITICALs on ogg streams containing unknown data.
3203
3204 2005-11-24  Andy Wingo  <wingo@pobox.com>
3205
3206         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
3207         Be threadsafe.
3208
3209 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3210
3211         * configure.ac: back to HEAD
3212
3213 === release 0.9.6 ===
3214
3215 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
3216
3217         * configure.ac:
3218           releasing 0.9.6, "White Eight"
3219
3220 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3221
3222         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
3223         * docs/plugins/inspect/plugin-sine.xml:
3224           remove sinesrc some more
3225
3226 2005-11-23  Wim Taymans  <wim@fluendo.com>
3227
3228         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
3229         If we are reading too slowly, jump forward in the ringbuffer
3230         instead of blocking.
3231
3232 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3233
3234         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
3235         (gst_visual_chain):
3236         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
3237         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
3238         (gst_videorate_chain):
3239         * gst/videotestsrc/gstvideotestsrc.c:
3240         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
3241         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
3242         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
3243         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
3244         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3245         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3246           Updates for API changes
3247
3248 2005-11-23  Wim Taymans  <wim@fluendo.com>
3249
3250         * gst-libs/gst/audio/gstbaseaudiosink.c:
3251         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3252         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3253         Fix for calibration API change.
3254
3255 2005-11-23  Michael Smith <msmith@fluendo.com>
3256
3257         * gst-libs/gst/audio/multichannel.c:
3258         (gst_audio_get_channel_positions),
3259         (gst_audio_set_channel_positions),
3260         (gst_audio_set_structure_channel_positions_list),
3261         (gst_audio_fixate_channel_positions):
3262           Use gst_value_array_*() functions on value arrays, not
3263           gst_value_list_*().
3264
3265 2005-11-23  Edward Hervey  <edward@fluendo.com>
3266
3267         * autogen.sh:
3268         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
3269         Fixes autogen
3270
3271 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3272
3273         * check/Makefile.am:
3274         * check/elements/videotestsrc.c: (setup_videotestsrc),
3275         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
3276         (main):
3277           add a test for videotestsrc
3278
3279 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3280
3281         * gst/sine/.cvsignore:
3282         * gst/sine/Makefile.am:
3283         * gst/sine/gstsinesrc.c:
3284         * gst/sine/gstsinesrc.h:
3285         * gst/sine/sinesrc.vcproj:
3286           and remove sinesrc from the repository.  Closes #321446
3287
3288 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3289
3290         * configure.ac:
3291         * gst-plugins-base.spec.in:
3292           remove sinesrc from the build
3293
3294 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3295
3296         * check/Makefile.am:
3297         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
3298         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
3299         (main):
3300           add a test for audiotestsrc, testing all waves.  Even seems
3301           leak-free at first glance, nice job Stefan
3302
3303 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3304
3305         * po/af.po:
3306         * po/az.po:
3307         * po/cs.po:
3308         * po/en_GB.po:
3309         * po/hu.po:
3310         * po/it.po:
3311         * po/nb.po:
3312         * po/nl.po:
3313         * po/or.po:
3314         * po/sq.po:
3315         * po/sr.po:
3316         * po/sv.po:
3317         * po/uk.po:
3318         * po/vi.po:
3319           Translation string updates
3320
3321         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3322         (gst_v4lsrc_set_caps):
3323         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3324         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3325         * sys/v4l/v4lsrc_calls.h:
3326           Improve v4lsrc, by making it work again.
3327
3328 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3329
3330         * ext/libvisual/visual.c: (gst_visual_chain):
3331           Fix the fps calculations.
3332
3333         * gst/ffmpegcolorspace/avcodec.h:
3334           Move structure element for clarity
3335
3336         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
3337         * gst-libs/gst/interfaces/tunernorm.h:
3338         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
3339         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
3340         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
3341         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
3342         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
3343         (gst_v4lmjpegsrc_getcaps):
3344         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3345         (gst_v4lsrc_set_caps):
3346         * sys/v4l/gstv4lsrc.h:
3347         * sys/v4l/v4l_calls.c: (gst_v4l_open):
3348         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3349         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3350         * sys/v4l/v4lsrc_calls.h:
3351           Fractional framerates...
3352
3353 2005-11-22  Wim Taymans  <wim@fluendo.com>
3354
3355         * gst-libs/gst/audio/gstbaseaudiosink.c:
3356         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3357         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3358         And we provide a clock by default, of course...
3359
3360 2005-11-22  Wim Taymans  <wim@fluendo.com>
3361
3362         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
3363         This clock can be slaved to a master clock now.
3364
3365         * gst-libs/gst/audio/gstbaseaudiosink.c:
3366         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
3367         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
3368         (gst_base_audio_sink_set_clock),
3369         (gst_base_audio_sink_set_property),
3370         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
3371         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3372         * gst-libs/gst/audio/gstbaseaudiosink.h:
3373         Handle slaving the internal clock to the clock selected in the
3374         pipeline.
3375         Add property to make the basesink not provide a clock.
3376
3377         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3378         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
3379         (gst_base_rtp_depayload_wait):
3380         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3381         We can use the clock in GstElement, no need to store it ourselves.
3382
3383 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3384
3385         * docs/libs/tmpl/gstaudio.sgml:
3386           update
3387         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
3388         (gst_paranoia_endian_get_type):
3389         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
3390         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
3391         * gst/audiotestsrc/gstaudiotestsrc.c:
3392         (gst_audiostestsrc_wave_get_type):
3393         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
3394         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
3395         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
3396         (gst_sync_method_get_type), (gst_unit_type_get_type),
3397         (gst_client_status_get_type), (gst_multifdsink_class_init),
3398         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
3399         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
3400         (gst_multifdsink_get_property):
3401         * gst/tcp/gstmultifdsink.h:
3402         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
3403         * gst/videotestsrc/gstvideotestsrc.c:
3404         (gst_videotestsrc_pattern_get_type):
3405           remove deprecated properties
3406           fix up enums to correctly have short lowercase dashed nicks
3407
3408 2005-11-22  Michael Smith <msmith@fluendo.com>
3409
3410         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
3411         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
3412           Add underscore.
3413
3414 2005-11-22  Michael Smith <msmith@fluendo.com>
3415
3416         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
3417         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
3418           Use utility method for scaling clocktime for fractional framerates.
3419
3420 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
3421
3422         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
3423         (gst_visual_chain):
3424         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3425         * ext/theora/theoradec.c: (theora_handle_type_packet):
3426         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
3427         (theora_enc_chain):
3428         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3429         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
3430         * gst-libs/gst/video/video.h:
3431         * gst/ffmpegcolorspace/avcodec.h:
3432         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3433         (gst_ffmpeg_caps_to_pixfmt):
3434         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3435         (gst_ffmpegcsp_set_caps):
3436         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
3437         (gst_videorate_setcaps), (gst_videorate_blank_data),
3438         (gst_videorate_chain):
3439         * gst/videotestsrc/gstvideotestsrc.c:
3440         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
3441         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
3442         (gst_videotestsrc_event), (gst_videotestsrc_create):
3443         * gst/videotestsrc/gstvideotestsrc.h:
3444         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
3445         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
3446         (gst_ximagesink_get_times), (gst_ximagesink_init):
3447         * sys/ximage/ximagesink.h:
3448         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3449         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
3450         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
3451         * sys/xvimage/xvimagesink.h:
3452           Convert elements to use fractions for their framerate.
3453           V4L elements to come later tonight.
3454
3455 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3456
3457         * gst-libs/gst/audio/audio.c:
3458         * gst-libs/gst/audio/audio.h:
3459           remove some deprecated functions
3460
3461 2005-11-22  Andy Wingo  <wingo@pobox.com>
3462
3463         * Update for gst_tag_setter API changes.
3464
3465 2005-11-22  Andy Wingo  <wingo@pobox.com>
3466
3467         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
3468         (gst_ogg_demux_perform_seek):
3469         * ext/theora/theoradec.c (theora_dec_sink_event):
3470         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
3471         update-funcnames.
3472
3473 2005-11-22  Wim Taymans  <wim@fluendo.com>
3474
3475         * examples/seeking/seek.c: (main):
3476         Give higher priority to bus signals than the gtk events
3477         to fix a race condition in the segment looping.
3478
3479 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3480
3481         * ext/theora/Makefile.am:
3482         * ext/vorbis/Makefile.am:
3483         * gst-libs/gst/tag/Makefile.am:
3484         * gst-plugins-base.spec.in:
3485           Rename libgsttagedit to libgsttag (#322117).
3486
3487 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3488
3489         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
3490         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
3491           Call gst_x_overlay_prepare_xwindow_id() to give applications
3492           a final chance to set their own xwindow id before the video
3493           sink creates its own window.
3494
3495 2005-11-22  Julien MOUTTE  <julien@moutte.net>
3496
3497         * sys/xvimage/xvimagesink.c:
3498         (gst_xvimagesink_navigation_send_event): Handle navigation
3499         events correcly with borders if applicable.
3500
3501 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3502
3503         Patch by: Luca Ognibene
3504
3505         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3506         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
3507         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3508         (gst_ffmpegcsp_caps_remove_format_info):
3509         * gst/ffmpegcolorspace/imgconvert.c:
3510         * gst/ffmpegcolorspace/imgconvert_template.h:
3511           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
3512           #318353); use gst_structure_has_name().
3513
3514 2005-11-22  Julien MOUTTE  <julien@moutte.net>
3515
3516         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
3517         (gst_ximagesink_class_init): Add debug macros on functions.
3518         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3519         (gst_xvimagesink_xwindow_draw_borders),
3520         (gst_xvimagesink_xvimage_put),
3521         (gst_xvimagesink_xwindow_update_geometry),
3522         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
3523         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
3524         (gst_xvimagesink_xcontext_clear),
3525         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
3526         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
3527         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
3528         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
3529         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
3530         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
3531         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
3532         expose while being PAUSED, out of data flow navigation events, etc..
3533
3534 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3535
3536         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
3537         * gst-libs/gst/audio/audio.h:
3538           fix prototype - wondering why the test worked regardless
3539
3540 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3541
3542         * check/Makefile.am:
3543         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
3544         * gst-libs/gst/audio/audio.h:
3545           add a method that returns a proper GstClockTime
3546
3547 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3548
3549         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
3550         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
3551         * gst-libs/gst/interfaces/xoverlay.h:
3552           Remove everything having to do with the desired size; add 
3553           gst_x_overlay_prepare_xwindow_id() function; remove the
3554           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
3555           post a message on the bus instead (#321816).
3556
3557         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
3558         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
3559         (gst_xvimagesink_xoverlay_init):
3560           Remove desired size stuff (#321816).
3561
3562 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3563
3564         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
3565         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
3566         (mpeg_video_type_find), (mpeg_video_stream_type_find):
3567           Terminate vararg functions with NULL instead of 0 to 
3568           make gcc4 happy.
3569
3570 2005-11-21  Andy Wingo  <wingo@pobox.com>
3571
3572         patch by: Sebastien Cote <sebas642@yahoo.ca>
3573         
3574         * gst-libs/gst/rtp/gstrtpbuffer.h: 
3575         * gst-libs/gst/rtp/gstrtpbuffer.c
3576         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
3577
3578 2005-11-21  Andy Wingo  <wingo@pobox.com>
3579
3580         * gst/playback/gstplaybin.c (gen_audio_element) 
3581         (gen_video_element): Use the new MISSING_PLUGIN core error
3582         category. Closes #320060.
3583
3584         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
3585         * gst/videorate/gstvideorate.c (gst_videorate_event):
3586         * ext/theora/theoradec.c (theora_dec_sink_event): 
3587         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
3588         stream lock.
3589
3590         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
3591         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
3592         stream lock changes.
3593
3594 2005-11-21  Wim Taymans  <wim@fluendo.com>
3595
3596         * gst-libs/gst/audio/gstbaseaudiosink.c:
3597         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
3598         (gst_base_audio_sink_provide_clock),
3599         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
3600         (gst_base_audio_sink_change_state):
3601         * gst/audioresample/gstaudioresample.c:
3602         Segment update fix.
3603
3604 2005-11-21  Andy Wingo  <wingo@pobox.com>
3605
3606         * *.h:
3607         * *.c: Ran scripts/update-macros. Oh yes.
3608
3609 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3610
3611         * sys/ximage/Makefile.am:
3612         * sys/ximage/ximage.c:
3613           Rename ximage plugin to ximagesink (#321426) (Don't forget to
3614           remove your old libgstximage.* manually if necessary).
3615
3616 2005-11-21  Michael Smith <msmith@fluendo.com>
3617
3618         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
3619           Minimal fix for bug #320200: set the min/max bitrate in the correct
3620           units. A better fix would be to upgrade to the RATEMANAGE2
3621           interface, rather than using the deprecated interface used here, but
3622           that would require an update in our libvorbis dependency (to 1.1),
3623           which is probably undesirable.
3624
3625 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
3626
3627         * ext/libvisual/visual.c: (get_buffer):
3628         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3629         (gst_base_audio_src_fixate):
3630         * gst/audioconvert/gstaudioconvert.c:
3631         (gst_audio_convert_fixate_caps):
3632         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
3633         * gst/audiotestsrc/gstaudiotestsrc.c:
3634         (gst_audiotestsrc_src_fixate):
3635         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
3636         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
3637         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
3638         * gst/videotestsrc/gstvideotestsrc.c:
3639         (gst_videotestsrc_src_fixate):
3640         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
3641         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
3642           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
3643           (#322027)
3644
3645
3646 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3647
3648         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3649         (gst_riff_create_iavs_caps):
3650         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
3651         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3652         (gst_riff_parse_info):
3653         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
3654         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
3655         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
3656           Fixes for GST_FOURCC_FORMAT API change.
3657
3658 2005-11-21  Andy Wingo  <wingo@pobox.com>
3659
3660         patch by: Alessandro Dessina <alessandro nnva org>
3661
3662         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
3663         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
3664         (gst_ogg_parse_chain):
3665         * ext/theora/theoraenc.c (theora_set_header_on_caps):
3666         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
3667         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
3668         gst_value_list calls on arrays. Fixes #321962.
3669
3670 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3671
3672         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
3673         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
3674         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
3675         * gst/adder/gstadder.c: (gst_adder_init),
3676         (gst_adder_request_new_pad), (gst_adder_collected),
3677         (gst_adder_change_state):
3678           Update for gst_collectpads_foo() to gst_collect_pads_foo()
3679           API change.
3680
3681 2005-11-21  Michael Smith <msmith@fluendo.com>
3682
3683         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
3684         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
3685           Properly handle pad_push return values.
3686
3687 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
3688
3689         * gst-libs/gst/tag/Makefile.am:
3690         * gst-libs/gst/tag/gstvorbistag.c:
3691         (gst_tag_list_to_vorbiscomment_buffer):
3692           Remove obsolete vorbistag element and debug category.
3693
3694         * gst/playback/gstplaybasebin.c: (check_queue):
3695           Don't divide by 0 when queue-threshold is 0.
3696
3697         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
3698           Don't modify an existing pixel-aspect-ratio if we fail to read
3699           a new one.
3700
3701 2005-11-20  Wim Taymans  <wim@fluendo.com>
3702
3703         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
3704         (gst_vorbisenc_push_packet):
3705         GST_PAD_IS_USABLE is gone, use the return value of
3706         the push or pad_alloc_buffer instead.
3707
3708 2005-11-18  Julien MOUTTE  <julien@moutte.net>
3709
3710         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3711         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
3712         (gst_ximagesink_ximage_destroy),
3713         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
3714         (gst_ximagesink_xwindow_new),
3715         (gst_ximagesink_xwindow_update_geometry),
3716         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
3717         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
3718         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
3719         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
3720         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
3721         (gst_ximagesink_navigation_send_event),
3722         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
3723         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
3724         (gst_ximagesink_finalize), (gst_ximagesink_init),
3725         (gst_ximagesink_class_init):
3726         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
3727         This new version brings correct software scaling, non flickering
3728         window while resizing, pixel aspect ratio handling, usage of
3729         hardware buffer pools, out of data flow event thread for 
3730         navigation and handling of expose events even when being PAUSED,
3731         a new property to keep video aspect ratio when resizing, etc...
3732
3733 2005-11-18  Julien MOUTTE  <julien@moutte.net>
3734
3735         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
3736         (gst_videoscale_fixate_caps): Introduce back caps fixate with
3737         handling of PAR.
3738
3739 2005-11-18    <bilboed@dvdsrc.fluendo.com>
3740
3741         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
3742         Unsetting IS_SINK flag from the fakesink, so decodebin
3743         never behaves as a sink.
3744
3745 2005-11-17  Wim Taymans  <wim@fluendo.com>
3746
3747         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3748         (gst_base_audio_src_change_state):
3749         Fix the audiosrc base class again, we did not unflush.
3750
3751 2005-11-17  Julien MOUTTE  <julien@moutte.net>
3752
3753         * examples/seeking/seek.c: (make_dv_pipeline),
3754         (make_vorbis_theora_pipeline), (make_avi_pipeline),
3755         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
3756         to ogg/vorbis/theora pipeline.
3757
3758 2005-11-17  Wim Taymans  <wim@fluendo.com>
3759
3760         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
3761         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
3762         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
3763         Fix EOS on multiple streams.
3764         More debugging.
3765
3766 2005-11-16  Wim Taymans  <wim@fluendo.com>
3767
3768         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
3769         (gst_ogg_demux_perform_seek):
3770         Segment done must include stream time.
3771
3772         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
3773         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
3774         (gst_ogg_mux_change_state):
3775         Fix ogg muxer again.
3776
3777 2005-11-16  Wim Taymans  <wim@fluendo.com>
3778
3779         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
3780         Fix compile again.
3781
3782 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3783
3784         * ext/libvisual/visual.c: (gst_visual_init):
3785         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
3786         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
3787         (gst_ogg_parse_chain):
3788         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
3789         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
3790         * ext/theora/theoradec.c: (gst_theora_dec_init):
3791         * ext/theora/theoraenc.c: (gst_theora_enc_init):
3792         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
3793         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
3794         * gst/adder/gstadder.c: (gst_adder_class_init),
3795         (gst_adder_dispose):
3796         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
3797         * gst/subparse/gstsubparse.c: (gst_subparse_init):
3798         * gst/videorate/gstvideorate.c: (gst_videorate_init):
3799           Fix a whole set of pad template leaks
3800
3801 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3802
3803         * check/generic/states.c: (GST_START_TEST):
3804           fix the test so that it only checks for elements that are part of
3805           this source module
3806
3807 2005-11-16  Michael Smith <msmith@fluendo.com>
3808
3809         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
3810         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
3811         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
3812         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
3813         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
3814         (gst_ogg_mux_change_state):
3815           Fix leaking collectpads.
3816
3817 2005-11-16  Edward Hervey  <edward@fluendo.com>
3818
3819         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
3820         (gst_videorate_event), (gst_videorate_chain):
3821         Handle segment seeks
3822
3823 2005-11-16  Wim Taymans  <wim@fluendo.com>
3824
3825         * gst-libs/gst/audio/gstbaseaudiosink.c:
3826         (gst_base_audio_sink_provide_clock),
3827         (gst_base_audio_sink_change_state):
3828         Set ringbuffer to non-flushing when going to PAUSED, set to
3829         flushing again when going to READY.
3830
3831         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
3832         (gst_ring_buffer_stop):
3833         Start in flushing mode by default.
3834         Don't set flushing in the _stop method, let the app call
3835         this explicitly.
3836
3837 2005-11-16  Julien MOUTTE  <julien@moutte.net>
3838
3839         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
3840         * gst-libs/gst/video/videosink.h: Add helper function needed
3841         for video sinks.
3842
3843 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
3844
3845         * gst/videoscale/gstvideoscale.c:
3846         (gst_videoscale_handle_src_event):
3847           Don't leak reference to pad parent.
3848
3849 2005-11-16  Wim Taymans  <wim@fluendo.com>
3850
3851         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
3852         Set ringbuffer to flushing when stopping so that we don't
3853         block on wait_segment anymore and livelock.
3854
3855 2005-11-16  Wim Taymans  <wim@fluendo.com>
3856
3857         * examples/seeking/seek.c: (send_event), (do_seek),
3858         (loop_toggle_cb), (segment_done), (main):
3859         Added looping checkbox.
3860
3861 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3862
3863         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
3864         (gst_ogg_demux_init):
3865         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
3866         (gst_vorbis_dec_init):
3867           revert unrefs, they don't pass make check
3868
3869 2005-11-15  Johan Dahlin  <johan@gnome.org>
3870
3871         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
3872         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
3873         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
3874         (gst_vorbis_dec_init):
3875         Fix pad template leaks. 
3876
3877 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
3878
3879         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
3880           Make state change function thread safe.
3881
3882 2005-11-15  Edward Hervey  <edward@fluendo.com>
3883
3884         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
3885         (gst_ogg_demux_class_init):
3886         Implement GstElement::send_event, so we can send seek events
3887         in GST_STATE_READY
3888
3889 2005-11-14  Julien MOUTTE  <julien@moutte.net>
3890
3891         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
3892         Discovered how to take away flickering while resizing the
3893         window. Please don't put that in ximagesink, refactoring in
3894         progress.
3895
3896 2005-11-14  Michael Smith <msmith@fluendo.com>
3897
3898         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
3899         (gst_multifdsink_render):
3900           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
3901
3902 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
3903
3904         * gst/playback/gstplaybin.c: (gen_audio_element):
3905           Use autoaudiosink, it tends to be more widely available than
3906           autoaudiiosink.
3907           
3908 2005-11-14  Andy Wingo  <wingo@pobox.com>
3909
3910         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
3911         as well if it is available. Fixes #316442.
3912
3913 2005-11-14  Michael Smith <msmith@fluendo.com>
3914
3915         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
3916         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
3917         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
3918         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
3919         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
3920         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
3921         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
3922         (gst_vorbisenc_change_state):
3923           Fix a small memory leak in vorbisenc.
3924           Fix large memory leaks in oggmux, also fix lots of state change
3925           bugs in oggmux.
3926
3927 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
3928
3929         * gst/videotestsrc/gstvideotestsrc.c:
3930         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
3931         (gst_videotestsrc_src_fixate):
3932           move fixation to a fixate function
3933           remove negotiate function, basesrc's is good enough
3934           fixes a bug for check when using the element alone
3935
3936 2005-11-13  Edward Hervey  <edward@fluendo.com>
3937
3938         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
3939         (key_toggle_cb), (main):
3940         Added checkboxes for adding/removing the accurate and key_unit seek
3941         flags.
3942
3943 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3944
3945         * configure.ac: back to HEAD
3946
3947 === release 0.9.5 ===
3948
3949 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
3950
3951         * configure.ac:
3952           releasing 0.9.5, "No No Kia"
3953
3954 2005-11-11  Edward Hervey  <edward@fluendo.com>
3955
3956         * examples/seeking/seek.c: (make_parselaunch_pipeline):
3957         Added parse-launch syntax seeking mode for the seeking example.
3958         This should help stress-test even more cases.
3959         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
3960
3961 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
3962
3963         * sys/xvimage/xvimagesink.c:
3964         (gst_xvimagesink_navigation_send_event):
3965           Check whether peer pad exists before sending navigation events
3966           to it.
3967
3968 2005-11-11  Michael Smith <msmith@fluendo.com>
3969
3970         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
3971         (gst_vorbisenc_buffer_from_packet):
3972         * ext/vorbis/vorbisenc.h:
3973           Set duration on encoded buffers. This allows oggmux's
3974           max_page_delay parameter to actually work.
3975
3976 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
3977
3978         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3979         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
3980         (gst_ffmpegcsp_avpicture_fill):
3981         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3982         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
3983           Make palettes work again (see #132341). Use our own macros
3984           for rounding up.
3985
3986 2005-11-10  Andy Wingo  <wingo@pobox.com>
3987
3988         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
3989         string doober.
3990
3991 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
3992
3993         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3994         (gst_ffmpegcsp_transform_caps):
3995           Prefer passthrough in transform_caps
3996
3997 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
3998
3999         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
4000           check for ALSA errors properly, instead of relying on ALSA's
4001           error strings to serve to the user.
4002
4003 2005-11-10  Wim Taymans  <wim@fluendo.com>
4004
4005         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
4006         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
4007         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
4008         Modernise the seek code.
4009
4010 2005-11-10  Michael Smith <msmith@fluendo.com>
4011         
4012         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
4013         (setup_substreams), (set_active_source):
4014           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
4015           trying to go to NULL if we failed to read a file.
4016
4017 2005-11-10  Wim Taymans  <wim@fluendo.com>
4018
4019         * gst/audiotestsrc/gstaudiotestsrc.c:
4020         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
4021         (gst_audiotestsrc_create):
4022         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4023         (gst_sinesrc_get_times), (gst_sinesrc_create):
4024         * gst/videotestsrc/gstvideotestsrc.c:
4025         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
4026         (gst_videotestsrc_create):
4027         The base class can now sync for us.
4028
4029 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4030
4031         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
4032           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
4033           name=source autoprobe=false autoprobe-fps=false copy-mode=1
4034           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
4035           format=(fourcc)I420" ! xvimagesink
4036
4037 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
4038
4039         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4040         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
4041         (gst_sinesrc_newsegment):
4042           Send newsegment event in TIME format, set duration if
4043           num-buffers is set, fix duration querying.
4044
4045 2005-11-10  Michael Smith <msmith@fluendo.com>
4046
4047         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4048         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
4049         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
4050         (gst_ogg_mux_collected):
4051          Fix EOS handling, partially. Now forwarding an EOS event once we have
4052          EOS on all pads works correctly. However, we still don't properly set
4053          EOS on the actual ogg stream pages.
4054
4055 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
4056
4057         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
4058           Set elements to NULL state before disposing of them.
4059
4060 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
4061
4062         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4063
4064         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4065         (gst_base_rtp_depayload_init),
4066         (gst_base_rtp_depayload_set_gst_timestamp):
4067         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4068           We need to send a newsegment event for each instance, not
4069           just for the first instance of this class (get rid of
4070           static variable in function). (#321011).
4071           
4072 2005-11-08  Michael Smith <msmith@fluendo.com>
4073
4074         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4075         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
4076         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
4077         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
4078           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
4079           This makes us mux things correctly according to the ogg muxing
4080           rules. Still not handling EOS correctly right now, though.
4081
4082 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
4083
4084         * gst/audioconvert/gstaudioconvert.c:
4085           Fix typo in docs. 
4086
4087 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
4088
4089         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4090         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
4091           Initialise segment_stop to GST_CLOCK_TIME_NONE when
4092           creating a new chain; should fix live streaming. Also
4093           add more debug output and fix a typo.
4094
4095 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
4096
4097         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4098
4099         * gst/volume/gstvolume.c: (volume_set_caps):
4100           Fix compilation on Solaris with Forte. (#320923)
4101
4102 2005-11-08  Wim Taymans  <wim@fluendo.com>
4103
4104         * gst-libs/gst/audio/gstbaseaudiosink.c:
4105         (gst_base_audio_sink_render):
4106         No need to do a typecheck.
4107
4108 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
4109
4110         * ext/alsa/gstalsa.h:
4111           We register a debug category, so let's use it.
4112
4113 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
4114
4115         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4116         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
4117         Fixed a small problem.
4118
4119 2005-11-04  Wim Taymans  <wim@fluendo.com>
4120
4121         * examples/seeking/Makefile.am:
4122         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
4123         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
4124         (make_playerbin_pipeline), (format_value), (update_scale),
4125         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
4126         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
4127         (print_usage), (main):
4128         Added app for playback speed testing.
4129
4130         * examples/seeking/seek.c: (dynamic_link),
4131         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
4132         (make_mpeg_pipeline), (do_seek), (set_update_scale),
4133         (message_received), (main):
4134         Updated seek example.
4135
4136 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
4137
4138         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4139         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4140         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
4141         (gst_base_rtp_depayload_set_clock):
4142         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4143         Don't sleep on the bench (system clock) when you have a nice 
4144         comfortable bed (Gstreamer clock) to sleep on.
4145
4146 2005-11-03  Wim Taymans  <wim@fluendo.com>
4147
4148         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4149         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
4150         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
4151         Handle the case where a pad_block failed.
4152
4153 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
4154
4155         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
4156
4157         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4158         (gst_base_rtp_depayload_add_to_queue),
4159         (gst_base_rtp_depayload_push),
4160         (gst_base_rtp_depayload_set_gst_timestamp),
4161         (gst_base_rtp_depayload_queue_release):
4162           Fixes some bugs in the depayloader's queuing/de-queueing code.
4163
4164 2005-10-31  Michael Smith <msmith@fluendo.com>
4165
4166         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
4167         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
4168         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
4169           Patch from Alessandro Decina <alessandro@nnva.org>.
4170           Make oggdemux only find the final time in a chain, not per-pad,
4171           since the per-pad information can be very expensive to locate, and
4172           it isn't used anywhere. This makes reading a file containing
4173           OggSkeleton reasonably fast.
4174           Also, make chain finding work when there are logical bitstreams that
4175           can't be decoded. Fixes #319110.
4176
4177 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4178
4179         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4180         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4181         (gst_base_rtp_depayload_chain),
4182         (gst_base_rtp_depayload_add_to_queue),
4183         (gst_base_rtp_depayload_push),
4184         (gst_base_rtp_depayload_set_gst_timestamp),
4185         (gst_base_rtp_depayload_queue_release),
4186         (gst_base_rtp_depayload_start_thread),
4187         (gst_base_rtp_depayload_set_property),
4188         (gst_base_rtp_depayload_get_property):
4189         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4190         Some random fixes, to fullfill the desires of thomas.
4191
4192 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4193
4194         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4195         (gst_base_rtp_depayload_add_to_queue),
4196         (gst_base_rtp_depayload_push):
4197         Fixed the queueing algorithm.
4198
4199 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4200
4201         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4202         (gst_base_rtp_depayload_push):
4203         A small fix
4204
4205 2005-10-31  Wim Taymans  <wim@fluendo.com>
4206
4207         * gst-libs/gst/audio/gstringbuffer.h:
4208         Don't break ABI.
4209
4210         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4211         (gst_ffmpeg_caps_to_pixfmt):
4212         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4213         (gst_ffmpegcsp_set_caps):
4214         Some more comments.
4215         Handle missing required caps fields better.
4216
4217 2005-10-31  Wim Taymans  <wim@fluendo.com>
4218
4219         * gst-libs/gst/audio/gstbaseaudiosink.c:
4220         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
4221         (gst_base_audio_sink_render):
4222         * gst-libs/gst/audio/gstringbuffer.c:
4223         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4224         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
4225         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
4226         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
4227         (gst_ring_buffer_read):
4228         * gst-libs/gst/audio/gstringbuffer.h:
4229         Add flushing mode to the ringbuffer so that it in all cases does
4230         not try to handle more audio. This makes sure it does not try to
4231         block anymore when flushing and fixes a livelock.
4232
4233 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
4234
4235         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
4236         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
4237         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
4238           Explicitly check for -1 values before doing a conversion
4239           and always map them to -1. (#315545)
4240
4241 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4242
4243         * gst/playback/gstplaybin.c: (gen_video_element):
4244           first try autovideosink, then xvimagesink, then error out
4245         * po/POTFILES.in:
4246           add translatable file
4247         * po/af.po:
4248         * po/az.po:
4249         * po/cs.po:
4250         * po/en_GB.po:
4251         * po/hu.po:
4252         * po/it.po:
4253         * po/nb.po:
4254         * po/nl.po:
4255         * po/or.po:
4256         * po/sq.po:
4257         * po/sr.po:
4258         * po/sv.po:
4259         * po/uk.po:
4260         * po/vi.po:
4261           update translations
4262
4263 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
4264
4265         * gst-libs/gst/rtp/gstbasedepayload.c:
4266         * gst-libs/gst/rtp/gstbasedepayload.h:
4267           Minor cleanups
4268
4269 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
4270
4271         * gst/playback/.cvsignore:
4272         * gst/playback/decodetest.c:
4273         * gst/playback/test3.c:
4274           Port these two tests as well.
4275
4276 2005-10-27  Wim Taymans  <wim@fluendo.com>
4277
4278         * ext/theora/theoradec.c: (theora_dec_src_query),
4279         (theora_dec_sink_event):
4280         * ext/theora/theoraenc.c: (theora_enc_sink_event),
4281         (theora_enc_change_state):
4282         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
4283         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
4284         Take proper locks when handling events.
4285
4286 2005-10-27  Wim Taymans  <wim@fluendo.com>
4287
4288         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
4289         (gst_adder_change_state):
4290         Fix timestamps and fix deadlock when stopping the collectpads.
4291
4292 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
4293
4294         * gst-libs/gst/rtp/gstrtpbuffer.h:
4295         Declaring the payload types as strings too so that they can be used
4296         in the padtemplate inialization.
4297
4298 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
4299
4300         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
4301
4302         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4303         (gst_base_rtp_depayload_class_init):
4304         Fixes a small but nasty bug. The derived elements no longer segfaults
4305         on finalization.
4306
4307 2005-10-26  Michael Smith <msmith@fluendo.com>
4308
4309         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
4310           When clearing an audioconvert context, set tmpbufsize to zero, so
4311           we'll allocate it again later if required.
4312           This fixes audioconvert re-negotiating formats, which previously
4313           segfaulted with a NULL destination buffer.
4314
4315 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
4316
4317         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4318         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
4319         (gst_base_rtp_depayload_set_gst_timestamp),
4320         (gst_base_rtp_depayload_queue_release):
4321         Fixed a smalll memleak.
4322
4323 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
4324         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4325         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
4326         (gst_base_rtp_depayload_finalize),
4327         (gst_base_rtp_depayload_setcaps),
4328         (gst_base_rtp_depayload_add_to_queue),
4329         (gst_base_rtp_depayload_push),
4330         (gst_base_rtp_depayload_set_gst_timestamp),
4331         (gst_base_rtp_depayload_queue_release),
4332         (gst_base_rtp_depayload_thread),
4333         (gst_base_rtp_depayload_change_state):
4334         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4335         Changed the C++ comments to C comments
4336
4337 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
4338
4339         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
4340         * gst/tcp/gsttcpclientsrc.h:
4341         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
4342         * gst/tcp/gsttcpserversrc.h:
4343           Remove unused 'curoffset' structure member.
4344
4345 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
4346
4347         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4348         (gst_base_rtp_depayload_base_init),
4349         (gst_base_rtp_depayload_finalize):
4350         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4351         * gst-libs/gst/rtp/gstbasertppayload.h:
4352           The pad-template on the sinkpad should be set by the derived classes.
4353           Also added some useful macros.
4354
4355 2005-10-24  Wim Taymans  <wim@fluendo.com>
4356
4357         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4358         Correctly flush decoder samples even if we could not
4359         copy them to an output buffer. Fixes #319618.
4360
4361 2005-10-24  Julien MOUTTE  <julien@moutte.net>
4362
4363         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
4364         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
4365         the caps against our xcontext caps.
4366
4367 2005-10-24  Wim Taymans  <wim@fluendo.com>
4368
4369         * gst-libs/gst/audio/gstbaseaudiosink.c:
4370         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4371         Remove g_print
4372         Use sync property from baseclass to disable sync.
4373
4374 2005-10-24  Wim Taymans  <wim@fluendo.com>
4375
4376         * gst-libs/gst/audio/gstbaseaudiosink.c:
4377         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4378         Buffers with no timestamps get aligned with previous buffers or
4379         on underrun, played ASAP.
4380
4381 2005-10-24  Julien MOUTTE  <julien@moutte.net>
4382
4383         * gst-libs/gst/video/video.h:
4384         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4385         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
4386         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
4387         here comes my change on caps for framerate and geometry range.
4388         We are now accepting 1 to MAXINT for width and height, and from
4389         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
4390         to be blended correctly in videomixer.
4391
4392 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4393
4394         * configure.ac:
4395           back to HEAD
4396
4397 === release 0.9.4 ===
4398
4399 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4400
4401         * NEWS:
4402         * RELEASE:
4403         * configure.ac:
4404           releasing 0.9.4, "Velociraptor"
4405
4406 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4407
4408         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
4409         * po/POTFILES.in:
4410           STOPPED -> FAILED
4411
4412 2005-10-21  Wim Taymans  <wim@fluendo.com>
4413
4414         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4415         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
4416         (pad_blocked), (close_pad_link), (new_pad):
4417         Don't try to remove elements twice.
4418
4419 2005-10-21  Wim Taymans  <wim@fluendo.com>
4420
4421         * ext/theora/theoradec.c: (theora_dec_src_query),
4422         (theora_dec_sink_event):
4423         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4424         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
4425         (vorbis_handle_data_packet):
4426         * ext/vorbis/vorbisdec.h:
4427         Fix old naming.
4428
4429         * gst-libs/gst/audio/gstbaseaudiosink.c:
4430         (gst_base_audio_sink_render):
4431         Don't try to sync on buffers without a timestamp.
4432
4433 2005-10-21  Wim Taymans  <wim@fluendo.com>
4434
4435         * ext/theora/theoradec.c: (theora_dec_src_query),
4436         (theora_dec_sink_event):
4437         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4438         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
4439         (vorbis_handle_data_packet):
4440         * ext/vorbis/vorbisdec.h:
4441         Fix old naming.
4442
4443 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
4444
4445         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
4446         (gst_vorbisenc_src_query):
4447           Implement position and duration queries.
4448
4449         * gst/playback/test3.c: (update_scale), (main):
4450           Fix for async state changes and print nicer output.
4451
4452 2005-10-20  Wim Taymans  <wim@fluendo.com>
4453
4454         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4455         (dump_element_stats), (main):
4456         * gst/playback/test6.c: (main):
4457         Fix tests again
4458
4459 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
4460
4461         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
4462         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
4463           Don't use functions for position queries when handling
4464           duration queries.
4465
4466 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
4467
4468         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4469         (vorbis_handle_data_packet), (vorbis_dec_chain),
4470         (vorbis_dec_change_state):
4471         * ext/vorbis/vorbisdec.h:
4472           Vorbis streams can be embedded in other container formats
4473           than ogg, container formats where the demuxer might set 
4474           timestamps on encoded vorbis buffers instead of those silly 
4475           granulepos thingies. In short: make vorbisdec handle 
4476           timestamps on incoming buffers as well.
4477
4478 2005-10-20  Wim Taymans  <wim@fluendo.com>
4479
4480         * gst/playback/gstplaybasebin.c: (group_destroy),
4481         (gst_play_base_bin_change_state):
4482         Fix leak.
4483         Handle case where playbasebin is now ASYNC because
4484         decodebin is.
4485
4486 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
4487
4488         * gst/audioconvert/Makefile.am:
4489         * gst/audioconvert/bufferframesconvert.c:
4490         * gst/audioconvert/plugin.c: (plugin_init):
4491         * gst/audioconvert/plugin.h:
4492           And bye bye buffer-frames-convert
4493
4494 2005-10-19  Wim Taymans  <wim@fluendo.com>
4495
4496         * check/elements/audioconvert.c:
4497         * docs/libs/tmpl/gstaudio.sgml:
4498         * docs/libs/tmpl/gstcolorbalance.sgml:
4499         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4500         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
4501         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
4502         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
4503         * gst-libs/gst/audio/audio.h:
4504         * gst/audioconvert/audioconvert.h:
4505         * gst/audioconvert/gstaudioconvert.c:
4506         (gst_audio_convert_parse_caps):
4507         * gst/volume/gstvolume.c:
4508         Bye bye buffer-frames.
4509
4510 2005-10-19  Wim Taymans  <wim@fluendo.com>
4511
4512         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4513         (query_positions_elems), (query_positions_pads), (update_scale),
4514         (do_seek), (set_update_scale), (message_received), (main):
4515         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
4516         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
4517         (gst_ogg_demux_loop):
4518         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
4519         * ext/theora/theoradec.c: (theora_dec_src_query),
4520         (theora_dec_sink_event):
4521         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4522         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
4523         * gst/adder/gstadder.c: (gst_adder_query):
4524         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
4525         * gst/playback/test3.c: (update_scale):
4526         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4527         (dump_element_stats), (main):
4528         * gst/playback/test6.c: (main):
4529         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
4530         Query API update.
4531
4532 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
4533
4534         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4535         (xml_check_first_element), (xml_type_find), (smil_type_find),
4536         (plugin_init):
4537           Add typefinding for SMIL and for generic XML. Based on patch by
4538           Akos Maroy (#308663).
4539
4540 2005-10-18  Wim Taymans  <wim@fluendo.com>
4541
4542         * gst/playback/Makefile.am:
4543         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4544         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
4545         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
4546         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
4547         (gst_decode_bin_change_state):
4548         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4549         (gst_play_bin_send_event_to_sink):
4550         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4551         (dump_element_stats), (main):
4552         * gst/playback/test6.c: (main):
4553         Make playbin async, it'll commit state to paused when all streams
4554         are detected.
4555         Remove ugly hack.
4556         Added test6.c to show async behaviour.
4557
4558 2005-10-18  Wim Taymans  <wim@fluendo.com>
4559
4560         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4561         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
4562         Fix for segment-start/stop API change.
4563
4564 2005-10-18  Wim Taymans  <wim@fluendo.com>
4565
4566         * check/Makefile.am:
4567         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
4568         (main):
4569         Add future test for clock selection.
4570
4571 2005-10-18  Wim Taymans  <wim@fluendo.com>
4572
4573         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
4574         (gst_alsasink_close):
4575         Set handle to NULL.
4576
4577         * gst-libs/gst/audio/gstringbuffer.c:
4578         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4579         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
4580         (gst_ring_buffer_start), (gst_ring_buffer_pause),
4581         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
4582         (gst_ring_buffer_read):
4583         More debug info.
4584
4585 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
4586
4587         * gst/audiotestsrc/Makefile.am:
4588         * gst/sine/Makefile.am:
4589         * gst/volume/Makefile.am:
4590           fix broken build of controllerized plugins
4591
4592 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
4593
4594         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4595
4596         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
4597         (gst_riff_create_video_template_caps):
4598           Add support for Indeo-3 (IV32).
4599
4600 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4601
4602         * configure.ac:
4603           rewrite
4604
4605 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4606
4607         * gst-libs/gst/video/video.c: (gst_video_get_size):
4608         * gst/audiotestsrc/gstaudiotestsrc.c:
4609           doc updates
4610
4611 2005-10-17  Andy Wingo  <wingo@pobox.com>
4612
4613         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
4614         with the collectpads change.
4615         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
4616
4617         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
4618
4619         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
4620
4621         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
4622         alloc_buffer flow return to callers.
4623         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
4624         change. Fix some memleaks in theoraenc.
4625
4626         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
4627         in strange circumstance.
4628
4629 2005-10-17  Julien MOUTTE  <julien@moutte.net>
4630
4631         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4632         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
4633         from caps, let's use the caps...
4634
4635 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4636
4637         * configure.ac:
4638           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
4639
4640 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4641
4642         * gst-libs/gst/interfaces/Makefile.am:
4643           fix silly typo
4644
4645 2005-10-16  Andy Wingo  <wingo@pobox.com>
4646
4647         * gst/playback/gstdecodebin.c
4648         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
4649         function!
4650         (try_to_link_1): Increase kraziness level.
4651
4652 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4653
4654         * configure.ac:
4655           restructure like the core one
4656         * gst-libs/gst/audio/Makefile.am:
4657         * gst-libs/gst/interfaces/Makefile.am:
4658         * gst-libs/gst/net/Makefile.am:
4659         * gst-libs/gst/riff/Makefile.am:
4660         * gst-libs/gst/rtp/Makefile.am:
4661         * gst-libs/gst/tag/Makefile.am:
4662         * gst-libs/gst/video/Makefile.am:
4663           use correct linker flags, now the libs are properly versioned
4664         * check/elements/audioconvert.c: (verify_convert):
4665         * ext/alsa/gstalsaplugin.c:
4666         * ext/cdparanoia/gstcdparanoia.c:
4667         * ext/gnomevfs/gstgnomevfs.c:
4668         * ext/libvisual/visual.c:
4669         * ext/ogg/gstogg.c:
4670         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
4671         * ext/theora/theora.c:
4672         * ext/vorbis/vorbis.c:
4673         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
4674         * gst-libs/gst/tag/gsttagediting.c:
4675         * gst-libs/gst/video/video.c:
4676         * gst/adder/gstadder.c:
4677         * gst/audioconvert/plugin.c:
4678         * gst/audiorate/gstaudiorate.c:
4679         * gst/audioresample/gstaudioresample.c:
4680         * gst/audioresample/resample_ref.c: (resample_scale_ref):
4681         * gst/audioscale/gstaudioscale.c:
4682         * gst/audioscale/resample.c:
4683         * gst/audiotestsrc/gstaudiotestsrc.c:
4684         * gst/ffmpegcolorspace/gstffmpeg.c:
4685         * gst/playback/gstdecodebin.c: (close_pad_link):
4686         * gst/playback/gstplaybin.c: (gen_video_element),
4687         (gen_audio_element):
4688         * gst/sine/gstsinesrc.c:
4689         * gst/subparse/gstsubparse.c:
4690         * gst/tags/gsttagediting.c:
4691         * gst/tcp/gsttcpplugin.c:
4692         * gst/typefind/gsttypefindfunctions.c:
4693         * gst/videorate/gstvideorate.c:
4694         * gst/videoscale/gstvideoscale.c:
4695         * gst/videotestsrc/gstvideotestsrc.c:
4696         * gst/volume/gstvolume.c:
4697         * sys/v4l/gstv4l.c:
4698         * sys/ximage/ximage.c:
4699         * sys/xvimage/xvimagesink.c:
4700           fix up defines
4701
4702 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
4703
4704         * ext/vorbis/vorbisenc.c:
4705         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
4706         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4707         (gst_tag_to_vorbis_comments):
4708           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
4709
4710 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
4711
4712         * examples/stats/mp2ogg.c:
4713         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4714           typo fixes
4715
4716 2005-10-13  Michael Smith <msmith@fluendo.com>
4717
4718         * ext/ogg/gstoggmux.c:
4719           Use magic glib macros to define constants as 64 bit, to ensure
4720           appropriate vararg passing.
4721
4722 2005-10-13  Michael Smith <msmith@fluendo.com>
4723
4724         * ext/ogg/gstoggmux.c:
4725         * gst/audioconvert/audioconvert.c: (float):
4726           Don't use LL suffix, as it's not portable, and neither of these
4727           uses required it anyway.
4728
4729 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
4730
4731         * examples/indexing/indexmpeg.c: (main):
4732         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
4733         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
4734         (cdparanoia_convert), (cdparanoia_query):
4735         * ext/cdparanoia/gstcdparanoia.h:
4736         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
4737         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
4738         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
4739         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
4740         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
4741         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
4742         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
4743         (gst_multifdsink_render), (gst_multifdsink_start),
4744         (gst_multifdsink_stop):
4745         * gst/tcp/gstmultifdsink.h:
4746         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
4747         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
4748         (gst_tcpclientsink_stop):
4749         * gst/tcp/gsttcpclientsink.h:
4750         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
4751         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
4752         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
4753         * gst/tcp/gsttcpclientsrc.h:
4754         * gst/tcp/gsttcpserversink.h:
4755         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
4756         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
4757         (gst_tcpserversrc_stop):
4758         * gst/tcp/gsttcpserversrc.h:
4759         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
4760         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
4761         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
4762           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
4763           moved bitshift from macro to enum definition
4764
4765 2005-10-12  Wim Taymans  <wim@fluendo.com>
4766
4767         * examples/seeking/Makefile.am:
4768         Oops.
4769
4770 2005-10-12  Wim Taymans  <wim@fluendo.com>
4771
4772         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4773         (gst_ring_buffer_read), (gst_ring_buffer_clear):
4774         Don't assert on normal stuff.
4775
4776         * gst/playback/gstplaybin.c: (do_playbin_seek):
4777         API fix.
4778
4779 2005-10-12  Wim Taymans  <wim@fluendo.com>
4780
4781         * check/pipelines/simple_launch_lines.c: (run_pipeline):
4782         * examples/seeking/Makefile.am:
4783         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
4784         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4785         (do_seek), (set_update_scale), (message_received), (main):
4786         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4787         (gst_ring_buffer_read), (gst_ring_buffer_clear):
4788         Update for _get_state() API change.
4789
4790 2005-10-11  Wim Taymans  <wim@fluendo.com>
4791
4792         * gst-libs/gst/audio/gstbaseaudiosink.c:
4793         (gst_base_audio_sink_render):
4794         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4795         (gst_base_audio_src_create):
4796         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4797         (gst_ring_buffer_read):
4798         Cleanups.
4799         Commit and read from ringbuffer in samples rather than bytes.
4800
4801 2005-10-11  Wim Taymans  <wim@fluendo.com>
4802
4803         * gst-libs/gst/audio/gstbaseaudiosink.c:
4804         (gst_base_audio_sink_render):
4805         Respect segment rate and accum when scheduling samples.
4806
4807 2005-10-11  Julien MOUTTE  <julien@moutte.net>
4808
4809         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
4810         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
4811         EOS correctly, that needs more work.
4812
4813 2005-10-11  Wim Taymans  <wim@fluendo.com>
4814
4815         * check/generic/states.c: (GST_START_TEST):
4816         remove old property.
4817
4818         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
4819         (gst_ogg_demux_perform_seek):
4820         * ext/theora/theoradec.c: (theora_dec_sink_event):
4821         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4822         (vorbis_handle_data_packet):
4823         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4824         (gst_base_rtp_depayload_set_gst_timestamp):
4825         * gst/videorate/gstvideorate.c: (gst_videorate_event):
4826         Update for newsegment API change.
4827
4828 2005-10-11  Michael Smith <msmith@fluendo.com>
4829
4830         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
4831         (do_playbin_seek), (gst_play_bin_send_event):
4832           Override send_event differently, so that we can takes bits of
4833           functionality from GstPipeline (special handling for seeks,
4834           including pausing/resuming, and resetting stream time) and still get
4835           the appropriate behaviour of only forwarding event to a single sink,
4836           rather than all of them.
4837           Unfortunately requires a lot of code duplication, but the
4838           alternatives are equally ugly in the end.
4839
4840 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
4841
4842         * check/elements/audioconvert.c: (setup_audioconvert),
4843         (cleanup_audioconvert), (get_int_caps), (verify_convert),
4844         (GST_START_TEST), (audioconvert_suite):
4845           clean up tests a little, fix some leaks.
4846
4847 2005-10-10  Wim Taymans  <wim@fluendo.com>
4848
4849         * ext/alsa/gstalsasink.c:
4850         Also allow unsigned int.
4851
4852         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4853         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
4854         Small cleanup
4855
4856 2005-10-10  Wim Taymans  <wim@fluendo.com>
4857
4858         * check/pipelines/simple_launch_lines.c: (run_pipeline):
4859         Small update, use API as stated in design docs.
4860
4861         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4862         (update_scale), (do_seek), (seek_cb), (set_update_scale),
4863         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
4864         (message_received), (main):
4865         Updated seek example for GOption. Some usability improvements.
4866
4867 2005-10-10  Wim Taymans  <wim@fluendo.com>
4868
4869         * gst/audioconvert/audioconvert.h:
4870         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
4871         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
4872         Alloc temp storage somewhere else where we can do it more
4873         portable.
4874
4875 2005-10-10  Wim Taymans  <wim@fluendo.com>
4876
4877         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
4878         (gst_tcpserversrc_start):
4879         Don't block in accept while doing the state change, move
4880         to poll and make cancellable.
4881
4882 2005-10-09  Philippe Khalaf <burger@speedy.org>
4883
4884         * gst-libs/gst/rtp/rtpbasedepayload.c:
4885         Set timestamp and add queue delay to timestamp
4886         * gst-libs/gst/rtp/rtpbuffer.h:
4887         Set correct payload type for h263
4888
4889 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
4890
4891         * gst/audiotestsrc/gstaudiotestsrc.c:
4892         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
4893         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
4894         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
4895         (gst_audiotestsrc_create_triangle),
4896         (gst_audiotestsrc_create_silence),
4897         (gst_audiotestsrc_create_white_noise),
4898         (gst_audiotestsrc_init_pink_noise),
4899         (gst_audiotestsrc_generate_pink_noise_value),
4900         (gst_audiotestsrc_create_pink_noise),
4901         (gst_audiotestsrc_change_wave):
4902         * gst/audiotestsrc/gstaudiotestsrc.h:
4903           fixed typo, added pink noise
4904
4905 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
4906
4907         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
4908         (plugin_init):
4909           Add wavpack and spc typefind functions from 0.8 branch.
4910
4911 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
4912
4913         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
4914         (ar_type_find), (msdos_type_find), (plugin_init):
4915           Add typefind functions for tar archives, ar archives,
4916           RAR archives, and msdos-executables (dlls, exe, etc.).
4917           Some of those would be wrongly identified as mpeg
4918           streams of some sort before (#315550).
4919
4920 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
4921
4922         * configure.ac:
4923         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4924         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4925         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
4926         * gst/audiotestsrc/Makefile.am:
4927         * gst/audiotestsrc/gstaudiotestsrc.c:
4928         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
4929         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
4930         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
4931         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
4932         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
4933         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
4934         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
4935         (gst_audiotestsrc_create_silence),
4936         (gst_audiotestsrc_create_white_noise),
4937         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
4938         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
4939         (gst_audiotestsrc_start), (plugin_init):
4940         * gst/audiotestsrc/gstaudiotestsrc.h:
4941           add new plugin and element
4942         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
4943           use gobject_class
4944
4945 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
4946
4947         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
4948         (gst_adder_init), (gst_adder_request_new_pad),
4949         (gst_adder_change_state):
4950           Add query function to source pad, so adder reports the correct
4951           time/sample position when queried (#315457); fix state change
4952           function; use GST_DEBUG_FUNCPTR() for pad functions.
4953
4954 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
4955
4956         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
4957           Fix leaks in typefind registration
4958           Clean up the gratuitous commenting and whitespacing a little
4959
4960 2005-10-08  Wim Taymans  <wim@fluendo.com>
4961
4962         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
4963         Only actually wait for the thread to be stopped if it's 
4964         running.
4965
4966 2005-10-08  Wim Taymans  <wim@fluendo.com>
4967
4968         * gst-libs/gst/audio/gstbaseaudiosink.c:
4969         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
4970         If we receive EOS we can start playback of what we had.
4971
4972 2005-10-08  Wim Taymans  <wim@fluendo.com>
4973
4974         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
4975         (gst_multifdsink_finalize), (multifdsink_hash_remove),
4976         (gst_multifdsink_stop):
4977         Fix crasher when going to NULL multiple times.
4978
4979 2005-10-06  Wim Taymans  <wim@fluendo.com>
4980
4981         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
4982         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
4983         * gst-libs/gst/audio/gstbaseaudiosrc.h:
4984         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
4985         patch from Edgard Lima <edgard.lima@indt.org.br>
4986         Fixed gstbaseaudiosrc adding ring buffer sync to it.
4987
4988 2005-10-06  Wim Taymans  <wim@fluendo.com>
4989
4990         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
4991         Report the FLOW_RETURN as string in the error message.
4992
4993         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
4994         Don't assert when clearing an unnegotiated buffer.
4995
4996 2005-10-04  Michael Smith <msmith@fluendo.com>
4997
4998         * gst/playback/gstplaybasebin.c: (group_destroy),
4999         (gen_preroll_element), (remove_groups), (setup_source):
5000         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
5001         (setup_sinks), (gst_play_bin_send_event),
5002         (gst_play_bin_change_state):
5003           Set state to NULL before removing from bin. Fix refcounting.
5004
5005 2005-10-04  Michael Smith <msmith@fluendo.com>
5006
5007         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
5008           Correct refcounting in send_event() function. Previously was wrong
5009           if the first sink was unable to handle the event.
5010
5011 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5012
5013         * configure.ac:
5014           back to development
5015
5016 === release 0.9.3 ===
5017
5018 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5019
5020         * configure.ac:
5021           Releasing 0.9.3, "De Facto"
5022
5023 2005-10-03  Andy Wingo  <wingo@pobox.com>
5024
5025         * gst/playback/gstdecodebin.c (try_to_link_1)
5026         (remove_element_chain): set element to NULL before removing it.
5027
5028 2005-10-02  Johan Dahlin  <johan@gnome.org>
5029
5030         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
5031         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
5032         MT safe.
5033
5034 2005-10-02  Andy Wingo  <wingo@pobox.com>
5035
5036         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
5037         (gst_ring_buffer_prepare_read): 
5038         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
5039         Demote to LOG.
5040
5041 2005-09-29  Wim Taymans  <wim@fluendo.com>
5042
5043         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
5044         * ext/theora/theoradec.c: (theora_handle_data_packet):
5045         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
5046         Propagate error codes from alloc_buffer too.
5047
5048 2005-09-29  Wim Taymans  <wim@fluendo.com>
5049
5050         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
5051         We use fixed caps.
5052
5053         * gst/playback/Makefile.am:
5054         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5055         (dump_element_stats), (main):
5056         Added example stream introspection code.
5057
5058 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
5059
5060         * gst/adder/gstadder.c: (gst_adder_collected):
5061           fix adder for float elements
5062
5063 2005-09-28  Wim Taymans  <wim@fluendo.com>
5064
5065         * gst-libs/gst/audio/gstbaseaudiosink.c:
5066         (gst_base_audio_sink_class_init),
5067         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
5068         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5069         (gst_base_audio_src_class_init),
5070         (gst_base_audio_src_provide_clock):
5071         get_clock -> provide_clock
5072
5073 2005-09-28  Andy Wingo  <wingo@pobox.com>
5074
5075         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
5076         and unlocking.
5077
5078         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
5079         unlocking.
5080
5081         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
5082         Actually add the pad template.
5083         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
5084
5085         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
5086         I'm at it...
5087
5088         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
5089         from fdsrc. Get caps in create() instead of start() so it can be
5090         interrupted. Interruption somewhat untested.
5091
5092         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
5093         Proper EOS handling.
5094
5095 2005-09-27  Andy Wingo  <wingo@pobox.com>
5096
5097         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
5098
5099         * gst/tcp/gsttcpserversrc.c: Cleaned up.
5100
5101         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
5102
5103         * gst/tcp/gsttcp.h: 
5104         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
5105         out of tcpclientsrc.c. Cancellable.
5106         (gst_tcp_socket_read): Made private, cancellable, with better
5107         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
5108         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
5109         whole buffer, and better diagnostics.
5110         (gst_tcp_gdp_read_caps): Same.
5111
5112         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
5113
5114 2005-09-26  Andy Wingo  <wingo@pobox.com>
5115
5116         * gst/sine/gstsinesrc.h:
5117         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
5118         change the 'sync' property to 'is-live' and implement it halfway,
5119         update for controller api change.
5120
5121         * gst/volume/gstvolume.c (volume_transform_ip): Update for
5122         controller api change.
5123
5124 2005-09-24  Wim Taymans  <wim@fluendo.com>
5125
5126         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
5127         * gst-libs/gst/audio/gstaudiosink.c:
5128         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
5129         (gst_audioringbuffer_stop):
5130         * gst-libs/gst/audio/gstbaseaudiosink.c:
5131         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
5132         (gst_base_audio_sink_change_state):
5133         * gst-libs/gst/audio/gstbaseaudiosink.h:
5134         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
5135         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
5136         (gst_ring_buffer_commit), (gst_ring_buffer_read):
5137         * gst-libs/gst/audio/gstringbuffer.h:
5138         Fix sync again. Moved sample alignment to basesink.
5139
5140 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
5141
5142         * docs/plugins/Makefile.am:
5143         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5144         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5145         * gst/volume/gstvolume.c:
5146           add/fix docs
5147         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
5148         * gst-libs/gst/audio/audio.h:
5149           add conversion macros for frames <-> clocktime
5150
5151 2005-09-23  David Schleef  <ds@schleef.org>
5152
5153         * gst/audioresample/Makefile.am:
5154         * gst/audioresample/debug.h:
5155         * gst/audioresample/gstaudioresample.c:
5156         * gst/audioresample/resample.c: Convert to using gst debugging
5157
5158 2005-09-22  Wim Taymans  <wim@fluendo.com>
5159
5160         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5161         (gst_play_bin_send_event):
5162         Only seek on one sink, the first one that succeeds.
5163
5164 2005-09-22  Michael Smith <msmith@fluendo.com>
5165
5166         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
5167         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
5168         Don't flush encoder state unless we have an initialised encoder.
5169         Clear out encoder state on PAUSED_TO_READY.
5170
5171 2005-09-22  Wim Taymans  <wim@fluendo.com>
5172
5173         * gst-libs/gst/rtp/gstbasertppayload.c:
5174         (gst_basertppayload_class_init), (gst_basertppayload_init),
5175         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5176         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5177         (gst_basertppayload_is_filled), (gst_basertppayload_push),
5178         (gst_basertppayload_set_property),
5179         (gst_basertppayload_get_property),
5180         (gst_basertppayload_change_state):
5181         * gst-libs/gst/rtp/gstbasertppayload.h:
5182         Added max-ptime to control amount of data in the rtp packets.
5183
5184 2005-09-21  Andy Wingo  <wingo@pobox.com>
5185
5186         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
5187         thingies.
5188
5189         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
5190         can be called multiple times, dogs.
5191
5192 2005-09-21  Wim Taymans  <wim@fluendo.com>
5193
5194         * gst-libs/gst/rtp/gstbasertppayload.c:
5195         (gst_basertppayload_class_init), (gst_basertppayload_init),
5196         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5197         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5198         (gst_basertppayload_push), (gst_basertppayload_get_property),
5199         (gst_basertppayload_change_state):
5200         Allow 0 ssrc too.
5201
5202 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
5203
5204         * docs/libs/compiling.sgml:
5205           fixing typos
5206
5207 2005-09-20  Wim Taymans  <wim@fluendo.com>
5208
5209         * gst-libs/gst/rtp/gstbasertppayload.c:
5210         (gst_basertppayload_class_init), (gst_basertppayload_init),
5211         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5212         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5213         (gst_basertppayload_push), (gst_basertppayload_set_property),
5214         (gst_basertppayload_get_property),
5215         (gst_basertppayload_change_state):
5216         * gst-libs/gst/rtp/gstbasertppayload.h:
5217         Added property to configure sequence number offsets.
5218
5219 2005-09-20  Wim Taymans  <wim@fluendo.com>
5220
5221         * gst-libs/gst/rtp/gstbasertppayload.c:
5222         (gst_basertppayload_class_init), (gst_basertppayload_init),
5223         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5224         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5225         (gst_basertppayload_push), (gst_basertppayload_set_property),
5226         (gst_basertppayload_get_property),
5227         (gst_basertppayload_change_state):
5228         * gst-libs/gst/rtp/gstbasertppayload.h:
5229         Make timestamp offset configurable.
5230
5231 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5232
5233         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5234           fix wrong pop/unref
5235
5236 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
5237
5238         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
5239
5240         * gst-libs/gst/interfaces/propertyprobe.c:
5241         (gst_property_probe_probe_property_name),
5242         (gst_property_probe_needs_probe_name),
5243         (gst_property_probe_get_values_name),
5244         (gst_property_probe_probe_and_get_values_name):
5245           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
5246           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
5247
5248 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
5249
5250         * check/Makefile.am:
5251           have some tests be disabled for valgrinding
5252         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
5253         (GST_START_TEST):
5254         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
5255           Fix A Leak.  Chain To Parent Finalize.
5256
5257 2005-09-19  Wim Taymans  <wim@fluendo.com>
5258
5259         * examples/seeking/seek.c: (make_wav_pipeline), (main):
5260         Fixed wav pipeline.
5261
5262 2005-09-19  Wim Taymans  <wim@fluendo.com>
5263
5264         * gst-libs/gst/rtp/gstbasertppayload.c:
5265         (gst_basertppayload_class_init), (gst_basertppayload_init),
5266         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5267         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5268         (gst_basertppayload_push), (gst_basertppayload_get_property),
5269         (gst_basertppayload_change_state):
5270         Posting ERROR and WARNING messages is good.
5271
5272 2005-09-19  Wim Taymans  <wim@fluendo.com>
5273
5274         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5275         (gst_base_rtp_depayload_add_to_queue),
5276         (gst_base_rtp_depayload_push),
5277         (gst_base_rtp_depayload_set_gst_timestamp),
5278         (gst_base_rtp_depayload_queue_release):
5279         This one was not supposed to go in.
5280
5281 2005-09-19  Wim Taymans  <wim@fluendo.com>
5282
5283         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5284         Fix for bus API.
5285
5286         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5287         (gst_base_rtp_depayload_chain),
5288         (gst_base_rtp_depayload_add_to_queue),
5289         (gst_base_rtp_depayload_push),
5290         (gst_base_rtp_depayload_set_gst_timestamp),
5291         (gst_base_rtp_depayload_queue_release):
5292         Some cleanups.
5293
5294         * gst-libs/gst/rtp/gstbasertppayload.c:
5295         (gst_basertppayload_class_init), (gst_basertppayload_init),
5296         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
5297         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5298         (gst_basertppayload_get_property),
5299         (gst_basertppayload_change_state):
5300         Added debugging category.
5301
5302 2005-09-18  David Schleef  <ds@schleef.org>
5303
5304         * gst/playback/gstdecodebin.c: free plugin list correctly
5305         * gst/playback/gstplaybin.c: emit warning if autovideosink
5306           and autoaudiosink can't be found (instead of segfaulting)
5307
5308 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5309
5310         * check/elements/audioconvert.c: (GST_START_TEST):
5311           try out 24 bit conversion
5312
5313 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5314
5315         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5316         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
5317         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
5318         * ext/vorbis/vorbisenc.h:
5319           Fix EOS handling.  Still needs a fix in the ogg muxer to
5320           mark the last page as eos.
5321
5322 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5323
5324         * common/gtk-doc-plugins.mak:
5325         * docs/plugins/Makefile.am:
5326         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5327         * gst/ffmpegcolorspace/Makefile.am:
5328         * gst/ffmpegcolorspace/avcodec.h:
5329         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5330         * gst/tcp/gstmultifdsink.c:
5331           fix up ffmpegcolorspace docs; extract header
5332
5333 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5334
5335         * common/gtk-doc-plugins.mak:
5336         * docs/plugins/Makefile.am:
5337         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5338         * ext/theora/Makefile.am:
5339         * ext/theora/gsttheoraenc.h:
5340         * ext/theora/theoraenc.c:
5341         * ext/vorbis/vorbisenc.c:
5342           pick up signals and args for vorbis; add some docs for vorbis
5343
5344 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5345
5346         * common/gstdoc-scangobj:
5347         * common/gtk-doc-plugins.mak:
5348         * docs/libs/Makefile.am:
5349         * docs/plugins/gst-plugins-base-plugins.args:
5350         * docs/plugins/gst-plugins-base-plugins.hierarchy:
5351         * docs/plugins/gst-plugins-base-plugins.interfaces:
5352         * docs/plugins/gst-plugins-base-plugins.prerequisites:
5353         * docs/plugins/gst-plugins-base-plugins.signals:
5354           only scanobj stuff from our source module.  Not sure yet
5355           if that's correct, given the hierarchy stuff :)
5356
5357 2005-09-15  Wim Taymans  <wim@fluendo.com>
5358
5359         * gst/audioconvert/gstaudioconvert.c:
5360         And enable 24 bits mode as well..
5361
5362 2005-09-15  Wim Taymans  <wim@fluendo.com>
5363
5364         * gst-libs/gst/rtp/Makefile.am:
5365         * gst-libs/gst/rtp/gstbasertppayload.c:
5366         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
5367         (gst_basertppayload_class_init), (gst_basertppayload_init),
5368         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
5369         (gst_basertppayload_chain), (gst_basertppayload_set_options),
5370         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5371         (gst_basertppayload_set_property),
5372         (gst_basertppayload_get_property),
5373         (gst_basertppayload_change_state):
5374         * gst-libs/gst/rtp/gstbasertppayload.h:
5375         Added rtp payloader base class.
5376
5377 2005-09-15  Andy Wingo  <wingo@pobox.com>
5378
5379         * configure.ac (plugindir): Remove the EOL matcher from the
5380         regexp, as it causes me problems. Libtool? Make? Who knows?
5381
5382 2005-09-14  David Schleef  <ds@schleef.org>
5383
5384         * check/generic/states.c: 
5385         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5386         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
5387           Fixes for changes in registry API.
5388
5389         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
5390           to GST_PLUGIN_LDFLAGS.
5391         * ext/libvisual/visual.c: Make the library shut up.
5392         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
5393         * gst-libs/gst/audio/gstaudiofilter.c: same
5394
5395 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5396
5397         * docs/plugins/Makefile.am:
5398         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5399         * docs/plugins/inspect/plugin-libvisual.xml:
5400         * docs/plugins/tmpl/element-tcpserversink.sgml:
5401         * ext/theora/theoraenc.c:
5402           add libvisual plugin and theoraenc element to docs
5403
5404 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5405
5406         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5407         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5408         * ext/theora/theoraenc.c:
5409           add theoraenc
5410
5411 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
5412
5413         * gst/audioconvert/Makefile.am:
5414           Audioconvert derives from GstBaseTransform and should
5415           link to the library with our base elements to avoid
5416           unresolved symbols. Makes things work with MinGW (#316160)
5417
5418         * gst/playback/test4.c: (main):
5419           Fix MinGW build problem and use g_usleep() instead of 
5420           sleep() (#316162)
5421
5422 2005-09-12  Wim Taymans  <wim@fluendo.com>
5423
5424         * gst/audioconvert/audioconvert.c: (float),
5425         (audio_convert_prepare_context), (audio_convert_convert):
5426         * gst/audioconvert/audioconvert.h:
5427         Cleanups, speedups, simplifications, added back support
5428         for 24 bits.
5429
5430 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5431
5432         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5433         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5434         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5435         * docs/plugins/tmpl/element-tcpserversink.sgml:
5436         * gst/ffmpegcolorspace/gstffmpeg.c:
5437         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5438         * gst/videotestsrc/gstvideotestsrc.c:
5439         * gst/volume/gstvolume.c:
5440           add more elements to the docs
5441
5442 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
5443
5444         * check/Makefile.am:
5445         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
5446         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
5447           Add extra tests for basetransform based components. 
5448           Comment out the test_element_negotiation test until we decide
5449           if it's testing correct behaviour.
5450         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
5451         (gst_visual_chain), (gst_visual_change_state):
5452           Slightly more correct but still bogus timestamping.
5453           Fix state change function.
5454         * gst/audioconvert/gstaudioconvert.c:
5455         (gst_audio_convert_class_init):
5456         * gst/audioresample/gstaudioresample.c:
5457         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5458         (gst_ffmpegcsp_class_init):
5459         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
5460         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
5461         (gst_videoscale_prepare_image):
5462         * gst/volume/gstvolume.c: (gst_volume_class_init),
5463         (volume_transform_ip):
5464           Basetransform updates. Enable passthrough modes.
5465         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5466         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
5467         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
5468           Negotiation fix that allows the window to return to the original
5469           size and renegotiate passthrough upstream. Extra debug output.
5470
5471 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
5472
5473         * gst/sine/gstsinesrc.c:
5474         * gst/volume/gstvolume.c:
5475           fix up header include
5476
5477 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
5478
5479         * gst-libs/gst/audio/gstbaseaudiosink.c:
5480         (gst_base_audio_sink_render):
5481         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
5482         * gst/volume/gstvolume.c: (gst_volume_class_init),
5483         (volume_transform):
5484           fixing lost sync, some more debugging
5485
5486 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
5487
5488         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5489         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
5490         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
5491         (gst_xvimagesink_check_xshm_calls):
5492           Fix compilation when XShm is not available.
5493
5494 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
5495
5496         * ext/libvisual/visual.c: (gst_visual_dispose),
5497         (gst_visual_getcaps), (gst_visual_src_setcaps),
5498         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
5499         (gst_visual_change_state):
5500           Finish fixing up libvisual plugin so that it runs. 
5501
5502 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
5503
5504         * ext/vorbis/vorbisenc.c:
5505         * gst-libs/gst/tag/gstvorbistag.c:
5506           gsttaginterface.h -> gsttagsetter.h
5507
5508 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
5509
5510         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
5511           added another test that failes for me (test is not active by default)
5512
5513 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5514
5515         * configure.ac:
5516           v4l2 is no longer in gst-plugins-base
5517
5518 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
5519
5520         * configure.ac:
5521           In the output at the end, don't show the first plugin on the same
5522           line as "Core plug-ins, always built:".
5523           Indent the output as for other plugin categories
5524         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
5525           #define that can be used to not use peer buffer_alloc functions for
5526           test purposes.
5527         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5528         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
5529         (gst_ximagesink_show_frame):
5530         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
5531         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
5532         (gst_xvimagesink_show_frame):
5533           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
5534           fails gracefully instead of XError aborting or deadlocking.
5535
5536 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
5537
5538         * ext/libvisual/Makefile.am:
5539           link against gst-base-libs
5540
5541 2005-09-06  David Schleef  <ds@schleef.org>
5542
5543         * configure.ac: Enable libvisual plugin.
5544         * ext/libvisual/Makefile.am:
5545         * ext/libvisual/visual.c: Fixes to make it compile.
5546
5547 === release 0.9.2 ===
5548
5549 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5550
5551         * NEWS:
5552         * RELEASE:
5553         * configure.ac:
5554         * docs/random/ChangeLog-0.8:
5555           releasing 0.9.2, "Spoon"
5556
5557 2005-09-05  Michael Smith <msmith@fluendo.com>
5558
5559         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
5560           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
5561           that in the vorbisenc element.
5562
5563 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
5564
5565         * common/gtk-doc-plugins.mak:
5566         * docs/plugins/Makefile.am:
5567           fix distcheck
5568         * gst/audioresample/resample.c:
5569           fix wrong docstring
5570
5571 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
5572
5573         * common/gst-xmlinspect.py:
5574         * common/gtk-doc-plugins.mak:
5575           only inspect plugins for this given package
5576           require gst-python 0.9
5577
5578 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5579
5580         * Makefile.am:
5581         * autogen.sh:
5582         * common/gst-xmlinspect.py:
5583         * configure.ac:
5584         * docs/Makefile.am:
5585         * docs/plugins/inspect/plugin-alsa.xml:
5586         * docs/plugins/inspect/plugin-audioresample.xml:
5587         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5588         * docs/plugins/inspect/plugin-ogg.xml:
5589         * docs/plugins/tmpl/element-gnomevfssink.sgml:
5590         * docs/plugins/tmpl/element-multifdsink.sgml:
5591         * docs/plugins/tmpl/element-tcpserversink.sgml:
5592         * docs/plugins/tmpl/element-vorbisenc.sgml:
5593         * gst-plugins-base.spec.in:
5594           various doc-related updates
5595
5596 2005-08-31  Wim Taymans  <wim@fluendo.com>
5597
5598         * gst-libs/gst/audio/gstbaseaudiosink.c:
5599         (gst_base_audio_sink_render):
5600         Resync if the buffer timestamps drift more than a 10th 
5601         of a second.
5602
5603 2005-08-31  Tim-Philipp M??ller  <tim at centricular dot net>
5604
5605         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
5606         (gst_v4lsrc_get_property):
5607           The 'timestamp-offset' property is registered as an int64, so
5608           let's use g_value_{set|get}_int64() in our setter and getter
5609           functions (makes it work and fixes warnings with gst-inspect).
5610
5611 2005-08-30  Wim Taymans  <wim@fluendo.com>
5612
5613         * check/elements/audioconvert.c: (setup_audioconvert):
5614         * check/elements/audioresample.c: (setup_audioresample):
5615         * check/elements/volume.c: (setup_volume):
5616         Fix checks.
5617
5618 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
5619
5620         * common/gtk-doc-plugins.mak:
5621         * common/plugins.xsl:
5622         * docs/plugins/Makefile.am:
5623           make module a param
5624
5625 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
5626
5627         * examples/seeking/seek.c: (make_mp3_pipeline),
5628         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
5629         (play_cb), (pause_cb), (stop_cb):
5630           update the example
5631
5632 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
5633
5634         * gst/volume/gstvolume.c: (gst_volume_class_init),
5635         (volume_transform):
5636           do not update controlled params, if buffer has no timestamp
5637
5638 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
5639
5640         * configure.ac:
5641         * gst/sine/Makefile.am:
5642         * gst/volume/Makefile.am:
5643           controllerized elements also need to link against controller-libs ;)
5644
5645 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
5646
5647         * docs/libs/tmpl/gstcolorbalance.sgml:
5648         * docs/libs/tmpl/gstgconf.sgml:
5649         * docs/libs/tmpl/gstmixer.sgml:
5650         * docs/libs/tmpl/gstringbuffer.sgml:
5651         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
5652         (gst_sinesrc_create):
5653         * gst/volume/gstvolume.c: (gst_volume_class_init),
5654         (volume_transform):
5655           controllerized two audio plugins
5656
5657 2005-08-29  Andy Wingo  <wingo@pobox.com>
5658
5659         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
5660         (vorbis_handle_data_packet): Fix some int overflow errors.
5661
5662         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
5663         -1.
5664         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
5665         valid.
5666         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
5667         if it's valid. Fixed streaming-mode playback.
5668
5669         * check/elements/volume.c (cleanup_volume): Fix for running
5670         CK_FORK=no.
5671
5672         * check/elements/audioconvert.c: Convert from native endian, not
5673         little endian.
5674
5675 2005-08-29  Michael Smith <msmith@fluendo.com>
5676
5677         * ext/ogg/Makefile.am:
5678         * ext/ogg/gstogg.c: (plugin_init):
5679         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
5680         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
5681         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
5682         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
5683         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
5684         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
5685         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
5686         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
5687         Add an ogg parser element.
5688
5689 2005-08-28  Andy Wingo  <wingo@pobox.com>
5690
5691         * Updates for two-arg init from GST_BOILERPLATE_FULL.
5692
5693 2005-08-26  Wim Taymans  <wim@fluendo.com>
5694
5695         * gst/audioconvert/audioconvert.c: (if), (float),
5696         (audio_convert_get_func_index), (check_default),
5697         (audio_convert_clean_fmt), (audio_convert_prepare_context),
5698         (audio_convert_clean_context), (audio_convert_get_sizes),
5699         (audio_convert_convert):
5700         Cleanups.
5701
5702 2005-08-26  Wim Taymans  <wim@fluendo.com>
5703
5704         * gst/audioconvert/audioconvert.c: (if), (float),
5705         (audio_convert_get_func_index), (check_default),
5706         (audio_convert_clean_fmt), (audio_convert_prepare_context),
5707         (audio_convert_clean_context), (audio_convert_get_sizes),
5708         (audio_convert_convert):
5709         More elegant and working temp buffer selection algo.
5710
5711 2005-08-26  Wim Taymans  <wim@fluendo.com>
5712
5713         * gst/audioconvert/audioconvert.c: (if), (float),
5714         (audio_convert_get_func_index), (check_default),
5715         (audio_convert_clean_fmt), (audio_convert_prepare_context),
5716         (audio_convert_clean_context), (audio_convert_get_sizes),
5717         (get_temp_buffer), (audio_convert_convert):
5718         Use realloc else we lose our original data.
5719
5720 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5721
5722         * gst/audioresample/gstaudioresample.c:
5723           use base class' newsegment to properly timestamp
5724
5725 2005-08-26  Wim Taymans  <wim@fluendo.com>
5726
5727         * gst/audioconvert/audioconvert.c: (if), (float),
5728         (audio_convert_get_func_index), (check_default),
5729         (audio_convert_clean_fmt), (audio_convert_prepare_context),
5730         (audio_convert_clean_context), (audio_convert_get_sizes),
5731         (get_temp_buffer), (audio_convert_convert):
5732         * gst/audioconvert/gstaudioconvert.c:
5733         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
5734         (gst_audio_convert_transform_caps),
5735         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
5736         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
5737         Oops, allocate enough space to perform the channel mix.
5738
5739 2005-08-26  Wim Taymans  <wim@fluendo.com>
5740
5741         * gst/audioconvert/Makefile.am:
5742         * gst/audioconvert/audioconvert.c: (if), (float),
5743         (audio_convert_get_func_index), (check_default),
5744         (audio_convert_clean_fmt), (audio_convert_prepare_context),
5745         (audio_convert_clean_context), (audio_convert_get_sizes),
5746         (get_temp_buffer), (audio_convert_convert):
5747         * gst/audioconvert/audioconvert.h:
5748         * gst/audioconvert/gstaudioconvert.c:
5749         (gst_audio_convert_class_init), (gst_audio_convert_init),
5750         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
5751         (gst_audio_convert_get_unit_size),
5752         (gst_audio_convert_transform_caps),
5753         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
5754         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
5755         * gst/audioconvert/gstaudioconvert.h:
5756         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
5757         (gst_channel_mix_fill_identical),
5758         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
5759         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
5760         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
5761         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
5762         (gst_channel_mix_mix):
5763         * gst/audioconvert/gstchannelmix.h:
5764         Cleanups, librarify a bit, optimize, better negotiation and more.
5765
5766 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
5767
5768         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
5769         Another from MikeS:
5770         During typefinding, don't support negative offsets
5771         (offsets from the end of the stream) in our typefind->peek() function
5772         - nothing embedded in ogg ever needs them. However, we need to recognise
5773         those requests and reject them, otherwise we return invalid pointers.
5774
5775 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
5776
5777         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
5778         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
5779         (vorbisdec_finalize), (vorbis_handle_type_packet):
5780           Big shout-out to MikeS for fixing this giant memory leak.
5781           Huzzah!
5782
5783 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5784
5785         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
5786         (audio_convert_get_unit_size):
5787           plug some leaks
5788
5789 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5790
5791         * check/Makefile.am:
5792         * check/elements/audioconvert.c: (setup_audioconvert),
5793         (cleanup_audioconvert), (get_int_caps), (verify_convert),
5794         (GST_START_TEST), (audioconvert_suite), (main):
5795           add a test for audioconvert
5796         * gst/audioresample/gstaudioresample.c:
5797         * gst/audioresample/gstaudioresample.h:
5798           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
5799           note that for buffers of 1/3 sec this means DURATION(c) is 
5800           one nanosecond more than for a and b
5801
5802 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5803
5804         * check/Makefile.am:
5805         * check/elements/audioresample.c: (setup_audioresample),
5806         (cleanup_audioresample), (fail_unless_perfect_stream),
5807         (test_perfect_stream_instance), (GST_START_TEST),
5808           add a check for audioresample
5809         (audioresample_suite), (main):
5810         * check/elements/volume.c: (GST_START_TEST):
5811           remove unused method
5812         * gst/audioresample/gstaudioresample.c:
5813           set correct buffer parameters since we're changing them
5814         * gst/audioresample/resample_ref.c: (resample_scale_ref):
5815           add some debug
5816
5817 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5818
5819         * gst/audioresample/debug.c:
5820         * gst/audioresample/gstaudioresample.c:
5821           add room for extra overlap samples when asked to transform size
5822           protect against possible mem corruption and check for discrepancies
5823           between written size and outbuffer's size so we can warn for
5824           potential problems
5825         * gst/audioresample/resample.c: (resample_init),
5826         (resample_get_output_size_for_input), (resample_get_output_size),
5827         (resample_set_n_channels), (resample_set_format):
5828           set debug level based on RESAMPLE_DEBUG env var
5829           make sure that get_output_size* returns a whole number of
5830           sample_size
5831           set sample_size each time either channel or format is set
5832         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
5833         * gst/audioresample/resample_functable.c:
5834         (resample_scale_functable):
5835         * gst/audioresample/resample_ref.c: (resample_scale_ref):
5836           remove r->sample_size, it's done in resample.c now
5837           add some debugging to the ref implementation
5838           make sure we only give back bytes that are wholes of the sample
5839           size
5840
5841 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
5842         * gst/playback/gstplaybasebin.c: (fill_buffer):
5843         Revert unpopular change for GST_MESSAGE_SRC to GObject.
5844
5845 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
5846
5847         * gst/volume/gstvolume.c:
5848           made set_caps function static
5849
5850 2005-08-24  Wim Taymans  <wim@fluendo.com>
5851
5852         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5853         (gst_vorbisenc_change_state):
5854         Stop leaking taglists.
5855
5856 2005-08-24  Wim Taymans  <wim@fluendo.com>
5857
5858         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5859         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
5860         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
5861         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
5862         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
5863         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5864         Parse seeking events better.
5865         Unref static caps.
5866         Generate correct newsegment events, fixes seeking in live oggs.
5867
5868         * ext/theora/theoradec.c: (theora_dec_src_query),
5869         (theora_dec_src_event), (theora_dec_src_getcaps),
5870         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
5871         Use newsegment values to report correct play time.
5872
5873         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5874         (vorbis_dec_src_event), (vorbis_dec_sink_event):
5875         * ext/vorbis/vorbisdec.h:
5876         Parse and use newsegment values to report correct play time.
5877
5878         * gst-libs/gst/audio/gstbaseaudiosink.c:
5879         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
5880         Clear ringbuffer on flush.
5881         Use newsegment values to calculate playback time.
5882
5883         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
5884         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
5885         Basesink does newsegment calculations for us now.
5886
5887 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5888
5889         * check/Makefile.am:
5890         * configure.ac:
5891           add core's plugins to the mix so that playbin works
5892         * check/generic/states.c: (GST_START_TEST):
5893           set a 0 timeout on pipelines, so they don't force the next
5894           state change
5895         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
5896         (gst_play_base_bin_change_state):
5897           remove the crappy error handling and do GST error handling
5898
5899 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5900
5901         * check/Makefile.am:
5902         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
5903           add same test as to core, it bitches out on playbin atm.
5904
5905 2005-08-24  Wim Taymans  <wim@fluendo.com>
5906
5907         * configure.ac:
5908         Remove audioscale.
5909
5910 2005-08-24  Wim Taymans  <wim@fluendo.com>
5911
5912         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
5913         (gst_videoscale_prepare_size), (parse_caps),
5914         (gst_videoscale_set_caps), (gst_videoscale_get_size),
5915         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
5916         (gst_videoscale_transform):
5917         * gst/videoscale/gstvideoscale.h:
5918         Refactor, make use of BaseTranform really well.
5919
5920 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5921
5922         * configure.ac:
5923           compile audioresample
5924         * gst/audioresample/Makefile.am:
5925         * gst/audioresample/buffer.c:
5926         * gst/audioresample/functable.c:
5927         * gst/audioresample/gstaudioresample.c:
5928         * gst/audioresample/gstaudioresample.h:
5929         * gst/audioresample/resample.c:
5930         (resample_get_output_size_for_input):
5931         * gst/audioresample/resample.h:
5932         * gst/audioresample/resample_chunk.c:
5933         * gst/audioresample/resample_functable.c:
5934         * gst/audioresample/resample_ref.c:
5935           port to use basetransform; doesn't work in all cases yet
5936
5937 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5938
5939         * gst/audioconvert/gstaudioconvert.c:
5940         (gst_audio_convert_class_init), (gst_audio_convert_init),
5941         (audio_convert_get_unit_size), (audio_convert_transform_caps),
5942         (audio_convert_fixate_caps), (audio_convert_set_caps),
5943         (audio_convert_transform),
5944         (gst_audio_convert_buffer_to_default_format),
5945         (gst_audio_convert_buffer_from_default_format),
5946         (gst_audio_convert_channels):
5947         * gst/audioconvert/gstchannelmix.c:
5948         * gst/audioconvert/gstchannelmix.h:
5949           port to basetransform
5950         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5951         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
5952         (gst_ffmpegcsp_get_unit_size):
5953         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
5954         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
5955           fix for basetransform changes
5956
5957 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
5958
5959         * check/Makefile.am:
5960           Add CHECK_CFLAGS and LDFLAGS
5961
5962         * gst/playback/gstplaybasebin.c: (fill_buffer):
5963           GST_MESSAGE_SRC became a GObject
5964
5965 2005-08-24  Wim Taymans  <wim@fluendo.com>
5966
5967         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
5968         (gst_ring_buffer_clear_all):
5969         * gst-libs/gst/audio/gstringbuffer.h:
5970         Added function to clear the ringbuffer.
5971
5972 2005-08-24  Andy Wingo  <wingo@pobox.com>
5973
5974         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
5975         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
5976         of _open and _close.
5977
5978         * sys/v4l/gstv4lxoverlay.h:
5979         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
5980         an Xv connection here, instead of all the time. Make Xv only be
5981         loaded if you axe for it. Kindof a workaround for buggy behaviour
5982         of Xv when using remote xservers (XvQueryExtension would block).
5983         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
5984         replace the _open and _close public API. Only start the xv
5985         connection if necessary.
5986         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
5987
5988 2005-08-23  David Schleef  <ds@schleef.org>
5989
5990         * gst/audioresample/Makefile.am: Leet audioresampling code
5991         * gst/audioresample/buffer.c:
5992         * gst/audioresample/buffer.h:
5993         * gst/audioresample/debug.c:
5994         * gst/audioresample/debug.h:
5995         * gst/audioresample/functable.c:
5996         * gst/audioresample/functable.h:
5997         * gst/audioresample/gstaudioresample.c:
5998         * gst/audioresample/gstaudioresample.h:
5999         * gst/audioresample/resample.c:
6000         * gst/audioresample/resample.h:
6001         * gst/audioresample/resample_chunk.c:
6002         * gst/audioresample/resample_functable.c:
6003         * gst/audioresample/resample_ref.c:
6004
6005 2005-08-23  Wim Taymans  <wim@fluendo.com>
6006
6007         * examples/seeking/seek.c: (make_vorbis_pipeline),
6008         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
6009         Small seek updates.
6010
6011 2005-08-23  Andy Wingo  <wingo@pobox.com>
6012
6013         * gst-libs/gst/audio/gstbaseaudiosrc.c
6014         (gst_base_audio_src_fixate): Only fixate endianness if it is
6015         present in the caps.
6016
6017 2005-08-22  Andy Wingo  <wingo@pobox.com>
6018
6019         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
6020         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
6021         device-name property.
6022
6023         * gst-libs/gst/audio/gstaudiosrc.h:
6024         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
6025         close_device in the ring buffer, like gstaudiosink.
6026
6027         * ext/alsa/gstalsamixer.h:
6028         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
6029         macro to implement the interface without much code. Cleanups. 
6030
6031         * ext/alsa/gstalsasrc.h:
6032         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
6033         READY.
6034
6035         * ext/alsa/Makefile.am: Add new files.
6036         * ext/alsa/gstalsamixerelement.c: 
6037         * ext/alsa/gstalsamixerelement.c: Split element code out from
6038         mixer code so that alsasrc can be a mixer too.
6039
6040 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
6041
6042         * check/elements/volume.c: (setup_volume), (cleanup_volume),
6043         (GST_START_TEST):
6044         * check/elements/vorbisdec.c: (setup_vorbisdec),
6045         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
6046         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6047         (vorbis_handle_identification_packet),
6048         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
6049         (vorbis_handle_header_packet), (vorbis_dec_push),
6050         (vorbis_dec_chain):
6051           use the setup/teardown methods to save code.  save code is good.
6052
6053 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6054
6055         * check/Makefile.am:
6056           add ext dir for plugins
6057           add vorbisdec test conditionally
6058         * check/elements/volume.c: (setup_volume), (cleanup_volume),
6059         (GST_START_TEST), (volume_suite):
6060           add a test with wrong caps
6061         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
6062         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
6063           add a vorbisdec test
6064         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
6065         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
6066           clean up debug output
6067         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
6068           yay, fix a segfault/security issue in vorbisdec
6069           gst-launch fakesrc ! vorbisdec wasn't happy
6070         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
6071         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
6072         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
6073         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
6074         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
6075         (gst_vorbisenc_set_metadata), (get_constraints_string),
6076         (update_start_message), (gst_vorbisenc_setup),
6077         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
6078         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
6079         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
6080         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
6081         * ext/vorbis/vorbisenc.h:
6082           march in line
6083         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6084         (gst_ffmpegcsp_transform):
6085           have the kow come home
6086         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6087           debug my func ptr
6088         * gst/volume/gstvolume.c: (volume_set_caps):
6089           add a debug
6090
6091 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6092
6093         * Makefile.am:
6094         * check/.cvsignore:
6095         * check/Makefile.am:
6096         * check/elements/.cvsignore:
6097         * check/elements/volume.c: (chain_func), (event_func),
6098         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
6099         (main):
6100         * configure.ac:
6101           add unit test structure for gst-plugins-base
6102           add a test for volume
6103         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
6104         (gst_volume_set_volume), (gst_volume_get_volume),
6105         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
6106         (volume_funcfind), (volume_process_float), (volume_process_int16),
6107         (volume_set_caps), (volume_transform), (volume_update_mute),
6108         (volume_update_volume), (volume_set_property),
6109         (volume_get_property):
6110           document a little; use basetransform vmethod _set_caps
6111
6112 2005-08-19  Andy Wingo  <wingo@pobox.com>
6113
6114         * ext/alsa/gstalsamixertrack.h:
6115         * ext/alsa/gstalsamixertrack.c:
6116         * ext/alsa/gstalsamixeroptions.h:
6117         * ext/alsa/gstalsamixeroptions.c:
6118         * ext/alsa/gstalsamixer.h:
6119         * ext/alsa/gstalsamixer.c: Port to 0.9.
6120
6121         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
6122         Remove gstalsa.c and alsaclock. No more cruft here.
6123         
6124 2005-08-18  Wim Taymans  <wim@fluendo.com>
6125
6126         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6127         (gst_base_rtp_depayload_chain),
6128         (gst_base_rtp_depayload_add_to_queue),
6129         (gst_base_rtp_depayload_push),
6130         (gst_base_rtp_depayload_queue_release):
6131         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6132         Fix for RTPBuffer changes.
6133
6134         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
6135         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
6136         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
6137         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
6138         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
6139         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
6140         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
6141         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
6142         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
6143         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
6144         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
6145         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
6146         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
6147         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
6148         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
6149         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
6150         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
6151         (gst_rtpbuffer_get_payload):
6152         * gst-libs/gst/rtp/gstrtpbuffer.h:
6153         Don't subclass GstBuffer but add methods and helper functions
6154         to construct and manipulate RTP packets in regular GstBuffers.
6155
6156 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
6157
6158         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
6159           moved statement below switch
6160         * gst/volume/gstvolume.c: (gst_volume_class_init):
6161           added debug ptr
6162
6163 2005-08-16  Wim Taymans  <wim@fluendo.com>
6164
6165         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6166         (gst_base_audio_src_change_state):
6167         Open and close device in READY<->NULL state change.
6168
6169 2005-08-16  Andy Wingo  <wingo@pobox.com>
6170
6171         * examples/seeking/Makefile.am: Don't compile non-compiling
6172         compiled objects with the compiler.
6173
6174         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
6175         elements.
6176
6177 2005-08-12  Philippe Khalaf <burger@speedy.org>
6178         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6179         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6180           Made a thread to release the queue.
6181           Removed timestamp conversion for now.
6182
6183 2005-08-10  Philippe Khalaf <burger@speedy.org>
6184         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6185         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6186           Added rtp timestamp -> gst timestamp conversion.
6187           Fixed several problems with queue.
6188
6189 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
6190
6191         * gst-libs/gst/audio/gstaudioclock.h:
6192         * gst-libs/gst/audio/gstaudiofilter.h:
6193         * gst-libs/gst/audio/gstaudiosink.h:
6194         * gst-libs/gst/audio/gstaudiosrc.h:
6195         * gst-libs/gst/audio/gstbaseaudiosink.h:
6196         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6197         * gst-libs/gst/audio/gstringbuffer.h:
6198         * gst-libs/gst/net/gstnetbuffer.h:
6199         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6200         * gst-libs/gst/rtp/gstrtpbuffer.h:
6201           Add padding (you will need to rebuild gst-plugins-base,
6202           gst-plugins and all applications afterwards!)
6203
6204 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
6205
6206         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
6207         (gst_riff_parse_chunk):
6208           Fix bug in debug message and add some more debug messages.
6209
6210 2005-08-08  Edward Hervey  <edward@fluendo.com>
6211
6212         * gst-libs/gst/riff/riff-media.c:
6213         backported updates since branch
6214
6215 2005-08-08  Andy Wingo  <wingo@pobox.com>
6216
6217         * gst-libs/gst/audio/gstbaseaudiosink.c
6218         (gst_base_audio_sink_change_state): Open the device in NULL->READY
6219         like good elements should. Close on READY->NULL too.
6220
6221         * gst-libs/gst/audio/gstaudiosink.c
6222         (gst_audioringbuffer_open_device,
6223         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
6224         (gst_audioringbuffer_release): Updates for new ring buffer API,
6225         hook into the new audio sink api.
6226
6227         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
6228         (GstAudioSinkClass.close): Just open and close the device -- no
6229         resource allocation or configuration.
6230         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
6231         vmethods, handle device setup and resource allocation.
6232
6233         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
6234         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
6235         base class API.
6236
6237         * gst-libs/gst/audio/gstringbuffer.h
6238         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
6239         New vmethods.
6240
6241         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
6242         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
6243         New API functions. The device should be opened before acquiring
6244         and closed after releasing.
6245
6246 2005-08-08  Tim-Philipp M??ller  <tim at centricular dot net>
6247
6248         * gst-libs/gst/interfaces/mixer.h:
6249           Reset padding to GST_PADDING.
6250
6251 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6252
6253         * gst/playback/gstplaybin.c: (remove_sinks):
6254           Remove visualization from parent explicitely; works around some
6255           apparent refcount issue that I haven't tracked down yet.
6256
6257 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6258
6259         * ext/alsa/gstalsasink.c: (set_hwparams):
6260           Assign debug category, add negotiation debug msgs.
6261
6262 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6263
6264         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
6265           Fix error code for file-not-found to NOT_FOUND.
6266
6267 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6268
6269         * common/gtk-doc-plugins.mak:
6270         * docs/plugins/Makefile.am:
6271         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6272         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6273           renamed to actual element names, so much nicer to look at
6274         * docs/plugins/tmpl/gstmultifdsink.sgml:
6275           remove
6276         * docs/plugins/tmpl/multifdsink.sgml:
6277         * docs/plugins/tmpl/tcpserversink.sgml:
6278           add
6279         * ext/alsa/gstalsa.c:
6280         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
6281         * ext/ogg/gstoggmux.c:
6282         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
6283         * gst/playback/gstdecodebin.c:
6284         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6285         * gst/tcp/gsttcpserversink.c:
6286           various fixes and documentation additions
6287
6288 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6289
6290         * common/Makefile.am:
6291         * common/gstdoc-scangobj:
6292         * common/gtk-doc-plugins.mak:
6293         * common/gtk-doc.mak:
6294           add a custom scangobj that uses the registry
6295           add a custom gtk-doc-plugins.mak that uses it
6296           some doc build fixes
6297         * configure.ac:
6298         * docs/Makefile.am:
6299         * docs/plugins/Makefile.am:
6300         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6301         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6302         * docs/plugins/gst-plugins-base-plugins.types:
6303         * docs/plugins/tmpl/gstmultifdsink.sgml:
6304           add docs for one element, multifdsink
6305         * gst/adder/gstadder.h:
6306         * gst/volume/gstvolume.h:
6307           don't privatize enum
6308         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6309         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6310         (gst_sync_method_get_type), (gst_client_status_get_type),
6311         (gst_multifdsink_class_init),
6312         (gst_multifdsink_client_queue_buffer),
6313         (gst_multifdsink_handle_client_write):
6314         * gst/tcp/gstmultifdsink.h:
6315         * gst/tcp/gsttcp.h:
6316         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
6317         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
6318         (gst_tcpclientsink_render):
6319         * gst/tcp/gsttcpclientsink.h:
6320         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
6321         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
6322         (gst_tcpclientsrc_start):
6323         * gst/tcp/gsttcpclientsrc.h:
6324         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
6325         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
6326         * gst/tcp/gsttcpserversrc.h:
6327         * gst/typefind/gsttypefindfunctions.c:
6328           remove superfluous Type stuff
6329
6330 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6331
6332         * gst/playback/gstplaybin.c: (gen_video_element):
6333           Enable videoscale.
6334
6335 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6336
6337         * gst-libs/gst/gconf/gconf.c:
6338         * gst-libs/gst/gconf/gconf.h:
6339           Fix some Andy Problem [tm].
6340
6341 2005-08-04  Andy Wingo  <wingo@pobox.com>
6342
6343         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
6344         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
6345         (gst_ffmpegcsp_get_size): Adapt to API changes.
6346
6347         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
6348         Implement an in-place do-nothing transform.
6349
6350 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6351
6352         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
6353         (gst_ximagesink_renegotiate_size):
6354           Do not set new window sizes yet if we prepare a new buffer size
6355           for upstream renegotiation (software scaling) at some point in the
6356           future, because this new size waqs not actually accepted yet. Once
6357           accepted, renegotiation later on will set the new sizes just fine.
6358           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
6359           embedding testcase.
6360
6361 2005-08-03  Andy Wingo  <wingo@pobox.com>
6362
6363         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
6364         (gst_ximagesink_buffer_alloc): 
6365         Protect the height, width, and desired_caps with the pool_lock.
6366         Fixes videotestsrc ! queue ! ximagesink.
6367
6368 2005-08-02  Edward Hervey  <edward@fluendo.com>
6369
6370         * gst/volume/gstvolume.c:
6371         include left from controller cleanup
6372
6373 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
6374         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
6375           Stop collectpads before calling the parent state
6376           change function on PAUSED->READY.
6377
6378 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
6379         * configure.ac:
6380           When testing for X libs, use the X CFlags 
6381         * gst/adder/gstadder.c: (gst_adder_change_state):
6382           Stop the collectpads before calling parent state change function
6383           on PAUSED->READY, otherwise we deadlock deactivating pads.
6384
6385 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
6386
6387         * configure.ac:
6388         * docs/libs/tmpl/gstcolorbalance.sgml:
6389         * docs/libs/tmpl/gstmixer.sgml:
6390         * examples/Makefile.am:
6391         * gst/sine/Makefile.am:
6392         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
6393         (gst_sinesrc_set_property), (plugin_init):
6394         * gst/sine/gstsinesrc.h:
6395         * gst/volume/Makefile.am:
6396         * gst/volume/gstvolume.c: (gst_volume_set_volume),
6397         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
6398         (volume_process_float), (volume_process_int16),
6399         (volume_set_property), (plugin_init):
6400         * gst/volume/gstvolume.h:
6401           deactivate and remove dparams (libgstcontrol)
6402
6403 2005-07-29  Wim Taymans  <wim@fluendo.com>
6404
6405         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
6406         Convert me to BaseTransform!! help..
6407
6408 2005-07-29  Andy Wingo  <wingo@pobox.com>
6409
6410         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
6411         sinks.
6412
6413         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
6414         support of both endiannesses.
6415
6416 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
6417
6418         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
6419           Fix confusing debug message (s/event/query/)
6420
6421 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
6422
6423         * gst/videotestsrc/videotestsrc.h:
6424           Use "_stdint.h" instead of <stdint.h>
6425
6426 2005-07-27  Wim Taymans  <wim@fluendo.com>
6427
6428         * ext/vorbis/Makefile.am:
6429         Revert wrong commit.
6430
6431 2005-07-27  Wim Taymans  <wim@fluendo.com>
6432
6433         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
6434         More compilation fixen.
6435
6436 2005-07-27  Wim Taymans  <wim@fluendo.com>
6437
6438         * gst-libs/gst/audio/gstbaseaudiosink.c:
6439         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
6440         (gst_base_audio_sink_create_ringbuffer),
6441         (gst_base_audio_sink_change_state):
6442         Fix compilation.
6443
6444 2005-07-27  Wim Taymans  <wim@fluendo.com>
6445
6446         * examples/seeking/seek.c: (setup_dynamic_link),
6447         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
6448         (query_positions_elems), (query_positions_pads), (do_seek):
6449         Update seek example.
6450
6451         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
6452         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
6453         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
6454         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
6455         (gst_ogg_demux_handle_event),
6456         (gst_ogg_demux_deactivate_current_chain),
6457         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6458         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
6459         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
6460         (gst_ogg_demux_loop):
6461         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
6462         * ext/theora/theoradec.c: (theora_dec_src_event),
6463         (theora_dec_src_getcaps), (theora_dec_sink_event),
6464         (theora_dec_push), (theora_dec_chain):
6465         * ext/vorbis/Makefile.am:
6466         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
6467         (vorbis_dec_sink_event), (vorbis_dec_push),
6468         (vorbis_handle_data_packet):
6469         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
6470         (gst_vorbisenc_chain):
6471         * gst/playback/gststreaminfo.c: (cb_probe):
6472         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
6473         * gst/videorate/gstvideorate.c: (gst_videorate_event):
6474         * gst/videoscale/gstvideoscale.c:
6475         (gst_videoscale_handle_src_event):
6476         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
6477         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
6478         (gst_ximagesink_navigation_send_event):
6479         * sys/xvimage/xvimagesink.c:
6480         (gst_xvimagesink_navigation_send_event):
6481         Various event updates and cleanups
6482
6483 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6484
6485         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
6486           Fix segfault for I420/YV12.
6487
6488 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6489
6490         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
6491           Report bitrate.
6492
6493 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6494
6495         * gst/playback/gstplaybin.c: (gen_video_element),
6496         (gen_audio_element):
6497           Switch to auto*sink elements as default sinks; add volume element
6498           so that volume control in totem works.
6499
6500 2005-07-21  Wim Taymans  <wim@fluendo.com>
6501
6502         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
6503         * gst/playback/gstplaybin.c: (setup_sinks),
6504         (gst_play_bin_change_state):
6505         Refcount fix and more comments.
6506
6507 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6508
6509         * sys/ximage/Makefile.am:
6510         * sys/ximage/ximage.c: (plugin_init):
6511         * sys/ximage/ximagesink.c:
6512         Prepare for adding ximagesrc, rename of plugin to ximage etc.
6513         
6514
6515 2005-07-21  Wim Taymans  <wim@fluendo.com>
6516
6517         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
6518         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
6519         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
6520         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6521         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
6522         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
6523         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
6524         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
6525         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
6526         Generate correct disconts for live chained oggs.
6527
6528         * gst-libs/gst/audio/gstbaseaudiosink.c:
6529         (gst_base_audio_sink_render),
6530         (gst_base_audio_sink_create_ringbuffer),
6531         (gst_base_audio_sink_change_state):
6532         Handle discont math correctly.
6533
6534         * gst/playback/gstplaybin.c: (add_sink):
6535         Some small debug cleanup.
6536
6537 2005-07-21  Wim Taymans  <wim@fluendo.com>
6538
6539         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
6540         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
6541         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
6542         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6543         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
6544         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
6545         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6546         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
6547         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
6548         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
6549         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
6550         (gst_ogg_demux_change_state), (gst_ogg_print):
6551         Reorganize code to send the right disconts when in streaming
6552         mode.
6553
6554 2005-07-20  Andy Wingo  <wingo@pobox.com>
6555
6556         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
6557         fix (?), fixes a seggie mcfalterson (#310894).
6558
6559 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6560
6561         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
6562         (gst_ogg_mux_set_header_on_caps):
6563         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
6564         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
6565         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
6566         * gst-libs/gst/audio/multichannel.c:
6567         (gst_audio_set_channel_positions),
6568         (gst_audio_set_structure_channel_positions_list):
6569         * gst/playback/gstdecodebin.c: (dynamic_create):
6570         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
6571         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
6572           Fixes for API changes in core.
6573
6574 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6575
6576         * gst/playback/gstplaybasebin.c: (fill_buffer):
6577           Use _new_custom() so we can set custom message types for buffering
6578           messages.
6579
6580 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6581
6582         * configure.ac:
6583         * gst-libs/gst/Makefile.am:
6584         * gst-libs/gst/gconf/.cvsignore:
6585         * gst-libs/gst/gconf/Makefile.am:
6586         * gst-libs/gst/gconf/test-gconf.c:
6587         * pkgconfig/Makefile.am:
6588         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
6589         * pkgconfig/gstreamer-gconf.pc.in:
6590           Remove gconf stuff, use gconf elements instead from now on.
6591
6592 2005-07-20  Wim Taymans  <wim@fluendo.com>
6593
6594         * gst-libs/gst/audio/TODO:
6595         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
6596         (gst_audio_clock_get_internal_time):
6597         * gst-libs/gst/audio/gstaudioclock.h:
6598         * gst-libs/gst/audio/gstbaseaudiosink.c:
6599         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
6600         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
6601         (gst_base_audio_sink_render),
6602         (gst_base_audio_sink_create_ringbuffer),
6603         (gst_base_audio_sink_change_state):
6604         Make sure the audio clock always returns an increasing value.
6605
6606 2005-07-19  Andy Wingo  <wingo@pobox.com>
6607
6608         * gst/videotestsrc/: Cleanups.
6609
6610 2005-07-19  Wim Taymans  <wim@fluendo.com>
6611
6612         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
6613         Better debugging.
6614
6615 2005-07-19  Wim Taymans  <wim@fluendo.com>
6616
6617         * examples/seeking/seek.c: (make_dv_pipeline),
6618         (make_vorbis_theora_pipeline), (query_rates),
6619         (query_positions_elems), (query_positions_pads), (do_seek):
6620         Make correct DV pipeline.
6621
6622 2005-07-18  Andy Wingo  <wingo@pobox.com>
6623
6624         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
6625         default. Also because it's the only thing that really works. (This
6626         is used in the GConf elements).
6627         Use AS_LIBTOOL_TAGS.
6628
6629 2005-07-18  Wim Taymans  <wim@fluendo.com>
6630
6631         * gst/playback/gstdecodebin.c: (remove_element_chain):
6632         * gst/playback/gstplaybin.c: (add_sink):
6633         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
6634         (gst_stream_info_set_mute):
6635         * gst/playback/gststreamselector.c:
6636         (gst_stream_selector_get_linked_pad),
6637         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
6638         More leak and compile fixes.
6639
6640 2005-07-18  Wim Taymans  <wim@fluendo.com>
6641
6642         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
6643         (query_rates), (query_positions_elems), (query_positions_pads),
6644         (do_seek), (seek_cb), (stop_seek):
6645         Updated seek example. 
6646
6647         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
6648         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
6649         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
6650         * gst/playback/gstplaybin.c: (add_sink):
6651         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
6652         (gst_stream_info_set_mute):
6653         Some refcount leak fixes.
6654
6655 2005-07-16  Wim Taymans  <wim@fluendo.com>
6656
6657         * gst-libs/gst/audio/gstbaseaudiosink.c:
6658         (gst_base_audio_sink_render):
6659         Align samples even if we have roundoff errors in the 
6660         timestamp conversion.
6661
6662 2005-07-16  Wim Taymans  <wim@fluendo.com>
6663
6664         * docs/libs/tmpl/gstringbuffer.sgml:
6665         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
6666         (query_rates), (query_positions_elems), (query_positions_pads),
6667         (update_scale), (do_seek):
6668         Updated seek example.
6669
6670         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6671         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
6672         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
6673         (gst_ogg_demux_loop):
6674         Push out correct discont values.
6675
6676         * ext/theora/theoradec.c: (theora_dec_src_convert),
6677         (theora_dec_sink_convert), (theora_dec_src_getcaps),
6678         (theora_dec_sink_event), (theora_handle_type_packet),
6679         (theora_handle_header_packet), (theora_dec_push),
6680         (theora_handle_data_packet), (theora_dec_chain),
6681         (theora_dec_change_state):
6682         Better timestamping.
6683
6684         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
6685         (vorbis_dec_sink_event), (vorbis_dec_push),
6686         (vorbis_handle_data_packet), (vorbis_dec_chain):
6687         * ext/vorbis/vorbisdec.h:
6688         Better timestamping.
6689
6690         * gst-libs/gst/audio/gstbaseaudiosink.c:
6691         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
6692         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
6693         Handle syncing on timestamps instead of sample offsets. Make
6694         use of DISCONT values as described in design docs.
6695
6696         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6697         (gst_base_audio_src_get_time):
6698         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
6699         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
6700         (gst_ring_buffer_read):
6701         * gst-libs/gst/audio/gstringbuffer.h:
6702         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
6703         (gst_ximagesink_show_frame):
6704         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
6705         Correcly convert buffer timestamp to stream time.
6706
6707 2005-07-16  Wim Taymans  <wim@fluendo.com>
6708
6709         * gst/audioconvert/gstaudioconvert.c:
6710         (gst_audio_convert_get_buffer):
6711         Timestamp buffers correctly.
6712
6713         * gst/playback/gstplaybin.c: (gen_video_element):
6714         Make internal fakesink silent.
6715
6716 2005-07-15  Wim Taymans  <wim@fluendo.com>
6717
6718         * gst/ffmpegcolorspace/Makefile.am:
6719         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6720         (gst_ffmpegcsp_caps_remove_format_info),
6721         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
6722         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
6723         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
6724         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
6725         Ported ffmpegcolorspace to basetransform.
6726
6727         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
6728         * gst/volume/gstvolume.c: (volume_transform):
6729         Ported to new API.
6730
6731 2005-07-14  Wim Taymans  <wim@fluendo.com>
6732
6733         * gst/videotestsrc/Makefile.am:
6734         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
6735         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
6736         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
6737         (gst_videotestsrc_init), (gst_videotestsrc_event),
6738         (gst_videotestsrc_create), (gst_videotestsrc_start),
6739         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
6740         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
6741         (gst_videotestsrc_get_property):
6742         * gst/videotestsrc/gstvideotestsrc.h:
6743         Make videotestsrc a pushsrc.
6744
6745 2005-07-14  Wim Taymans  <wim@fluendo.com>
6746
6747         * gst/tcp/gstfdset.c: (gst_fdset_free):
6748         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
6749         (gst_multifdsink_add), (gst_multifdsink_remove),
6750         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
6751         (gst_multifdsink_remove_client_link),
6752         (gst_multifdsink_client_queue_data),
6753         (gst_multifdsink_client_queue_caps),
6754         (gst_multifdsink_client_queue_buffer),
6755         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
6756         (gst_multifdsink_stop):
6757         * gst/tcp/gstmultifdsink.h:
6758         0.8 backporting.
6759
6760         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
6761         Also draw image when not from a pool.
6762
6763 2005-07-14  Wim Taymans  <wim@fluendo.com>
6764
6765         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
6766         (mute_stream), (silence_stream):
6767         Small debug additions.
6768
6769 2005-07-14  Wim Taymans  <wim@fluendo.com>
6770
6771         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
6772         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
6773         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
6774         Better error recovery, ignore unconnected pads and
6775         non-fatal errors.
6776
6777 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6778
6779         * docs/libs/tmpl/gstaudio.sgml:
6780         * docs/libs/tmpl/gstcolorbalance.sgml:
6781         * docs/libs/tmpl/gstgconf.sgml:
6782         * docs/libs/tmpl/gstmixer.sgml:
6783         * docs/libs/tmpl/gstringbuffer.sgml:
6784         * docs/libs/tmpl/gsttuner.sgml:
6785         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6786         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
6787         (gst_tcpclientsrc_class_init):
6788         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
6789         (gst_tcpserversrc_class_init):
6790         * sys/v4l/gstv4lelement.c:
6791           more autistic cleanliness in functions/names/defines
6792
6793 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6794
6795         * configure.ac:
6796           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
6797           added manually to each Makefile.am so we are sure it goes
6798           *last* and doesn't add -L flags before linking in libs of our
6799           own, like, say, internal .la libs, that then accidentally pick
6800           up the installed copy.
6801         * docs/libs/Makefile.am:
6802         * ext/alsa/Makefile.am:
6803         * ext/cdparanoia/Makefile.am:
6804         * ext/gnomevfs/Makefile.am:
6805         * ext/libvisual/Makefile.am:
6806         * ext/ogg/Makefile.am:
6807         * ext/theora/Makefile.am:
6808         * ext/vorbis/Makefile.am:
6809         * gst-libs/gst/video/Makefile.am:
6810         * gst/adder/Makefile.am:
6811         * gst/audioconvert/Makefile.am:
6812         * gst/audiorate/Makefile.am:
6813         * gst/audioscale/Makefile.am:
6814         * gst/ffmpegcolorspace/Makefile.am:
6815         * gst/playback/Makefile.am:
6816         * gst/sine/Makefile.am:
6817         * gst/subparse/Makefile.am:
6818         * gst/tags/Makefile.am:
6819         * gst/tcp/Makefile.am:
6820         * gst/typefind/Makefile.am:
6821         * gst/videorate/Makefile.am:
6822         * gst/videoscale/Makefile.am:
6823         * gst/videotestsrc/Makefile.am:
6824         * gst/volume/Makefile.am:
6825         * sys/v4l/Makefile.am:
6826         * sys/ximage/Makefile.am:
6827         * sys/xvimage/Makefile.am:
6828           adapt properly to this change. This should make sure that
6829           plugins and libs properly link to the as-yet-uninstalled
6830           copies of stuff like libgstinterfaces and libgstvideo
6831
6832 2005-07-13  Andy Wingo  <wingo@pobox.com>
6833
6834         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
6835         (gst_v4lsrc_fixate): Fixate on format as well.
6836
6837         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
6838         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
6839         buffer points to it.
6840         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
6841         rather just doing X calls ourselves. Also fixes a memleak.
6842
6843 2005-07-12  Andy Wingo  <wingo@pobox.com>
6844
6845         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
6846         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
6847         (gst_v4lsrc_create): Re-add the copy-mode property, default to
6848         TRUE to avoid deadlocks if an element holds on to our buffers.
6849
6850 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6851
6852         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
6853         (gst_sinesrc_init), (gst_sinesrc_create),
6854         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
6855         (gst_sinesrc_start):
6856         * gst/sine/gstsinesrc.h:
6857           removing num-buffers property before moving it
6858
6859 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6860
6861         * configure.ac:
6862           use overridable ERROR_CFLAGS
6863         * docs/libs/gst-plugins-base-libs.types:
6864         * docs/libs/tmpl/gstringbuffer.sgml:
6865         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
6866         (gst_alsasink_class_init):
6867         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
6868         (gst_alsasrc_class_init):
6869         * gst-libs/gst/audio/audio.h:
6870         * gst-libs/gst/audio/gstaudioclock.h:
6871         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
6872         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
6873         (gst_audio_filter_link), (gst_audio_filter_init),
6874         (gst_audio_filter_chain), (gst_audio_filter_set_property),
6875         (gst_audio_filter_get_property),
6876         (gst_audio_filter_class_add_pad_templates):
6877         * gst-libs/gst/audio/gstaudiofilter.h:
6878         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6879         (gst_audio_filter_template_get_type),
6880         (gst_audio_filter_template_base_init),
6881         (gst_audio_filter_template_class_init),
6882         (gst_audio_filter_template_init),
6883         (gst_audio_filter_template_set_property),
6884         (gst_audio_filter_template_get_property), (plugin_init),
6885         (gst_audio_filter_template_setup),
6886         (gst_audio_filter_template_filter),
6887         (gst_audio_filter_template_filter_inplace):
6888         * gst-libs/gst/audio/gstaudiosink.c:
6889         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
6890         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
6891         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
6892         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
6893         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
6894         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
6895         * gst-libs/gst/audio/gstaudiosink.h:
6896         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
6897         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
6898         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
6899         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
6900         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
6901         (gst_audio_src_class_init), (gst_audio_src_init),
6902         (gst_audio_src_create_ringbuffer):
6903         * gst-libs/gst/audio/gstaudiosrc.h:
6904         * gst-libs/gst/audio/gstbaseaudiosink.c:
6905         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
6906         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
6907         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
6908         (gst_base_audio_sink_set_property),
6909         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
6910         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
6911         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
6912         (gst_base_audio_sink_create_ringbuffer),
6913         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
6914         * gst-libs/gst/audio/gstbaseaudiosink.h:
6915         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6916         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
6917         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
6918         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
6919         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
6920         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
6921         (gst_base_audio_src_event), (gst_base_audio_src_create),
6922         (gst_base_audio_src_create_ringbuffer),
6923         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
6924         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6925         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
6926         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
6927         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
6928         (gst_ring_buffer_debug_spec_caps),
6929         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
6930         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6931         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6932         (gst_ring_buffer_start), (gst_ring_buffer_pause),
6933         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
6934         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
6935         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
6936         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6937         (gst_ring_buffer_clear):
6938         * gst-libs/gst/audio/gstringbuffer.h:
6939         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
6940         (gst_video_sink_class_init), (gst_video_sink_get_type):
6941         * gst-libs/gst/video/videosink.h:
6942         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
6943         (gst_multifdsink_class_init),
6944         (gst_multifdsink_handle_client_write),
6945         (gst_multifdsink_change_state):
6946         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
6947         (gst_tcpclientsink_setcaps):
6948         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
6949         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
6950         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
6951         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
6952         (gst_ximagesink_send_pending_navigation),
6953         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
6954         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
6955         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
6956         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
6957         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
6958         (gst_xvimagesink_send_pending_navigation),
6959         (gst_xvimagesink_navigation_send_event),
6960         (gst_xvimagesink_set_xwindow_id),
6961         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
6962         (gst_xvimagesink_get_type):
6963         more macro splitting
6964
6965 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6966
6967         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6968           plug a memleak, allows me to import 1479 albums in one go
6969           in jamboree
6970         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6971         (vorbis_handle_type_packet), (vorbis_dec_chain),
6972         (vorbis_dec_change_state):
6973           fix some format strings
6974
6975 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6976
6977         * docs/libs/tmpl/gstcolorbalance.sgml:
6978         * docs/libs/tmpl/gstmixer.sgml:
6979         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
6980         (gst_alsasink_set_property), (gst_alsasink_get_property):
6981         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
6982         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
6983           add device property
6984
6985 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6986
6987         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
6988         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
6989         (audiocast_register_listener), (audiocast_thread_run),
6990         (gst_gnomevfssrc_send_additional_headers_callback),
6991         (gst_gnomevfssrc_received_headers_callback),
6992         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
6993         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
6994         (gst_gnomevfssrc_get_size):
6995           add/clean up debugging
6996         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
6997           cleanups
6998
6999 2005-07-07  Andy Wingo  <wingo@pobox.com>
7000
7001         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
7002         framerate. Need to get a handle on when exactly this function is
7003         called, tho.
7004
7005         * sys/v4l/v4lsrc_calls.h:
7006         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
7007         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
7008         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
7009
7010         * sys/v4l/v4l_calls.h: Cast to V4lElement.
7011         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
7012         v4lelements are sources.
7013
7014         * sys/v4l/gstv4lxoverlay.h:
7015         * sys/v4l/gstv4lxoverlay.c:
7016         * sys/v4l/gstv4ltuner.h:
7017         * sys/v4l/gstv4ltuner.c: Header loc fixen.
7018         
7019         * sys/v4l/gstv4lsrc.h:
7020         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
7021         PushSrc/BaseSrc. Removed most sync-related properties, videorate
7022         or something should handle that. Made a live source.
7023
7024         * sys/v4l/gstv4lelement.h:
7025         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
7026         signals. Some cleanups.
7027
7028         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
7029
7030         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
7031         stuff.
7032
7033         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
7034         stuff.
7035
7036         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
7037
7038 2005-07-07  Wim Taymans  <wim@fluendo.com>
7039
7040         * ext/theora/theoradec.c: (theora_get_query_types),
7041         (theora_dec_src_getcaps), (theora_dec_push):
7042         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
7043         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
7044         Remove deprecated/unused query types.
7045
7046 2005-07-06  Wim Taymans  <wim@fluendo.com>
7047
7048         * ext/alsa/Makefile.am:
7049         * ext/alsa/gstalsaplugin.c: (plugin_init):
7050         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7051         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
7052         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
7053         (gst_alsasrc_class_init), (gst_alsasrc_init),
7054         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
7055         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
7056         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
7057         (gst_alsasrc_reset):
7058         * ext/alsa/gstalsasrc.h:
7059         * gst-libs/gst/audio/Makefile.am:
7060         * gst-libs/gst/audio/gstaudiosink.c:
7061         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7062         (gst_audioringbuffer_start):
7063         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
7064         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
7065         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
7066         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
7067         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
7068         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
7069         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
7070         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
7071         * gst-libs/gst/audio/gstaudiosrc.h:
7072         * gst-libs/gst/audio/gstbaseaudiosink.c:
7073         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7074         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
7075         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
7076         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7077         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
7078         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
7079         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
7080         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
7081         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
7082         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
7083         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
7084         (gst_baseaudiosrc_change_state):
7085         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7086         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
7087         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
7088         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
7089         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
7090         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
7091         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
7092         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
7093         * gst-libs/gst/audio/gstringbuffer.h:
7094         Added audiosource base classes.
7095         Ported alsasrc, still very basic.
7096
7097 2005-07-06  Wim Taymans  <wim@fluendo.com>
7098
7099         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
7100         (theora_dec_push), (theora_handle_data_packet):
7101         Prepare for better timestamp fix later.
7102
7103         * gst/audioconvert/gstaudioconvert.c:
7104         List most accurate caps first
7105
7106         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
7107         Use proper pad task function.
7108
7109         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7110         (gst_xvimagesink_show_frame):
7111         Fix deadlock when alloc failed.
7112
7113 2005-07-05  Andy Wingo  <wingo@pobox.com>
7114
7115         * ext/gnomevfs/gstgnomevfssrc.c:
7116         * gst/sine/gstsinesrc.c:
7117         * gst/tcp/gsttcpserversrc.c:
7118         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
7119
7120         * sys/v4l/: Port from 0.8.
7121
7122         * Many files: Null if we got it....
7123
7124 2005-07-05  Andy Wingo  <wingo@pobox.com>
7125
7126         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
7127         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
7128         Signedness fixes.
7129
7130 2005-07-05  Wim Taymans  <wim@fluendo.com>
7131
7132         * configure.ac:
7133         * gst/tcp/Makefile.am:
7134         * gst/tcp/README:
7135         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
7136         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
7137         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
7138         (is_sync_frame), (gst_multifdsink_handle_client_write),
7139         (gst_multifdsink_render), (gst_multifdsink_start),
7140         (gst_multifdsink_stop), (gst_multifdsink_change_state):
7141         * gst/tcp/gstmultifdsink.h:
7142         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
7143         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
7144         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
7145         * gst/tcp/gsttcp.h:
7146         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
7147         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
7148         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
7149         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
7150         * gst/tcp/gsttcpclientsink.h:
7151         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
7152         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
7153         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
7154         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
7155         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
7156         * gst/tcp/gsttcpclientsrc.h:
7157         * gst/tcp/gsttcpplugin.c: (plugin_init):
7158         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
7159         * gst/tcp/gsttcpserversink.h:
7160         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
7161         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
7162         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
7163         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
7164         (gst_tcpserversrc_stop):
7165         * gst/tcp/gsttcpserversrc.h:
7166         * gst/tcp/gsttcpsink.c:
7167         * gst/tcp/gsttcpsink.h:
7168         * gst/tcp/gsttcpsrc.c:
7169         * gst/tcp/gsttcpsrc.h:
7170         Ported tcp plugins to 0.9. 
7171         
7172
7173 2005-07-05  Andy Wingo  <wingo@pobox.com>
7174
7175         * gst/playback/gstplaybasebin.c (fill_buffer):
7176         message_new_application fixen.
7177
7178         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
7179         Style fix.
7180
7181 2005-07-04  Wim Taymans  <wim@fluendo.com>
7182
7183         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
7184         Set caps on output buffer.
7185
7186 2005-07-04  Andy Wingo  <wingo@pobox.com>
7187
7188         * ext/gnomevfs/gstgnomevfssrc.c
7189         (gst_gnomevfssrc_received_headers_callback) 
7190         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
7191         hopefully.
7192
7193         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
7194         No refcount leakage.
7195
7196         * configure.ac: Enable -Werror.
7197         
7198         * ext/theora/theoradec.c (theora_dec_src_getcaps):
7199         * gst/audioconvert/bufferframesconvert.c
7200         (buffer_frames_convert_fixate):
7201         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
7202         (gst_audio_convert_fixate):
7203         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
7204         (gst_sinesrc_create): Fixate func changes.
7205         
7206         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
7207         (gst_ximagesink_buffer_alloc): Unused var.
7208
7209 2005-07-01  Andy Wingo  <wingo@pobox.com>
7210
7211         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
7212         getcaps to do explicit caps. Needs to be done in all decoders,
7213         possibly via a base class.
7214
7215         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
7216
7217         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
7218         caps on the sink pad, just rely on the pad template. Also, setting
7219         ANY caps on a pad is not valid because the caps are not fixed.
7220
7221         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
7222         caps on the buffer, and get the width from the desired_caps if
7223         they're set.
7224         (gst_ximagesink_renegotiate_size): Implement via setting the
7225         desired_caps on the ximagesink.
7226         (gst_ximagesink_setcaps): Only reset the width of the player if it
7227         wasn't already set. Not sure if this is right.
7228         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
7229
7230         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
7231         that the user wants. NULL unless the window has been resized.
7232
7233         * gst/volume/gstvolume.c (volume_transform): Adapt to
7234         basetransform refcount changes.
7235         
7236 2005-07-01  Andy Wingo  <wingo@pobox.com>
7237
7238         * gst/videoscale/gstvideoscale.c:
7239         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
7240         from BaseTransform, implements a transform_caps. Removed dead code
7241         including some PAR stuff that was never reached -- should probably
7242         be added back somehow.
7243
7244 2005-07-01  Andy Wingo  <wingo@pobox.com>
7245
7246         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
7247         come later.
7248
7249 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
7250
7251         * configure.ac:
7252         * docs/libs/Makefile.am:
7253         * docs/libs/gst-plugins-libs.types:
7254         * ext/alsa/Makefile.am:
7255         * ext/alsa/gstalsamixer.h:
7256         * ext/alsa/gstalsamixeroptions.h:
7257         * ext/alsa/gstalsamixertrack.h:
7258         * gst-libs/gst/Makefile.am:
7259         * gst-libs/gst/colorbalance/.cvsignore:
7260         * gst-libs/gst/colorbalance/Makefile.am:
7261         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
7262         * gst-libs/gst/colorbalance/colorbalance.c:
7263         * gst-libs/gst/colorbalance/colorbalance.h:
7264         * gst-libs/gst/colorbalance/colorbalance.vcproj:
7265         * gst-libs/gst/colorbalance/colorbalancechannel.c:
7266         * gst-libs/gst/colorbalance/colorbalancechannel.h:
7267         * gst-libs/gst/interfaces/Makefile.am:
7268         * gst-libs/gst/interfaces/colorbalance.c:
7269         (gst_color_balance_class_init):
7270         * gst-libs/gst/interfaces/colorbalance.h:
7271         * gst-libs/gst/interfaces/interfaces-marshal.list:
7272         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
7273         * gst-libs/gst/interfaces/mixer.h:
7274         * gst-libs/gst/interfaces/mixeroptions.h:
7275         * gst-libs/gst/interfaces/navigation.c:
7276         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
7277         * gst-libs/gst/interfaces/tuner.h:
7278         * gst/volume/Makefile.am:
7279         * gst/volume/gstvolume.c:
7280         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
7281         * sys/ximage/Makefile.am:
7282         * sys/ximage/ximagesink.c:
7283         * sys/xvimage/Makefile.am:
7284         * sys/xvimage/xvimagesink.c:
7285           fold in all interfaces into an interfaces dir, preserving CVS
7286           history
7287
7288 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7289
7290         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7291           Fix build after riff changes.
7292
7293 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7294
7295         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7296         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
7297         (gst_riff_create_video_template_caps),
7298         (gst_riff_create_audio_template_caps),
7299         (gst_riff_create_iavs_template_caps):
7300         * gst-libs/gst/riff/riff-media.h:
7301         * gst-libs/gst/riff/riff-read.h:
7302         * gst-libs/gst/riff/riff.c: (gst_riff_init):
7303           Add gst_riff_init() to initialize the debug category, instead
7304           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
7305
7306 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7307
7308         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
7309           Oops, I shouldn't apply hacks.
7310
7311 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7312
7313         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
7314           Remove pad_loop function which doesn't work.
7315
7316 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7317
7318         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
7319           Send EOS when deactivating.
7320         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
7321         (check_queue), (queue_threshold_reached), (queue_out_of_data),
7322         (gen_preroll_element), (probe_triggered), (mute_stream),
7323         (silence_stream), (new_decoded_pad), (setup_substreams),
7324         (set_active_source):
7325         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
7326         (remove_sinks), (add_sink):
7327         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
7328           Change for new probe API.
7329
7330 2005-06-29  Wim Taymans  <wim@fluendo.com>
7331
7332         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
7333         * gst-libs/gst/audio/gstbaseaudiosink.c:
7334         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7335         (gst_baseaudiosink_change_state):
7336         * gst-libs/gst/audio/gstbaseaudiosink.h:
7337         * gst-libs/gst/audio/gstringbuffer.c:
7338         (gst_ringbuffer_set_callback):
7339         Fix compilation error.
7340         Ringbuffer starts out as not running.
7341         Free our clock in dispose.
7342         When releasing the ringbuffer we need to renegotiate so
7343         clear the pad caps.
7344
7345 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
7346
7347         * autogen.sh:
7348         * configure.ac:
7349         * docs/Makefile.am:
7350         * docs/libs/Makefile.am:
7351         * docs/libs/gst-plugins-libs-docs.sgml:
7352         * docs/libs/gst-plugins-libs-sections.txt:
7353         * docs/libs/gst-plugins-libs.types:
7354         * docs/libs/tmpl/gstaudio.sgml:
7355         * docs/libs/tmpl/gstcolorbalance.sgml:
7356         * docs/libs/tmpl/gstringbuffer.sgml:
7357         * gst-libs/gst/audio/gstringbuffer.c:
7358         (gst_ringbuffer_set_callback):
7359           reinstate gtk-doc docs for plugin libs
7360
7361 2005-06-28  Wim Taymans  <wim@fluendo.com>
7362
7363         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7364         (gst_ogg_demux_init):
7365         Removed pad loop function.
7366
7367 2005-06-28  Wim Taymans  <wim@fluendo.com>
7368
7369         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
7370         If we're building a chain we are not in an error case
7371         when we queue a buffer.
7372
7373 2005-06-28  Andy Wingo  <wingo@pobox.com>
7374
7375         * *.c: Don't cast to GstObject before reffing/unreffing.
7376
7377 2005-06-27  Andy Wingo  <wingo@pobox.com>
7378
7379         * gst/videotestsrc/gstvideotestsrc.c
7380         (gst_videotestsrc_activate_push): Activation API changes.
7381
7382         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
7383         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
7384         they have refs on the decodebin.
7385
7386         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
7387         parent class.
7388         (gst_ogg_pad_typefind): Don't leak a pad ref.
7389         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
7390         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
7391         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
7392
7393 2005-06-27  Edward Hervey  <edward@fluendo.com>
7394
7395         * ext/theora/theoradec.c: (theora_dec_change_state): 
7396         re-arranged call to parent's state change in order to avoid locks (or
7397         worse).
7398
7399 2005-06-26  Edward Hervey  <edward@fluendo.com>
7400
7401         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
7402         2nd argument of 'unknow-type' signal is a GstCaps and not a
7403         GstMiniObject
7404
7405 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
7406         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
7407           Set the worker thread's running flag to TRUE before starting the
7408           thread.
7409         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
7410           Catch a failure to add typefind to the bin.
7411
7412 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7413
7414         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7415         (gst_sinesrc_init), (gst_sinesrc_create),
7416         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
7417         (gst_sinesrc_start):
7418         * gst/sine/gstsinesrc.h:
7419           add num-buffers and timestamp-offset properties
7420         * gst/videotestsrc/gstvideotestsrc.c:
7421         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
7422         (gst_videotestsrc_get_property):
7423           add timestamp-offset property
7424
7425 2005-06-23  Christian Schaller  <uraeus@gnome.org>
7426
7427         * configure.ac: add videorate
7428         * gst-plugins-base.spec.in: add videorate
7429
7430 2005-06-23  Wim Taymans  <wim@fluendo.com>
7431
7432         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7433         (gst_videorate_getcaps), (gst_videorate_setcaps),
7434         (gst_videorate_event), (gst_videorate_chain):
7435         Fixed videorate, fixating an already fixated caps is not
7436         an error.
7437
7438 2005-06-23  Wim Taymans  <wim@fluendo.com>
7439
7440         * ext/ogg/README:
7441         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
7442         Buffer on caps is not boxed anymore.
7443
7444 2005-06-22  Wim Taymans  <wim@fluendo.com>
7445
7446         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7447         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
7448         Set buffers on caps as miniobjects and not as boxed.
7449
7450 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
7451
7452         * configure.ac:
7453           back to HEAD
7454
7455 === release 0.9.1 ===
7456
7457 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
7458
7459         * .cvsignore:
7460         * NEWS:
7461         * README:
7462         * RELEASE:
7463         * configure.ac:
7464         * po/af.po:
7465         * po/az.po:
7466         * po/cs.po:
7467         * po/en_GB.po:
7468         * po/hu.po:
7469         * po/it.po:
7470         * po/nb.po:
7471         * po/nl.po:
7472         * po/or.po:
7473         * po/sq.po:
7474         * po/sr.po:
7475         * po/sv.po:
7476         * po/uk.po:
7477         * po/vi.po:
7478           updates for release
7479
7480 2005-06-09  Andy Wingo  <wingo@pobox.com>
7481
7482         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
7483         
7484 2005-06-09  Andy Wingo  <wingo@pobox.com>
7485
7486         * configure.ac:
7487         * gst-libs/gst/Makefile.am:
7488         * gst-libs/gst/net/Makefile.am:
7489         Add gstnet to build.
7490
7491 2005-06-09  Andy Wingo  <wingo@pobox.com>
7492
7493         * gst-libs/gst/gconf/gconf.c:
7494         * gst/playback/test.c:
7495         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
7496         fixes.
7497
7498         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
7499
7500         * ext/theora/theoraenc.c (theora_enc_chain): 
7501         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
7502
7503         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
7504         RealPad.
7505
7506 2005-06-02  Wim Taymans  <wim@fluendo.com>
7507
7508         * gst-libs/gst/net/Makefile.am:
7509         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
7510         * pkgconfig/gstreamer-libs.pc.in:
7511         Added net stuff, version net lib.
7512
7513 2005-06-02  Wim Taymans  <wim@fluendo.com>
7514
7515         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
7516         (query_rates), (query_positions_elems), (query_positions_pads),
7517         (do_seek):
7518         Updated seek example.
7519
7520 2005-06-02  Andy Wingo  <wingo@pobox.com>
7521
7522         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
7523         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
7524         list.
7525
7526         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
7527         remove the typefind, the bin dispose will do it for us. When it's
7528         removed and unreffed, the signal handler will be disconnected,
7529         too.
7530         (unlinked): It's too difficult to disconnect from unlinked
7531         handlers, as they are on pads not elements. Just punt if the pads
7532         aren't grandkids of the bin.
7533
7534 2005-06-02  Wim Taymans  <wim@fluendo.com>
7535
7536         * ext/ogg/README:
7537         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7538         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
7539         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
7540         * ext/theora/theoradec.c: (theora_dec_src_query),
7541         (theora_handle_data_packet):
7542         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
7543         (theora_enc_chain):
7544         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7545         (vorbis_handle_data_packet):
7546         * gst/audioconvert/bufferframesconvert.c:
7547         (buffer_frames_convert_chain):
7548         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7549         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7550         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7551         (gst_ffmpegcsp_chain):
7552         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7553         (gst_videorate_getcaps), (gst_videorate_setcaps),
7554         (gst_videorate_event), (gst_videorate_chain):
7555         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
7556         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
7557         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
7558         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
7559         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7560         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
7561         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
7562         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
7563         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7564         Cleanups and buffer alloc.
7565
7566 2005-05-31  Wim Taymans  <wim@fluendo.com>
7567
7568         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
7569         Don't try to call the delay method when the device is not
7570         opened.
7571
7572 2005-05-31  Wim Taymans  <wim@fluendo.com>
7573
7574         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
7575         Get actual segment size and buffer size after opening
7576         the device.
7577
7578 2005-05-30  Wim Taymans  <wim@fluendo.com>
7579
7580         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
7581         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
7582         Also FLUSH upstream, makes the loop function exit faster.
7583         
7584         * ext/theora/theoradec.c: (theora_dec_src_query):
7585         Some more debug info in the query.
7586         
7587         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
7588         (gst_ximagesink_setcaps):
7589         Release lock on par error, better error reporting.
7590
7591 2005-05-26  Wim Taymans  <wim@fluendo.com>
7592
7593         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7594         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
7595         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
7596         Clear chains in READY
7597         Queue packets until the chain is activated.
7598
7599 2005-05-25  Wim Taymans  <wim@fluendo.com>
7600
7601         * gst-libs/gst/audio/gstaudiosink.c:
7602         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7603         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7604         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7605         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7606         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7607         (gst_audiosink_create_ringbuffer):
7608         * gst-libs/gst/audio/gstbaseaudiosink.c:
7609         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
7610         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
7611         (gst_baseaudiosink_set_property), (build_linear_format),
7612         (debug_spec_caps), (debug_spec_buffer),
7613         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
7614         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
7615         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
7616         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
7617         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
7618         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
7619         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
7620         (gst_ringbuffer_play), (gst_ringbuffer_pause),
7621         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
7622         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
7623         (wait_segment), (gst_ringbuffer_commit),
7624         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
7625         (gst_ringbuffer_clear):
7626         Various small cleanups.
7627
7628         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7629         (gst_audio_convert_change_state):
7630         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
7631         No need to take the locks anymore.
7632
7633 2005-05-25  Wim Taymans  <wim@fluendo.com>
7634
7635         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
7636         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
7637         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
7638         (type_found):
7639         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
7640         (group_destroy), (group_commit), (queue_overrun),
7641         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
7642         (mute_stream), (new_decoded_pad), (setup_substreams),
7643         (setup_source), (mute_group_type), (set_active_source),
7644         (gst_play_base_bin_change_state):
7645         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
7646         (gen_video_element), (gen_text_element), (gen_audio_element),
7647         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
7648         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
7649         (gst_stream_info_dispose), (gst_stream_info_set_mute):
7650         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
7651         Some playbin cleanups mostly refcounting sloppyness.
7652
7653 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7654
7655         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
7656           Work with streaming input.
7657
7658 2005-05-25  Wim Taymans  <wim@fluendo.com>
7659
7660         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7661         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7662         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7663         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
7664         No need to take the STREAM lock anymore.
7665
7666 2005-05-25  Wim Taymans  <wim@fluendo.com>
7667
7668         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
7669         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
7670         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
7671         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
7672         (gst_ogg_demux_sink_activate):
7673         * ext/theora/theoradec.c: (theora_dec_src_event),
7674         (theora_handle_comment_packet), (theora_dec_chain),
7675         (theora_dec_change_state):
7676         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7677         (vorbis_handle_data_packet), (vorbis_dec_chain),
7678         (vorbis_dec_change_state):
7679         Remove STREAM locks as they are taken in core now.
7680         Never set bogus granulepos on vorbis/theora.
7681         Fix leaks in theoradec tag parsing.
7682
7683 2005-05-25  Wim Taymans  <wim@fluendo.com>
7684
7685         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
7686         Fix memleaks, GST_BUFFER_DATA() is not freed.
7687
7688 2005-05-25  Wim Taymans  <wim@fluendo.com>
7689
7690         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7691         Open non-blocking, set to blocking mode afterwards to avoid
7692         lockups when audio device is busy.
7693
7694 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7695
7696         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
7697           This can't be good.
7698
7699 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7700
7701         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
7702         (gst_audio_convert_chain), (gst_audio_convert_link_src),
7703         (gst_audio_convert_setcaps):
7704           Implement instant setup switching.
7705
7706 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7707
7708         * gst/playback/gstplaybasebin.c: (probe_triggered):
7709           Fix missing unlock.
7710         * gst/playback/gstplaybin.c: (add_sink):
7711           First add, then link (otherwise pad link fails).
7712
7713 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7714
7715         * examples/Makefile.am:
7716         fix buildbot (make distcheck)
7717
7718 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7719
7720         * gst/playback/gstplaybin.c: (gen_vis_element):
7721           Remove some wrong code. Doesn't work yet.
7722
7723 2005-05-19  Wim Taymans  <wim@fluendo.com>
7724
7725         * gst-libs/gst/net/Makefile.am:
7726         * gst-libs/gst/net/README:
7727         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
7728         (gst_netbuffer_class_init), (gst_netbuffer_init),
7729         (gst_netbuffer_finalize), (gst_netbuffer_copy),
7730         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
7731         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
7732         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
7733         * gst-libs/gst/net/gstnetbuffer.h:
7734         Added buffer subclass to store extra to/from addresses for
7735         network sources/sinks.
7736
7737 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7738
7739         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
7740           Don't lock an unassigned variable.
7741
7742 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7743
7744         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
7745           Increase buffer for video, decrease buffer for other media types.
7746         * gst/playback/gstplaybin.c: (gen_video_element),
7747         (gen_audio_element):
7748           Change names for debugging purposes.
7749
7750 2005-05-18  Wim Taymans  <wim@fluendo.com>
7751
7752         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7753         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7754         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7755         (gst_ffmpegcsp_chain):
7756         Enable buffer alloc passthrough if the source and dest
7757         formats are the same.
7758
7759 2005-05-17  Wim Taymans  <wim@fluendo.com>
7760
7761         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
7762         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
7763         (gst_ogg_demux_chain_unlocked):
7764         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7765         (gst_audio_convert_caps_remove_format_info),
7766         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7767         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
7768         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7769         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7770         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
7771         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
7772         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
7773         (gst_ffmpegcsp_get_property):
7774         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7775         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
7776         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
7777         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
7778         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
7779         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
7780         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
7781         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
7782         Leak fixes in oggdemux.
7783         Some cleanups in audioconvert.
7784         Make passthrough work along with buffer_alloc etc.
7785         Make buffer_alloc and buffer recycling actually work in
7786         xvimagesink.
7787
7788 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7789
7790         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
7791           make the compiler happy
7792
7793 2005-05-17  Wim Taymans  <wim@fluendo.com>
7794
7795         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
7796         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
7797         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
7798         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
7799         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
7800         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
7801         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
7802         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
7803         (gst_xvimagesink_set_xwindow_id):
7804         * sys/xvimage/xvimagesink.h:
7805         Port xvimagesink to new MiniObject.
7806
7807 2005-05-17  Wim Taymans  <wim@fluendo.com>
7808
7809         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
7810         (gst_audiofilter_chain):
7811         * gst-libs/gst/audio/gstaudiosink.c:
7812         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7813         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7814         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7815         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7816         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7817         (gst_audiosink_create_ringbuffer):
7818         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7819         (gst_audio_convert_caps_remove_format_info),
7820         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7821         (gst_audio_convert_fixate), (gst_audio_convert_channels):
7822         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7823         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7824         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
7825         Fix passthrough in ffmpegcolorspace.
7826         Fix memset in audiosink on wrong memory.
7827
7828 2005-05-16  David Schleef  <ds@schleef.org>
7829
7830         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
7831         to GstMiniObject.
7832
7833 2005-05-16  David Schleef  <ds@schleef.org>
7834
7835         Port from GstData to GstMiniObject.
7836         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7837         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7838         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
7839         (gst_ogg_mux_collected):
7840         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7841         * ext/theora/theoradec.c: (theora_handle_comment_packet),
7842         (theora_handle_data_packet):
7843         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
7844         (theora_set_header_on_caps), (theora_enc_chain):
7845         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7846         (vorbis_handle_comment_packet):
7847         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
7848         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
7849         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
7850         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
7851         * gst/audioconvert/gstaudioconvert.c:
7852         (gst_audio_convert_get_buffer):
7853         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
7854         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
7855         (mute_stream), (silence_stream):
7856         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
7857         * gst/volume/gstvolume.c: (volume_transform):
7858         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
7859         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
7860         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
7861         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
7862         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
7863         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
7864         (gst_ximagesink_buffer_alloc):
7865         * sys/ximage/ximagesink.h:
7866
7867 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7868
7869         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7870         (fill_buffer), (check_queue), (queue_threshold_reached),
7871         (queue_out_of_data):
7872         * gst/playback/gstplaybasebin.h:
7873           Post buffer-fullness on the bus.
7874
7875 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7876
7877         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
7878         (try_to_link_1):
7879         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7880         (group_commit), (probe_triggered), (setup_source),
7881         (gst_play_base_bin_change_state):
7882         * gst/playback/gstplaybasebin.h:
7883         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7884         (gst_play_bin_init), (remove_sinks), (setup_sinks),
7885         (gst_play_bin_change_state):
7886           Move setup_output_pads into a virtual function, remove
7887           group-switch (no longer needed) and redirect (handled by bus
7888           now) signals.
7889
7890 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7891
7892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
7893         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
7894         (get_active_group), (get_building_group), (group_destroy),
7895         (group_commit), (check_queue), (queue_overrun),
7896         (queue_threshold_reached), (queue_out_of_data),
7897         (gen_preroll_element), (remove_groups), (unknown_type),
7898         (add_element_stream), (no_more_pads), (probe_triggered),
7899         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
7900         (setup_substreams), (setup_source), (finish_source),
7901         (prepare_output), (muted_group_change_state),
7902         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7903         (gst_play_base_bin_change_state):
7904         * gst/playback/gstplaybasebin.h:
7905         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7906         (gst_play_bin_init), (gst_play_bin_set_property),
7907         (gen_video_element), (gen_text_element), (gen_audio_element),
7908         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
7909         (gst_play_bin_change_state):
7910         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
7911         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
7912         (stream_info_change_state), (gst_stream_info_set_mute),
7913         (gst_stream_info_get_property):
7914         * gst/playback/gststreaminfo.h:
7915         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
7916         (gst_stream_selector_get_linked_pad),
7917         (gst_stream_selector_getcaps),
7918         (gst_stream_selector_get_linked_pads),
7919         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
7920         * gst/playback/gststreamselector.h:
7921           Rough port of playbin. Needs some more work, but is mostly done,
7922           and uses a few locks in important places, which should make stuff
7923           like chain-switches clean. Still uses GST_STATE() in a few places,
7924           which isn't all that good an idea, subtitles/elements disabled
7925           because no elements to test with and thus probably broken, query
7926           and event handling moved to GstBin, internal thread removed
7927           alltogether because the pipeline does that for us now. Can play
7928           Ogg/Vorbis files. Haven't tested anything else yet.
7929
7930 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7931
7932         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7933           Do no-more-pads (needed for autoplugging).
7934
7935 2005-05-10  Andy Wingo  <wingo@pobox.com>
7936
7937         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
7938         message to the bus with the tags. Still not sent downstream tho.
7939
7940         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
7941         get_parent.
7942         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
7943         avoid refcounting hassles.
7944
7945 2005-05-09  Andy Wingo  <wingo@pobox.com>
7946
7947         * gst/volume/Makefile.am:
7948         * gst/volume/demo.c
7949         * gst/volume/gstvolume.h
7950         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
7951         basetransform. Probably need an audio filter base class.
7952
7953 2005-05-09  Wim Taymans  <wim@fluendo.com>
7954
7955         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
7956         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
7957         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
7958         (gst_vorbisenc_chain):
7959         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7960         (gst_audio_convert_caps_remove_format_info),
7961         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7962         (gst_audio_convert_fixate), (gst_audio_convert_channels):
7963         Make caps writable before writing to it.
7964         Fix negotiation in audioconvert some more.
7965
7966 2005-05-09  Wim Taymans  <wim@fluendo.com>
7967
7968         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7969         (gst_videorate_getcaps), (gst_videorate_setcaps),
7970         (gst_videorate_event), (gst_videorate_chain):
7971         Better negotiation.
7972
7973 2005-05-09  Wim Taymans  <wim@fluendo.com>
7974
7975         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
7976         (gst_videorate_getcaps), (gst_videorate_setcaps),
7977         (gst_videorate_blank_data), (gst_videorate_init),
7978         (gst_videorate_event), (gst_videorate_chain),
7979         (gst_videorate_change_state):
7980         Port videorate, do a better job at negotiation while we're at
7981         it.
7982
7983 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
7984
7985         * configure.ac:
7986           Disable libvisual
7987
7988         * examples/Makefile.am:
7989         * gst-libs/gst/audio/Makefile.am:
7990         * gst-libs/gst/riff/Makefile.am:
7991         * gst-libs/gst/tag/Makefile.am:
7992         * gst-libs/gst/video/Makefile.am:
7993           Fixups for missing variables.
7994
7995 2005-05-09  Wim Taymans  <wim@fluendo.com>
7996
7997         * examples/seeking/seek.c: (make_theora_pipeline),
7998         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
7999         (query_rates), (query_positions_elems), (query_positions_pads),
8000         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
8001         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
8002         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
8003         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
8004         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
8005         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
8006         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
8007         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
8008         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
8009         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
8010         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
8011         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
8012         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
8013         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
8014         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
8015         (theora_dec_src_convert), (theora_dec_sink_convert),
8016         (theora_dec_src_query), (theora_dec_sink_query),
8017         (theora_dec_src_event), (theora_dec_sink_event),
8018         (theora_handle_comment_packet), (theora_handle_type_packet),
8019         (theora_handle_header_packet), (theora_handle_data_packet),
8020         (theora_dec_chain):
8021         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
8022         (vorbis_dec_convert), (vorbis_dec_src_query),
8023         (vorbis_dec_sink_query), (vorbis_dec_src_event),
8024         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8025         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8026         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
8027         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8028         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
8029         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
8030         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8031         (gst_play_bin_query):
8032         * gst/playback/test3.c: (update_scale):
8033         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
8034         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
8035         * gst/subparse/gstsubparse.c: (gst_subparse_init):
8036         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
8037         (gst_videotestsrc_src_query):
8038         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
8039         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
8040         (paint_hline_YUV9):
8041         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
8042         Port to new query API.
8043         Updated seek.
8044         Cleanups in x[v]imagesink
8045
8046 2005-05-09  Andy Wingo  <wingo@pobox.com>
8047
8048         * ext/alsa/gstalsasink.h:
8049         * ext/gnomevfs/gstgnomevfssrc.c:
8050         (gst_gnomevfssrc_get_icy_metadata):
8051         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
8052         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
8053         * ext/theora/theoradec.c (theora_dec_src_query)
8054         (theora_dec_src_event, theora_dec_sink_event)
8055         (theora_handle_comment_packet, theora_handle_data_packet):
8056         * ext/theora/theoraenc.c (theora_enc_chain):
8057         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
8058         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
8059         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
8060         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
8061         (qt_type_find):
8062         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
8063         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
8064         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
8065         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
8066         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
8067         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
8068         (paint_setup_xBGR8888, paint_setup_RGBx8888)
8069         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
8070         (paint_setup_RGB565, paint_setup_xRGB1555):
8071         * gst/videotestsrc/videotestsrc.h:
8072         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
8073         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
8074         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
8075         GCC4 fixes.
8076         
8077         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
8078         gst_pad_query_position. Fixes oggdemux.
8079
8080 2005-05-08  David Schleef  <ds@schleef.org>
8081
8082         * configure.ac: Require liboil.
8083         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
8084         a few more.
8085         * gst/videotestsrc/videotestsrc.c:
8086         * gst/videotestsrc/videotestsrc.h:
8087
8088 2005-05-06  Wim Taymans  <wim@fluendo.com>
8089
8090         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8091         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8092         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8093         Well, unreffing a buffer right before pushing it is asking
8094         for trouble..
8095
8096 2005-05-06  Christian Schaller  <uraeus@gnome.org>
8097
8098         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
8099
8100 2005-05-06  Wim Taymans  <wim@fluendo.com>
8101
8102         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8103         (gst_audio_convert_caps_remove_format_info),
8104         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8105         (gst_audio_convert_fixate), (gst_audio_convert_channels):
8106         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8107         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8108         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8109         * gst/sine/Makefile.am:
8110         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
8111         (gst_sinesrc_class_init), (gst_sinesrc_init),
8112         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
8113         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
8114         (gst_sinesrc_update_freq):
8115         * gst/sine/gstsinesrc.h:
8116         * gst/tcp/gstmultifdsink.c:
8117         * sys/xvimage/xvimagesink.c:
8118         Fixed negotiation wrt _peer_get_caps()
8119         Some cleanups.
8120
8121
8122 2005-05-06  Wim Taymans  <wim@fluendo.com>
8123
8124         * gst-libs/gst/audio/gstaudiosink.c:
8125         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8126         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8127         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8128         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8129         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8130         (gst_audiosink_create_ringbuffer):
8131         * gst-libs/gst/audio/gstbaseaudiosink.c:
8132         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8133         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8134         (gst_baseaudiosink_set_property), (build_linear_format),
8135         (debug_spec_caps), (debug_spec_buffer),
8136         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8137         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8138         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8139         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8140         * gst-libs/gst/audio/gstbaseaudiosink.h:
8141         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8142         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8143         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
8144         (gst_ringbuffer_play), (gst_ringbuffer_pause),
8145         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
8146         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
8147         (wait_segment), (gst_ringbuffer_commit),
8148         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
8149         (gst_ringbuffer_clear):
8150         * gst-libs/gst/audio/gstringbuffer.h:
8151         Make the base audiosink return an error when there is no
8152         audiobuffer negotiated.
8153
8154 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8155
8156         * ext/Makefile.am:
8157         Disable cdparanoia until someone ports it!
8158
8159 2005-05-06  Wim Taymans  <wim@fluendo.com>
8160
8161         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8162         (gst_ogg_demux_sink_activate):
8163         And revert after wingo's revert.. sigh..
8164
8165 2005-05-05  Andy Wingo  <wingo@pobox.com>
8166
8167         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
8168         GObject.
8169         * configure.ac: Return audiorate and subparse from the ghetto.
8170         Re-enable -Wall -Werror.
8171         * gst/subparse/gstsubparse.c:
8172         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
8173         or chain-based. Cleaned up a bit. Not tested.
8174         
8175 2005-05-05  Christian Schaller <christian@fluendo.com> 
8176
8177         * Makefile.am: remove stuff that is not building
8178         * configure.ac: remove stuff that is not building
8179         * examples/Makefile.am: remove stuff that is not building
8180         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
8181         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
8182         * sys/Makefile.am: remove stuff that is not building
8183         * testsuite/Makefile.am: remove stuff that is not building
8184
8185 2005-05-05  Andy Wingo  <wingo@pobox.com>
8186
8187         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
8188         * gst-libs/gst/tag/gstvorbistag.c:
8189         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
8190         * gst/adder/gstadder.h:
8191         * gst/audioconvert/gstchannelmix.c:
8192         (gst_audio_convert_fill_one_other):
8193         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
8194         (gst_audiorate_init), (gst_audiorate_chain):
8195         * gst/playback/gstplaybasebin.c: (setup_source):
8196         * gst/playback/test3.c: (update_scale):
8197         Some GCC4 fixes
8198         
8199         * po/af.po:
8200         * po/az.po:
8201         * po/cs.po:
8202         * po/en_GB.po:
8203         * po/hu.po:
8204         * po/it.po:
8205         * po/nb.po:
8206         * po/nl.po:
8207         * po/or.po:
8208         * po/sq.po:
8209         * po/sr.po:
8210         * po/sv.po:
8211         * po/uk.po:
8212         * po/vi.po: Foo
8213
8214 2005-05-05  Wim Taymans  <wim@fluendo.com>
8215
8216         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8217         (gst_audio_convert_caps_remove_format_info),
8218         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
8219         (gst_audio_convert_change_state), (gst_audio_convert_channels):
8220         * gst/videotestsrc/gstvideotestsrc.c:
8221         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
8222         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
8223         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
8224         (gst_videotestsrc_init), (gst_videotestsrc_loop):
8225         Don't ignore _push() return values.
8226         Make sure no processing is done when shutting down.
8227         Videotestsrc pad activation fix.
8228
8229 2005-05-05  Wim Taymans  <wim@fluendo.com>
8230
8231         * gst/adder/Makefile.am:
8232         * gst/adder/gstadder.c: (gst_adder_setcaps),
8233         (gst_adder_class_init), (gst_adder_init),
8234         (gst_adder_request_new_pad), (gst_adder_collected),
8235         (gst_adder_change_state):
8236         * gst/adder/gstadder.h:
8237         Ported adder as an example of a mixer element using
8238         collect pads. Needs more negotiation work.
8239
8240 2005-05-05  Wim Taymans  <wim@fluendo.com>
8241
8242         * ext/theora/theoradec.c: (_inc_granulepos),
8243         (theora_dec_src_event), (theora_dec_sink_event),
8244         (theora_handle_comment_packet), (theora_handle_type_packet),
8245         (theora_handle_header_packet), (theora_handle_data_packet),
8246         (theora_dec_chain):
8247         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8248         (gst_theora_enc_init), (theora_enc_sink_setcaps),
8249         (theora_push_buffer), (theora_push_packet),
8250         (theora_enc_sink_event), (theora_enc_chain),
8251         (theora_enc_change_state), (theora_enc_set_property),
8252         (theora_enc_get_property):
8253         Added stream lock to decoder so that we can serialize
8254         the discont event.
8255         More theoraenc porting, recover from errors, do clean
8256         shutdown.
8257
8258 2005-05-05  Wim Taymans  <wim@fluendo.com>
8259
8260         * ext/ogg/Makefile.am:
8261         * ext/ogg/README:
8262         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8263         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
8264         (gst_ogg_print):
8265         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
8266         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
8267         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
8268         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
8269         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
8270         (gst_ogg_mux_change_state):
8271         Ported ogg muxer.
8272
8273 2005-05-05  Wim Taymans  <wim@fluendo.com>
8274
8275         * docs/design-audiosinks.txt:
8276         * gst-libs/gst/audio/TODO:
8277         * gst-libs/gst/audio/gstaudiosink.c:
8278         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8279         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8280         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8281         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8282         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8283         (gst_audiosink_create_ringbuffer):
8284         * gst-libs/gst/audio/gstbaseaudiosink.c:
8285         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8286         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8287         (gst_baseaudiosink_set_property), (build_linear_format),
8288         (debug_spec_caps), (debug_spec_buffer),
8289         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8290         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8291         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8292         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8293         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8294         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8295         (gst_ringbuffer_release), (gst_ringbuffer_play),
8296         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8297         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8298         (gst_ringbuffer_set_sample), (wait_segment),
8299         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8300         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8301         More work on the audiosink, mostly debugging and a race in
8302         shutdown.
8303
8304 2005-04-28  Wim Taymans  <wim@fluendo.com>
8305
8306         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8307         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
8308         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8309         (vorbis_dec_src_query), (vorbis_dec_src_event),
8310         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8311         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8312         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
8313         Don't crap out when seeking back to position 0.
8314
8315 2005-04-28  Wim Taymans  <wim@fluendo.com>
8316
8317         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
8318         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
8319         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
8320         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
8321         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
8322         Make audio sink configurable, use alsasink as default.
8323
8324 2005-04-28  Wim Taymans  <wim@fluendo.com>
8325
8326         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8327         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8328         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8329         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
8330         (vorbis_dec_change_state):
8331         * ext/vorbis/vorbisdec.h:
8332         Refactor, use STREAM_LOCK.
8333
8334 2005-04-28  Wim Taymans  <wim@fluendo.com>
8335
8336         * ext/theora/theoradec.c: (_inc_granulepos),
8337         (theora_dec_sink_event), (theora_handle_comment_packet),
8338         (theora_handle_type_packet), (theora_handle_header_packet),
8339         (theora_handle_data_packet), (theora_dec_chain),
8340         (theora_dec_change_state):
8341         Refactor a bit, use STREAM_LOCK.
8342
8343 2005-04-28  Wim Taymans  <wim@fluendo.com>
8344
8345         * ext/alsa/Makefile.am:
8346         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
8347         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
8348         (gst_alsa_link), (gst_alsa_close_audio):
8349         * ext/alsa/gstalsaplugin.c: (plugin_init):
8350         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
8351         (gst_alsasink_dispose), (gst_alsasink_base_init),
8352         (gst_alsasink_class_init), (gst_alsasink_init),
8353         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
8354         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
8355         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
8356         (gst_alsasink_reset):
8357         * ext/alsa/gstalsasink.h:
8358         Implement alsasink with simple open/write/close API. 
8359         Make alsa dir build by disabling compilation of code.
8360
8361 2005-04-28  Wim Taymans  <wim@fluendo.com>
8362
8363         * gst-libs/gst/audio/Makefile.am:
8364         * gst-libs/gst/audio/audio.h:
8365         * gst-libs/gst/audio/audioclock.c:
8366         * gst-libs/gst/audio/audioclock.h:
8367         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
8368         (gst_audio_clock_class_init), (gst_audio_clock_init),
8369         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
8370         * gst-libs/gst/audio/gstaudioclock.h:
8371         * gst-libs/gst/audio/gstaudiosink.c:
8372         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8373         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8374         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8375         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8376         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8377         (gst_audiosink_create_ringbuffer):
8378         * gst-libs/gst/audio/gstbaseaudiosink.c:
8379         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8380         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8381         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
8382         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
8383         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8384         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8385         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8386         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8387         * gst-libs/gst/audio/gstbaseaudiosink.h:
8388         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8389         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
8390         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8391         (gst_ringbuffer_release), (gst_ringbuffer_play),
8392         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8393         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8394         (gst_ringbuffer_set_sample), (wait_segment),
8395         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8396         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8397         * gst-libs/gst/audio/gstringbuffer.h:
8398         Make ringbuffer faster and more simple by removing the locks
8399         in the playback thread.
8400         Add sample accurate playback based on buffer sample offsets.
8401         Make the baseaudiosink provide a clock.
8402         Parse caps in the base class.
8403         Correctly handle seeking, flushing and state changes.
8404
8405 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
8406
8407         * configure.ac:
8408         * gst/audioconvert/Makefile.am:
8409         * gst/audioscale/Makefile.am:
8410           Fix part of the build.  Come on guys, autogen didn't even work :)
8411
8412 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8413
8414         * configure.ac:
8415         * gst-libs/gst/Makefile.am:
8416         * gst-libs/gst/media-info/.cvsignore:
8417         * gst-libs/gst/media-info/Makefile.am:
8418         * gst-libs/gst/media-info/README:
8419         * gst-libs/gst/media-info/media-info-priv.c:
8420         * gst-libs/gst/media-info/media-info-priv.h:
8421         * gst-libs/gst/media-info/media-info-test.c:
8422         * gst-libs/gst/media-info/media-info.c:
8423         * gst-libs/gst/media-info/media-info.h:
8424         * gst-libs/gst/media-info/media-info.vcproj:
8425         * pkgconfig/Makefile.am:
8426         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
8427         * pkgconfig/gstreamer-media-info.pc.in:
8428           Remove media-info, which is also successed by playbin (see Totem
8429           implementation).
8430
8431 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8432
8433         * configure.ac:
8434         * examples/Makefile.am:
8435         * examples/gstplay/.cvsignore:
8436         * examples/gstplay/Makefile.am:
8437         * examples/gstplay/player.c:
8438         * gst-libs/gst/Makefile.am:
8439         * gst-libs/gst/play/.cvsignore:
8440         * gst-libs/gst/play/Makefile.am:
8441         * gst-libs/gst/play/play.c:
8442         * gst-libs/gst/play/play.h:
8443         * gst-libs/gst/play/play.vcproj:
8444         * pkgconfig/Makefile.am:
8445         * pkgconfig/gstreamer-play-uninstalled.pc.in:
8446         * pkgconfig/gstreamer-play.pc.in:
8447           Remove libgstplay, playbin is now the official successor.
8448
8449 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8450
8451         * configure.ac:
8452         * gst-libs/gst/Makefile.am:
8453         * gst-libs/gst/xwindowlistener/Makefile.am:
8454         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
8455         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
8456           Remove deprecated xwindowlistener (I've moved xwindowlistening
8457           in the v4l/v4l2 plugins over to serverside).
8458
8459 2005-04-25  David Schleef  <ds@schleef.org>
8460
8461         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
8462         to examples/dynparams.  Examples do not belong interspersed with
8463         source code.
8464         * examples/dynparams/demo-dparams.c:
8465         * gst/sine/Makefile.am:
8466         * gst/sine/demo-dparams.c:
8467
8468 2005-04-25  David Schleef  <ds@schleef.org>
8469
8470         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
8471         * gst-libs/gst/audio/Makefile.am:
8472         * gst-libs/gst/riff/Makefile.am:
8473         * gst-libs/gst/tag/Makefile.am:
8474         * gst-libs/gst/video/Makefile.am:
8475         * gst-libs/gst/xwindowlistener/Makefile.am:
8476
8477         Convert to 0.9 API, seems to work:
8478         * sys/ximage/Makefile.am:
8479         * sys/ximage/ximagesink.c:
8480
8481 2005-04-24  David Schleef  <ds@schleef.org>
8482
8483         Link plugins against libraries:
8484         * ext/alsa/Makefile.am:
8485         * gst/tcp/Makefile.am:
8486
8487         Remove asm code that should be in liboil
8488         * gst/videoscale/Makefile.am:
8489         * gst/videoscale/videoscale_x86_asm.s:
8490
8491         gettext wants these checked in:
8492         * po/af.po:
8493         * po/az.po:
8494         * po/cs.po:
8495         * po/en_GB.po:
8496         * po/hu.po:
8497         * po/it.po:
8498         * po/nb.po:
8499         * po/nl.po:
8500         * po/or.po:
8501         * po/sq.po:
8502         * po/sr.po:
8503         * po/sv.po:
8504         * po/uk.po:
8505         * po/vi.po:
8506
8507 2005-04-24  David Schleef  <ds@schleef.org>
8508
8509         Convert gst_main() to g_main_loop_run()
8510         * gst/playback/decodetest.c: (main):
8511         * gst/playback/test2.c: (main):
8512         * gst/playback/test3.c: (main):
8513         * gst/playback/test4.c: (main):
8514
8515         Link plugins against libraries:
8516         * ext/libvisual/Makefile.am:
8517         * sys/xvimage/Makefile.am:
8518
8519 2005-04-24  David Schleef  <ds@schleef.org>
8520
8521         * configure.ac: Remove idct and resample libs
8522         * gst-libs/gst/Makefile.am: same
8523
8524         Remove usage of gst_library_load():
8525         * ext/alsa/gstalsaplugin.c: (plugin_init):
8526         * ext/libvisual/visual.c: (plugin_init):
8527         * ext/ogg/gstogg.c: (plugin_init):
8528         * ext/theora/theora.c: (plugin_init):
8529         * ext/vorbis/vorbis.c: (plugin_init):
8530         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
8531         * gst/audioscale/gstaudioscale.c:
8532         * gst/adder/gstadder.c: (plugin_init):
8533         * gst/audioconvert/plugin.c: (plugin_init):
8534         * sys/ximage/ximagesink.c: (plugin_init):
8535         * sys/xvimage/xvimagesink.c: (plugin_init):
8536         * gst/tcp/gsttcpplugin.c: (plugin_init):
8537
8538         Link plugins against libraries:
8539         * ext/ogg/Makefile.am:
8540         * ext/theora/Makefile.am:
8541         * ext/vorbis/Makefile.am:
8542         * gst/audioconvert/Makefile.am:
8543
8544         Create proper libraries:
8545         * gst-libs/gst/riff/Makefile.am:
8546         * gst-libs/gst/audio/Makefile.am:
8547         * gst-libs/gst/video/Makefile.am:
8548
8549         Move resample library to audioscale plugin directory:
8550         * gst-libs/gst/resample/Makefile.am:
8551         * gst-libs/gst/resample/README:
8552         * gst-libs/gst/resample/dtof.c:
8553         * gst-libs/gst/resample/dtos.c:
8554         * gst-libs/gst/resample/functable.c:
8555         * gst-libs/gst/resample/private.h:
8556         * gst-libs/gst/resample/resample.c:
8557         * gst-libs/gst/resample/resample.h:
8558         * gst-libs/gst/resample/resample.vcproj:
8559         * gst-libs/gst/resample/test.c:
8560         * gst/audioscale/Makefile.am:
8561         * gst/audioscale/README:
8562         * gst/audioscale/dtof.c:
8563         * gst/audioscale/dtos.c:
8564         * gst/audioscale/functable.c:
8565         * gst/audioscale/private.h:
8566         * gst/audioscale/resample.c:
8567         * gst/audioscale/resample.h:
8568         * gst/audioscale/test.c:
8569
8570         Move tagedit library to gst-libs:
8571         * gst-libs/gst/tag/Makefile.am:
8572         * gst-libs/gst/tag/gstid3tag.c:
8573         * gst-libs/gst/tag/gsttagediting.c:
8574         * gst-libs/gst/tag/gsttageditingprivate.h:
8575         * gst-libs/gst/tag/gstvorbistag.c:
8576         * gst/tags/Makefile.am:
8577         * gst/tags/gstid3tag.c:
8578         * gst/tags/gstvorbistag.c:
8579
8580         Fix for core changes:
8581         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
8582         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
8583         (gst_sinesrc_getrange):
8584
8585 2005-04-23  David Schleef  <ds@schleef.org>
8586
8587         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
8588         in gst-plugins in a long time, and properly belongs in liboil.
8589         * gst-libs/gst/idct/Makefile.am:
8590         * gst-libs/gst/idct/README:
8591         * gst-libs/gst/idct/dct.h:
8592         * gst-libs/gst/idct/doieee:
8593         * gst-libs/gst/idct/fastintidct.c:
8594         * gst-libs/gst/idct/floatidct.c:
8595         * gst-libs/gst/idct/idct.c:
8596         * gst-libs/gst/idct/idct.h:
8597         * gst-libs/gst/idct/idtc.vcproj:
8598         * gst-libs/gst/idct/ieeetest.c:
8599         * gst-libs/gst/idct/intidct.c:
8600
8601 2005-04-20  Wim Taymans  <wim@fluendo.com>
8602
8603         * docs/design-audiosinks.txt:
8604         * gst-libs/gst/audio/Makefile.am:
8605         * gst-libs/gst/audio/TODO:
8606         * gst-libs/gst/audio/gstaudiosink.c:
8607         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8608         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8609         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
8610         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8611         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8612         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
8613         (gst_audiosink_class_init), (gst_audiosink_init),
8614         (gst_audiosink_create_ringbuffer):
8615         * gst-libs/gst/audio/gstaudiosink.h:
8616         * gst-libs/gst/audio/gstbaseaudiosink.c:
8617         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
8618         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
8619         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
8620         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
8621         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
8622         (gst_baseaudiosink_create_ringbuffer),
8623         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8624         * gst-libs/gst/audio/gstbaseaudiosink.h:
8625         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8626         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
8627         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
8628         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8629         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
8630         (gst_ringbuffer_play), (gst_ringbuffer_pause),
8631         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
8632         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
8633         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
8634         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
8635         * gst-libs/gst/audio/gstringbuffer.h:
8636         An attempt at a set of audio base classes together with some
8637         design docs.
8638
8639 2005-04-20  Wim Taymans  <wim@fluendo.com>
8640
8641         * gst/audioconvert/Makefile.am:
8642         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8643         (gst_audio_convert_caps_remove_format_info),
8644         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
8645         (gst_audio_convert_channels):
8646         Link against audio libs.
8647         Fix audio convert plugin.
8648
8649 2005-04-20  Wim Taymans  <wim@fluendo.com>
8650
8651         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
8652         (gst_ogg_demux_sink_activate):
8653         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
8654         (theora_set_header_on_caps), (theora_enc_sink_event),
8655         (theora_enc_chain):
8656         Fix theora encoder.
8657
8658 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8659
8660         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
8661         * gst/playback/gstdecodebin.c: (find_compatibles):
8662           Work with staticpadtemplates in elementfactories.
8663
8664 2005-04-12  Wim Taymans  <wim@fluendo.com>
8665
8666         * gst/playback/README:
8667         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
8668         (compare_ranks), (print_feature), (gst_decode_bin_init),
8669         (dynamic_create), (dynamic_free), (find_compatibles),
8670         (mimetype_is_raw), (close_pad_link), (got_redirect),
8671         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
8672         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
8673         (gst_decode_bin_change_state):
8674         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8675         (gst_play_base_bin_init), (group_destroy), (group_commit),
8676         (check_queue), (queue_overrun), (queue_threshold_reached),
8677         (queue_out_of_data), (gen_preroll_element), (unknown_type),
8678         (new_decoded_pad), (setup_subtitle), (gen_source_element),
8679         (got_redirect), (setup_source), (play_base_eos),
8680         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
8681         (gst_play_base_bin_remove_element):
8682         * gst/playback/gstplaybasebin.h:
8683         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8684         (gst_play_bin_init), (gst_play_bin_dispose),
8685         (gst_play_bin_set_property), (gen_video_element),
8686         (gen_text_element), (gen_audio_element), (remove_sinks),
8687         (gst_play_bin_send_event):
8688         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
8689         (stream_info_change_state), (gst_stream_info_set_mute):
8690         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
8691         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
8692         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
8693         (gst_stream_selector_chain):
8694         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
8695         (main):
8696         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
8697         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
8698         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
8699         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
8700         Raw and crude port of decodebin. 
8701         Make playbin compile.
8702
8703 2005-04-06  Wim Taymans  <wim@fluendo.com>
8704
8705         * ext/gnomevfs/Makefile.am:
8706         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
8707         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
8708         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
8709         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
8710         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
8711         (gst_gnomevfssrc_stop):
8712         * ext/ogg/Makefile.am:
8713         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
8714         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
8715         * ext/theora/Makefile.am:
8716         * ext/theora/theoradec.c: (_inc_granulepos),
8717         (theora_dec_sink_event), (theora_dec_chain):
8718         * ext/vorbis/Makefile.am:
8719         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8720         (vorbis_dec_sink_event), (vorbis_dec_chain):
8721         * gst-libs/gst/audio/Makefile.am:
8722         * sys/xvimage/Makefile.am:
8723         Make gnomevfssrc extend the source base class.
8724         Fix linking against libs in various plugins.
8725
8726 2005-04-06  Andy Wingo  <wingo@pobox.com>
8727
8728         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
8729         GST_BASE_LIBS.
8730
8731         * configure.ac: Add check and AC_SUBST for libgstbase.
8732
8733 2005-03-31  Wim Taymans  <wim@fluendo.com>
8734
8735         * examples/seeking/Makefile.am:
8736         * examples/seeking/cdparanoia.c: (main):
8737         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
8738         (play_cb), (pause_cb), (stop_cb), (main):
8739         * examples/seeking/playbin.c:
8740         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
8741         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
8742         (make_sid_pipeline), (make_vorbis_pipeline),
8743         (make_theora_pipeline), (make_vorbis_theora_pipeline),
8744         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
8745         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
8746         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
8747         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
8748         (stop_cb), (main):
8749         * examples/seeking/spider_seek.c:
8750         * examples/seeking/vorbisfile.c:
8751         * ext/gnomevfs/Makefile.am:
8752         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8753         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
8754         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
8755         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
8756         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
8757         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
8758         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
8759         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
8760         * ext/ogg/README:
8761         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
8762         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
8763         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
8764         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
8765         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
8766         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
8767         (gst_ogg_pad_event), (gst_ogg_pad_reset),
8768         (gst_ogg_demux_factory_filter), (compare_ranks),
8769         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
8770         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
8771         (gst_ogg_chain_new), (gst_ogg_chain_free),
8772         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
8773         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
8774         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
8775         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
8776         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
8777         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
8778         (gst_ogg_demux_get_prev_page),
8779         (gst_ogg_demux_deactivate_current_chain),
8780         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8781         (gst_ogg_demux_bisect_forward_serialno),
8782         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
8783         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
8784         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
8785         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
8786         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
8787         (gst_ogg_demux_change_state), (gst_ogg_print):
8788         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8789         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
8790         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
8791         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
8792         (gst_ogg_mux_loop):
8793         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
8794         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
8795         (theora_dec_src_convert), (theora_dec_sink_convert),
8796         (theora_dec_src_query), (theora_dec_src_event),
8797         (theora_dec_sink_event), (theora_dec_chain),
8798         (theora_dec_change_state):
8799         * ext/theora/theoraenc.c: (gst_theora_enc_init),
8800         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
8801         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
8802         (theora_enc_change_state):
8803         * ext/vorbis/Makefile.am:
8804         * ext/vorbis/oggvorbisenc.c:
8805         * ext/vorbis/oggvorbisenc.h:
8806         * ext/vorbis/vorbis.c: (plugin_init):
8807         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
8808         (vorbis_dec_src_query), (vorbis_dec_src_event),
8809         (vorbis_dec_sink_event), (vorbis_dec_chain),
8810         (vorbis_dec_change_state):
8811         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
8812         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
8813         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
8814         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
8815         (gst_vorbisenc_change_state):
8816         * ext/vorbis/vorbisenc.h:
8817         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
8818         * gst-libs/gst/audio/audioclock.c:
8819         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
8820         (gst_audiofilter_init), (gst_audiofilter_chain):
8821         * gst-libs/gst/audio/testchannels.c: (main):
8822         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
8823         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
8824         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
8825         (gmip_find_track_streaminfo), (gmip_find_track_format):
8826         * gst-libs/gst/media-info/media-info.c:
8827         (gst_media_info_read_idler):
8828         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
8829         (gst_play_get_all_by_interface):
8830         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
8831         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
8832         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
8833         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
8834         (gst_riff_parse_info):
8835         * gst-libs/gst/riff/riff-read.h:
8836         * gst-libs/gst/riff/riff.c: (plugin_init):
8837         * gst-libs/gst/video/Makefile.am:
8838         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
8839         (gst_videosink_class_init), (gst_videosink_get_type):
8840         * gst-libs/gst/video/videosink.h:
8841         * gst/audioconvert/bufferframesconvert.c:
8842         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
8843         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
8844         * gst/audioconvert/channelmixtest.c: (main):
8845         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
8846         (gst_audio_convert_chain),
8847         (gst_audio_convert_caps_remove_format_info),
8848         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
8849         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
8850         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
8851         (gst_audio_convert_buffer_to_default_format),
8852         (gst_audio_convert_buffer_from_default_format),
8853         (gst_audio_convert_channels):
8854         * gst/audioconvert/gstchannelmix.h:
8855         * gst/ffmpegcolorspace/avcodec.h:
8856         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8857         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
8858         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
8859         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
8860         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
8861         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
8862         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8863         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
8864         (mpeg_video_type_find), (mpeg_video_stream_type_find),
8865         (dv_type_find):
8866         * gst/videotestsrc/gstvideotestsrc.c:
8867         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
8868         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
8869         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
8870         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
8871         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
8872         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
8873         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
8874         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8875         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
8876         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
8877         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
8878         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
8879         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
8880         (gst_xvimagesink_navigation_send_event),
8881         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
8882         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
8883         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8884         * sys/xvimage/xvimagesink.h:
8885         Plugin port to 0.9, ogg/theora playback should work in the seek
8886         example now.
8887         Removed old examples.
8888         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
8889         explained in 0.9 TODO doc.
8890
8891
8892 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
8893
8894         * autogen.sh:
8895         * configure.ac:
8896         * ext/Makefile.am:
8897         * gst/Makefile.am:
8898         * po/POTFILES.in:
8899         * po/af.po:
8900         * po/az.po:
8901         * po/cs.po:
8902         * po/en_GB.po:
8903         * po/hu.po:
8904         * po/it.po:
8905         * po/nb.po:
8906         * po/nl.po:
8907         * po/or.po:
8908         * po/sq.po:
8909         * po/sr.po:
8910         * po/sv.po:
8911         * po/uk.po:
8912         * po/vi.po:
8913         * sys/Makefile.am:
8914         * testsuite/Makefile.am:
8915           remove a whole bunch of plugins.  This module now contains a set
8916           of free reference plugins/elements as agreed.
8917
8918 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8919
8920         * configure.ac:
8921           hunting season on 0.9 is now OPEN
8922
8923 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8924
8925         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
8926           Kick the hell out of gcc for not warning me about a symbol conflict.
8927
8928 2005-02-22  Luca Ognibene  <luogni@tin.it>
8929
8930         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
8931
8932         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
8933           Don't leak caps string (fixes #168134)
8934
8935         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
8936         (gst_jpegenc_init), (gst_jpegenc_finalize),
8937         (gst_jpegenc_change_state):
8938           Don't leak line buffers and context struct (fixes #168133).
8939
8940 2005-02-21  Tim-Philipp M??ller  <tim at centricular dot net>
8941
8942         * configure.ac:
8943         * ext/dirac/gstdiracdec.cc:
8944         (gst_diracdec_chain):
8945           Since dirac 0.5.0 the framerate in dirac is expressed as a
8946           rational number. Fix build and up requirement to 0.5.0, and
8947           also pass parameters to gst_diracdec_link in the right order
8948           (fixes #167959).
8949
8950 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
8951
8952         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
8953         * ext/faad/gstfaad.h:
8954         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
8955         certain invalid muxed streams, where some packets will contain 
8956         junk after decoder data. Partially fixes #149158.
8957
8958 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
8959         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
8960           Make sure we only write to writable buffers
8961
8962 2005-02-20  Tim-Philipp M??ller  <tim at centricular dot net>
8963
8964         * gst-libs/gst/riff/riff-media.c:
8965         (gst_riff_create_audio_caps_with_data):
8966           Do actually fix invalid RIFF fmt header values for alaw
8967           and mulaw audio instead of just saying so.
8968
8969         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
8970           Give gst_riff_create_audio_caps_with_data() a chance to
8971           fix up broken format header fields before extracting any
8972           parameters from the header. (fixes #167633)
8973
8974 2005-02-19  Martin Holters  <martin.holters@gmx.de>
8975
8976         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
8977
8978         * gst/audioconvert/bufferframesconvert.c:
8979         (buffer_frames_convert_link):
8980           Don't leak othercaps. (fixes #167878)
8981
8982 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
8983
8984         * configure.ac:
8985         * ext/libvisual/visual.c: (gst_visual_srclink),
8986         (gst_visual_change_state):
8987           Support libvisual 0.2.0.
8988
8989 2005-02-18  Tim-Philipp M??ller  <tim at centricular dot net>
8990
8991         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
8992         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
8993           Use same rowstrides for I420 as used everywhere else.
8994
8995 2005-02-17  Tim-Philipp M??ller  <tim at centricular dot net>
8996
8997         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
8998           Declare variables at beginning of block and make gcc-2.95 happy
8999           (fixes # 167482, patch by Gergely Nagy).
9000           
9001         * gst/tcp/gsttcpclientsrc.c:
9002         * gst/tcp/gsttcpclientsrc.h:
9003           Move some includes into the header, so that struct sockaddr_in is
9004           defined when it should be defined on FreeBSD as well (fixes
9005           #167483).
9006           
9007         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
9008           Don't pass uninitialised values to setsockopt() here either.
9009
9010 2005-02-17  Luca Ognibene  <luogni at tin dot it>
9011
9012         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
9013
9014         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
9015           Don't pass uninitialised values to setsockopt(). (fixes #167704)
9016
9017 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9018
9019         * gst/playback/gstplaybin.c: (add_sink):
9020           Invert bin_add/link order to workaround deadlock in opt.
9021
9022 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9023
9024         * gst/modplug/gstmodplug.cc:
9025           Add missing break causing position queries to fail.
9026
9027 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9028
9029         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
9030           Granpos can apparently be -1, which screws up calculations...
9031
9032 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
9033
9034         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
9035         (gst_ximagesink_send_pending_navigation),
9036         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
9037         (gst_ximagesink_init):
9038         * sys/ximage/ximagesink.h:
9039         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
9040         (gst_xvimagesink_send_pending_navigation),
9041         (gst_xvimagesink_navigation_send_event),
9042         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
9043         * sys/xvimage/xvimagesink.h:
9044           Use a mutex protected list to marshal navigation
9045           events into the stream thread from whichever thread
9046           sends them.
9047
9048 2005-02-15  Tim-Philipp M??ller  <tim at centricular dot net>
9049
9050         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
9051           Display current position and track length; misc. clean-ups.
9052           
9053         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
9054         (speed_init), (speed_chain):
9055           Add query function, so that the stream length and current position
9056           get adjusted when queried (note that current position queries may
9057           still be wrong if the audio sink returns values based on buffer
9058           timestamps instead of passing on the query).
9059
9060 2005-02-13  Benjamin Otte  <otte@gnome.org>
9061
9062         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
9063         (gst_audio_convert_channels):
9064           create channel conversion matrix when linking
9065         * gst/audioconvert/.cvsignore:
9066         * gst/audioconvert/Makefile.am:
9067         * gst/audioconvert/channelmixtest.c: (main):
9068           add (ugly) test that ensures stereo <=> mono conversion works
9069           correctly
9070
9071 2005-02-13  Benjamin Otte  <otte@gnome.org>
9072
9073         * gst/audioconvert/gstchannelmix.h:
9074           include missing header file
9075         * gst/audioconvert/gstchannelmix.c:
9076         (gst_audio_convert_fill_compatible):
9077           use same sign for both channels when converting to/from compatible
9078           channel. Previously used different signs made the signals cancel
9079           each other out and appear like silence. (fixes #167269)
9080
9081 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
9082
9083         * gst/ffmpegcolorspace/avcodec.h:
9084         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9085         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
9086         (gst_ffmpegcsp_avpicture_fill):
9087         * gst/ffmpegcolorspace/imgconvert.c:
9088           Convert to and from YV12 (fixes #156379).
9089
9090 2005-02-12  Julien MOUTTE  <julien@moutte.net>
9091
9092         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
9093         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
9094         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
9095         (gst_ximagesink_expose), (gst_ximagesink_set_property),
9096         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
9097         methods from chain and negotiation and vice versa (Fixes #166142).
9098         * sys/ximage/ximagesink.h: Add stream_lock.
9099         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
9100         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9101         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9102         (gst_xvimagesink_expose): Check for xcontext before trying to link.
9103
9104 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
9105
9106         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
9107           Don't send "Hey! You gave me a NULL pointer you naughty person" as
9108           error message when we can't open the DVD device (when dvdnav_open()
9109           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
9110           the above). Send something more useful instead (fixes #167117).
9111
9112 2005-02-11  Julien MOUTTE  <julien@moutte.net>
9113
9114         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9115         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
9116         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9117         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9118         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
9119         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
9120         methods from chain and negotiation and vice versa (Fixes #166142).
9121         Fix a possible bug of images in the buffer pool being discarded because
9122         we are looking at the wrong geometry.
9123         * sys/xvimage/xvimagesink.h: Add stream_lock.
9124
9125 2005-02-11  David Schleef  <ds@schleef.org>
9126
9127         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
9128         unsigned int. (fixes #167128)
9129
9130 2005-02-11  David Schleef  <ds@schleef.org>
9131
9132         * gst/librfb/Makefile.am: Testing stuff before committing is
9133           for wimps... and people with fast machines.  Fix stupid
9134           mistake.
9135
9136 2005-02-11  David Schleef  <ds@schleef.org>
9137
9138         * configure.ac: Pull in librfb from my CVS tree, because it is
9139           too small and annoying to be separate.  Move rfbsrc plugin
9140           to gst/.
9141         * ext/Makefile.am:
9142         * ext/librfb/Makefile.am:
9143         * ext/librfb/gstrfbsrc.c:
9144         * gst/librfb/Makefile.am:
9145         * gst/librfb/gstrfbsrc.c:
9146         * gst/librfb/rfb.c:
9147         * gst/librfb/rfb.h:
9148         * gst/librfb/rfbbuffer.c:
9149         * gst/librfb/rfbbuffer.h:
9150         * gst/librfb/rfbbytestream.c:
9151         * gst/librfb/rfbbytestream.h:
9152         * gst/librfb/rfbcontext.h:
9153         * gst/librfb/rfbdecoder.c:
9154         * gst/librfb/rfbdecoder.h:
9155         * gst/librfb/rfbutil.h:
9156
9157 2005-02-10  Tim-Philipp M??ller  <tim at centricular dot net>
9158
9159         * gst/speed/Makefile.am:
9160         * gst/speed/demo-mp3.c: (main):
9161         * gst/speed/filter.func:
9162         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
9163         (speed_class_init), (speed_init), (speed_chain_int16),
9164         (speed_chain_float32), (speed_chain), (speed_set_property),
9165         (speed_get_property), (speed_change_state):
9166         * gst/speed/gstspeed.h:
9167           Fix speed element and make it chain-based (fixes #156467),
9168           and make it handle more than one channel.
9169
9170 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
9171
9172         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
9173         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
9174         (gst_dtsdec_chain), (gst_dtsdec_change_state):
9175         * ext/dts/gstdtsdec.h:
9176           Don't clobber the stack constructing the channels array.
9177           Make the element chain-based. DTS tracks can now be played.
9178           
9179 2005-02-09  Tim-Philipp M??ller  <tim at centricular dot net>
9180
9181         * gst-libs/gst/audio/multichannel.h:
9182         * gst-libs/gst/gconf/gconf.h:
9183         * gst-libs/gst/idct/idct.h:
9184         * gst-libs/gst/media-info/media-info-priv.h:
9185         * gst-libs/gst/play/play.h:
9186         * gst-libs/gst/resample/private.h:
9187         * gst-libs/gst/resample/resample.h:
9188         * gst-libs/gst/riff/riff-ids.h:
9189         * gst-libs/gst/video/video.h:
9190         * gst-libs/gst/video/videosink.h:
9191           Add G_BEGIN_DECLS and G_END_DECLS around headers where
9192           missing, so that they work when included from C++ code.
9193
9194 2005-02-09  David Schleef  <ds@schleef.org>
9195
9196         * testsuite/gst-lint: Check for non-statically scoped
9197           parent_class variables.  This won't be a problem once
9198           plugins are loaded with RTLD_LOCAL.
9199
9200 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9201
9202         * ext/mplex/gstmplexibitstream.cc:
9203           gcc madness.
9204
9205 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9206
9207         * ext/ogg/gstogmparse.c:
9208         * gst/debug/gstnavigationtest.c:
9209           Die, thou faulty symbol pollutors (non-static parent_class).
9210
9211 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9212
9213         * ext/mplex/gstmplexibitstream.cc:
9214           Fix event handling (#165525).
9215
9216 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9217
9218         * ext/mikmod/gstmikmod.c:
9219         * gst/modplug/gstmodplug.cc:
9220           Add missing endianness to template (fixes #165509).
9221
9222 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9223
9224         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
9225           Fix wrong order of reading of optional bytes (#165290).
9226
9227 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9228
9229         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
9230           Implement FILLER event awareness.
9231
9232 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9233
9234         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
9235           Fix track calculations (#166208).
9236
9237 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
9238
9239         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9240
9241         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
9242         * ext/libpng/gstpngenc.c:
9243           Fix byte-order, use proper fixed caps. Fixes #164197.
9244
9245 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
9246
9247         * configure.ac:
9248           Add dvdlpcmdec 
9249
9250         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
9251         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
9252           Don't push buffers if the src pad isn't negotiated yet.
9253           
9254         * gst/audioconvert/gstaudioconvert.c:
9255         (gst_audio_convert_buffer_to_default_format),
9256         (gst_audio_convert_buffer_from_default_format):
9257           Add support for 24-bit width.
9258
9259         * gst/dvdlpcmdec/.cvsignore:
9260         * gst/dvdlpcmdec/Makefile.am:
9261         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
9262         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
9263         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
9264         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
9265         (plugin_init):
9266         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
9267           New decoder for rearranging DVD LPCM into our audio/x-raw-int
9268           format. Needs support for the channels maps if someone can find 
9269           a DVD LPCM track with > 2 channels.
9270
9271         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
9272         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
9273         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
9274         * gst/mpegstream/gstdvddemux.h:
9275         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
9276         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
9277         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
9278         * gst/mpegstream/gstmpegdemux.h:
9279         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
9280         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
9281         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
9282         (gst_mpeg_parse_handle_src_query),
9283         (gst_mpeg_parse_handle_src_event):
9284           Use audio/x-dvd-lpcm for LPCM output.
9285           Add DTS output.
9286
9287 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
9288
9289         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9290
9291         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
9292         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
9293           Add BGRA handling (#165736).
9294
9295 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
9296
9297         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9298
9299         * gst/law/alaw-decode.c: (alawdec_link):
9300         * gst/law/alaw-encode.c: (alawenc_link):
9301         * gst/law/mulaw-decode.c: (mulawdec_link):
9302         * gst/law/mulaw-encode.c: (mulawenc_link):
9303           Fix caps memleaks (#166600).
9304
9305 2005-02-08  Tim-Philipp M??ller  <tim at centricular dot net>
9306
9307         * ext/tarkin/mem.h:
9308         * ext/tarkin/wavelet.h:
9309         * ext/tarkin/yuv.h:
9310         * gst/ffmpegcolorspace/avcodec.h:
9311           Include "_stdint.h" instead of <stdint.h>. Fixes build on
9312           systems that don't have stdint.h, like Solaris9 (fixes #166631).
9313
9314 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9315
9316         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
9317         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
9318         (gst_xvimagesink_change_state):
9319           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
9320           Xv video (and thereby regenerate Xv colourkey) in clear() so
9321           that PLAY -> READY -> PLAY works (fixes #162504).
9322
9323 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9324
9325         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
9326           Switch to list instead of range, since MJPEG-devices really just
9327           support decimations, not any size.
9328
9329 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
9330         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
9331         (gst_mpeg2dec_reset), (free_all_buffers),
9332         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
9333         * ext/mpeg2dec/gstmpeg2dec.h:
9334           The libmpeg2 user-allocated buffer management is awkward, 
9335           to say the least. Hopefully this fixes things.
9336
9337 2005-02-04  Andy Wingo  <wingo@pobox.com>
9338
9339         * gst/audioconvert/bufferframesconvert.c
9340         (buffer_frames_convert_fixate): New function, fixates to 256
9341         frames per buffer by default. (Much better than 1.)
9342         (buffer_frames_convert_init): Set the fixate function for both src
9343         and sink pad.
9344         (buffer_frames_convert_link): After success setting nonfixed caps,
9345         get the negotiated caps so we can know how many buffer-frames it
9346         will be. No idea how this worked at all before.
9347
9348 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
9349
9350         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
9351         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
9352         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
9353         (handle_sequence), (handle_picture):
9354         * ext/mpeg2dec/gstmpeg2dec.h:
9355           Rearrange buffer tracking and refcounting and refactor
9356           a little for readability. 
9357
9358 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
9359         * sys/v4l/gstv4l.c: (plugin_init):
9360         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
9361         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
9362         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
9363         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
9364         * sys/v4l/gstv4ljpegsrc.h:
9365         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
9366         * sys/v4l/v4l_calls.h:
9367         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
9368         (gst_v4lsrc_get_fps):
9369         * sys/v4l/v4lsrc_calls.h:
9370           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
9371           you jpeg inside rgb frames" driver.
9372           Don't error in the v4lsrc link function, just return 
9373           REFUSED.
9374
9375 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9376
9377         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
9378         (gst_qcamsrc_open):
9379           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
9380
9381 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9382
9383         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
9384           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
9385
9386 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9387
9388         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
9389           Reset negotiated state on PAUSED->READY.
9390
9391 2005-02-02  David Schleef  <ds@schleef.org>
9392
9393         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
9394         whereever possible.  (Fixes #165997)
9395         * examples/capsfilter/capsfilter1.c: (main):
9396         * examples/dynparams/filter.c: (create_ui):
9397         * examples/seeking/cdparanoia.c: (get_track_info), (main):
9398         * examples/seeking/chained.c: (main):
9399         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
9400         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
9401         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
9402         (make_mpeg_pipeline), (make_mpegnt_pipeline):
9403         * examples/seeking/spider_seek.c: (make_spider_pipeline):
9404         * examples/switch/switcher.c: (main):
9405         * ext/dv/demo-play.c: (main):
9406         * ext/faad/gstfaad.c: (gst_faad_change_state):
9407         * ext/mad/gstmad.c: (gst_mad_chain):
9408         * ext/smoothwave/demo-osssrc.c: (main):
9409         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
9410         (gst_gconf_render_bin_from_description),
9411         (gst_gconf_get_default_audio_sink),
9412         (gst_gconf_get_default_video_sink),
9413         (gst_gconf_get_default_audio_src),
9414         (gst_gconf_get_default_video_src),
9415         (gst_gconf_get_default_visualization_element):
9416         * gst/level/demo.c: (main):
9417         * gst/level/plot.c: (main):
9418         * gst/playback/gstplaybin.c: (gen_video_element),
9419         (gen_audio_element):
9420         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
9421         * gst/playondemand/demo-mp3.c: (setup_pipeline):
9422         * gst/sine/demo-dparams.c: (main):
9423         * gst/spectrum/demo-osssrc.c: (main):
9424         * gst/speed/demo-mp3.c: (main):
9425         * gst/volume/demo.c: (main):
9426         * testsuite/embed/embed.c: (main):
9427
9428 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
9429
9430         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
9431         (gst_tcpclientsink_finalize):
9432         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
9433         (gst_tcpclientsrc_finalize):
9434         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
9435         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
9436         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
9437         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
9438           Don't leak the hostname when shutting down.
9439           In tcpserversrc, take a copy of the default hostname.
9440
9441 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9442
9443         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
9444           Set caps to systemstream=TRUE.
9445
9446 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9447
9448         * testsuite/Makefile.am:
9449           Fix more OSX buildbots.
9450
9451 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
9452
9453         * ext/mpeg2dec/gstmpeg2dec.c:
9454           Don't send things to NULL PAD_PEERs
9455
9456         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
9457           Copy-on-write the incoming buffer.
9458
9459         * gst/mpegstream/gstdvddemux.h:
9460         * gst/mpegstream/gstmpegclock.h:
9461         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
9462         (normal_seek), (gst_mpeg_demux_handle_src_event):
9463         * gst/mpegstream/gstmpegdemux.h:
9464         * gst/mpegstream/gstmpegpacketize.h:
9465         * gst/mpegstream/gstmpegparse.c:
9466         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
9467         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
9468         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
9469         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
9470         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
9471         * gst/mpegstream/gstmpegparse.h:
9472         * gst/mpegstream/gstrfc2250enc.h:
9473           Various changes to the way time is computed that make seeking and
9474           total time estimation much better here.
9475           Use G_BEGIN/END_DECLS instead of __cplusplus
9476
9477         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
9478           Use gst_buffer_stamp instead of only copying the TIMESTAMP
9479
9480 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9481
9482         * gst/subparse/gstsubparse.c:
9483           Fix OSX buildbot.
9484
9485 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
9486
9487         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9488         (theora_enc_chain), (theora_enc_change_state):
9489         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
9490         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
9491         (gst_vorbisenc_change_state):
9492         * ext/vorbis/vorbisenc.h:
9493           Set granulepos and timestamp correctly for streams not
9494           starting at 0, taking into account the initial delay.
9495
9496 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
9497
9498         * gst/mpegstream/gstdvddemux.c:
9499           Add audio/x-dts to audio pad template caps
9500
9501 2005-01-30  David Schleef  <ds@schleef.org>
9502
9503         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
9504         (create_context), (gst_polypsink_link): Fix silly endianness
9505         bug.  Add some debugging.  Remove float from caps; it doesn't
9506         work.  Attempt to get remote audio working.
9507
9508 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9509
9510         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
9511           Add 3IV2 fourcc.
9512
9513 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9514
9515         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
9516         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
9517         (gst_avi_demux_stream_data):
9518         * gst/avi/gstavidemux.h:
9519           Invert DIB images. Fixes #132341.
9520
9521 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9522
9523         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9524         (gst_ffmpegcsp_chain):
9525           D'oh, reference the palette data, not the palette structure.
9526           Fixes color distortion in #132341.
9527
9528 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9529
9530         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
9531           PAR can be non-fixed when not provided as argument (#162626).
9532
9533 2005-01-29  David Moore  <dcm@acm.org>
9534
9535         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9536
9537         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9538         (gst_qtdemux_loop_header):
9539           Re-apply patch from #142272 that allows non-seekable sources,
9540           re-proposed by Daniel Drake <dsd@gentoo.org>.
9541
9542 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9543
9544         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
9545           Use the src template for creating the src pad (#162330).
9546
9547 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9548
9549         * configure.ac:
9550         * ext/musepack/Makefile.am:
9551         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
9552         (gst_musepackdec_init), (gst_musepackdec_dispose),
9553         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
9554         (gst_musepack_stream_init), (gst_musepackdec_loop),
9555         (gst_musepackdec_change_state):
9556         * ext/musepack/gstmusepackdec.cpp:
9557         * ext/musepack/gstmusepackdec.h:
9558         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
9559         (gst_musepack_reader_read), (gst_musepack_reader_seek),
9560         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
9561         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
9562         * ext/musepack/gstmusepackreader.cpp:
9563         * ext/musepack/gstmusepackreader.h:
9564           Update to 1.1 API (#165446).
9565
9566 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9567
9568         * ext/Makefile.am:
9569           Unbreak buildbot.
9570
9571 2005-01-28  Andy Wingo  <wingo@pobox.com>
9572
9573         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
9574         to reflect a different dubious internet source. Add a reference
9575         and some commentary.
9576
9577 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9578
9579         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
9580         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
9581         * gst/playback/gststreamselector.h:
9582           Be more selective when we're redoing caps negotiation from
9583           within the chain function on a stream change.
9584
9585 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9586
9587         * configure.ac:
9588         * ext/Makefile.am:
9589         * ext/amrnb/Makefile.am:
9590         * ext/amrnb/amrnb.c: (plugin_init):
9591         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
9592         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
9593         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
9594         (gst_amrnbdec_state_change):
9595         * ext/amrnb/amrnbdec.h:
9596         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
9597         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
9598         (gst_amrnbparse_init), (gst_amrnbparse_formats),
9599         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
9600         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
9601         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
9602         * ext/amrnb/amrnbparse.h:
9603           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
9604         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
9605           Add AMR-NB/-WB raw formats.
9606         * ext/alsa/gstalsa.c: (gst_alsa_link):
9607           Keep valid time when changing format.
9608         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
9609         (qtdemux_parse_trak):
9610           Add some more format-specific options (#140141, #143555, #155163).
9611
9612 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9613
9614         * gst/matroska/matroska-demux.c:
9615         (gst_matroska_demux_parse_blockgroup):
9616           Fix logic error in timing of subtitle stream synchronization.
9617         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
9618           Add skip-chunk, which is found in kodak-camera streams.
9619
9620 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
9621
9622         * po/LINGUAS:
9623         * po/vi.po:
9624           Adding Vietnamese translation (submitted by Clytie Siddall)
9625
9626 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9627
9628         * gst/playback/gstdecodebin.c: (try_to_link_1):
9629           Use realpad for signal.
9630
9631 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9632
9633         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
9634           Fix category so decodebin picks it up.
9635
9636 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9637
9638         * ext/mad/Makefile.am:
9639         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
9640         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
9641         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
9642         (found_type), (gst_id3demux_bin_change_state):
9643         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
9644         (gst_id3_tag_init), (gst_id3_tag_handle_event),
9645         (gst_id3_tag_src_link), (gst_id3_tag_chain),
9646         (gst_id3_tag_change_state), (plugin_init):
9647         * ext/mad/gstmad.h:
9648           Add id3demuxbin (which is a simple bin consisting of id3demux
9649           and typefind), take over rank from id3demux, remove typefind
9650           code from id3demux. Makes all broken mp3s that I know of work,
9651           and thereby fixes #152688.
9652
9653 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
9654
9655         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9656
9657         * ext/mad/gstmad.c: (gst_mad_src_event):
9658         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
9659           Allow seeks on audio pad, make mad forward those (#164826).
9660         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
9661           Set duration (#165335).
9662
9663 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9664
9665         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
9666         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
9667         (gst_asf_demux_process_ext_content_desc),
9668         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
9669         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
9670         * gst/asfdemux/gstasfdemux.h:
9671           Improve metadata display, e.g. if the metadata comes before the
9672           streams are loaded (which is perfectly valid).
9673
9674 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9675
9676         * tools/gst-launch-ext-m.m:
9677           Fix AVI/ASF pipelines (#165340).
9678
9679 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
9680         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
9681         build failure on amd64
9682
9683 2005-01-26  Tim-Philipp M??ller  <tim at centricular dot net>
9684
9685         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
9686         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
9687           Check environment variables GST_ID3V2_TAG_ENCODING,
9688           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
9689           list of character encodings to force interpretation of non-unicode
9690           strings stored in an ID3v2 tag to a particular encoding. If none
9691           is specified, try to use current locale's encoding, then fall back
9692           to ISO-8859-1 (which will always succeed). (Resolves #149274)
9693         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
9694         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
9695           Check environment variables GST_ID3V1_TAG_ENCODING,
9696           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
9697           list of character encodings to use in case a string encountered
9698           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
9699           specified, try to use the current locale's encoding, then fall
9700           back to ISO-8859-1 (which will always succeed).
9701
9702 2005-01-25  Benjamin Otte  <otte@gnome.org>
9703
9704         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
9705           - on half framerate, compute the rate in advance so the comparisons
9706             don't compare wrong values
9707           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
9708             behaviour
9709           - don't use mad_header_decode anymore, mad_frame_decode does that
9710             automatically
9711           - when getting rid of consumed bytes, reset the stream's skiplen
9712           (fixes #163867)
9713
9714 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
9715
9716         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
9717           Use 1/2 a second for default max_discont, as PES streams from DVB
9718           seem to have larger spacings in the SCR. 
9719           Fix a typo.
9720
9721 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9722
9723         * gst/playback/gstplaybasebin.c: (group_commit):
9724           Notify delayed stream-info availability.
9725
9726 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
9727         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
9728         (gst_a52dec_handle_event), (gst_a52dec_chain):
9729         Add some debug output. Check that a discont has a valid
9730         time associated.
9731         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
9732         (gst_alsa_sink_loop):
9733         Ignore TAG events. A little extra debug for broken timestamps.
9734         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
9735         (dvdnavsrc_change_state):
9736         Ensure we send a discont to engage the link before we send any
9737         other events.
9738         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
9739         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
9740         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
9741         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
9742         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
9743         dvd://title works in totem because typefinding sends a seek that ends
9744         up going back to chapter 1 regardless.
9745         * ext/mpeg2dec/gstmpeg2dec.c:
9746         * ext/mpeg2dec/gstmpeg2dec.h:
9747         Output correct timestamps and handle disconts.
9748         * ext/ogg/gstoggdemux.c: (get_relative):
9749         Small guard against a null dereference.
9750         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
9751         (gst_textoverlay_set_property):
9752         Free memory when done. Don't call gst_event_filler_get_duration on
9753         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
9754         g_warning.
9755         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
9756         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
9757         (gst_sw_srclink), (gst_smoothwave_chain):
9758         Draw solid lines, prettier colours.
9759         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
9760         Add a default palette that'll work for some movies.
9761         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
9762         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
9763         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
9764         * gst/mpegstream/gstdvddemux.h:
9765         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
9766         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
9767         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
9768         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
9769         * gst/mpegstream/gstmpegparse.h:
9770         Use PTM/NAV events when for timestamp adjustment when connected to 
9771         dvdnavsrc. Don't use many discont events where one suffices.
9772         * gst/playback/gstplaybasebin.c: (group_destroy),
9773         (gen_preroll_element), (gst_play_base_bin_add_element):
9774         * gst/playback/gstplaybasebin.h:
9775         Make sure we remove subtitles from the same bin we put them in.
9776         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
9777         (gst_subparse_buffer_format_autodetect),
9778         (gst_subparse_change_state):
9779         Fix some memleaks and invalid accesses.
9780         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
9781         (oggskel_type_find), (cmml_type_find), (plugin_init):
9782         Some typefind functions for Annodex v3.0 files
9783         * gst/wavparse/gstwavparse.h:
9784         GstRiffReadClass is the correct parent class.
9785
9786 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9787
9788         * gst-libs/gst/riff/riff-media.c:
9789         (gst_riff_create_video_caps_with_data):
9790           Add extradata to huffyuv (fixes #165013).
9791         * gst-libs/gst/riff/riff-read.c:
9792         (gst_riff_read_strf_vids_with_data):
9793           Fix extradata extraction if it is in the chunk size.
9794
9795 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
9796
9797         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9798
9799         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
9800         (gst_quarktv_change_state), (gst_quarktv_dispose):
9801           Memory free'ing location fix (#164708).
9802
9803 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9804
9805         * gst/playback/gstplaybasebin.c: (group_commit),
9806         (gen_preroll_element), (probe_triggered), (gen_source_element),
9807         (setup_source), (gst_play_base_bin_change_state),
9808         (gst_play_base_bin_add_element):
9809           Don't block for streams.
9810         * gst/playback/gststreaminfo.c: (stream_info_change_state),
9811         (gst_stream_info_set_mute):
9812           Use gst_pad_set_active_recursive.
9813
9814 2005-01-25  Andy Wingo  <wingo@pobox.com>
9815
9816         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
9817         for #ifndef HAVE_XVIDEO.
9818
9819 2005-01-24  Jeffrey C. Ollie
9820
9821         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
9822
9823         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
9824         * ext/gsm/gstgsmdec.h:
9825         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
9826         * ext/gsm/gstgsmenc.h:
9827         Fix rate to 8kHz as per spec, removes obscure errors when no rate
9828         was given by property. Add proper buffer timestamps and offsets.
9829
9830 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9831
9832         * gst-libs/gst/riff/riff-media.c:
9833         (gst_riff_create_audio_caps_with_data):
9834           Audio can be <8000Hz.
9835
9836 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9837
9838         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
9839           Explicit state change to workaround refcount bugs.
9840
9841 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9842
9843         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
9844         (gst_avimux_riff_get_avi_header):
9845           Fix...
9846
9847 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9848
9849         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
9850         (gst_riff_read_element_data):
9851         * gst-libs/gst/riff/riff-read.h:
9852           Add _peek version (req'ed in CDXA).
9853         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
9854         (gst_cdxaparse_loop):
9855           Fix parsing in playbin.
9856         * gst/playback/gstdecodebin.c: (close_pad_link):
9857           Ignore current_ pads, they cause major annoyance.
9858
9859 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9860
9861         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
9862           Safety guard.
9863
9864 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9865
9866         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
9867           Fix padding...
9868
9869 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9870
9871         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
9872           Allow for 0-sized buffers. Fixes length query problems in
9873           starwars.mkv from the testsuite.
9874
9875 2005-01-19  Tim-Philipp M??ller  <tim at centricular dot net>
9876
9877         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
9878         (gst_video_box_i420), (gst_video_box_chain):
9879           Fix row strides for I420 (fixes #163159)
9880           
9881 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9882
9883         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
9884           MPEG2 has a useful rate property, so we can actually use that.
9885           For MPEG-1, continue using the bytes/time properties.
9886
9887 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9888
9889         * gst-libs/gst/riff/riff-media.c:
9890         (gst_riff_create_video_caps_with_data),
9891         (gst_riff_create_video_template_caps):
9892           Add intel-h263.
9893
9894 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9895
9896         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
9897           Fail if caps negotiation fails. Should fix #162184, and should
9898           definately be in there regardless of it fixing the actual bug.
9899         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
9900         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
9901         (gst_avimux_riff_get_avix_header),
9902         (gst_avimux_riff_get_video_header),
9903         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
9904         (gst_avimux_start_file), (gst_avimux_handle_event),
9905         (gst_avimux_change_state):
9906         * gst/avi/gstavimux.h:
9907           Refactor structure writing to use GST_WRITE_UINT macros, add
9908           metadata writing support.
9909
9910 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9911
9912         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
9913           Elements may already be destroyed when this function is called.
9914
9915 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9916
9917         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9918         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
9919           More memory leak fixes (#149162).
9920
9921 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9922
9923         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9924         (gst_qtdemux_add_stream):
9925           Fix two memleaks.
9926
9927 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9928
9929         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
9930           Argh...
9931
9932 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9933
9934         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
9935           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
9936           when fixating to six channels in Totem.
9937
9938 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
9939
9940         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
9941           Fix compile warnings on Solaris 10 buildbot
9942
9943 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
9944
9945         * ext/dvdread/dvdreadsrc.c: (_read):
9946           Don't read beyond the last cell in a chapter (fixes 
9947           invalid memory access)
9948
9949 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
9950
9951         * ext/dvdread/stream_labels.c:
9952         (dvdreadsrc_get_audio_stream_labels):
9953           Use NULL for an empty GList instead of g_list_alloc(); fix 
9954           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
9955           of GString (easier to bulk free later)
9956
9957 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
9958
9959         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9960
9961         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9962         (gst_ffmpeg_pixfmt_to_caps):
9963           Fix BGRA32 caps (#164209).
9964
9965 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
9966
9967         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9968
9969         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9970         (gst_ffmpeg_caps_to_pixfmt):
9971           alpha_mask can be RGBA/ABGR. Fixes #164265.
9972
9973 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
9974
9975         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9976
9977         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
9978         (gst_mpeg2dec_alloc_buffer):
9979         * ext/mpeg2dec/gstmpeg2dec.h:
9980           Crop if decoding size is not the actual image size (#163676).
9981
9982 2005-01-17  Steve Baker  <steve@stevebaker.org>
9983
9984         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9985
9986         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
9987         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
9988           Add libsndfile typefind functions (#163309).
9989
9990 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9991
9992         * tools/gst-launch-ext-m.m:
9993           Add .aac, fix .m1v/.m2v (#163891).
9994
9995 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9996
9997         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
9998           Sanity check, don't wait endlessly since the clock might not
9999           actually run at this point (which is a deadlock). Fixes #164069.
10000
10001 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10002
10003         * gst/playback/gstplaybasebin.c: (probe_triggered):
10004           Of course, only pause if group is done...
10005
10006 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10007
10008         * gst/playback/gstplaybasebin.c: (probe_triggered):
10009           Thread safety.
10010
10011 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
10012
10013         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
10014           Don't return state change success when the parent
10015           failed.
10016
10017 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10018
10019         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
10020           Free events (fix memleak in #162905).
10021
10022 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
10023
10024         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10025
10026         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10027         (gst_ffmpeg_caps_to_pixfmt):
10028           Fix for depth = 15. Fixes #161675.
10029
10030 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10031
10032         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
10033           Set FPS correctly, even for webcams and the like.
10034         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
10035           Don error on setting while capturing.
10036
10037 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10038
10039         * ext/dv/gstdvdec.c:
10040         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10041         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10042           I'm a bad boy. using /1001. to force C to do float division
10043           and not integer division (as it did in my last commit)
10044           Thanks to David I. Lehn for pointing this mistake.
10045
10046 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10047
10048         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10049           Revert Johan??s 1.35->1.36 since it breaks compat.
10050
10051 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10052
10053         * ext/dv/gstdvdec.c:
10054         * ext/libfame/gstlibfame.c:
10055         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10056         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10057           replace framerate aproximations by their real value
10058           (24000/1001, 30000/1001, 60000/1001)
10059           Finish fixing bug #164049
10060
10061 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10062
10063         * ext/ogg/gstoggmux.c:
10064           eos/bos debugging
10065         * gst/tcp/gstmultifdsink.c:
10066         * gst/tcp/gstmultifdsink.h:
10067         * gst/tcp/gsttcp.c:
10068         * gst/tcp/gsttcp.h:
10069         * gst/tcp/gsttcpclientsink.c:
10070         * gst/tcp/gsttcpclientsrc.c:
10071         * gst/tcp/gsttcpserversink.c:
10072         * gst/tcp/gsttcpserversrc.c:
10073           improve reusability of elements after state changes and errors
10074           make multifdsink throw away streamheaders when receiving new ones
10075
10076 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10077
10078         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10079           Fix for if items are already in list...
10080
10081 2005-01-12  Benjamin Otte  <otte@gnome.org>
10082
10083         * gst/adder/gstadder.c: (gst_adder_loop):
10084           fix adder a bit so it doesn't screw up with events as much anymore
10085
10086 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
10087
10088         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
10089         (pixbufscale_scale), (gst_pixbufscale_chain):
10090         * ext/gdk_pixbuf/pixbufscale.h:
10091           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
10092           to ensure rowstrides are calculated the same way as 
10093           ffmpegcolorspace
10094           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
10095           that we pick up duration and offset also.
10096
10097 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10098
10099         * gst/avi/gstavimux.c: (gst_avimux_class_init),
10100         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
10101           Reusability fixes.
10102
10103 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10104
10105         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
10106         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
10107         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
10108         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
10109           Update flags when requested.
10110
10111 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10112
10113         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10114           Fix dmix.
10115
10116 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10117
10118         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10119         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
10120         (probe_triggered), (new_decoded_pad), (gen_source_element),
10121         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
10122         * gst/playback/gstplaybasebin.h:
10123         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
10124         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
10125         (gst_play_bin_change_state):
10126           Implement group-switch signal for use in apps to clear metadata
10127           cache, clean up subtitle, add suburi property instead of # hack,
10128           some error-out fixes.
10129
10130 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10131
10132         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
10133           Debug.
10134         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
10135           If we got a state change in the _get handler, don't return success.
10136
10137 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10138
10139         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
10140         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
10141           Make jpegdec quiet on MJPEG decoding
10142         * gst/asfdemux/README:
10143           Fix mimetypes for MJPEG and H263
10144
10145 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10146
10147         * ext/theora/theoradec.c: (theora_dec_chain):
10148           Fix broken code generation by gcc by swapping arguments.
10149         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10150           Fix \n in debug.
10151
10152 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10153
10154         * TODO:
10155           delete this file, it is by far outdated
10156         * ext/alsa/gstalsa.1: remove
10157         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
10158         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
10159         (gst_alsa_get_caps):
10160           Add HW probing for supported sample rates. Fixes #161704
10161
10162 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10163
10164         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10165           Don't crash, biatch! :).
10166
10167 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10168
10169         * ext/musepack/gstmusepackreader.cpp:
10170         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
10171           Some work on tags - still doesn't work in playbin...
10172         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10173           Handle events...
10174
10175 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10176
10177         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
10178           Also shove tags on kid pads.
10179
10180 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10181
10182         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
10183           Don't bail on unknown events.
10184         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10185           Don't crash on events before negotiation.
10186         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
10187           Send tags on pads, too.
10188         * gst/playback/gststreamselector.c:
10189         (gst_stream_selector_request_new_pad):
10190           Forward events on first pad if no input was selected yet.
10191
10192 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10193
10194         * gst/playback/gstplaybasebin.c: (setup_substreams):
10195           Don't disable streamtype if the stream doesn't exist, since
10196           then playing a video after audio will disable both and nothing
10197           will happen. Fixes the testsuite.
10198
10199 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10200
10201         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
10202         (gst_v4l_xoverlay_set_xwindow_id):
10203         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
10204         (gst_v4l2_xoverlay_set_xwindow_id):
10205           Add debug categories, fix overlay disabling.
10206
10207 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10208
10209         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
10210         * ext/alsa/gstalsa.h:
10211           Add HW probing for period_count/size and buffer_size MIX/MAX
10212           Adjust default/user defined value if out of bounds
10213           Should fix bug #162024
10214
10215 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10216
10217         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
10218           Fix warning (#161191).
10219
10220 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10221
10222         * ext/dvdread/stream_labels.c:
10223         (dvdreadsrc_get_audio_stream_labels):
10224           Fix warning (init the good variable in switch default)
10225
10226 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
10227
10228         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10229
10230         * gst/tta/gstttaparse.c: (gst_tta_src_event):
10231           Fix gcc-2.95 compile (#163485).
10232
10233 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10234
10235         * configure.ac:
10236         * ext/flac/gstflacenc.c: (gst_flacenc_init),
10237         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
10238         (gst_flacenc_tell_callback), (gst_flacenc_chain),
10239         (gst_flacenc_change_state):
10240         * ext/flac/gstflacenc.h:
10241           Update for API change in flac-1.1.1. Update requirement in
10242           configure.ac. Fixes #162974.
10243
10244 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10245
10246         * gst/playback/gstplaybasebin.c: (group_destroy):
10247           Remove hack to get rid of assert and get rid of unlinked
10248           signals properly.
10249
10250 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10251
10252         * gst/playback/gstplaybasebin.c: (setup_source):
10253           Set source to NULL so that resources are free'ed. Fixes issues
10254           with playback of CDDA and similar device-accessing things.
10255
10256 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10257
10258         * testsuite/embed/Makefile.am:
10259           test->noinst, fix make test in buildbot.
10260
10261 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10262
10263         * ext/dvdread/stream_labels.c: new file
10264         * ext/dvdread/stream_labels.h: new file
10265         * ext/dvdread/Makefile.am:
10266         * ext/dvdread/dvdreadsrc.c: (_seek_title):
10267           Extract audio stream label from DVD IFO files.
10268           It only dump them on the console for now, still have to
10269           make playbin aware of them.
10270
10271 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10272
10273         * gst/playback/gstplaybasebin.c: (setup_source):
10274           Fix hanging subs.
10275
10276 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10277
10278         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10279         (gen_preroll_element), (remove_groups), (setup_subtitle),
10280         (gen_source_element), (setup_source):
10281         * gst/playback/gstplaybasebin.h:
10282           Multiple .sub files is just a stupid idea... Fix some threading
10283           mistakes. Interestingly, external .sub files cause playbin to
10284           hang, I don't know why... Parsing fixes contributed by Fran??ois
10285           Kooman <fkooman@tuxed.net>.
10286
10287 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10288
10289         * testsuite/embed/Makefile.am:
10290           Fix buildbot.
10291
10292 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
10293
10294         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10295
10296         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
10297         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
10298         (gst_pngenc_set_property):
10299         * ext/libpng/gstpngenc.h:
10300           Add compression level property (#163323).
10301
10302 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10303
10304         * configure.ac:
10305         * examples/capsfilter/capsfilter1.c: (main):
10306         * examples/seeking/spider_seek.c: (make_spider_pipeline):
10307         * ext/dvdread/Makefile.am:
10308         * ext/dvdread/demo-play:
10309         * ext/dvdread/demo-play.c:
10310         * gconf/gstreamer.schemas.in:
10311         * gst-libs/gst/gconf/gconf.c:
10312         * sys/v4l/TODO:
10313         * testsuite/Makefile.am:
10314         * testsuite/embed/Makefile.am:
10315         * testsuite/embed/embed.c: (cb_expose), (main):
10316           Remove all references to xvideosink, fix examples (#140845).
10317         * gst/playback/gstplaybasebin.c: (group_destroy):
10318           Apparently, disposal does not unlink - so do explicitely.
10319         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
10320           Add debug.
10321
10322 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
10323
10324         * README: fix PKG_CONFIG_PATH instructions, what was there
10325         previously was breaking default search path, not nice. 
10326         Fixes #163358
10327
10328 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10329
10330         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
10331         (gst_audioscale_chain):
10332           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
10333           when resampling - how the ^@$^!@^! is this possible?!?
10334
10335 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10336
10337         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
10338           Reset variables on READY.
10339         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
10340         (gst_matroska_mux_loop):
10341           Require data before writing header.
10342
10343 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
10344
10345         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10346
10347         * ext/mad/gstmad.c: (gst_mad_chain):
10348           Don't call mad_stream_sync() directly after recovering sync.
10349           Fixes #151661.
10350
10351 2005-01-09  Martin Eikermann  <meiker@upb.de>
10352
10353         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10354
10355         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
10356         (snapshot_handler), (gst_snapshot_sinkconnect),
10357         (gst_snapshot_chain):
10358           Allocate resources when required, fix recursive signal emission
10359           and fix caps. Fixes #161667.
10360
10361 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
10362
10363         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10364
10365         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
10366         (gst_pngdec_chain):
10367           Handle only 8-bppc (bits-per-pixel-component) images, better
10368           error handling and correct strides. Fixes #163177.
10369         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
10370         (gst_pngenc_chain):
10371           Better error handling. Fixes #163348.
10372
10373 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10374
10375         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
10376         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
10377         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
10378         (dvdnavsrc_uri_handler_init):
10379           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
10380         * gst/playback/gstplaybasebin.c: (gen_source_element):
10381           Add MMS to streaming URIs.
10382
10383 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10384
10385         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
10386         * sys/xvimage/xvimagesink.c:
10387         (gst_xvimagesink_navigation_send_event):
10388           Check for pad availability before sending event.
10389
10390 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10391
10392         * gst-plugins.spec.in:
10393           Add subparse.
10394
10395 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10396
10397         * configure.ac:
10398           Since we use functions from CVS, up requirement.
10399
10400 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10401
10402         * gst/playback/Makefile.am:
10403         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10404         (group_destroy), (group_commit), (group_is_muted),
10405         (gen_preroll_element), (add_stream), (unknown_type),
10406         (probe_triggered), (preroll_unlinked), (mute_stream),
10407         (silence_stream), (new_decoded_pad), (setup_substreams),
10408         (setup_source), (get_active_source), (mute_group_type),
10409         (muted_group_change_state), (set_active_source),
10410         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
10411         (play_base_eos), (gst_play_base_bin_change_state):
10412         * gst/playback/gstplaybasebin.h:
10413         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10414         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
10415         (gst_stream_info_dispose), (stream_info_mute_pad),
10416         (stream_info_change_state), (gst_stream_info_set_mute):
10417         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
10418         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
10419         (gst_stream_selector_init), (gst_stream_selector_dispose),
10420         (gst_stream_selector_get_linked_pad),
10421         (gst_stream_selector_get_caps), (gst_stream_selector_link),
10422         (gst_stream_selector_get_linked_pads),
10423         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10424         * gst/playback/gststreamselector.h:
10425           Adding stream selection support plus required properties for
10426           applications to use this. Fully fixes #100931.
10427
10428 2005-01-08  Benjamin Otte  <otte@gnome.org>
10429
10430         * gst/games/gstpuzzle.c: (nav_event_handler):
10431           - handle nav events differently: forward every event no matter if it
10432             was handled or not.
10433           - translate events
10434           You can now cheat by using navigationtest ! puzzle and moving the
10435           mouse close to the edge of a tile. ;)
10436
10437 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10438
10439         * configure.ac:
10440         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
10441         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
10442         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
10443         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
10444         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
10445         (gst_ogm_parse_plugin_init):
10446         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
10447         (gst_textoverlay_link), (gst_textoverlay_getcaps),
10448         (gst_textoverlay_event), (gst_textoverlay_video_chain),
10449         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
10450         * ext/pango/gsttextoverlay.h:
10451         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
10452         (gst_matroska_demux_handle_seek_event),
10453         (gst_matroska_demux_sync_streams),
10454         (gst_matroska_demux_parse_blockgroup),
10455         (gst_matroska_demux_subtitle_caps),
10456         (gst_matroska_demux_plugin_init):
10457         * gst/matroska/matroska-ids.h:
10458         * gst/playback/gstdecodebin.c: (close_pad_link):
10459         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10460         (gen_preroll_element), (remove_groups), (add_stream),
10461         (new_decoded_pad), (setup_subtitles), (gen_source_element),
10462         (setup_source):
10463         * gst/playback/gstplaybasebin.h:
10464         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
10465         * gst/subparse/Makefile.am:
10466         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
10467         (gst_subparse_base_init), (gst_subparse_class_init),
10468         (gst_subparse_init), (gst_subparse_formats),
10469         (gst_subparse_eventmask), (gst_subparse_event),
10470         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
10471         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
10472         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
10473         (parse_mpsub_deinit), (parse_mpsub_init),
10474         (gst_subparse_buffer_format_autodetect),
10475         (gst_subparse_format_autodetect), (gst_subparse_loop),
10476         (gst_subparse_change_state), (gst_subparse_type_find),
10477         (plugin_init):
10478         * gst/subparse/gstsubparse.h:
10479         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
10480         (plugin_init):
10481           Add subtitle support, .sub parser (supports SRT and MPsub),
10482           OGM text support, Matroska UTF-8 text support, deadlock fixes
10483           all over the place, subtitle awareness in decodebin/playbin
10484           and some fixes to textoverlay to handle subtitles in a stream
10485           correctly. Fixes #100931.
10486
10487 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10488
10489         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10490           Check for pad availability before doing a query on it.
10491
10492 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10493
10494         * ext/dv/gstdvdec.c:
10495           really fix bpp24/32 dvdec caps (classic rgba indeed)
10496         * gst/asfdemux/gstasfdemux.c:
10497         (gst_asf_demux_process_ext_content_desc):
10498           don't send text tags if they are empty (bis repetita)
10499
10500 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10501
10502         * ext/dv/gstdvdec.c:
10503          remove unneeded comment from dvdec
10504           (related to DV 4CC codes in AVI files)
10505           moved them in gstreamer/docs/random/mimetypes
10506         * gst/asfdemux/gstasfdemux.c:
10507         (gst_asf_demux_process_ext_content_desc):
10508          don't send text tags if they are empty
10509          fix mem leak on error path
10510         * gst/ffmpegcolorspace/avcodec.h:
10511         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10512         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10513         (gst_ffmpegcsp_avpicture_fill):
10514         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
10515         * gst/ffmpegcolorspace/imgconvert_template.h:
10516          adds BGR32 and BGRA32 to ffmpegcolorspace
10517           (still bad colors, fixing it on next commit)
10518           helps with dvdec outputing BGR32
10519
10520 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10521
10522         * ext/dv/gstdvdec.c:
10523          Fix audio caps i just broke (missing ',')
10524         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
10525         (gst_matroska_mux_reset):
10526          Fix typo + add FIXME about old "x-gst-metadata" crap
10527
10528 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10529
10530         * ext/dv/demo-play.c: (main):
10531          xvideosink -> xvimagesink
10532         * ext/dv/gstdvdec.c:
10533          change rgb 32/32 caps to 24/32 (no alpha)
10534          change nb of channels to be a list (2 or 4, not 2)
10535          change sample rate to be a list (32, 44.1, 48 kHz) not a range
10536         * gst/asfdemux/gstasfdemux.c:
10537         (gst_asf_demux_process_ext_content_desc):
10538          Add 'date/year' to extracted metadata list
10539
10540 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10541
10542         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
10543           The return value of fixate_to does not imply that the requested
10544           value was set, so don't assume.
10545
10546 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
10547
10548         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10549
10550         * ext/libpng/gstpngdec.c:
10551         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
10552         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
10553         * ext/libpng/gstpngenc.h:
10554           Alpha support (encoder; #163161), mime fixage.
10555
10556 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
10557
10558         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10559
10560         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
10561         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
10562         (gst_faac_set_property), (gst_faac_get_property):
10563         * ext/faac/gstfaac.h:
10564           Allow for ADTS output (#153434).
10565
10566 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10567
10568         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
10569           Fix against template (#150576).
10570
10571 2005-01-06  Benjamin Otte  <otte@gnome.org>
10572
10573         * gst/games/gstpuzzle.c: (draw_puzzle):
10574           don't draw a puzzle if either width or height of tiles would be 0.
10575
10576 2005-01-06  Benjamin Otte  <otte@gnome.org>
10577
10578         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
10579         (gst_puzzle_class_init), (gst_puzzle_finalize):
10580           no memleaks, please
10581         (gst_puzzle_create), (gst_puzzle_init),
10582         (gst_puzzle_set_property), (gst_puzzle_setup):
10583           change initialization code around so we don't reshuffle on resize
10584         (draw_puzzle):
10585           fix another stupid typo
10586
10587 2005-01-06  Benjamin Otte  <otte@gnome.org>
10588
10589         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
10590           fix stupid typo that borked copying on YUY2
10591
10592 2005-01-06  Benjamin Otte  <otte@gnome.org>
10593
10594         * gst/games/gstpuzzle.c: (draw_puzzle):
10595           fix edges when image sizes aren't multiples of tile sizes
10596
10597 2005-01-06  Benjamin Otte  <otte@gnome.org>
10598
10599         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
10600           make RGB endianness work correctly
10601         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
10602           refactor and fix race with initial shuffling
10603         (nav_event_handler):
10604           allow using the mouse to puzzle
10605         (draw_puzzle):
10606           insist on tiles having width and height as multiples of 4 to get
10607           clean YUV image handling
10608         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10609         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
10610           s/DEBUG/LOG/ for common messages
10611         (gst_xvimagesink_navigation_send_event):
10612           fix mouse event translation to not include screen PAR
10613         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
10614           fix mouse event translation to actually work
10615
10616 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10617
10618         * gst/asfdemux/gstasfdemux.c:
10619         (gst_asf_demux_process_ext_content_desc):
10620          Extract TrackNumber metadata + clean up code
10621         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
10622          Hope this is the good fix (var used unitialised)
10623
10624 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10625
10626         * ext/faad/gstfaad.c: (gst_faad_chain):
10627           Only increment timestamp if it's valid. Fixes raw AAC streams.
10628
10629 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10630
10631         * configure.ac:
10632         * gst/games/Makefile.am:
10633         * gst/games/gstpuzzle.c:
10634           add a puzzle game with...
10635         * gst/games/gstvideoimage.c:
10636         * gst/games/gstvideoimage.h:
10637           ... full colorspace support (that includes YUV9 and RGB16)) stolen
10638           from videotestsrc and made into something that would be a nice
10639           library for a lot of other plugins.
10640
10641 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10642
10643         * configure.ac:
10644          don't compile faad plugin if a RC of 2.0 is found
10645          Fixes #155346 (and FC1 buildbot)
10646         * gst/asfdemux/gstasfdemux.c:
10647         (gst_asf_demux_process_ext_content_desc):
10648          try to make Solaris compiler happier
10649
10650 2005-01-06  Paul Jack  <pjack@sfaf.org>
10651
10652         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10653
10654         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
10655           Fix segfault (#161667).
10656
10657 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10658
10659         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
10660           Fix framerate reporting.
10661
10662 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10663
10664         * gst-libs/gst/riff/riff-ids.h:
10665         * gst/wavenc/riff.h:
10666          Add AMR (VBR and CBR) ids to riff.h audio codec list
10667         * gst/asfdemux/gstasfdemux.c:
10668         (gst_asf_demux_process_ext_content_desc),
10669         (gst_asf_demux_process_object):
10670           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
10671
10672 2005-01-05  Martin Eikermann  <meiker@upb.de>
10673
10674         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10675
10676         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
10677         (gst_dvd_demux_handle_discont):
10678         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
10679         (gst_mpeg_demux_handle_discont):
10680           Recreate pads on new-media (#160730).
10681         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
10682           Send discont even if manager changes timestamps (#161929).
10683
10684 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
10685
10686         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10687
10688         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
10689           Fix invalid memory access (#159211).
10690
10691 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10692
10693         * examples/gstplay/player.c: (main):
10694           Don't iterate.
10695         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
10696           Add visualizations.
10697         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
10698         (gst_a52dec_handle_frame):
10699           Set duration.
10700         * ext/dvdnav/gst-dvd:
10701           Add audioconvert. Fixes #161325.
10702         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
10703           Explicitely case to gint64. Possible valgrind error.
10704         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
10705         (gst_play_tick_callback), (gst_play_change_state),
10706         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
10707         (gst_play_set_location), (gst_play_get_location),
10708         (gst_play_seek_to_time), (gst_play_set_data_src),
10709         (gst_play_set_video_sink), (gst_play_set_audio_sink),
10710         (gst_play_set_visualization), (gst_play_connect_visualization),
10711         (gst_play_get_framerate), (gst_play_get_all_by_interface),
10712         (gst_play_new):
10713           Use playbin. Fixes #139749 and #147744.
10714         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
10715           Add genre tag.
10716         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
10717         (audioscale_get_type), (gst_audioscale_base_init),
10718         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
10719         (gst_audioscale_getcaps), (gst_audioscale_fixate),
10720         (gst_audioscale_link), (gst_audioscale_get_buffer),
10721         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
10722         (gst_audioscale_init), (gst_audioscale_dispose),
10723         (gst_audioscale_chain), (gst_audioscale_set_property),
10724         (gst_audioscale_get_property), (plugin_init):
10725           Indent properly.
10726         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
10727           Fix LPCM.
10728         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
10729         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
10730         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
10731           Add more metadata (fixes #162656).
10732
10733 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10734
10735         * configure.ac:
10736           back to cvs
10737
10738 === release 0.8.7 ===
10739
10740 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10741
10742         * NEWS:
10743         * RELEASE:
10744         * configure.ac:
10745           releasing 0.8.7, "Hyperspace"
10746
10747 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10748
10749         patch by: Tim-Philipp M??ller  <t.i.m@zen.co.uk>
10750
10751         * gst/playback/gstplaybasebin.c:
10752          Fix for #162924 - free caps after use, not before
10753
10754 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
10755
10756         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10757
10758         * gst/playback/gstplaybasebin.c:
10759         * gst/wavparse/gstwavparse.c:
10760           Fix for #154773 - fixes playback of small .wav files
10761
10762 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
10763
10764         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10765
10766         * gst/audioscale/gstaudioscale.c:
10767           Fix for #162819 - make audioscale reusable
10768           Fixes playback of more than one file with playbin/totem
10769
10770 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10771
10772         * gst/ffmpegcolorspace/avcodec.h:
10773         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10774         * gst/ffmpegcolorspace/imgconvert.c:
10775           clean up the mess that made me cry and avoid needless duplication
10776
10777 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10778
10779         * gst/ffmpegcolorspace/imgconvert.c:
10780           give some indication of why we're segfaulting
10781
10782 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10783
10784         * configure.ac:
10785           Fix indentation, fix v4l2 plugin detection.
10786         * ext/Makefile.am:
10787           Fix libmms location (Maciej, use diff -u!).
10788         * ext/alsa/gstalsa.c: (gst_alsa_init):
10789           Initialize caps cache to NULL.
10790         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
10791           Only change state on audiosink if it exists.
10792
10793 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
10794
10795         * gst/matroska/matroska-demux.c:
10796         * gst/matroska/matroska-ids.h:
10797         * gst/matroska/matroska-demux.h:
10798         Fix Vorbis streams failing to decode in some files, where cluster_time
10799         isn't 0, because then it doesn't send codec_priv before actual data.
10800         Remove time-based test and replace it with marker set on beginning of
10801         new stream
10802
10803 2004-12-28  David Schleef  <ds@schleef.org>
10804
10805         Merge patch from Ronald fixing problems with streaming
10806         text.
10807         * ext/cairo/gstcairo.c: (plugin_init):
10808         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
10809         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
10810         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
10811         (gst_textoverlay_font_init), (gst_textoverlay_init),
10812         (gst_textoverlay_set_property):
10813         * ext/cairo/gsttextoverlay.h:
10814
10815 2004-12-27  David Schleef  <ds@schleef.org>
10816
10817         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
10818         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
10819         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
10820         (gst_textoverlay_font_init), (gst_textoverlay_init),
10821         (gst_textoverlay_set_property): Improvements to actually
10822         render text as white on black outline on video, including
10823         font selection and horizontal/vertical alignment.  (Ronald's
10824         christmas present)
10825         * ext/cairo/gsttextoverlay.h:
10826
10827 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10828
10829         * ext/ogg/gstogg.c:
10830         * ext/ogg/gstogmparse.c:
10831           fix ogm[audio/video]parse plugin registration
10832           (riff won't load if bytestream is already loaded)
10833
10834 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
10835
10836         * gst/audioconvert/gstchannelmix.c:
10837           fix for GLIB < 2.4
10838
10839 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
10840
10841         * Makefile.am:
10842         * configure.ac:
10843           disable docs again until it actually passes make distcheck.
10844
10845 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10846
10847         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
10848         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
10849         (plugin_init):
10850           Add 3GP (variables name Q3GP because they can't start with a
10851           number). Add samr audio fourcc (used in .3gp files), decoder
10852           is work in progress. Also do a GST_WARNING instead of ERROR
10853           in case of unknown nodes, to decrease output.
10854
10855 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
10856
10857         * Makefile.am:
10858           really fix dist
10859
10860 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10861
10862         * configure.ac:
10863         * ext/speex/gstspeexdec.h:
10864         * ext/speex/gstspeexenc.h:
10865           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
10866           Fix detection code in configure.ac
10867
10868 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10869
10870         * gst/matroska/matroska-demux.c:
10871         (gst_matroska_demux_parse_blockgroup):
10872           Save position, so that queries give proper return values. Don't
10873           know how this could ever have worked before...
10874
10875 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10876
10877         * configure.ac:
10878           Put additional LAME check inside the conditional.  Fixes #152339
10879
10880 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10881
10882         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
10883         (gst_avi_demux_stream_scan):
10884           Add some more debug. Fix logic error when setting movi offset
10885           while reading index.
10886
10887 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10888
10889         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
10890         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
10891         (gst_avi_demux_process_next_entry):
10892           Add some debugging. Better detection of broken indexes and the
10893           accompanying index recovery. No infinite loops on state changes
10894           when we're still in our loopfunction.
10895
10896 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10897
10898         * configure.ac:
10899           Fix up.
10900
10901 2004-12-22  Archana Shah  <archana.shah@wipro.com>
10902
10903         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10904
10905         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
10906           Normalizing the value before setting
10907         (gst_sunaudiomixer_get_volume):
10908           Normalizing the value after getting. Fixes bug# 161980
10909
10910 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
10911
10912         * Makefile.am: Make sure docs gets disted
10913         * docs/Makefile.am: Make sure all needed files get disted
10914         * gst-plugins.spec.in: latest updates
10915
10916 2004-12-22  Wim Taymans  <wim@fluendo.com>
10917
10918         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
10919         Revert patch 1.38 as clock distribution over schedulers does
10920         not work correcly in the core yet.
10921
10922 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10923
10924         * sys/oss/README: remove this file, which predates my birth
10925           (and which content is by far outdated)
10926
10927 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
10928
10929         * Makefile.am:
10930         * configure.ac:
10931         * docs/Makefile.am:
10932         * docs/libs/Makefile.am:
10933         * docs/libs/gst-plugins-libs-docs.sgml:
10934         * docs/libs/gst-plugins-libs-sections.txt:
10935         * docs/libs/tmpl/gstgconf.sgml:
10936         * docs/upload.mak:
10937         * docs/version.entities.in:
10938           Added boilerplate gtk-doc files for plugin-libs documentation.
10939
10940 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10941
10942         * gst/auparse/gstauparse.c: fix int and float audio caps
10943
10944 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10945
10946         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10947         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
10948           g_assert() can be a macro, don't use #ifdef inside it.
10949
10950 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
10951
10952         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10953
10954         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
10955         (gst_videorate_init), (gst_videorate_chain),
10956         (gst_videorate_change_state):
10957           Event handling (fixes #159986).
10958
10959 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10960
10961         * gst-libs/gst/riff/riff-media.c:
10962         (gst_riff_create_video_caps_with_data):
10963           Add BLZ0 (Blizzard's version of DivX) fourcc.
10964
10965 2004-12-18  David Schleef  <ds@schleef.org>
10966
10967         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
10968         portability fix.
10969
10970 2004-12-18  David Schleef  <ds@schleef.org>
10971
10972         * gst/tta/ttadec.h: Disable some header code that isn't used
10973         and clearly isn't portable.
10974
10975 2004-12-18  David Schleef  <ds@schleef.org>
10976
10977         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
10978         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
10979         (avcodec_get_pix_fmt), (avpicture_layout),
10980         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
10981         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
10982         Fix code to not use GCC extensions (and c99 extensions that
10983         Forte does not like.)
10984
10985 2004-12-19  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
10986
10987         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10988
10989         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
10990         (gst_deinterlace_chain):
10991           Rowstride fixes. Fixes #161039.
10992         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
10993         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
10994         (gst_video_crop_getcaps), (gst_video_crop_link),
10995         (gst_video_crop_i420), (gst_video_crop_chain),
10996         (gst_video_crop_change_state):
10997           Rework of negotiation. Actually works now. Fixes #158650.
10998
10999 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11000
11001         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
11002           That was very stupid.
11003
11004 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11005
11006         * gst/matroska/matroska-demux.c:
11007         (gst_matroska_demux_parse_blockgroup):
11008           Fix possible crasher.
11009
11010 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11011
11012         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
11013         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
11014           Lace sizes can be zero.
11015
11016 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11017
11018         * ext/musepack/gstmusepackdec.cpp:
11019           Fetch error return values. Fixes #161624.
11020         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
11021           Really EOS.
11022
11023 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11024
11025         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
11026           Work for truncated (unfinished download etc.) files. Fixes #160514.
11027
11028 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11029
11030         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11031           Fix for integer overflow. Makes #156001 not crash. Probably masks
11032           the real bug.
11033
11034 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11035
11036         * gst/ac3parse/gstac3parse.c: (plugin_init):
11037           Parsers never have ranks. Fixes #159651.
11038
11039 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11040
11041         * gst/playback/gstdecodebin.c: (compare_ranks):
11042           make sure the facotries are ordered the same every time even if they
11043           have the same rank by using the name
11044         * gst/playback/gstdecodebin.c: (find_compatibles):
11045           make sure we don't add factories to the list twice
11046
11047 2004-12-16  David Schleef  <ds@schleef.org>
11048
11049         * configure.ac: look for musepack headers as musepack/*.h
11050         (fixes #159847)
11051         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
11052         * ext/musepack/gstmusepackreader.h: same
11053
11054 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11055
11056         * gst-libs/gst/riff/riff-read.c:
11057         (gst_riff_read_strf_auds_with_data):
11058           Read extradata correctly (fixes #155879).
11059
11060 2004-12-16  David Schleef  <ds@schleef.org>
11061
11062         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
11063         audio.  does _not_ attempt or allow conversion unless channels
11064         is 1 or 2.
11065
11066 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11067
11068         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
11069
11070 2004-12-16  David Schleef  <ds@schleef.org>
11071
11072         * gst/audioscale/gstaudioscale.c: the resample library only
11073         handles 1 or 2 channels.  Change caps to compensate.
11074
11075 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11076
11077         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
11078         (gst_matroska_demux_audio_caps):
11079           Some MPEG-AAC hacks, because else it doesn't work...
11080
11081 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11082
11083         * gst-libs/gst/riff/riff-media.c:
11084         (gst_riff_create_video_caps_with_data),
11085         (gst_riff_create_video_template_caps):
11086           Add h264.
11087
11088 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11089
11090         * gst-libs/gst/audio/Makefile.am:
11091           Try to fix buildbot.
11092
11093 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11094
11095         * gst/tcp/gstmultifdsink.c:
11096           Clean up and uniformize debugging.
11097
11098 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
11099
11100         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11101
11102         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
11103         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
11104         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
11105         (gst_mpeg_demux_change_state):
11106           Reset on ready. Fixes 160276.
11107
11108 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
11109
11110         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11111
11112         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11113         (gst_ffmpegcsp_pad_link):
11114           Fix memleak (#154815).
11115
11116 2004-12-16  James Bowes  <bowes@cs.dal.ca>
11117
11118         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11119
11120         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
11121         (gst_musicbrainz_init), (gst_musicbrainz_chain),
11122         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
11123         * ext/musicbrainz/gsttrm.h:
11124           Add support for using a proxy server when getting a trm id from
11125           the MusicBrainz database (#149613).
11126
11127 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
11128
11129         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11130
11131         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
11132         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
11133           Fix memleaks (#157233).
11134
11135 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
11136
11137         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11138
11139         * gst-libs/gst/resample/resample.c: (gst_resample_close):
11140         * gst-libs/gst/resample/resample.h:
11141         * gst/audioscale/gstaudioscale.c:
11142           Fix memleak (#159215).
11143
11144 2004-12-16  Toni Willberg  <toniw@iki.fi>
11145
11146         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11147
11148         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
11149         * sys/oss/oss_probe.c: (main):
11150           Check for mono/stereo support (similar to samplerate probing),
11151           fixes #159433. Also add missing copyright header to oss_probe.c.
11152
11153 2004-12-15  David Schleef  <ds@schleef.org>
11154
11155         * configure.ac: add audioresample and cairo plugins.  Remove
11156         HAVE_MMX stuff, because it's not used.
11157         * ext/Makefile.am: same
11158         * ext/audioresample/Makefile.am: You are not ready for an
11159         audio resampling element based on audioresample.
11160         * ext/audioresample/gstaudioresample.c:
11161         * ext/audioresample/gstaudioresample.h:
11162         * ext/cairo/Makefile.am: You are not ready for overlay elements
11163         based on cairo.  Don't look too closely, these elements kinda
11164         suck right now.
11165         * ext/cairo/gstcairo.c: new
11166         * ext/cairo/gsttextoverlay.c: new
11167         * ext/cairo/gsttextoverlay.h: new
11168         * ext/cairo/gsttimeoverlay.c: new
11169         * ext/cairo/gsttimeoverlay.h: new
11170         * gst-libs/gst/media-info/media-info-priv.h: fix compile
11171         problem with compilers that don't support variadic macros.
11172
11173 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
11174
11175         Reviewed by:  David Schleef  <ds@schleef.org>
11176
11177         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
11178         Bala, registering sunaudiosrc (oops!), and cleaning up code a
11179         bit.  Also ran indent-gst.
11180         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
11181         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
11182         (gst_sunaudiosrc_setparams):
11183
11184 2004-12-14  David Schleef  <ds@schleef.org>
11185
11186         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
11187         output rate to 16000.  Should fix #160235.
11188
11189 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11190
11191         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11192         Add typefinding for mpeg2 pes streams
11193
11194 2004-12-13  David Schleef  <ds@schleef.org>
11195
11196         * configure.ac:  Applied patch from bug #143659, making default
11197         sources and sinks OS-dependent (for Solaris), and added code
11198         for OS/X.
11199         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
11200
11201 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11202
11203         * gst-libs/gst/riff/riff-media.c:
11204           forgot to add h2.64 to avidemux template caps
11205
11206 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11207
11208         * gst/wavenc/riff.h:
11209         * gst-libs/gst/riff/riff-media.c:
11210         * gst-libs/gst/riff/riff-ids.h:
11211         * gst/avi/gstavimux.c
11212         add 4CC code for VideoSoft h264 in AVI (VSSH)
11213           fixes bug #160655
11214         remove s323 from riff, it's quicktime specific :(
11215
11216 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11217
11218         * gst/asfdemux/README
11219         * gst/wavenc/riff.h
11220         * gst-libs/gst/riff/riff-ids.h
11221         * gst-libs/gst/riff/riff-media.c
11222         * gst/qtdemux/qtdemux.c:
11223           add new 4CC codes for h263 related codecs
11224           fixes partially bug #155163
11225
11226 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
11227
11228         * configure.ac: Update polyaudio requirement to 0.7
11229         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
11230
11231 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11232
11233         * gst/interleave/deinterleave.c:
11234         fix my name's spelling! :)
11235
11236 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11237
11238         * AUTHORS ChangeLog
11239         * gst/auparse/gstauparse.c
11240         * gst/interleave/deinterleave.c
11241         * gst/law/:
11242                 alaw-decode.c alaw-encode.c
11243                 mulaw-decode.c mulaw-encode.c
11244         * gst/oneton/gstoneton.c
11245         * sys/osxaudio/:
11246                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
11247         * sys/osxvideo/:
11248                 cocoawindow.h cocoawindow.m
11249                 osxvideosink.h osxvideosink.m
11250
11251         put the same mail address for Zaheer Abbas Merali everywhere
11252
11253 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11254
11255         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
11256           Align by packetsize, and assert that we a packet available before
11257           playing. The first makes webstreams work (they often include
11258           trailing padding data in a packet), the second allows pausing a
11259           ASF stream in totem without getting demux errors afterwards.
11260
11261 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11262
11263         * ext/ogg/gstoggdemux.c: (get_relative):
11264           Check for non-NULL before accessing member (end-of-chain).
11265
11266 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11267
11268         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
11269         (cdparanoia_set_property), (cdparanoia_get_property):
11270         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
11271         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
11272         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
11273         (dvdreadsrc_init), (dvdreadsrc_set_property),
11274         (dvdreadsrc_get_property):
11275         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
11276         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
11277           Synchronize property names where not yet the case. Devices are
11278           now device=X, other versions are deprecated (but still exist).
11279           Also use g_free() unconditionally.
11280         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11281         (setup_source), (gst_play_base_bin_get_property):
11282           Expose source.
11283
11284 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11285
11286         * configure.ac: move GCONF macro outside conditional for the am
11287           conditional. Fixes #160439
11288
11289 2004-12-08  David Schleef  <ds@schleef.org>
11290
11291         * tools/gst-visualise-m.m: Switch to elements that currently
11292         exist.
11293
11294 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11295
11296         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
11297           We love wrong commas.
11298
11299 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11300
11301         * gst/matroska/matroska-demux.c:
11302         (gst_matroska_demux_handle_src_query):
11303           Don't set DEFAULT, unsupported - makes length display incorrectly
11304           in some cases.
11305
11306 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11307
11308         * gst/monoscope/README: remove blurb about files being GPL
11309         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
11310         * gst/monoscope/monoscope.c: Change license to BSD with explanation
11311           monoscope is now effectively LGPL licensed
11312
11313 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11314
11315         * gst/monoscope/README: Update information to be more correct
11316         * gst/monoscope/convolve.c: Relicense to LGPL
11317         * gst/monoscope/convolve.h: Relicense to LGPL
11318
11319 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
11320
11321         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
11322           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
11323         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
11324           set default_duration for mpeg1 audio
11325
11326 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11327
11328         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
11329         * ext/alsa/gstalsa.h:
11330           refactor big chunks of the core caps negotiation code to make it
11331           a lot faster, because people claim it's really slow
11332           (actually, just cache the getcaps when the device is opened)
11333
11334 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11335
11336         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
11337         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
11338         (gst_a52dec_handle_frame), (gst_a52dec_chain),
11339         (gst_a52dec_change_state), (plugin_init):
11340         * ext/a52dec/gsta52dec.h:
11341           Do something useful with timestamps. Make chain-based (since
11342           there's really no reason to be loopbased).
11343         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
11344           Update current_byte/frame correctly.
11345
11346 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11347
11348         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
11349         (gst_ape_demux_stream_init):
11350           Forward tags, too.
11351
11352 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11353
11354         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
11355           Let's make sure we're done typefinding when detecting tags.
11356
11357 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11358
11359         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
11360         (gst_ebml_read_init), (gst_ebml_read_use_event),
11361         (gst_ebml_read_element_id), (gst_ebml_peek_id),
11362         (gst_ebml_read_seek), (gst_ebml_read_skip),
11363         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
11364         (gst_ebml_read_master):
11365         * gst/matroska/ebml-read.h:
11366         * gst/matroska/matroska-demux.c:
11367         (gst_matroska_demux_parse_contents),
11368         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
11369           Disgustingly evil hack for working around INTERRUPT events and
11370           their extremely annoying habit of being a pain in the ass. We
11371           simply peek a cluster before reading any of it.
11372
11373 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11374
11375         * ext/musepack/gstmusepackdec.cpp:
11376           There's also floating point libmusepacks.
11377
11378 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11379
11380         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
11381         (gst_faad_chanpos_to_gst), (gst_faad_chain):
11382           Set DURATION even if source buffer didn't. Also use increasing
11383           timestamps.
11384         * gst-libs/gst/riff/riff-media.c:
11385         (gst_riff_create_audio_caps_with_data):
11386           Block_align can have larger values than 8192.
11387
11388 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11389
11390         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
11391         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
11392         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
11393         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
11394           Fix caps.
11395
11396 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11397
11398         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
11399           Fix logic bug.
11400
11401 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11402
11403         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
11404           Yay, another one.
11405
11406 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11407
11408         * ext/esd/esdsink.c: (gst_esdsink_chain):
11409           Make error actually say something useful (fixes #156798).
11410         * gst-libs/gst/riff/riff-media.c:
11411         (gst_riff_create_video_caps_with_data),
11412         (gst_riff_create_video_template_caps):
11413           Add Intel Video 5.0 fourcc (IV50).
11414
11415 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
11416
11417         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
11418         detection on mono and stereo mp3 files.
11419
11420 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11421
11422         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
11423           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
11424           the contained stream).
11425
11426 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11427
11428         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
11429           Oops, remove debug.
11430
11431 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
11432
11433         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11434
11435         * gst/law/alaw-decode.c: (alawdec_getcaps):
11436         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
11437           Prevent warnings when negotiating caps (fixes #159338).
11438
11439 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11440
11441         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11442         (gst_ffmpegcsp_chain):
11443           Remove old leftover that shouldn't be there...
11444
11445 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
11446
11447         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11448
11449         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
11450           Don't forward DISCONT events (fixes #159684).
11451
11452 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11453
11454         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
11455           Unlink manually since sometimes bin disposal (and therefore
11456           pad unlinking) is delayed, which will cause a new media file
11457           to not be able to start playing instantly.
11458
11459 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11460
11461         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
11462           On mute of an unlinked stream, check for pad availability so
11463           we don't crash on unlinked pad.
11464
11465 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11466
11467         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
11468         (gst_avi_demux_massage_index):
11469           Fix quite humiliating bug in omitting 0-sized index chunks but
11470           forgetting to count them for timestamps.
11471
11472 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11473
11474         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
11475           Actually leave the loop if we failed to sync. Don't crash.
11476
11477 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11478
11479         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
11480         (gst_dvd_demux_process_private):
11481         * gst/mpegstream/gstdvddemux.h:
11482           Fix crash (#159759). Doesn't work, though. :-(.
11483
11484 2004-11-28  Benjamin Otte  <otte@gnome.org>
11485
11486         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
11487           more overwriting protection due to modifying channels one by one
11488           instead of all at once
11489
11490 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11491
11492         * gst/audioconvert/gstchannelmix.c:
11493         (gst_audio_convert_fill_normalize):
11494           Normalize using absolute values.
11495
11496 2004-11-28  Julien MOUTTE  <julien@moutte.net>
11497
11498         * configure.ac:
11499         * ext/Makefile.am:
11500         * ext/directfb/Makefile.am:
11501         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
11502         (gst_directfbvideosink_get_pixel_format),
11503         (gst_directfbvideosink_get_format_from_fourcc),
11504         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
11505         (gst_directfbvideosink_sink_link),
11506         (gst_directfbvideosink_change_state),
11507         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
11508         (gst_directfbvideosink_buffer_alloc),
11509         (gst_directfbvideosink_interface_supported),
11510         (gst_directfbvideosink_interface_init),
11511         (gst_directfbvideosink_navigation_send_event),
11512         (gst_directfbvideosink_navigation_init),
11513         (gst_directfbvideosink_set_property),
11514         (gst_directfbvideosink_get_property),
11515         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
11516         (gst_directfbvideosink_base_init),
11517         (gst_directfbvideosink_class_init),
11518         (gst_directfbvideosink_get_type), (plugin_init):
11519         * ext/directfb/directfbvideosink.h: Adding a first version of
11520         directfbvideosink.
11521         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
11522         more.
11523
11524 2004-11-28  Benjamin Otte  <otte@gnome.org>
11525
11526         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
11527           walk the samples backwards if out_channels > in_channels so we don't
11528           overwrite data
11529
11530 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11531
11532         * gst/audioconvert/Makefile.am:
11533         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
11534         (gst_audio_convert_link), (gst_audio_convert_change_state),
11535         (gst_audio_convert_channels):
11536         * gst/audioconvert/gstchannelmix.c:
11537         (gst_audio_convert_unset_matrix),
11538         (gst_audio_convert_fill_identical),
11539         (gst_audio_convert_fill_compatible),
11540         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
11541         (gst_audio_convert_fill_others),
11542         (gst_audio_convert_fill_normalize),
11543         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
11544         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
11545         * gst/audioconvert/gstchannelmix.h:
11546           Implement a channel mixer.
11547
11548 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
11549
11550         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
11551         * ext/alsa/gstalsa.h:
11552         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
11553         Make alsasink actually honor gst_element_set_clock and use that
11554         clock instead of its internal one.
11555
11556 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
11557
11558         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
11559         (gst_play_base_bin_change_state): nullify source and decoder when
11560         going from READY to NULL so that we don't try to do weird stuff with
11561         them when going from NULL to READY
11562         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
11563         instead of g_object_unref
11564         (gen_video_element), (gen_audio_element): more refcounting fixes, now
11565         it should be correct
11566         (gst_play_bin_change_state): don't call remove_sinks if we are
11567         currently disposing the object
11568
11569 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11570
11571         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
11572           Don't forget bass if it's there. Else left channel is silent...
11573
11574 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11575
11576         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
11577         (gst_a52dec_change_state):
11578           Don't do sample adjusting anymore, we use float audio now.
11579         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
11580           Don't fixate to non-existing properties.
11581
11582 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11583
11584         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
11585         (gst_a52dec_change_state):
11586           Advertise that we can do surround sound.
11587
11588 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11589
11590         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
11591           Add buffer-frames=0.
11592         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
11593         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
11594         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
11595         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
11596         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
11597         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
11598         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
11599         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
11600         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
11601         * ext/dvdread/dvdreadsrc.h:
11602           Add seeking, querying for bytes, sectors, title, angle and
11603           chapter. Handle multiple chapters. Relicense to LGPL because
11604           Billy agreed on that (thanks Billy!).
11605
11606 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
11607
11608         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
11609         call parent dispose method
11610
11611 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
11612
11613         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
11614         (gst_audio_clock_get_internal_time):
11615         Fix active <-> inactive transitions: ensure time value always
11616         grows and avoid abrupt value changes.
11617
11618 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
11619
11620         * configure.ac:
11621         * gst/tta/Makefile.am:
11622         * gst/tta/crc32.h:
11623         * gst/tta/filters.h:
11624         * gst/tta/gsttta.c:
11625         * gst/tta/gstttadec.c:
11626         * gst/tta/gstttadec.h:
11627         * gst/tta/gstttaparse.c:
11628         * gst/tta/gstttaparse.h:
11629         * gst/tta/ttadec.h:
11630           added TTA parser and decoder
11631
11632 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11633
11634         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11635         (probe_triggered), (check_queue), (buffer_underrun),
11636         (buffer_running), (buffer_overrun), (gen_source_element),
11637         (setup_source):
11638         * gst/playback/gstplaybasebin.h:
11639           Implement buffering. Needs some more work.
11640
11641 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11642
11643         * ext/theora/theoradec.c: (theora_dec_chain):
11644           Fix ilog mask range overflow.
11645
11646 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11647
11648         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
11649           Don't omit the last (which in case of dmix is the only :) )
11650           channel count. Don't set channels if <= 2.
11651
11652 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
11653
11654         * gst/playback/gstplaybin.c: (gen_video_element),
11655         (gen_audio_element): Removed 2 obsolete comments
11656
11657 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11658
11659         * ext/vorbis/oggvorbisenc.c
11660         * ext/vorbis/vorbisenc.c :
11661           change description fields of those plugins to differentiate them
11662           (pitivi show Encoders by description, they had the same one)
11663
11664 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
11665
11666         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11667
11668         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
11669         (gst_play_bin_set_property), (gen_video_element),
11670         (gen_audio_element):
11671           Refcounting fixes for provided audio-/videosinks.
11672
11673 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11674
11675         * gst/playback/gstplaybin.c: (gen_video_element),
11676         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
11677           Don't reference all sinks, but only the video- and audiosinks.
11678           The vis. element should be disposed when we're done with it.
11679           We don't have any reason to keep it around. This fixes warnings
11680           when reusing playbin for playing multiple audio files with
11681           vis. enabled. Also release audio device on pause - idea stolen
11682           from Rhythmbox.
11683
11684 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11685
11686         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
11687         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
11688         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
11689         * ext/alsa/gstalsaplugin.c: (plugin_init):
11690         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
11691         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
11692         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
11693         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
11694         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
11695         (gst_faad_change_state), (plugin_init):
11696         * ext/faad/gstfaad.h:
11697         * ext/vorbis/vorbis.c: (plugin_init):
11698         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
11699         * gst-libs/gst/audio/Makefile.am:
11700         * gst-libs/gst/audio/audio.c: (plugin_init):
11701         * gst-libs/gst/audio/multichannel.c:
11702         (gst_audio_check_channel_positions),
11703         (gst_audio_get_channel_positions),
11704         (gst_audio_set_channel_positions),
11705         (gst_audio_set_structure_channel_positions_list),
11706         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
11707         (gst_audio_fixate_channel_positions):
11708         * gst-libs/gst/audio/multichannel.h:
11709         * gst-libs/gst/audio/testchannels.c: (main):
11710         * gst/audioconvert/gstaudioconvert.c:
11711         (gst_audio_convert_class_init), (gst_audio_convert_init),
11712         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
11713         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
11714         (gst_audio_convert_fixate), (gst_audio_convert_channels):
11715         * gst/audioconvert/plugin.c: (plugin_init):
11716           Surround sound support.
11717
11718 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11719
11720         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
11721           Fix position for discont if we're close as well. Nitpicking, but
11722           saves a few milliseconds of extra waiting or skipping.
11723
11724 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11725
11726         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
11727           We sometimes need parsers for playback, so add those too.
11728
11729 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11730
11731         * configure.ac:
11732         * gst/apetag/Makefile.am:
11733         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
11734         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
11735         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
11736         (gst_ape_demux_get_src_query_types),
11737         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
11738         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
11739         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
11740         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
11741         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
11742         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
11743         (gst_ape_demux_change_state):
11744         * gst/apetag/apedemux.h:
11745         * gst/apetag/apetag.c: (plugin_init):
11746         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
11747         (plugin_init):
11748           APE v1/2 tag reader plus typefind function.
11749
11750 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11751
11752         * configure.ac:
11753         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
11754         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
11755           Remove hacks for older core. Require newer core version
11756           accordingly.
11757
11758 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11759
11760         * gst/cdxaparse/Makefile.am:
11761         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
11762         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
11763         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
11764         * gst/cdxaparse/gstcdxaparse.h:
11765         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
11766         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
11767         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
11768         (gst_cdxastrip_get_src_query_types),
11769         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
11770         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
11771         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
11772         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
11773         * gst/cdxaparse/gstcdxastrip.h:
11774           SVCD/VCD header stripping separated from CDXA image parsing.
11775         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
11776         (plugin_init):
11777           Add VCD/SVCD header typefinding for VCD/SVCD.
11778         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
11779         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
11780         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
11781         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
11782         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
11783         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
11784         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
11785         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
11786         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
11787         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
11788         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
11789         * sys/vcd/vcdsrc.h:
11790           Fix up, add seeking, querying, URI interface. Works in totem now.
11791
11792 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
11793
11794         * configure.ac:
11795           back to CVS
11796
11797 === release 0.8.6 ===
11798
11799 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
11800
11801         * NEWS:
11802         * RELEASE:
11803         * configure.ac:
11804         * po/af.po:
11805         * po/az.po:
11806         * po/cs.po:
11807         * po/en_GB.po:
11808         * po/hu.po:
11809         * po/it.po:
11810         * po/nb.po:
11811         * po/nl.po:
11812         * po/or.po:
11813         * po/sq.po:
11814         * po/sr.po:
11815         * po/sv.po:
11816         * po/uk.po:
11817           releasing 0.8.6, "IOU Love"
11818
11819 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11820
11821         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11822
11823         * gst/playback/gstplaybasebin.c:
11824           Fix unplayable files error handling.  Fixes #158365
11825
11826 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11827
11828         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11829
11830         * gst/typefind/gsttypefindfunctions.c:
11831           Fix broken mp3 typefinding.  Fixes #158375
11832
11833 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11834
11835         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11836
11837         * ext/ogg/gstoggdemux.c:
11838           Fix sync on broken files.  Fixes #158976
11839
11840 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11841
11842         patch by: Edward Hervey <bilboed@bilboed.com>
11843
11844         * ext/libpng/gstpngenc.c:
11845           Copy over buffer properties.  Fixes #158832
11846
11847 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11848
11849         patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
11850
11851         * ext/dvdread/dvdreadsrc.c:
11852           Fixes invalid reads (#158462)
11853
11854 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11855
11856         * sys/v4l/gstv4lsrc.c:
11857         * sys/v4l/gstv4lsrc.h:
11858         * sys/v4l/v4lsrc_calls.c:
11859           Probe less and cache it.  Fixes #159187.
11860
11861 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11862
11863         * gst/videorate/gstvideorate.c:
11864           Handle all video formats. Fixes #159186.
11865
11866 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
11867         * gst/synaesthesia/gstsynaesthesia.c:
11868         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
11869         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
11870         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
11871         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
11872         (gst_synaesthesia_change_state), (plugin_init):
11873         Fix up synaesthesia to work under different samplerates/ buffer sizes.
11874         Force 320x200 output, as that's the only thing the underlying
11875         synaesthesia implementation supports. Still needs to be made
11876         re-entrant.
11877
11878 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11879
11880         * configure.ac:
11881           Fix mpeg2enc configure check (similar to mplex check below).
11882
11883 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
11884
11885         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11886
11887         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11888           Fix for gcc-2.95 (fixes #158221).
11889
11890 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11891
11892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
11893           Re-add clock distribution hack (until new core is released).
11894           Fixes #158125.
11895
11896 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
11897         * configure.ac:
11898           fix mplex configure check segfaulting on some systems (bug #140994)
11899
11900 2004-11-13  Benjamin Otte  <otte@gnome.org>
11901
11902         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
11903           add debugging
11904         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11905           do a wait when we enter the loop func with no data available to
11906           write instead of getting into an 100% CPU loop by just returning and
11907           being called again by the scheduler
11908
11909 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
11910
11911         * configure.ac:
11912         * ext/libvisual/visual.c: (gst_visual_get_type),
11913         (libvisual_log_handler), (gst_visual_getcaps),
11914         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
11915         (plugin_init):
11916           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
11917         * ext/smoothwave/Makefile.am:
11918         * ext/smoothwave/demo-osssrc.c: (main):
11919         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
11920         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
11921         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
11922         (plugin_init):
11923         * ext/smoothwave/gstsmoothwave.h:
11924           Make gstsmoothwave a working element in the 20th century.
11925
11926         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
11927           Fix incorrect link function
11928
11929 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11930
11931         * gst/volume/gstvolume.c:
11932           Allow buffer-frames=0.
11933
11934 2004-11-12 Iain <iaingnome@gmail.com>
11935
11936         * configure.ac: Check for polypaudio
11937
11938         * ext/Makefile.am: Build the polyp dir
11939
11940         * ext/polyp: The polypsink sources.
11941
11942 2004-10-30 Iain <iaingnome@gmail.com>
11943
11944         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
11945         caps to reflect the new number of channels.
11946
11947 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11948
11949         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11950           Fix for negotiation order problem. This would show when the
11951           ALSA loopfuction was called before any other function. ALSA
11952           wouldn't do anything because we're not negotiated yet, leading
11953           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
11954
11955 2004-11-11  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
11956
11957         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11958
11959         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
11960           No warnings (#157986).
11961
11962 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11963
11964         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11965           Prefer apev1/2 and id3v1 (at end of file) over musepack.
11966
11967 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11968
11969         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
11970           Signal no-more-pads (so it works in playbin).
11971
11972 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11973
11974         * ext/musepack/gstmusepackreader.cpp:
11975           Workaround for older core.
11976
11977 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11978
11979         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
11980           Actually test for odd width/height rather than testing whether
11981           a temporary variable that was 0 before we subtracted 1 is now
11982           not equal to zero (which it always is).
11983
11984 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11985
11986         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
11987         Fix compilation if HAVE_XVIDEO is not defined
11988
11989 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11990
11991         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
11992         Fix compilation if HAVE_XVIDEO is not defined
11993
11994 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
11995
11996         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11997         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
11998         (gst_goom_change_state), (plugin_init):
11999         Use the bytestream adapter so goom doesn't depend on the input
12000         buffer size.
12001         Add a debug category
12002
12003 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12004
12005         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
12006           Only set hardware parameters *after* negotiation. Before
12007           negotiation, it will set ANY and that seems to cause crashes
12008           (see e.g. #151288, #153227).
12009
12010 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12011
12012         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
12013           This seems to be antique leftover. It needs to pass error
12014           checking.
12015         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
12016         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
12017         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
12018         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
12019           Fix GstXOverlay implementation (#151059).
12020
12021 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12022
12023         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
12024           Don't assert (#157853).
12025
12026 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12027
12028         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
12029           Fix bytes/samples confustion.
12030         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
12031           Fix for underrun (#144389).
12032
12033 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12034
12035         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
12036           Disable halfway-seek for pending release (since it needs a new
12037           core release).
12038
12039 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12040
12041         * sys/v4l/gstv4lsrc.c:
12042         * sys/v4l/gstv4lsrc.h:
12043         * sys/v4l/v4lsrc_calls.c:
12044           add autoprobe-fps property so we can separate autoprobing parts
12045
12046 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12047
12048         * sys/v4l/gstv4lsrc.c:
12049         * sys/v4l/v4lsrc_calls.c:
12050         initialise fourcc to catch unset fourcc's, and debug
12051
12052 2004-11-09  Wim Taymans  <wim@fluendo.com>
12053
12054         * gst/playback/README:
12055         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12056         * gst/playback/gstplaybin.c: (gst_play_bin_init),
12057         (gst_play_bin_dispose), (gst_play_bin_set_property),
12058         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
12059         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
12060         (gst_play_bin_get_formats), (gst_play_bin_convert),
12061         (gst_play_bin_get_query_types), (gst_play_bin_query):
12062         Cleanups and some more documentation.
12063
12064 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
12065
12066         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
12067         (gst_cacasink_init), (gst_cacasink_chain):
12068         * ext/libcaca/gstcacasink.h:
12069         Cacasink inherits from VideoSink, so let that store the clock.
12070
12071 2004-11-09  Wim Taymans  <wim@fluendo.com>
12072
12073         * gst/playback/README:
12074         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
12075         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
12076         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
12077         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
12078         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
12079         (setup_sinks):
12080         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
12081         (gst_stream_info_is_mute), (gst_stream_info_set_property):
12082         * gst/playback/gststreaminfo.h:
12083         Updated README.
12084         Only switch groups if all streams have muted (EOSed).
12085         Send Tags in sync with the stream playback instead of in
12086         the playback/preroll phase.
12087         Some cleanups, free the fakesrc elements.
12088
12089 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12090
12091         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
12092           buffer-frames property was missing
12093         * ext/arts/gst_arts.c:
12094           rate missing from sinkcaps
12095         * ext/audiofile/gstafparse.c:
12096         * ext/audiofile/gstafsink.c:
12097         * ext/audiofile/gstafsrc.c:
12098         * ext/swfdec/gstswfdec.c:
12099           int audio doesn't know buffer-frames
12100         * ext/cdparanoia/gstcdparanoia.c:
12101           int audio doesn't know chunksize either
12102         * ext/nas/nassink.c:
12103           it's endianness, not endianess
12104         * gst-libs/gst/audio/audio.h:
12105           make float standard pad template caps really describe float
12106         * gst/law/mulaw.c: (linear_factory):
12107           signed only, please
12108         * gst/mpegstream/gstdvddemux.c:
12109           widths of 20 are not valid
12110
12111 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12112
12113         Submitted by: Luca Ferretti <elle.uca@infinito.it>
12114
12115         * po/LINGUAS:
12116         * po/it.po:
12117           Add Italian
12118
12119 2004-11-08  Wim Taymans  <wim@fluendo.com>
12120
12121         * gst/playback/README:
12122         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12123         * gst/playback/gstplaybasebin.c: (probe_triggered),
12124         (gst_play_base_bin_change_state):
12125         Updated README, added more comments for fixmes etc..
12126
12127 2004-11-08  Wim Taymans  <wim@fluendo.com>
12128
12129         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12130         We can remove this hack now.
12131
12132 2004-11-08  Wim Taymans  <wim@fluendo.com>
12133
12134         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
12135         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12136         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12137         Only mix AYUV for maximum quality.
12138
12139 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12140
12141         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
12142         (gst_ogg_demux_push), (gst_ogg_pad_push):
12143           Let's act as if we're synchronized now! :).
12144         * ext/theora/theoradec.c: (theora_dec_chain):
12145           Add some debug.
12146
12147 2004-11-08  Wim Taymans  <wim@fluendo.com>
12148
12149         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12150         (gst_alpha_set_property), (gst_alpha_sink_link),
12151         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
12152         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
12153         (gst_alpha_init_params), (gst_alpha_chain):
12154         Implement alpha functions for AYUV too, this increases
12155         accuracy quite a bit.
12156
12157 2004-11-08  Wim Taymans  <wim@fluendo.com>
12158
12159         * gst/ffmpegcolorspace/avcodec.h:
12160         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12161         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
12162         (gst_ffmpegcsp_avpicture_fill):
12163         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12164         (gst_ffmpegcsp_caps_remove_format_info):
12165         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12166         (shrink12), (img_get_alpha_info), (deinterlace_line),
12167         (deinterlace_line_inplace):
12168         * gst/ffmpegcolorspace/imgconvert_template.h:
12169         Added AYUV colorspace and handle RGBA a bit more respectful.
12170
12171 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12172
12173         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12174           Actually always send a discont (cornercase when resending the
12175           same serial-tagged chain twice).
12176
12177 2004-11-08  Julien MOUTTE  <julien@moutte.net>
12178
12179         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
12180         (gst_ximagesink_finalize):
12181         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
12182         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
12183
12184 2004-11-08  Wim Taymans  <wim@fluendo.com>
12185
12186         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
12187         Don't segfault on NULL data.
12188
12189 2004-11-08  Wim Taymans  <wim@fluendo.com>
12190
12191         * gst/playback/gstdecodebin.c: (unlinked):
12192         * gst/playback/gstplay-marshal.list:
12193         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12194         (gst_play_base_bin_init), (group_create), (get_active_group),
12195         (get_building_group), (group_destroy), (group_commit),
12196         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
12197         (add_element_stream), (no_more_pads), (probe_triggered),
12198         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
12199         (state_change), (setup_source), (gst_play_base_bin_get_property),
12200         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
12201         (gst_play_base_bin_link_stream),
12202         (gst_play_base_bin_get_streaminfo):
12203         * gst/playback/gstplaybasebin.h:
12204         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12205         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
12206         Add support for chained ogg files. Prepare for playlist
12207         support. This patch introduces the concept of pad groups, which
12208         together compose one playable media file.
12209
12210 2004-11-07  David Schleef  <ds@schleef.org>
12211
12212         * testsuite/gst-lint: Check for pad templates that aren't statically
12213         scoped.
12214
12215 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12216
12217         * configure.ac:
12218         * ext/Makefile.am:
12219         * ext/musepack/Makefile.am:
12220         * ext/musepack/gstmusepackdec.cpp:
12221         * ext/musepack/gstmusepackdec.h:
12222         * ext/musepack/gstmusepackreader.cpp:
12223         * ext/musepack/gstmusepackreader.h:
12224           Add musepack decoder.
12225         * ext/faad/gstfaad.c: (gst_faad_base_init):
12226           Make pad templates static.
12227         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
12228         (plugin_init):
12229           Add musepack typefinder, make mp3 typefinding work halfway stream,
12230           which doesn't actually work yet because id3demux doesn't implement
12231           _get_length().
12232
12233 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12234
12235         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
12236         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
12237           Fix interrupt event handling (#144436).
12238
12239 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12240
12241         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
12242           Hide unused glory.
12243
12244 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12245
12246         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12247
12248         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
12249           Fix weird caps (#157548).
12250
12251 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12252
12253         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12254
12255         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
12256           Add missing NULL terminator (#157543).
12257
12258 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12259
12260         * gst/tcp/gsttcp.h:
12261         * gst/tcp/gsttcpclientsink.c:
12262         * gst/tcp/gsttcpclientsrc.c:
12263         * gst/tcp/gsttcpserversink.c:
12264         * gst/tcp/gsttcpserversrc.c:
12265           ports can go up to 65535.  Move common defines to gsttcp.h
12266
12267 2004-11-05  Wim Taymans  <wim@fluendo.com>
12268
12269         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
12270         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
12271         Added two more colorspaces.
12272
12273 2004-11-05  Wim Taymans  <wim@fluendo.com>
12274
12275         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12276         (gst_ffmpegcsp_avpicture_fill):
12277         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12278         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
12279         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
12280         More stride fixes.
12281
12282 2004-11-05  Wim Taymans  <wim@fluendo.com>
12283
12284         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
12285         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
12286         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12287         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
12288         (gst_videomixer_loop):
12289         More stride fixes.
12290
12291 2004-11-05  Benjamin Otte  <otte@gnome.org>
12292
12293         * ext/mad/gstmad.c: (gst_mad_chain):
12294           don't overflow data buffer. Flush not needed sync data when syncing
12295           failed.
12296
12297 2004-11-04  Wim Taymans  <wim@fluendo.com>
12298
12299         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12300         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
12301         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
12302         (gst_alpha_init_params), (gst_alpha_chain),
12303         (gst_alpha_change_state):
12304         Updated the chroma keying algorithm with something more
12305         sophisticated.
12306
12307 2004-11-03  Wim Taymans  <wim@fluendo.com>
12308
12309         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12310         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12311         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12312         Fix stride issues. Does not completely work for odd
12313         heights.
12314
12315 2004-11-03  Wim Taymans  <wim@fluendo.com>
12316
12317         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12318         (gst_alpha_chroma_key), (gst_alpha_chain):
12319         Fix stride issues. Does not completely work for odd
12320         heights.
12321
12322 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
12323
12324         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
12325         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
12326         leak fixes
12327
12328 2004-11-03  Wim Taymans  <wim@fluendo.com>
12329
12330         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12331         (gst_ffmpegcsp_avpicture_fill):
12332         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12333         (avpicture_alloc):
12334         * gst/ffmpegcolorspace/imgconvert_template.h:
12335         Use correct _fill function to get correct strides.
12336
12337 2004-11-02  David Schleef  <ds@schleef.org>
12338
12339         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
12340         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
12341         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
12342         Change all g_print()s to debugging.  Add a bunch of consistency
12343         checks.
12344
12345 2004-11-02  Wim Taymans  <wim@fluendo.com>
12346
12347         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12348         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
12349         (unlinked), (no_more_pads), (close_link):
12350         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12351         (unknown_type), (add_element_stream), (new_decoded_pad),
12352         (removed_decoded_pad), (setup_source):
12353         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
12354         (gst_stream_info_class_init), (gst_stream_info_init),
12355         (gst_stream_info_new), (gst_stream_info_dispose),
12356         (stream_info_mute_pad), (gst_stream_info_set_property),
12357         (gst_stream_info_get_property):
12358         * gst/playback/gststreaminfo.h:
12359         Fix playback of multiple files.
12360         a slightly different approach to handling dynamic pad removals.
12361         This one only looks at pads that we have linked.
12362
12363 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
12364
12365         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
12366         free" warning from libc.
12367
12368 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12369
12370         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12371         (get_unconnected_element), (remove_starting_from), (pad_removed),
12372         (close_link):
12373           Implement support for dynamic pad changing. We listen to "live"
12374           pad removals (i.e. while playing) and re-setup autoplugging
12375           after that. Playbasebin/playbin need some more work for this
12376           to finally work, but decodebin supports (and replugs) chained
12377           ogg now.
12378
12379 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
12380
12381         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
12382         (gst_alsa_finalize):
12383         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
12384         (gst_cdaudio_finalize):
12385         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
12386         (cdparanoia_finalize):
12387         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
12388         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
12389         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
12390         (dvdreadsrc_finalize):
12391         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
12392         (gst_flacdec_finalize):
12393         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
12394         (gst_flacenc_finalize):
12395         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
12396         (gst_gnomevfssink_finalize):
12397         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
12398         (gst_gnomevfssrc_finalize):
12399         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
12400         (gst_fameenc_finalize):
12401         * ext/nas/nassink.c: (gst_nassink_class_init),
12402         (gst_nassink_finalize):
12403         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
12404         (gst_sdlvideosink_class_init):
12405         * ext/sndfile/gstsf.c: (gst_sf_dispose):
12406         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
12407         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
12408         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
12409         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
12410         (gst_x_window_listener_dispose):
12411         * gst/audioscale/gstaudioscale.c:
12412         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
12413         (play_on_demand_finalize):
12414         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
12415         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
12416         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
12417         (cdplayer_finalize):
12418         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
12419         (gst_glimagesink_class_init):
12420         * sys/oss/gstosselement.c: (gst_osselement_class_init),
12421         (gst_osselement_finalize):
12422         * sys/oss/gstosssink.c: (gst_osssink_dispose):
12423         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
12424         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
12425           Fixes a bunch of problems with finalize and dispose functions,
12426           either assumptions that dispose is only called once, or not calling
12427           the parent class dispose/finalize function
12428
12429 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
12430
12431         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
12432           added two api precondition guards
12433           use g_strdup with getenv to fix crash when using ENVVAR
12434
12435 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
12436         * ext/esd/esdsink.c: (gst_esdsink_class_init),
12437         (gst_esdsink_finalize):
12438         Use a finalize function, not dispose, and more importantly,
12439         call the parent class finalize function too
12440
12441 2004-11-01  Johan Dahlin  <johan@gnome.org>
12442
12443         * ext/ogg/gstoggdemux.c:
12444         * gst/tags/gstvorbistag.c:
12445         Plug leaks.
12446
12447 2004-10-31  Benjamin Otte  <otte@gnome.org>
12448
12449         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
12450           lotsa memleaks today. But they're all small...
12451
12452 2004-10-31  Benjamin Otte  <otte@gnome.org>
12453
12454         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12455           another memleak crushed
12456
12457 2004-10-31  Benjamin Otte  <otte@gnome.org>
12458
12459         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
12460           fix memleak
12461
12462 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12463
12464         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12465           Hack to prevent crash when going to READY inside signal handler
12466           while this function is active.
12467
12468 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12469
12470         * gst/ffmpegcolorspace/Makefile.am:
12471         * gst/ffmpegcolorspace/avcodec.h:
12472         * gst/ffmpegcolorspace/common.h:
12473         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
12474         * gst/ffmpegcolorspace/dsputil.h:
12475         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
12476         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12477         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
12478         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
12479         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
12480         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
12481         (gst_ffmpegcsp_avpicture_fill):
12482         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
12483         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12484         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
12485         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
12486         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
12487         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
12488         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
12489         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
12490         * gst/ffmpegcolorspace/imgconvert.c:
12491         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
12492         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
12493         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
12494         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
12495         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
12496         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
12497         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
12498         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
12499         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
12500         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
12501         (grow21), (grow22), (grow41), (grow44), (conv411),
12502         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
12503         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
12504         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
12505         (avpicture_free), (is_yuv_planar), (img_convert),
12506         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
12507         (deinterlace_line_inplace), (deinterlace_bottom_field),
12508         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
12509         * gst/ffmpegcolorspace/imgconvert_template.h:
12510         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
12511         * gst/ffmpegcolorspace/mmx.h:
12512         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
12513         (av_fast_realloc), (av_mallocz_static), (av_free_static),
12514         (av_freep), (avcodec_get_context_defaults),
12515         (avcodec_alloc_context), (avcodec_init):
12516           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
12517           handling plus update from ffmpeg CVS. Large clean-up.
12518
12519 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12520
12521         * gst/playback/Makefile.am:
12522           We need the marshallers for decodebin, too.
12523
12524 2004-10-30  David Schleef  <ds@schleef.org>
12525
12526         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
12527           quicktime typefinding work with 64-bit offsets.
12528
12529 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
12530
12531         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
12532           Set EOS on the element when processing an EOS event.
12533         * ext/speex/gstspeexdec.h:
12534         * ext/speex/gstspeexenc.h:
12535           Only keep a const ptr to the mode
12536         * gst-libs/gst/riff/riff-media.c:
12537         (gst_riff_create_audio_caps_with_data),
12538         (gst_riff_create_audio_template_caps):
12539           Allow WMAV3, with up to 6 channels.
12540         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
12541           Don't call gst_pad_set_event_function on a sink pad.
12542         * gst/mpegstream/gstdvddemux.c:
12543         (gst_dvd_demux_get_subpicture_stream),
12544         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
12545           Copy the explicit caps that were set across to the cur_* pads,
12546           instead of trying to use a possibly non-existent negotiated caps.
12547           Reset the type of subpicture pads to UNKNOWN after calling
12548           init_stream, so that the caps get set.
12549
12550 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
12551
12552         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12553
12554         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
12555           Don't touch buffer if it is of size 0 (fixes #151064).
12556
12557 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12558
12559         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
12560           Synchronized discont handling.
12561
12562 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12563
12564         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
12565         (gst_ogg_demux_push):
12566           Make seeking sort-of exact again (fixes #156387).
12567
12568 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12569
12570         * gst/playback/gstplaybasebin.c: (unknown_type),
12571         (add_element_stream), (new_decoded_pad),
12572         (gst_play_base_bin_change_state):
12573         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
12574         (gst_stream_info_init), (gst_stream_info_new),
12575         (gst_stream_info_dispose), (gst_stream_info_get_property):
12576         * gst/playback/gststreaminfo.h:
12577           Make caps explicitely available. Makes testing for unsupported
12578           types possible. Improves error reporting.
12579
12580 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12581
12582         * gst/audioconvert/gstaudioconvert.c:
12583         (gst_audio_convert_buffer_to_default_format):
12584           Really don't touch read-only buffers (#156563).
12585
12586 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
12587
12588         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12589
12590         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
12591           Fix memleak (#155223).
12592
12593 2004-10-29  Wim Taymans  <wim@fluendo.com>
12594
12595         * gst/tcp/.cvsignore:
12596         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12597         (gst_multifdsink_class_init), (gst_multifdsink_init),
12598         (gst_multifdsink_add), (gst_multifdsink_remove),
12599         (gst_multifdsink_remove_client_link), (is_sync_frame),
12600         (gst_multifdsink_new_client),
12601         (gst_multifdsink_handle_client_write),
12602         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
12603         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
12604         (gst_multifdsink_get_property):
12605         * gst/tcp/gstmultifdsink.h:
12606         Added burst on connect sync_method, deprecated sync_clients,
12607         streamlined the sync code some more.
12608
12609 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12610
12611         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
12612         (gst_play_base_bin_change_state):
12613           Improve error reporting.
12614
12615 2004-10-28  Wim Taymans  <wim@fluendo.com>
12616
12617         * gst/tcp/Makefile.am:
12618         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
12619         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
12620         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
12621         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
12622         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
12623         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
12624         (gst_fdset_wait):
12625         Added more locks around fdset structures. Fixed/reworked
12626         the poll array resizing code.
12627         Added stress test for fdset.
12628
12629 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12630
12631         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
12632         fix build
12633
12634 2004-10-28  Benjamin Otte  <otte@gnome.org>
12635
12636         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
12637           fix link function to always query channels and query width for
12638           floats
12639         * configure.ac:
12640           add equalizer dir
12641         * gst/equalizer/Makefile.am:
12642         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
12643         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
12644         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
12645         (arg_to_scale), (setup_filter),
12646         (gst_iir_equalizer_compute_frequencies),
12647         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
12648         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
12649         (plugin_init):
12650           add an equalizer
12651
12652 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12653
12654         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
12655
12656         * po/LINGUAS:
12657         * po/nb.po:
12658           Added Norwegian Bokmaal translation
12659
12660 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12661
12662         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12663           Don't break on options (fixes #156488).
12664
12665 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12666
12667         * configure.ac:
12668         * ext/cdaudio/Makefile.am:
12669         * sys/Makefile.am:
12670           fix build on older automake
12671
12672 2004-10-26  Wim Taymans  <wim@fluendo.com>
12673
12674         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
12675         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
12676         Allow a little margin when negotiating the framerate.
12677
12678 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
12679
12680         * gst/level/gstlevel.c:
12681           synchonised naming of pads and pad-templates
12682
12683 2004-10-26  Wim Taymans  <wim@fluendo.com>
12684
12685         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
12686         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
12687         (_find_streams_check), (gst_ogg_demux_push):
12688         Fix EOS again. Needs to be done in a better way. We should not
12689         remove the pad if there is no new chained stream.
12690
12691 2004-10-26 Iain <iaingnome@gmail.com>
12692
12693         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
12694         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
12695         of the caps.
12696         * gst/interleave/interleave.c (interleave_class_init): Hook up release
12697         pad.
12698         (interleave_release_pad): Remove the pad.
12699         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
12700         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
12701         the set device.
12702         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
12703         attrs
12704         (gst_xvimagesink_xcontext_clear): Free the xcontext.
12705         (gst_xvimagesink_finalize): Free the par.
12706
12707 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12708
12709         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
12710         (gst_avimux_stop_file):
12711           First calculate the rate, and only then use it. Hdr.rate is a
12712           multiple and not a derivative of hdr.scale. Scale is not the
12713           same as blockalign but is solely related to rate.
12714
12715 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12716
12717         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12718         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
12719           Implement seeking.
12720
12721 2004-10-25  James Henstridge  <james@jamesh.id.au>
12722
12723         Reviewed by:  David Schleef  <ds@schleef.org>
12724
12725         * examples/gstplay/player.c: (got_stream_length), (main):
12726         * examples/seeking/cdplayer.c: (update_scale):
12727         * examples/seeking/seek.c: (format_value), (update_scale):
12728         * examples/seeking/spider_seek.c: (format_value), (update_scale),
12729         (stop_seek):
12730         Build fixes on AMD64.
12731
12732 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12733
12734         reviewed by: Ronald Bultje <rbultje at gnome dot org>
12735
12736         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
12737         Fix for some v4l cards which hang in v4lsrc
12738
12739 2004-10-25  Wim Taymans  <wim@fluendo.com>
12740
12741         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
12742         (gst_ogg_demux_push), (gst_ogg_chains_clear):
12743         Make sure to remove the pad when a new chain is
12744         encountered. Set some vars to NULL so we don't try
12745         to reference freed memory.
12746
12747 2004-10-25  Wim Taymans  <wim@fluendo.com>
12748
12749         * examples/seeking/Makefile.am:
12750         * examples/seeking/cdplayer.c: (update_scale):
12751         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
12752         * examples/seeking/playbin.c: (make_playerbin_pipeline),
12753         (format_value), (update_scale), (iterate), (start_seek),
12754         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
12755         (print_usage), (main):
12756         Added some more examples, update others.
12757
12758 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12759
12760         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
12761         * ext/speex/gstspeexdec.c: (speex_dec_chain):
12762         * ext/theora/theoradec.c: (theora_dec_chain):
12763         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12764           Add codec-name metadata.
12765
12766 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
12767
12768         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12769
12770         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12771         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
12772         * ext/alsa/gstalsamixertrack.h:
12773         * po/POTFILES.in:
12774           ALSA mixer track label internationalization (#154054).
12775
12776 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12777
12778         * ext/theora/theoradec.c: (theora_dec_chain):
12779           Export bitrate as metadata.
12780
12781 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12782
12783         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12784         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
12785         * ext/alsa/gstalsamixertrack.h:
12786           Fix names, fix loop.
12787
12788 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12789
12790         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
12791         (speex_dec_convert):
12792           sinkconvert function so oggdemux can get the file length (totem).
12793
12794 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
12795
12796         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12797
12798         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
12799           Don't push incomplete packets.
12800         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
12801           Fix MPEG-4 audio typefinding.
12802
12803 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12804
12805         * sys/v4l/Makefile.am:
12806         * sys/v4l/gstv4l.c: (plugin_init):
12807         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
12808         (gst_v4lelement_init), (gst_v4lelement_dispose),
12809         (gst_v4lelement_change_state):
12810         * sys/v4l/gstv4lelement.h:
12811         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
12812         (gst_v4l_xoverlay_close), (idle_refresh),
12813         (gst_v4l_xoverlay_set_xwindow_id):
12814         * sys/v4l/gstv4lxoverlay.h:
12815         * sys/v4l/v4l-overlay_calls.c:
12816         * sys/v4l/v4l_calls.h:
12817         * sys/v4l2/Makefile.am:
12818         * sys/v4l2/gstv4l2.c: (plugin_init):
12819         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
12820         (gst_v4l2element_init), (gst_v4l2element_dispose),
12821         (gst_v4l2element_change_state):
12822         * sys/v4l2/gstv4l2element.h:
12823         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
12824         (gst_v4l2_xoverlay_close), (idle_refresh),
12825         (gst_v4l2_xoverlay_set_xwindow_id):
12826         * sys/v4l2/gstv4l2xoverlay.h:
12827         * sys/v4l2/v4l2-overlay_calls.c:
12828         * sys/v4l2/v4l2_calls.h:
12829           Remove client-side overlay handling, use the X-server v4l plugin
12830           for that. Nicer overlay, less code. Also make the plugin
12831           compileable without X (but then without overlay, obviously).
12832           Makes xwindowlistener obsolete, should we remove that?
12833
12834 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12835
12836         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
12837         (gst_osssrc_src_query):
12838         * sys/oss/gstosssrc.h:
12839           OK, so people want offset in DEFAULT. This time, actually fix all
12840           cases.
12841         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
12842           Add FPS properly.
12843
12844 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12845
12846         * gst/asfdemux/gstasfmux.c:
12847         * gst/avi/gstavimux.c:
12848           Framerate.
12849
12850 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12851
12852         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
12853           Fix properties (channel, norm, frequency).
12854
12855 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12856
12857         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
12858           Flag typo.
12859         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
12860           No warnings.
12861
12862 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12863
12864         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
12865           Fix hang.
12866
12867 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12868
12869         * sys/v4l2/gstv4l2element.h:
12870           Yet Another Hack (tm) for kernel header borkedness.
12871         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
12872         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
12873         (gst_v4l2src_link), (gst_v4l2src_getcaps),
12874         (gst_v4l2src_change_state):
12875         * sys/v4l2/gstv4l2src.h:
12876         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
12877         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
12878           Fix caps, keep track of state, work.
12879
12880 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12881
12882         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
12883           Quiet.
12884
12885 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12886
12887         * sys/oss/gstosssrc.c: (gst_osssrc_get):
12888           Don't mix bytes and samples.
12889
12890 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12891
12892         * ext/ogg/gstoggmux.c:
12893           Basic pad template which accepts OGM tracks, speex, flac, vorbis
12894           and theora. Any is incorrect.
12895         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
12896           Fix caps.
12897         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
12898         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
12899         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
12900         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
12901         * sys/v4l/gstv4lmjpegsrc.h:
12902         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
12903         (gst_v4lsrc_change_state):
12904         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
12905         (gst_v4lmjpegsrc_capture_stop):
12906           Fix caps. Keep track of internal state. Work.
12907
12908 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12909
12910         * ext/Makefile.am:
12911           Fix the build fixes.
12912
12913 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12914
12915         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12916         (gst_ogg_demux_src_event), (_find_chain_seek),
12917         (gst_ogg_pad_push):
12918           Check for pad availability before using it.
12919         * ext/ogg/gstoggdemux.c: (_find_chain_process):
12920           Fix parsing of chained ogg. Needs more work on the decoder side.
12921
12922 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12923
12924         * gst/spectrum/Makefile.am:
12925         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
12926         (idle_func):
12927           Fix demo and reenable it. Yes, I'm currently playing with audio
12928           analysis tools
12929
12930 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12931
12932         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12933           We love it if files that start at zero work too...
12934
12935 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12936
12937         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
12938           Handle files with missing EOS headers.
12939
12940 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12941
12942         * gst/tcp/gsttcpserversink.c:
12943         (gst_tcpserversink_handle_server_read),
12944         (gst_tcpserversink_init_send):
12945         Zero some variables first (need for accept not to return EINVAL)
12946
12947 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12948
12949         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12950         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
12951         * ext/theora/theoradec.c: (theora_dec_sink_convert),
12952         (theora_dec_chain):
12953         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
12954         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
12955           Seeking and querying finetune.
12956
12957 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12958
12959         * configure.ac:
12960         * ext/Makefile.am:
12961         * ext/raw1394/Makefile.am:
12962           fix the build
12963
12964 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12965
12966         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
12967           Wrong return.
12968         * gst/playback/Makefile.am:
12969         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
12970         * gst/playback/gstplay-marshal.list:
12971         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
12972           Fix marshallers.
12973
12974 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12975
12976         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
12977           Silence.
12978
12979 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12980
12981         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12982         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
12983         (gst_ogg_pad_push):
12984           Yay for non-lineair granulepos in theora.
12985
12986 2004-10-18  Wim Taymans  <wim@fluendo.com>
12987
12988         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
12989         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
12990         * ext/dv/gstdvdec.h:
12991         Make sure we renegotiate aspect ratio when the camera switches.
12992
12993 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12994
12995         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12996         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
12997           Start at zero.
12998         * ext/theora/theoradec.c: (theora_dec_chain):
12999           Skip headers. Bad idea for chained ogg, but fixes seeking.
13000
13001 2004-10-18  Wim Taymans  <wim@fluendo.com>
13002
13003         * configure.ac:
13004         I swear, this is the last time I touch this.
13005
13006 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13007
13008         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13009         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
13010         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
13011           Faster seeking.
13012         * ext/theora/theoradec.c: (theora_dec_sink_convert):
13013           Time-to-default conversion.
13014         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13015           Don't error on unknown packets, just skip. We should probably
13016           read them if we want to support chained ogg.
13017
13018 2004-10-18  Wim Taymans  <wim@fluendo.com>
13019
13020         * configure.ac:
13021         Added cdaudio to wrong list.
13022
13023 2004-10-18  Wim Taymans  <wim@fluendo.com>
13024
13025         * configure.ac:
13026         Revive cdaudio.
13027
13028 2004-10-18  Wim Taymans  <wim@fluendo.com>
13029
13030         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
13031         (gst_dvdec_video_link), (gst_dvdec_push):
13032         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13033         (gst_smokeenc_resync), (gst_smokeenc_chain):
13034         Fix mimetype on smoke encoder.
13035         Add aspect ratio to dvdec. Not sure if these
13036         values are correct though....
13037
13038 2004-10-18  Wim Taymans  <wim@fluendo.com>
13039
13040         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
13041         Fix vorbis property descriptions and ranges.
13042
13043 2004-10-18  Wim Taymans  <wim@fluendo.com>
13044
13045         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
13046         Really do nothing when no data is available.
13047         Go to the playing state when the stream is not seekable
13048         instead of failing.
13049
13050 2004-10-18  Wim Taymans  <wim@fluendo.com>
13051
13052         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
13053         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
13054         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
13055         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
13056         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
13057         Added uri handler for cd://
13058         Port to new API.
13059
13060 2004-10-18  Wim Taymans  <wim@fluendo.com>
13061
13062         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13063         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13064         (try_to_link_1), (no_more_pads), (close_link), (type_found):
13065         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13066         (remove_prerolls), (unknown_type), (add_element_stream),
13067         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
13068         (gst_play_base_bin_remove_element),
13069         (gst_play_base_bin_link_stream):
13070         * gst/playback/gstplaybin.c: (gen_video_element),
13071         (gen_vis_element), (remove_sinks), (setup_sinks):
13072         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13073         (gst_stream_info_get_type), (gst_stream_info_class_init),
13074         (gst_stream_info_init), (gst_stream_info_new),
13075         (gst_stream_info_dispose), (stream_info_mute_pad),
13076         (gst_stream_info_set_property), (gst_stream_info_get_property):
13077         * gst/playback/gststreaminfo.h:
13078         Add sink padtemplate to decodebin.
13079         Added some more comments.
13080         Make queue size configurable in playbasebin.
13081         Added possibility to use elements as sinks (ex cdaudio).
13082
13083 2004-10-15  Wim Taymans  <wim@fluendo.com>
13084
13085         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
13086         (gst_speexenc_chain):
13087         Fix speex timestamps so that it gets muxed properly.
13088
13089 2004-10-15  Wim Taymans  <wim@fluendo.com>
13090
13091         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
13092         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
13093         (gst_dv1394src_init), (gst_dv1394src_dispose),
13094         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
13095         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
13096         (gst_dv1394src_event), (gst_dv1394src_get_formats),
13097         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
13098         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
13099         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
13100         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
13101         * ext/raw1394/gstdv1394src.h:
13102         Added conversion/query functions.
13103         Update buffer timestamps,
13104         Added signals.
13105         Added uri dv:// so it might play from the firewire in playbin.
13106         Fix a possible leak.
13107         Added debugging.
13108
13109 2004-10-15  Wim Taymans  <wim@fluendo.com>
13110
13111         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
13112         (gst_dv1394src_init), (gst_dv1394src_set_property),
13113         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
13114         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
13115         * ext/raw1394/gstdv1394src.h:
13116         Added AV/C VTR control support needed for some cameras.
13117         Added automatic port detection.
13118         Added properties for selecting the channel.
13119         The configure.ac script is not yet updated to reflect the
13120         new libavc1394 and librom1394 dependencies.
13121
13122 2004-10-15  Wim Taymans  <wim@fluendo.com>
13123
13124         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
13125         (qtdemux_parse), (gst_qtdemux_handle_esds):
13126         An esds box is not a container.
13127         Fix parsing of mp4v boxes.
13128         Do not try to renegotiate fps for each frame. Need to
13129         find a better method. This should fix mp4 playback.
13130
13131 2004-10-14  David Schleef  <ds@schleef.org>
13132
13133         * configure.ac: update for swfdec-0.3 and liboil-0.2
13134         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
13135         * ext/swfdec/gstswfdec.h: same
13136         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
13137         * gst/videotestsrc/videotestsrc.c: same
13138
13139 2004-10-14  Wim Taymans  <wim@fluendo.com>
13140
13141         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13142         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
13143         (is_sync_frame), (gst_multifdsink_new_client),
13144         (gst_multifdsink_handle_client_write),
13145         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13146         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
13147         Turn warnings into info.
13148         Don't allow a state change in the streaming thread.
13149
13150 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13151
13152         * ext/vorbis/oggvorbisenc.c:
13153         * ext/vorbis/vorbisdec.c:
13154           fix template sample rate
13155
13156 2004-10-13  Wim Taymans  <wim@fluendo.com>
13157
13158         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
13159         Decoding the header first fixes some problems in resyncing
13160         in more mp3s.
13161
13162 2004-10-12  Wim Taymans  <wim@fluendo.com>
13163
13164         * gst/playback/gstplaybin.c: (gen_video_element),
13165         (gen_vis_element), (remove_sinks), (setup_sinks):
13166         Added vis plugin support, need to configure the vis
13167         element to activate it.
13168
13169 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13170
13171         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
13172         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
13173           Some debug.
13174         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13175         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
13176         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
13177         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
13178         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
13179         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
13180         * gst/avi/gstavidemux.h:
13181           Support for openDML-2.0 indx/ix## chunks. Support for broken index
13182           recovery (where, if part of the index is broken, we will still read
13183           the rest of the index and recover the broken part by stream
13184           scanning). More broken media support. EOS workarounds. General AVI
13185           braindamage headache recovery. Aspirin included.
13186
13187 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13188
13189         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
13190         (cdparanoia_event), (cdparanoia_query):
13191           Get rid of hideous lead-in.
13192
13193 2004-10-11  Wim Taymans  <wim@fluendo.com>
13194
13195         * gst/playback/gstplaybasebin.c: (setup_source):
13196         Wrong var used to get g_list_next.
13197
13198 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13199
13200         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
13201         (cdparanoia_get), (cdparanoia_open):
13202           Report discid as metadata, add duration.
13203
13204 2004-10-11  Wim Taymans  <wim@fluendo.com>
13205
13206         * gst/playback/gstplaybasebin.c: (setup_source):
13207         Cleanup the previous pipeline a little earlier for the
13208         case that a source element provides raw data.
13209
13210 2004-10-11  Benjamin Otte  <otte@gnome.org>
13211
13212         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
13213           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
13214           consuming the last 128 bytes, even though it was valid mp3 data.
13215
13216 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13217
13218         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
13219         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
13220         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
13221         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
13222
13223 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13224
13225         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
13226         Fix for webcams that support only specific width or height
13227
13228 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13229
13230         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13231
13232         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
13233           Fix wrong discont event setup (fixes #154967).
13234
13235 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
13236
13237         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13238
13239         * gst/auparse/gstauparse.c: (gst_auparse_chain):
13240           Error out on invalid data (fixes #154807).
13241
13242 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13243
13244         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13245
13246         * ext/dvdread/dvdreadsrc.c: (_read):
13247           Make titles > 0 work again (fixes #154834).
13248
13249 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13250
13251         * gst-libs/gst/riff/riff-media.c:
13252         (gst_riff_create_video_template_caps):
13253           WMV3 missing in template caps.
13254
13255 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13256
13257         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13258           OK, so the original code was too strict. It makes random AVI files
13259           hang for seconds upon opening, which is unacceptable and is far
13260           beyond the original goal of getting multiple chunks for one-chunk
13261           sounc stream files. So now do just that.
13262
13263 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13264
13265         * gst/playback/gstplaybasebin.c: (setup_source),
13266         (gst_play_base_bin_change_state):
13267           Actually clean up streaminfo if output fails. This would trigger
13268           if, for example, there was no CD in the drive. No preroll, so
13269           a streaminfo structure is created, but the subsequent state change
13270           of the thread fails.
13271         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
13272           Don't change state if parent failed.
13273
13274 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13275
13276         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13277         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
13278         (gen_video_element), (remove_sinks):
13279           Add small bits of code for screenshot handling.
13280
13281 2004-10-08  Wim Taymans  <wim@fluendo.com>
13282
13283         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
13284         (gen_video_element), (gen_audio_element), (setup_sinks):
13285         Don't assume the user provided sinks are named "sink"...
13286
13287 2004-10-08  Wim Taymans  <wim@fluendo.com>
13288
13289         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13290         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
13291         (gst_play_base_bin_link_stream):
13292         Do not try to autoplug sources that generate raw streams like
13293         cdparanoia.
13294         disconnect the preroll overrun signal when we don't need it anymore.
13295
13296 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
13297
13298         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13299         Added reworked patch from #154903 from milosz derezynski (deadchip).
13300
13301 2004-10-08  Wim Taymans  <wim@fluendo.com>
13302
13303         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13304         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
13305         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
13306         (cdparanoia_convert), (cdparanoia_uri_get_type),
13307         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
13308         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
13309         * ext/cdparanoia/gstcdparanoia.h:
13310         This adds the cdda://<tracknum> uri.
13311
13312 2004-10-08  Wim Taymans  <wim@fluendo.com>
13313
13314         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13315         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13316         (try_to_link_1), (no_more_pads), (close_link), (type_found):
13317         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13318         (unknown_type), (gst_play_base_bin_remove_element),
13319         (gst_play_base_bin_link_stream):
13320         * gst/playback/gstplaybasebin.h:
13321         * gst/playback/gstplaybin.c: (gst_play_bin_init),
13322         (gst_play_bin_set_property), (gen_video_element),
13323         (gen_audio_element), (setup_sinks):
13324         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13325         (gst_stream_info_get_type), (gst_stream_info_class_init),
13326         (gst_stream_info_init), (gst_stream_info_new),
13327         (gst_stream_info_dispose), (stream_info_mute_pad),
13328         (gst_stream_info_set_property), (gst_stream_info_get_property):
13329         * gst/playback/gststreaminfo.h:
13330         Reuse the audio and video bins.
13331         Some internal cleanups in the stream selection code.
13332
13333 2004-10-08  Julien MOUTTE  <julien@moutte.net>
13334
13335         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13336         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13337         * sys/ximage/ximagesink.h:
13338         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13339         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13340         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
13341         not coming from those elements. Moreover these elements should not keep
13342         the xid they have been given when in NULL state.
13343
13344 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13345
13346         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13347         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13348         * sys/ximage/ximagesink.h:
13349         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13350         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13351         * sys/xvimage/xvimagesink.h:
13352           Actually only create a new toplevel window if we're not gonna
13353           embed it right after.
13354
13355 2004-10-07  Wim Taymans  <wim@fluendo.com>
13356
13357         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
13358         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
13359         * gst/playback/gstplaybin.c: (setup_sinks):
13360         Implement muting/unmuting of streams, mute streams that are not
13361         used.
13362
13363 2004-10-07  Wim Taymans  <wim@fluendo.com>
13364
13365         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
13366         (plugin_init):
13367         Added lame audio/x-ac3 typefind function.
13368
13369 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13370
13371         * configure.ac:
13372           bump nano to cvs
13373
13374 === release 0.8.5 ===
13375
13376 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13377
13378         * NEWS:
13379         * RELEASE:
13380         * configure.ac:
13381           releasing 0.8.5, "Take You On"
13382
13383 2004-10-06  Wim Taymans  <wim@fluendo.com>
13384
13385         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13386         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
13387         (no_more_pads), (close_link), (type_found):
13388         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13389         * gst/playback/gstplaybin.c: (gen_video_element):
13390         Do not signal the no_more_pads after the first pad when
13391         we are plugging a non dynamic element with multiple
13392         output pads (like swfdec, dvdec, ...).
13393
13394 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13395
13396         * configure.ac:
13397           bump for prerelease
13398
13399 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13400
13401         * gst/wavparse/gstwavparse.c:
13402           add ATRAC3 to STATIC CAPS to fix a warning
13403
13404         * gst/matroska/ebml-read.c:
13405         * gst-libs/gst/riff/riff-read.c:
13406           fix typos
13407
13408 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13409
13410         * gst-libs/gst/riff/riff-media.c:
13411           generate caps for ATRAC3 audio streams
13412
13413         * gst/realmedia/rmdemux.c:
13414           generate caps for ATRAC3 audio streams
13415
13416 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13417
13418         * gst/wavparse/Makefile.am
13419         * gst/wavparse/riff.h
13420         * gst/wavparse/wavparse.vcproj
13421           riff.h removal (unused and duplication with riff-ids.h)
13422
13423 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13424
13425         * gst/wavparse/gstwavparse.h
13426           remove duplicated defines for audio codec codes
13427
13428         * gst-libs/gst/riff/riff-ids.h
13429         * gst/wavenc/riff.h:
13430           add "4CC" code for ATRAC3 audio streams
13431           add "4CC" code for ITU_G721_ADPCM (unused for now)
13432
13433 2004-10-06  Wim Taymans  <wim@fluendo.com>
13434
13435         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
13436         Actually _do_ negotiation. Pass gdouble as arg instead
13437         of guint64 for the framerate.
13438
13439 2004-10-06  Wim Taymans  <wim@fluendo.com>
13440
13441         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13442         (find_compatibles), (close_pad_link), (try_to_link_1),
13443         (no_more_pads), (close_link), (type_found):
13444         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13445         * gst/playback/gstplaybin.c: (gen_video_element),
13446         (gen_audio_element):
13447         Set state on newly added element to READY so that negotiation
13448         can happen ASAP.
13449         Addes some more debug info.
13450         Do not try to plug pads with multiple caps structures or ANY
13451         because it is too dangerous since we do not do dynamic
13452         replugging.
13453
13454 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13455
13456         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
13457
13458         * po/LINGUAS:
13459         * po/or.po:
13460           add Oriya translation
13461
13462 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13463
13464         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13465           Prevent overwrite of size member. Makes audio sound crappy.
13466
13467 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13468
13469         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13470         Add rmvb to the list of known RealMedia extensions
13471
13472 2004-10-05  Wim Taymans  <wim@fluendo.com>
13473
13474         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
13475         (mngdec_openstream), (mngdec_closestream),
13476         (mngdec_handle_sink_event), (mngdec_readdata),
13477         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
13478         (mngdec_getcanvasline), (mngdec_refresh),
13479         (gst_mngdec_change_state):
13480         Set the framerate correctly.
13481
13482 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13483
13484         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13485           There was something wrong with the index massaging.
13486
13487 2004-10-04  Wim Taymans  <wim@fluendo.com>
13488
13489         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
13490         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
13491         (gst_smokedec_chain):
13492         * ext/jpeg/gstsmokedec.h:
13493         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13494         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
13495         * ext/jpeg/gstsmokeenc.h:
13496         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
13497         (smokecodec_decode_new), (smokecodec_info_free),
13498         (smokecodec_set_quality), (smokecodec_get_quality),
13499         (smokecodec_set_threshold), (smokecodec_get_threshold),
13500         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
13501         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
13502         (smokecodec_encode), (smokecodec_parse_id),
13503         (smokecodec_parse_header), (smokecodec_decode):
13504         * ext/jpeg/smokecodec.h:
13505         * ext/jpeg/smokeformat.h:
13506         Updated smoke, new bitstream, allows embedding in ogg.
13507
13508 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13509
13510         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
13511           Fix seeking in some files. All this code is no longer needed (and
13512           actually breaks stuff) because we now synchronize the full index
13513           right when reading the header.
13514
13515 2004-10-04  Wim Taymans  <wim@fluendo.com>
13516
13517         * configure.ac:
13518         configure update for libmng.
13519
13520 2004-10-04  Wim Taymans  <wim@fluendo.com>
13521
13522         * ext/libmng/Makefile.am:
13523         * ext/libmng/gstmng.c: (plugin_init):
13524         * ext/libmng/gstmng.h:
13525         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
13526         (gst_mngdec_base_init), (gst_mngdec_class_init),
13527         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
13528         (gst_mngdec_loop), (gst_mngdec_get_property),
13529         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
13530         (mngdec_closestream), (mngdec_handle_sink_event),
13531         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
13532         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
13533         (gst_mngdec_change_state):
13534         * ext/libmng/gstmngdec.h:
13535         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
13536         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
13537         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
13538         (gst_mngenc_chain), (gst_mngenc_get_property),
13539         (gst_mngenc_set_property):
13540         * ext/libmng/gstmngenc.h:
13541         Added basic MNG decoder. Needs more work. The encoder does
13542         not work yet.
13543
13544 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13545
13546         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
13547         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
13548         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
13549           Don't hang on length=0 chunks. Some negotiation fixes. Signal
13550           no-more-pads.
13551
13552 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13553
13554         * configure.ac:
13555           you need at least 1.0.4 of speex
13556
13557 2004-10-04 Iain <iaingnome@gmail.com>
13558
13559         * ext/speex/gstspeexdec.h: Revert the includes changes.
13560
13561         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
13562
13563 2004-09-30 Iain <iaingnome@gmail.com>
13564
13565         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
13566         found during init or set as a property instead of hardcoding /dev/audio
13567
13568 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13569
13570         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
13571         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
13572         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
13573         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
13574         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
13575         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
13576         (gst_rmdemux_dump_data):
13577           Use debug category, fix EOS handling. filesrc ! rmdemux now
13578           works.
13579
13580 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13581
13582         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
13583         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
13584         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
13585           Improve allocation, cutting and sorting of the index. How takes a
13586           few seconds instead of minutes.
13587
13588 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
13589
13590         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
13591           fixed compilation
13592
13593 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13594
13595         * gst-libs/gst/riff/riff-media.c:
13596         (gst_riff_create_video_caps_with_data),
13597         (gst_riff_create_video_template_caps):
13598           Add wing commander format mimetype/fourccs.
13599         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13600           Don't crash if some value is 0.
13601
13602 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13603
13604         * gst-libs/gst/riff/riff-media.c:
13605         (gst_riff_create_video_caps_with_data),
13606         (gst_riff_create_video_template_caps):
13607           Add DIB fourcc (raw, palettized 8-bit RGB).
13608         * gst-libs/gst/riff/riff-read.c:
13609         (gst_riff_read_strf_vids_with_data):
13610           Oops, fix strf_data reading bug.
13611         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
13612           Use a non-NULL tag.
13613         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
13614           Time for hacks. Sorry Dave. At least one quicktime movie (a
13615           trailer) that I've encountered contains multiple video tracks.
13616           One of those is the actual video track, the other are one-frame
13617           tracks (images). Unfortunately, the number of frames according
13618           to the trak header is 1 for each, so that doesn't help. So
13619           instead, I look at the duration and discard tracks with a
13620           duration shorter than 20% of the length of the stream. Better
13621           than nothing.
13622
13623 2004-10-01  Christian Schaller <christian@fluendo.com>
13624
13625         * ext/ivorbis/vorbis.c:
13626           Patch from Phil Blundell (Bug 152341)
13627
13628 2004-10-01  Wim Taymans  <wim@fluendo.com>
13629
13630         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
13631         (speex_dec_get_formats), (speex_dec_convert),
13632         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
13633         (speex_dec_chain), (gst_speexdec_get_property),
13634         (gst_speexdec_set_property):
13635         Small cleanups.
13636
13637 2004-10-01  Wim Taymans  <wim@fluendo.com>
13638
13639         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
13640         (gst_wavparse_stream_init), (gst_wavparse_fmt),
13641         (gst_wavparse_other), (gst_wavparse_loop),
13642         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
13643         (gst_wavparse_srcpad_event):
13644         * gst/wavparse/gstwavparse.h:
13645         Added some more debugging info.
13646         Fix the case where the length of the file is 0.
13647         Make sure we seek to sample borders.
13648
13649 2004-10-01  Wim Taymans  <wim@fluendo.com>
13650
13651         * gst/playback/README:
13652         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
13653         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13654         (try_to_link_1), (no_more_pads), (close_link), (type_found):
13655         Add some debug info to decodebin, update README
13656
13657 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13658
13659         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
13660           Don't use g_print(); use GST_DEBUG().
13661
13662 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13663
13664         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13665         (gst_ogg_mux_queue_pads):
13666           Handle EOS properly.
13667
13668 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
13669
13670         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13671
13672         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
13673         (gst_faad_chain), (gst_faad_change_state):
13674         * ext/faad/gstfaad.h:
13675           Allow playback of raw (unframed) MPEG AAC files (#148993).
13676
13677 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
13678
13679         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13680
13681         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
13682           Throw error if we didn't recognize the stream. Fixes #152289.
13683
13684 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13685
13686         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
13687           Fix negotiation.
13688
13689 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
13690
13691         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13692
13693         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
13694           Fix memleak.
13695
13696 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
13697
13698         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13699
13700         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
13701           Solve #152805.
13702         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
13703           Solve 152806.
13704
13705 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13706
13707         * gst-libs/gst/riff/riff-media.c:
13708         (gst_riff_create_video_caps_with_data),
13709         (gst_riff_create_audio_caps_with_data):
13710           Add codec_data handling (like asfdemux used to do).
13711         * gst/asfdemux/gstasf.c: (plugin_init):
13712         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
13713         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
13714           Use riff-media for caps creation instead of our own (mostly
13715           broken) copy of its functions.
13716
13717 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13718
13719         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
13720           Don't actually error out if we get another return value than
13721           -EINVAL. Opposite to what I first thought, drivers have random
13722           return values for this, although -EINVAL is the expected return
13723           value. Since this is not fatal, we shouldn't use
13724           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
13725
13726 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13727
13728         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
13729         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
13730         (dvdreadsrc_get_property), (_open), (_seek), (_read),
13731         (dvdreadsrc_get), (dvdreadsrc_open_file),
13732         (dvdreadsrc_change_state):
13733           Fix. Don't do one big huge loop around the whole DVD, that will
13734           cache all data and thus eat sizeof(dvd) (several GB) before we
13735           see something.
13736         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
13737           Actually NULL'ify event after using it.
13738         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
13739         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
13740         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
13741         (gst_ebml_read_seek), (gst_ebml_read_skip):
13742           Handle events.
13743         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
13744         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
13745         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
13746           Fix timing (this will probably break if I seek using menus, but
13747           I didn't get there yet). VOBs and normal DVDs should now work.
13748           Add a mpeg2-only pad with high rank so this get autoplugged for
13749           MPEG-2 movies.
13750         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
13751         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
13752         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
13753         (gst_mpeg_demux_get_audio_stream),
13754         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
13755         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
13756           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
13757           MPEG-1 but use dvddemux for MPEG-2.
13758         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
13759         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
13760         (gst_mpeg_parse_parse_packhead):
13761           Timing. Only add pad template if it exists. Add sink template from
13762           class and not from ourselves. This means we will always use the
13763           correct sink template even if it is not the one defined in this
13764           file.
13765
13766 2004-09-29  Wim Taymans  <wim@fluendo.com>
13767
13768         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
13769         (gst_mpeg_demux_parse_pes):
13770         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
13771         Fix playback of mpeg again, timestamps where screwed up by
13772         patch 1.61.
13773
13774 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13775
13776         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
13777           Only return true if we actually filled something in. Prevents
13778           player applications from showing a random length for flac files.
13779         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
13780         (gst_riff_read_use_event), (gst_riff_read_handle_event),
13781         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
13782         (gst_riff_read_strf_vids_with_data),
13783         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
13784           OK, ok, so I implemented event handling. Apparently it's normal
13785           that we receive random events at random points without asking
13786           for it.
13787         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13788         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13789         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
13790         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
13791         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
13792         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13793         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
13794         * gst/avi/gstavidemux.h:
13795           Implement non-lineair chunk handling and subchunk processing.
13796           The first solves playback of AVI files where the audio and video
13797           data of individual buffers that we read are not synchronized.
13798           This should not happen according to the wonderful AVI specs, but
13799           of course it does happen in reality. It is also a prerequisite for
13800           the second. Subchunk processing allows us to cut chunks in small
13801           pieces and process each of these pieces separately. This is
13802           required because I've seen several AVI files with incredibly large
13803           audio chunks, even some files with only one audio chunk for the
13804           whole file. This allows for proper playback including seeking.
13805           This patch is supposed to fix all AVI A/V sync issues.
13806         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
13807         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
13808           Work.
13809         * gst/modplug/gstmodplug.cc:
13810           Proper return value setting for the query() function.
13811         * gst/playback/gstplaybasebin.c: (setup_source):
13812           Being in non-playing state (after, e.g., EOS) is not necessarily
13813           a bad thing. Allow for that. This fixes playback of short files.
13814           They don't actually playback fully now, because the clock already
13815           runs. This means that small files (<500kB) with a small length
13816           (<2sec) will still not or barely play. Other files, such as mod
13817           or flx, will work correctly, however.
13818
13819 2004-09-28  Wim Taymans  <wim@fluendo.com>
13820
13821         * ext/speex/gstspeex.c: (plugin_init):
13822         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
13823         (gst_speex_dec_class_init), (speex_dec_get_formats),
13824         (speex_get_event_masks), (speex_get_query_types),
13825         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
13826         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
13827         (gst_speexdec_get_property), (gst_speexdec_set_property),
13828         (speex_dec_change_state):
13829         * ext/speex/gstspeexdec.h:
13830         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
13831         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
13832         (gst_speexenc_base_init), (gst_speexenc_class_init),
13833         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
13834         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
13835         (gst_speexenc_src_query), (gst_speexenc_init),
13836         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
13837         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
13838         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
13839         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
13840         (gst_speexenc_chain), (gst_speexenc_get_property),
13841         (gst_speexenc_set_property), (gst_speexenc_change_state):
13842         * ext/speex/gstspeexenc.h:
13843         Rewrote speex encoder, make sure it can be embedded in ogg.
13844         Implemented speex decoder.
13845
13846 2004-09-28  Christian Schaller <christian@fluendo.com>
13847
13848         * configure.ac:
13849         Remove kioslave plugin. Markey is brewing a new working one
13850         * ext/Makefile.am: Remove kioslave plugin
13851         * ext/kio: remove
13852         * gst-plugins.spec.in: remove kio plugin from spec
13853
13854 2004-09-27  Wim Taymans  <wim@fluendo.com>
13855
13856         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13857         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
13858         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
13859         (gst_multifdsink_new_client),
13860         (gst_multifdsink_handle_client_write),
13861         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13862         (gst_multifdsink_handle_clients):
13863         * gst/tcp/gstmultifdsink.h:
13864         Make syncing to keyframes actually work for new clients and lagging
13865         clients.
13866
13867 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
13868
13869         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
13870         (gst_navigationtest_handle_src_event), (draw_box_planar411),
13871         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
13872         * gst/debug/gstnavigationtest.h:
13873           make navigationtest display button-press and button-release events
13874
13875 2004-09-26 Iain <iaingnome@gmail.com>
13876
13877         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
13878         the channels have received a new media event.
13879         (interleave_buffered_loop): Compresses a new media event on all
13880         channels into one.
13881
13882 2004-09-26 Iain <iaingnome@gmail.com>
13883
13884         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
13885         call the sinkpad's default event handler and not the srcpads. He also
13886         says this is confusing :)
13887         (gst_wavenc_stop_file): Company says that seek events only go upstream
13888         we should send a discontinuous downstream instead.
13889
13890 2004-09-25  Christian Schaller <christian@fluendo.com>
13891
13892         * Update SPEC file to be usable in conjunction with Fedora Core,
13893           Fedora.us and freshrpms packages
13894         * Fix typo in multifilesrc test Makefile
13895
13896 2004-09-24  Wim Taymans  <wim@fluendo.com>
13897
13898         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13899         Only signal the no_more_pads signal when we have
13900         added the stream to our list.
13901
13902 2004-09-24  Wim Taymans  <wim@fluendo.com>
13903
13904         * gst/playback/gstplaybasebin.c: (remove_prerolls),
13905         (new_decoded_pad):
13906         * gst/playback/gstplaybasebin.h:
13907         * gst/playback/gstplaybin.c: (setup_sinks):
13908         Don't try to preroll or decode more than one audio/video
13909         track.
13910
13911 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13912
13913         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
13914           Throw error if we failed to find a suitable output. This should
13915           throw an error if we successfully set up a pipeline (e.g. because
13916           we recognized a media file) but found no decodable streams in it
13917           (e.g. because it contains only media stream types for which we
13918           have no decoders, or because it's not a media type).
13919
13920 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13921
13922         * ext/dirac/Makefile.am:
13923         * ext/dirac/gstdirac.cc:
13924         * ext/dirac/gstdiracdec.cc:
13925         * ext/dirac/gstdiracdec.h:
13926           Do something. Don't actually know if this works because I don't
13927           have a demuxer yet.
13928         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
13929           Add channels=1 to caps returned from _getcaps().
13930         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
13931         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
13932         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
13933         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
13934         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
13935         (gst_ogm_parse_change_state):
13936           Separate between audio/video so ogmaudioparse actually uses the
13937           audio pad templates. Both audio and video work now, including
13938           autoplugging. Also use sometimes-srcpad hack.
13939         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
13940           Handle events better. Don't hang on infinite loops.
13941         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
13942         (gst_avi_demux_init), (gst_avi_demux_reset),
13943         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13944         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
13945         (gst_avi_demux_change_state):
13946         * gst/avi/gstavidemux.h:
13947           Improve A/V sync. Still not perfect.
13948         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
13949         (gst_ebml_read_skip):
13950           Handle events better.
13951         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
13952         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
13953         (qtdemux_audio_caps):
13954           Add IMA4. Improve event handling. Save offset after a seek when
13955           the headers are at the end of the file so that we don't end up in
13956           an infinite loop.
13957         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
13958           Add low-priority typefind support for files with no length.
13959
13960 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13961
13962         * testsuite/multifilesink/Makefile.am:
13963         fix typo
13964
13965 2004-09-22  Julien MOUTTE  <julien@moutte.net>
13966
13967         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
13968         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
13969         mistakes from thaytan's patches.
13970
13971 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
13972
13973         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
13974           For completeness, XSync in the destroy function as xvimage does.
13975
13976 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
13977
13978         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
13979            Correct caps negotiation
13980         * gst/volume/gstvolume.c: (volume_chain_float),
13981         (volume_chain_int16):
13982            Modify debug output to be little more informative
13983         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
13984         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
13985         (gst_xvimagesink_xvimage_destroy):
13986           Add XSync calls after detaching from the shared memory segment to
13987           avoid a crash.
13988
13989 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13990
13991         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
13992         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
13993         * ext/vorbis/vorbis.c: (plugin_init):
13994         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13995         (gst_vorbisenc_chain):
13996         * ext/vorbis/vorbisenc.h:
13997         remove explicit newmedia support from oggmux and vorbisenc
13998         add debug category to vorbisenc
13999         * gst/multifilesink/gstmultifilesink.c:
14000         (gst_multifilesink_class_init), (gst_multifilesink_init),
14001         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
14002         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
14003         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
14004         (plugin_init):
14005         * gst/multifilesink/gstmultifilesink.h:
14006         add support for streamheader in multifilesink
14007
14008 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14009
14010         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
14011         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
14012         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
14013           Prevent infinite loops. More correct error reporting.
14014         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14015           Error out if negotiation fails.
14016         * gst/playback/gstplaybasebin.c: (setup_source),
14017         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
14018         (gst_play_base_bin_found_tag):
14019           Error/tag forwarding. Pre-roll fixes for source errors on state
14020           changes (e.g. "file does not exist") to prevent hangs.
14021
14022 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14023
14024         * testsuite/multifilesink/Makefile.am:
14025         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
14026         (gst_newmedia_class_init), (gst_newmedia_init),
14027         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14028         (newfile_signal), (test_signal), (main):
14029         * testsuite/multifilesink/multifilesrc_test.c: (main):
14030         * testsuite/multifilesink/oggtheora_test.c:
14031         (gst_newmedia_base_init), (gst_newmedia_class_init),
14032         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
14033         (test_format), (newfile_signal), (test_signal), (main):
14034         * testsuite/multifilesink/oggvorbis_test.c:
14035         (gst_newmedia_base_init), (gst_newmedia_class_init),
14036         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
14037         (test_format), (newfile_signal), (test_signal), (main):
14038         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
14039         (gst_newmedia_class_init), (gst_newmedia_init),
14040         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14041         (newfile_signal), (test_signal), (main):
14042         New media tests
14043
14044 2004-09-20  Christian Schaller <christian@fluendo.com>
14045
14046         * Fix mikmod license to LGPL as they have relicensed
14047         * Move Dirac and Effectv into LGPL section of README_license
14048
14049 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14050
14051         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
14052         (gst_mad_change_state):
14053           Allow for mp3 rate/channels changes. However, only very
14054           conservatively. Reason that we *have* to enable this is smiply
14055           because the mad find_sync() function is not good enough, it will
14056           regularly sync on random data as valid frames and therefore make
14057           us provide random caps as *final* caps of the stream. The best fix
14058           I could think of is to simply require several of the same stream
14059           changes in a row before we change caps.
14060           The actual testcase that works now is #
14061         * ext/ogg/Makefile.am:
14062         * ext/ogg/gstogg.c: (plugin_init):
14063         * ext/ogg/gstogmparse.c:
14064           OGM support (video only for now; I need an audio sample file).
14065         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
14066         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
14067         (gst_asf_demux_add_video_stream):
14068           WMV extradata.
14069         * gst/playback/gstplaybasebin.c: (unknown_type):
14070           Don't error out on single unknown-types after all. It's wrong.
14071           If we found type of video and audio but not of a subtitle stream,
14072           it will still error out (which is unwanted). Will find a better fix
14073           later on.
14074         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
14075         (ogmaudio_type_find), (plugin_init):
14076           OGM support.
14077
14078 2004-09-20  Johan Dahlin  <johan@gnome.org>
14079
14080         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
14081         after setting caps.
14082
14083 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14084
14085         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
14086         * gst/wavenc/gstwavenc.h:
14087         Added newmedia support to wavenc
14088
14089 2004-09-17  Wim Taymans  <wim@fluendo.com>
14090
14091         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
14092         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
14093         (gst_fdset_fd_can_write), (gst_fdset_wait):
14094         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
14095         (gst_multifdsink_init), (gst_multifdsink_add),
14096         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
14097         (gst_multifdsink_remove_client_link),
14098         (gst_multifdsink_client_queue_buffer),
14099         (gst_multifdsink_handle_client_write),
14100         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
14101         (gst_multifdsink_close), (gst_multifdsink_change_state):
14102         * gst/tcp/gstmultifdsink.h:
14103         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
14104         (gst_tcpserversink_removed):
14105         Small cleanups in fdset.c
14106         Use a hastable to map fd to the client structure for faster
14107         lookup in _remove and get_stats.
14108         Added virtual function to close the fds.
14109         Handle clients even when the select/poll call was unblocked because
14110         of a command.
14111         Implement syncing to keyframe in the recovery procedure.
14112
14113 2004-09-16 Iain <iaingnome@gmail.com>
14114
14115         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
14116         try caps.
14117
14118 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14119
14120         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
14121           Caps are only set if the type of the stream is unknown, but this
14122           is initialized in ->init_stream(), so set to UNKNOWN after calling
14123           ->init_stream() so that capsnego starts.
14124
14125 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14126
14127         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14128         (gst_avi_demux_stream_data):
14129           Just hardcode for raw audio then. AVI audio sucks.
14130
14131 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
14132
14133         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
14134         * gst/matroska/matroska-mux.c: (audiosink_templ),
14135         (gst_matroska_mux_audio_pad_link):
14136         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
14137         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
14138
14139 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14140
14141         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14142         (gst_avi_demux_stream_data):
14143           Try to fix a/v sync issues.
14144
14145 2004-09-15  David Schleef  <ds@schleef.org>
14146
14147         * configure.ac: remove NASM check, since we don't use it.  Update
14148         dirac check to 0.4
14149         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
14150         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
14151         Initialized variables.
14152         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
14153         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
14154         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
14155         SVQ3 format
14156
14157 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14158
14159         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14160         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
14161         * gst/avi/gstavidemux.h:
14162           Fix for compressed audio (mp3) timestamp generation. How did this
14163           ever work?
14164
14165 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14166
14167         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14168           Volume is a double not a float.
14169
14170 2004-09-15  Wim Taymans  <wim@fluendo.com>
14171
14172         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
14173         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
14174         Don't close the fd in multifdsink as we didn't open it in the
14175         first place. Some cleanups.
14176
14177 2004-09-15  Wim Taymans  <wim@fluendo.com>
14178
14179         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14180         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14181         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14182         Fix the case where the muxer would mark pages as delta
14183         frames when they are not (vorbis only ogg).
14184
14185 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14186
14187         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
14188         (gst_play_base_bin_change_state):
14189           Handle the case where we failed to setup a clear pipeline. This
14190           will throw an error (or EOS, another nice case) and if you don't
14191           catch that, the app will wait for the signal forever (and thus
14192           hang).
14193
14194 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14195
14196         * ext/gnomevfs/gstgnomevfssink.c:
14197         (gst_gnomevfssink_uri_get_protocols):
14198         * ext/gnomevfs/gstgnomevfssrc.c:
14199         (gst_gnomevfssrc_uri_get_protocols):
14200         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14201         * ext/gnomevfs/gstgnomevfsuri.h:
14202           Use _uri_new() instead of _open(), so it doesn't take as long and
14203           Christophe's computer won't hang.
14204         * gst/playback/gstplaybasebin.c: (unknown_type):
14205           Throw error on unknown media type, so apps actually display it.
14206
14207 2004-09-14  Brian Cameron  <brian.cameron@sun.com
14208
14209         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
14210           this script to work on Solaris since bash shell handles echo
14211           differenly than bash.
14212
14213 2004-09-17  Wim Taymans  <wim@fluendo.com>
14214
14215         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
14216         (setup_source), (gst_play_base_bin_set_property),
14217         (gst_play_base_bin_add_element):
14218         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
14219         Some more work on making sure seeking pauses the pipeline and
14220         that changing the uri actually does something.
14221
14222 2004-09-17  Wim Taymans  <wim@fluendo.com>
14223
14224         * gst/tcp/gstfdset.c: (gst_fdset_wait):
14225         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
14226         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
14227         (gst_tcpserversink_close):
14228         Be a bit more paranoid when freeing memory.
14229
14230 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14231
14232         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
14233         (qtdemux_parse_trak):
14234           Don't crash by dividing by zero (see sample movie in #126922).
14235
14236 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14237
14238         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
14239           Don't touch non-existing data (fixes crash on file in #140147).
14240
14241 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14242
14243         * gst/playback/gstplaybasebin.c:
14244         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
14245           Handle double disposals, and proper change of URIs.
14246
14247 2004-09-13  Martin Eikermann <meiker@upb.de>
14248
14249         * gst/mpegstream/gstmpegparse.c:
14250           fix synchronistation for streams recorded from digital PCR
14251           fixes bug #119376
14252
14253 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14254
14255         * ext/gnomevfs/Makefile.am:
14256         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14257         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
14258         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
14259         (gst_gnomevfssink_uri_get_type),
14260         (gst_gnomevfssink_uri_get_protocols),
14261         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
14262         (gst_gnomevfssink_uri_handler_init),
14263         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
14264         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
14265         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
14266         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
14267         (gst_gnomevfssrc_uri_get_type),
14268         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
14269         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
14270         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
14271         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
14272         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14273         * ext/gnomevfs/gstgnomevfsuri.h:
14274           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
14275           of fake URIs to see which this version of Gnome-VFS likes, and
14276           uses that for the Gst-URI interface. Makes playbin support http://
14277           streams. Also fix up some stupid behaviour in gnomevfssrc.
14278
14279 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14280
14281         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
14282         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
14283         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
14284         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
14285           Update mixer (to sync with other sessions) if we try to obtain
14286           a new value. This makes alsamixer work accross applications.
14287         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
14288           Only call sync functions if we're running, else alsalib asserts.
14289         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
14290           Sometimes fails to compile. Possibly a gcc bug.
14291         * gst/playback/gstplaybin.c: (gen_video_element),
14292         (gen_audio_element):
14293           Add a reference to an application-provided object, because we lose
14294           this same reference if we add it to the bin. If we don't do this,
14295           we can only use this object once and thus crash if we go from
14296           ready to playing, back to ready and back to playing again.
14297           Also add an audioscale element because several cheap soundcards -
14298           like mine - don't support all samplerates.
14299         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
14300         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
14301           Fix wrong order or PAR calls. Makes automatically obtained PAR
14302           from the X server atually being used.
14303
14304 2004-09-12  David Schleef  <ds@schleef.org>
14305
14306         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
14307         #151887, #152102, #152247.
14308         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
14309         * examples/seeking/cdparanoia.c: same
14310         * examples/seeking/cdplayer.c: same
14311         * examples/seeking/seek.c: same
14312         * examples/seeking/spider_seek.c: same
14313         * examples/seeking/vorbisfile.c: same
14314         * examples/stats/mp2ogg.c: same
14315         * ext/esd/esdsink.c: (gst_esdsink_class_init),
14316         (gst_esdsink_dispose): Dispose of element properly.
14317         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
14318         fixes.
14319         * ext/nas/nassink.c: (gst_nassink_class_init),
14320         (gst_nassink_dispose): Dispose of element correctly.
14321         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
14322         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14323         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
14324         Fix 64-bit warning.
14325         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14326         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
14327         Fix 64-bit warning.
14328
14329 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14330
14331         * configure.ac : change speex detection as 1.1.6 now uses
14332           .pc/pkg-config and they changed their headers location.
14333
14334 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
14335
14336         * gst/matroska/matroska-mux.h:
14337         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
14338         (gst_matroska_mux_start), (gst_matroska_mux_finish),
14339         (gst_matroska_mux_write_data):
14340           Write multiple blocks/frames per cluster.
14341                 Write meta-seek information (seek heads).
14342
14343 2004-09-09  Scott Wheeler <wheeler@kde.org>
14344
14345         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
14346         (gst_play_bin_set_property), (gst_play_bin_get_property),
14347         (gen_audio_element), (gen_audio_element):
14348           Add a volume element / property to the pipeline.
14349
14350 2004-09-07  Wim Taymans  <wim@fluendo.com>
14351
14352         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
14353         Copy timestamps from the master pad to the output buffers.
14354
14355 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14356
14357         * ext/raw1394/gstdv1394src.c:
14358           throw errors when applicable
14359
14360 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
14361
14362         * gst/matroska/ebml-ids.h:
14363         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
14364         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
14365         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
14366           automatically convert unix time <-> ebml time when reading/writing
14367           a date, use gst_ebml_write_uint to write CUETIME,
14368           not gst_ebml_write_date.
14369         * gst/matroska/matroska-ids.h:
14370         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
14371         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
14372         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
14373         (gst_matroska_mux_write_data):
14374           Write track and segment UIDs, write muxing date, write
14375           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
14376           Create cues for audio only files.
14377
14378 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14379
14380         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14381         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14382           Re-commit ALSA switches.
14383         * gst/adder/gstadder.c: (gst_adder_loop):
14384           64-bit fix (#151416).
14385         * gst/debug/progressreport.c: (gst_progressreport_report):
14386           64-bit fix (#151419).
14387         * gst/matroska/matroska-demux.c:
14388         (gst_matroska_demux_parse_contents):
14389           64-bit fix (#151420).
14390         * gst/playback/test3.c: (update_scale):
14391           64-bit fix (#151421).
14392
14393 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14394
14395         * configure.ac:
14396           bump nano to cvs
14397
14398 === release 0.8.4 ===
14399
14400 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14401
14402         * configure.ac: releasing 0.8.4, "Alias"
14403
14404 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14405
14406         * ext/theora/Makefile.am:
14407           fix makefile.  Fixes #151462.
14408
14409 2004-08-30  Wim Taymans  <wim@fluendo.com>
14410
14411         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
14412         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14413         (gst_multifdsink_remove_client_link),
14414         (gst_multifdsink_client_queue_buffer),
14415         (gst_multifdsink_handle_client_write):
14416         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
14417         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
14418         Fix some memory leaks.
14419
14420 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14421
14422         Patch by: David Schleef
14423
14424         * configure.ac:
14425         * sys/Makefile.am:
14426           rename our detection macro for V4L2.  Fixes #151236.
14427
14428 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14429
14430         Patch by: David Schleef
14431
14432         * configure.ac:
14433           check to define LAMEPRESET.  Fixes #151232.
14434
14435 2004-08-27  David Schleef  <ds@schleef.org>
14436
14437         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
14438         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
14439         (gst_glimagesink_fixate):  Move local variable declarations to
14440         make gcc-2.95 happy.
14441
14442 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14443
14444         * configure.ac:
14445           bump nano for prerelease
14446
14447 2004-08-27  David Schleef  <ds@schleef.org>
14448
14449         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
14450         * sys/sunaudio/gstsunaudiosrc.c:
14451         * sys/sunaudio/gstsunaudiosrc.h:
14452
14453 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
14454
14455         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
14456         handle EOS correctly
14457         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
14458         * gst/matroska/matroska-mux.h:
14459         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
14460         VFW compatibility mode
14461
14462 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14463
14464         patch by: Zaheer Abbas Merali
14465
14466         * ext/ogg/gstoggmux.c:
14467         * ext/vorbis/vorbisenc.c:
14468         * ext/vorbis/vorbisenc.h:
14469           handle NEWMEDIA
14470
14471 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
14472
14473         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
14474         fix byte order reversion on little endian machines.
14475         * gst/matroska/matroska-mux.c: (audiosink_templ),
14476         (gst_matroska_mux_audio_pad_link):
14477         add TTA codec to the list of supported codecs.
14478         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
14479         (gst_matroska_mux_start), (gst_matroska_mux_finish),
14480         (gst_matroska_mux_write_data):
14481         * gst/matroska/matroska-mux.h:
14482         write segment duration correctly, write muxing app string, fixes bugs
14483         #140897 and #140898.
14484         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
14485         wait for all pads to be negotiated before starting to mux.
14486
14487 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14488
14489         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
14490         * ext/lame/gstlame.h:
14491         Added new media support to lame
14492
14493 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
14494
14495         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
14496         send vorbis headers at the beginning of a stream, fixes bug #141554.
14497         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
14498         bug #148950.
14499         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
14500         (gst_matroska_demux_plugin_init):
14501         * gst/matroska/matroska-ids.h:
14502         enable demuxing of TTA audio streams, fixes bug #148951.
14503         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
14504         enable typefinding for TTA audio files, fixes bug #148711.
14505         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
14506         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
14507         fixes playback of packed bitstream and xvid with bframes, bug #135407.
14508
14509 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
14510
14511         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
14512         (gst_riff_read_element_data), (gst_riff_read_seek),
14513         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
14514         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
14515         <teuf@gnome.org>
14516
14517 2004-08-23 Iain <iaingnome@gmail.com>
14518
14519         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
14520         tags. They appear to be handled differently to normal.
14521         (tag_list_to_id3_tag_foreach): Ditto.
14522
14523 2004-08-22  Wim Taymans  <wim@fluendo.com>
14524
14525         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14526         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14527         Make sure we never send -1 granulepos.
14528
14529 2004-08-20  Wim Taymans  <wim@fluendo.com>
14530
14531         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14532         (gst_ogg_mux_loop):
14533         I will accept bitchslappings with non sharp objects.
14534
14535 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14536
14537         * configure.ac:
14538         Clean up the test for lame presets
14539
14540 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14541
14542         * configure.ac:
14543         * ext/lame/Makefile.am:
14544         * ext/lame/gstlame.c: (gst_lame_class_init),
14545         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
14546         Only enable lame presets if version of lame has presets in API
14547
14548 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
14549         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
14550         * gst/udp/gstudpsrc.h:
14551           Don't call gst_pad_push in a get function. Fixes #150449
14552
14553 2004-08-18  Wim Taymans  <wim@fluendo.com>
14554
14555         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
14556         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
14557         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
14558         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14559         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14560         (gst_fdset_wait):
14561         * gst/tcp/gstfdset.h:
14562         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14563         (gst_multifdsink_client_queue_buffer),
14564         (gst_multifdsink_handle_client_write):
14565         * gst/tcp/gstmultifdsink.h:
14566         Some extra checks in gstfdset.
14567         Only use send() when the fd is a socket. Don't try to
14568         read from write only fds.
14569
14570 2004-08-18  Wim Taymans  <wim@fluendo.com>
14571
14572         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
14573         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
14574         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14575         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14576         (gst_fdset_wait):
14577         Add more locking and bounds checking.
14578
14579 2004-08-18  Wim Taymans  <wim@fluendo.com>
14580
14581         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
14582         Realloc test fdset in the lock and right before starting
14583         the poll call. Bump the limit to 4096.
14584
14585 2004-08-17  David Schleef  <ds@schleef.org>
14586
14587         * sys/sunaudio/Makefile.am:
14588         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
14589         of rates and channels.  Make debugging less obnoxious.
14590
14591         Patch from Balamurali Viswanathan implementing a mixer for
14592         Sun audio.  (bug #144091):
14593         * sys/sunaudio/gstsunelement.c:
14594         * sys/sunaudio/gstsunelement.h:
14595         * sys/sunaudio/gstsunmixer.c:
14596         * sys/sunaudio/gstsunmixer.h:
14597
14598 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14599
14600         * gst/audioscale/gstaudioscale.c:
14601         * gst/audioscale/gstaudioscale.h:
14602         made audioscale resample from any sample rate to any sample rate
14603
14604 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
14605
14606         * ext/libpng/gstpngdec.c:
14607           error out on unsupported types
14608
14609 2004-08-17  Iain <iaingnome@gmail.com>
14610
14611         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
14612         mid_side and loose_mid_side properties if its a stereo stream.
14613
14614 2004-08-17  Wim Taymans  <wim@fluendo.com>
14615
14616         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
14617         (theora_get_formats), (theora_dec_src_convert),
14618         (theora_dec_sink_convert), (theora_dec_src_query),
14619         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
14620         Add a debug line.
14621
14622 2004-08-17  Wim Taymans  <wim@fluendo.com>
14623
14624         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
14625         (gst_ogg_pad_push):
14626         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14627         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14628         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
14629         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14630         Mark delta units in the muxer.
14631         Try to decode the packet after an out-of-sync error from
14632         libogg.
14633
14634 2004-08-17  Wim Taymans  <wim@fluendo.com>
14635
14636         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14637         (gst_multifdsink_init), (gst_multifdsink_add),
14638         (gst_multifdsink_client_queue_buffer),
14639         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
14640         * gst/tcp/gstmultifdsink.h:
14641         Added option to send a keyframe to clients as the first buffer.
14642         Make timeout property writable.
14643
14644 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
14645
14646         patch by: Wim Taymans
14647
14648         * gst/tcp/gstfdset.c:
14649         * gst/tcp/gstmultifdsink.c:
14650           fix index comparison, should include 0
14651
14652 2004-08-16  Wim Taymans  <wim@fluendo.com>
14653
14654         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
14655         (gst_fdset_add_fd), (gst_fdset_remove_fd),
14656         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14657         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14658         (gst_fdset_wait):
14659           copy when reallocing for poll so the select arguments don't get
14660           changed during the call
14661
14662 2004-08-16  Wim Taymans  <wim@fluendo.com>
14663
14664         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
14665         (gst_theora_enc_class_init), (theora_enc_sink_link),
14666         (theora_buffer_from_packet), (theora_enc_chain):
14667         Fix bug where buffers were not marked as keyframes
14668         correctly.
14669
14670 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14671
14672         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
14673         (gst_lame_preset_get_type), (gst_lame_class_init):
14674         describe the enum values for vbr mode and presets more verbosely
14675
14676 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14677
14678         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
14679         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
14680         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
14681         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
14682         * ext/lame/gstlame.h:
14683         add preset property to lame so it can use lame presets
14684
14685 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14686
14687         * ext/lame/gstlame.c: (gst_lame_get_property):
14688         whoops forgot break, thanks teuf
14689
14690 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14691
14692         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
14693         (gst_lame_class_init), (gst_lame_src_getcaps),
14694         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
14695         (gst_lame_get_property), (gst_lame_setup):
14696         * ext/lame/gstlame.h:
14697         fix lame's broken vbr stuff, allow it to resample if need be, and also
14698         make xing header optional
14699
14700 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14701
14702         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
14703         added getcaps function so samplerate doesnt get fixated to silly values
14704
14705 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14706
14707         * ext/lame/gstlame.c: (gst_lame_src_link):
14708         revert previous fix
14709
14710 2004-08-12  Johan Dahlin  <johan@gnome.org>
14711
14712         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
14713         checks. Doesn't matter what state we are in. Interfaces are a
14714         compile time thing, not runtime. It also broke the python bindings.
14715
14716 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14717
14718         * ext/lame/gstlame.c: (gst_lame_src_link):
14719         made source pad link function check if sinkpad is ok..fixes the problem
14720         where core fixates the output rate of lame stupidly
14721
14722 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14723
14724         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
14725         * sys/v4l/v4l_calls.c:
14726         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
14727           fix fixate function to handle nonsimple caps.
14728           remove bogus check in _link
14729           cleanups
14730
14731 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14732
14733         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
14734         set default compression ratio parameter to 0.0 so bitrate parameter
14735         works :)
14736
14737 2004-08-11  David Schleef  <ds@schleef.org>
14738
14739         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
14740
14741 2004-08-11  David Schleef  <ds@schleef.org>
14742
14743         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
14744         before.
14745
14746 2004-08-11  David Schleef  <ds@schleef.org>
14747
14748         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
14749
14750 2004-08-11  David Schleef  <ds@schleef.org>
14751
14752         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
14753           license field
14754         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
14755         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
14756           LGPL.
14757         * gst/auparse/gstauparse.c: Fix plugin license field.
14758         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
14759         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
14760         * gst/rtp/gstrtp.c: Fix plugin license field.
14761
14762 2004-08-11  Wim Taymans  <wim@fluendo.com>
14763
14764         * gst/tcp/Makefile.am:
14765         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
14766         (ensure_size), (gst_fdset_new), (gst_fdset_free),
14767         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
14768         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
14769         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
14770         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
14771         (gst_fdset_fd_can_write), (gst_fdset_wait):
14772         * gst/tcp/gstfdset.h:
14773         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
14774         (gst_multifdsink_class_init), (gst_multifdsink_init),
14775         (gst_multifdsink_add), (gst_multifdsink_remove),
14776         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14777         (gst_multifdsink_remove_client_link),
14778         (gst_multifdsink_handle_client_read),
14779         (gst_multifdsink_client_queue_data),
14780         (gst_multifdsink_client_queue_caps),
14781         (gst_multifdsink_client_queue_buffer),
14782         (gst_multifdsink_handle_client_write),
14783         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14784         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
14785         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
14786         (gst_multifdsink_close):
14787         * gst/tcp/gstmultifdsink.h:
14788         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
14789         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
14790         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
14791         (gst_tcpserversink_close):
14792         * gst/tcp/gsttcpserversink.h:
14793         Abstracted away the select call, implemented poll (yes we ran into
14794         the 1024 limit in production).
14795
14796 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14797
14798         * gst/tcp/gsttcp.c:
14799         * gst/tcp/gsttcpplugin.c:
14800           improve debuggging, remove assert
14801
14802 2004-08-10  Wim Taymans  <wim@fluendo.com>
14803
14804         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
14805         (gst_client_status_get_type), (gst_multifdsink_class_init),
14806         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14807         (gst_multifdsink_handle_client_read),
14808         (gst_multifdsink_handle_client_write),
14809         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14810         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
14811         (gst_multifdsink_get_property):
14812         * gst/tcp/gstmultifdsink.h:
14813         * gst/tcp/gsttcp-marshal.list:
14814         Starting to prepare for specifying buffer time in other units
14815         than buffers. Expose remove reason in signal.
14816
14817 2004-08-10  Wim Taymans  <wim@fluendo.com>
14818
14819         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14820         (gst_multifdsink_remove), (gst_multifdsink_clear),
14821         (gst_multifdsink_remove_client_link),
14822         (gst_multifdsink_handle_client_read),
14823         (gst_multifdsink_client_queue_data),
14824         (gst_multifdsink_client_queue_buffer),
14825         (gst_multifdsink_handle_client_write),
14826         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14827         (gst_multifdsink_chain), (gst_multifdsink_close):
14828         * gst/tcp/gstmultifdsink.h:
14829         Added more debugging info. Changed the way clients are
14830         removed from the lists. Fixed a bug where a bad file descriptor
14831         could cause many clients to be removed.
14832
14833 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
14834
14835         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
14836           allow all pixel-aspect-ratios, not just 1:1
14837
14838 2004-08-09  David Schleef  <ds@schleef.org>
14839
14840         * sys/glsink/ARB_multitexture.h:  Remove old files.
14841         * sys/glsink/EXT_paletted_texture.h:
14842         * sys/glsink/NV_register_combiners.h:
14843         * sys/glsink/gstgl_nvimage.c:
14844         * sys/glsink/gstgl_pdrimage.c:
14845         * sys/glsink/gstgl_rgbimage.c:
14846         * sys/glsink/gstglsink.c:
14847         * sys/glsink/gstglsink.h:
14848         * sys/glsink/gstglxwindow.c:
14849         * sys/glsink/regcomb_yuvrgb.c:
14850
14851 2004-08-09  David Schleef  <ds@schleef.org>
14852
14853         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
14854         GL sink plugin.  (Bug #147302)
14855
14856         * configure.ac: Test for OpenGL
14857         * sys/Makefile.am: Use test for OpenGL
14858         * sys/glsink/Makefile.am:
14859         * sys/glsink/glimagesink.c: rewrite
14860         * sys/glsink/glimagesink.h: rewrite
14861
14862 2004-08-09  David Schleef  <ds@schleef.org>
14863
14864         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
14865         sane framerates.
14866         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
14867         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
14868         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
14869
14870 2004-08-09  Wim Taymans  <wim@fluendo.com>
14871
14872         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14873         (gst_multifdsink_add), (gst_multifdsink_get_stats),
14874         (gst_multifdsink_client_remove),
14875         (gst_multifdsink_handle_client_read),
14876         (gst_multifdsink_handle_client_write),
14877         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
14878         Do a bit more logging, make the client_read code more robust.
14879
14880 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14881
14882         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
14883         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
14884         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
14885         (gst_jpegdec_init), (gst_jpegdec_chain):
14886         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
14887         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
14888           cleanups, debugging fixes and memleak plugging
14889
14890 2004-08-09  Wim Taymans  <wim@fluendo.com>
14891
14892         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
14893         (theora_get_formats), (theora_dec_src_convert),
14894         (theora_dec_sink_convert), (theora_dec_src_query),
14895         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
14896         (theora_dec_change_state):
14897         Don't crash on missing header packets.
14898
14899 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14900
14901         * po/LINGUAS:
14902         * po/sq.po:
14903           Added Albanian translation (Laurent Dhima)
14904         * po/cs.po:
14905           updated
14906
14907 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14908
14909         * ext/lame/gstlame.c:
14910           fix/add debugging
14911
14912 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14913
14914         * sys/ximage/ximagesink.c:
14915         * sys/xvimage/xvimagesink.c:
14916           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
14917
14918 2004-08-06  Wim Taymans  <wim@fluendo.com>
14919
14920         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14921         (gst_multifdsink_add), (gst_multifdsink_get_stats),
14922         (gst_multifdsink_client_remove),
14923         (gst_multifdsink_handle_client_read),
14924         (gst_multifdsink_handle_client_write),
14925         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
14926         Make sure we don't try to read more from a client that what
14927         ioctl says us or we deadlock.
14928
14929 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
14930
14931         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
14932         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
14933         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
14934           decouple running_time and n_frames so it can handle changing
14935           framerate while running
14936
14937 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
14938
14939         * po/nl.po:
14940         * po/sv.po:
14941           updated translations
14942
14943 2004-08-04  Benjamin Otte  <otte@gnome.org>
14944
14945         * gst/videotestsrc/gstvideotestsrc.c:
14946         (gst_videotestsrc_get_capslist), (generate_capslist),
14947         (plugin_init):
14948           generate the list of supported caps at startup and reuse it instead
14949           of always generating it
14950
14951 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
14952
14953         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
14954           whoops, last checkin broke normal build
14955
14956 2004-08-03  Benjamin Otte  <otte@gnome.org>
14957
14958         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
14959         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
14960         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
14961         (gst_alsa_mixer_get_option):
14962         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
14963         (dvdnavsrc_print_event):
14964         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
14965         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
14966         (gst_ogg_mux_pad_unlink):
14967         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
14968         (gst_multipart_mux_pad_unlink):
14969         * gst/videofilter/gstvideobalance.c:
14970         (gst_videobalance_colorbalance_set_value):
14971         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
14972         (gst_videomixer_pad_unlink):
14973         * po/uk.po:
14974         * sys/oss/gstossmixer.c:
14975         * sys/v4l/gstv4lcolorbalance.c:
14976         * sys/v4l/gstv4ltuner.c:
14977         * sys/v4l/v4lsrc_calls.c:
14978         * sys/v4l2/gstv4l2colorbalance.c:
14979         * sys/v4l2/gstv4l2tuner.c:
14980           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
14981
14982 2004-08-03  Benjamin Otte  <otte@gnome.org>
14983
14984         * examples/dynparams/filter.c: (ui_control_create):
14985         * examples/gstplay/player.c: (print_tag):
14986         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
14987         * ext/gdk_pixbuf/gstgdkanimation.c:
14988         (gst_gdk_animation_iter_may_advance):
14989         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
14990         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
14991         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
14992         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
14993         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
14994         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
14995         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
14996         * gst/sine/demo-dparams.c: (main):
14997         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
14998         * testsuite/alsa/formats.c: (create_pipeline):
14999         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
15000           fixes for G_DISABLE_ASSERT and friends
15001         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15002         (mp3_type_frame_length_from_header), (mp3_type_find),
15003         (plugin_init):
15004           require mp3 typefinding to have at least MIN_HEADERS valid headers
15005           add typefinding for AAC adts files
15006
15007 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
15008
15009         * sys/ximage/ximagesink.c:
15010         (gst_ximagesink_calculate_pixel_aspect_ratio):
15011         * sys/xvimage/xvimagesink.c:
15012         (gst_xvimagesink_calculate_pixel_aspect_ratio):
15013         Make sure we calculate pixel-aspect-ratio using floating point maths
15014
15015 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15016
15017         * po/uk.po:
15018           updated translation
15019
15020 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15021
15022         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
15023         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
15024           add debugging for display PAR calculation
15025
15026 2004-08-02  David Schleef  <ds@schleef.org>
15027
15028         * configure.ac: Fix mikmod CFLAGS.
15029
15030 2004-07-27  Benjamin Otte  <otte@gnome.org>
15031
15032         * gst/audioscale/gstaudioscale.c:
15033         - fix templates to only support S16, it's the only format that works
15034         - make caps nego code use try_set_caps_nonfixed and fixation instead
15035         of try_set_caps twice, which is not nice for autopluggers
15036         - change rank to secondary, so autopluggers can pick it up after
15037         audioconvert
15038
15039 2004-08-02  Iain <iain@prettypeople.org>
15040
15041         * gst/interleave/interleave.c (interleave_init),
15042         (interleave_request_new_pad),
15043         (interleave_pad_removed),
15044         (interleave_buffered_loop): Use the real pad count, not the artificial
15045         one.
15046
15047 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15048
15049         * configure.ac: bump nano back to development
15050
15051 === release 0.8.3 ===
15052
15053 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15054
15055         * configure.ac: releasing 0.8.3, "Water"
15056
15057 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15058
15059         * sys/xvimage/xvimagesink.c:
15060         (gst_xvimagesink_calculate_pixel_aspect_ratio),
15061         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
15062         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
15063         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15064         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15065         * sys/xvimage/xvimagesink.h:
15066           apply similar PAR fixes as to ximagesink
15067
15068 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15069
15070         patch from: Benjamin Otte
15071
15072         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
15073           add link function to lame.  Fixes #148986.
15074
15075 2004-08-02  Johan Dahlin  <johan@gnome.org>
15076
15077         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
15078         fix debugging log
15079
15080 2004-07-30  David Schleef  <ds@schleef.org>
15081
15082         * gst/videomixer/Makefile.am: Fix things that should have been
15083         fixed in the last checkin.
15084
15085 2004-07-30  David Schleef  <ds@schleef.org>
15086
15087         * gst/multipart/Makefile.am: Fix things that should have been
15088         fixed in the last checkin.
15089
15090 2004-07-30  David Schleef  <ds@schleef.org>
15091
15092         * testsuite/multifilesink/Makefile.am: Fix unused variable.
15093
15094 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15095
15096         * configure.ac:
15097           bump nano for prerelease
15098         * po/af.po:
15099         * po/az.po:
15100         * po/cs.po:
15101         * po/en_GB.po:
15102         * po/hu.po:
15103         * po/nl.po:
15104         * po/sr.po:
15105         * po/sv.po:
15106         * po/uk.po:
15107           updates
15108
15109 2004-07-30  Wim Taymans  <wim@fluendo.com>
15110
15111         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15112         (gst_multifdsink_add), (gst_multifdsink_remove),
15113         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
15114         (gst_multifdsink_client_remove),
15115         (gst_multifdsink_handle_client_write),
15116         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
15117         * gst/tcp/gstmultifdsink.h:
15118         Recover from a select with a bad file descriptor by removing
15119         the client.
15120
15121 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15122
15123         * configure.ac:
15124           fix requirement of core
15125         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
15126         (gst_play_pipeline_setup):
15127           don't use colorspace element.  do use hermescolorspace element.
15128           make macro to get a colorspace element.
15129           mark strings for translation.
15130         * po/POTFILES.in:
15131           add play.c
15132         * po/af.po:
15133         * po/az.po:
15134         * po/cs.po:
15135         * po/en_GB.po:
15136         * po/hu.po:
15137         * po/nl.po:
15138         * po/sr.po:
15139         * po/sv.po:
15140         * po/uk.po:
15141           update translations
15142
15143 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15144
15145         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
15146         fix default for newmedia flag
15147
15148 2004-07-30  Wim Taymans  <wim@fluendo.com>
15149
15150         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
15151         (gst_theora_dec_init), (theora_get_formats),
15152         (theora_dec_src_convert), (theora_dec_sink_convert),
15153         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15154         (theora_dec_chain), (theora_dec_set_property),
15155         (theora_dec_get_property):
15156         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15157         (gst_theora_enc_class_init), (gst_theora_enc_init),
15158         (theora_enc_sink_link), (theora_enc_chain),
15159         (theora_enc_set_property), (theora_enc_get_property):
15160         Added cropping option to theora decoder.
15161         Added border option to theora encoder.
15162
15163 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15164
15165         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
15166         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
15167         (gst_pngenc_set_property):
15168         * ext/libpng/gstpngenc.h:
15169         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
15170
15171 2004-07-30  Wim Taymans  <wim@fluendo.com>
15172
15173         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15174         (theora_enc_sink_link), (theora_enc_chain),
15175         (theora_enc_set_property), (theora_enc_get_property):
15176         Fix encoding of non-multiple-of-16 video.
15177
15178 2004-07-29  David Schleef  <ds@schleef.org>
15179
15180         * configure.ac: make test for audiofile more strict
15181
15182 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
15183
15184         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15185           give different names to typefind functions
15186
15187 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15188
15189         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15190         (gst_ximagesink_calculate_pixel_aspect_ratio),
15191         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
15192         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
15193         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
15194         (gst_ximagesink_get_property), (gst_ximagesink_init):
15195         * sys/ximage/ximagesink.h:
15196           allocate PAR's dynamically.
15197           use autodetected PAR if no object-set PAR is given.
15198           add workaround for directfb's X not setting physical size.
15199           fix to xvimagesink will follow tomorrow.
15200
15201 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15202
15203         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
15204         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
15205         (gst_shout2send_get_type), (gst_shout2send_set_clock),
15206         (gst_shout2send_class_init), (gst_shout2send_init),
15207         (set_shout_metadata), (gst_shout2send_set_metadata),
15208         (gst_shout2send_chain), (gst_shout2send_set_property),
15209         (gst_shout2send_get_property), (gst_shout2send_connect),
15210         (gst_shout2send_change_state):
15211         * ext/shout2/gstshout2.h:
15212         - fix for sending mp3 audio to icecast2 server, if pad link function not
15213         called before PAUSED state
15214         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
15215         - added tagging support for mp3 audio broadcasted
15216         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
15217         debug info
15218
15219 2004-07-28  Wim Taymans  <wim@fluendo.com>
15220
15221         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
15222         (gst_ogg_demux_push):
15223         Return query failure when we don't know the length of
15224         an ogg stream insteda of returning TRUE with a bogus value.
15225
15226 2004-07-28  Wim Taymans  <wim@fluendo.com>
15227
15228         * ext/theora/theoradec.c: (theora_get_formats),
15229         (theora_dec_src_convert), (theora_dec_sink_convert),
15230         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15231         (theora_dec_chain):
15232         Don't screw up the 1 Chroma for 1 luma sample situation when we
15233         have an odd offset/width by adding a black border in those cases.
15234
15235 2004-07-28  Wim Taymans  <wim@fluendo.com>
15236
15237         * ext/theora/theoradec.c: (theora_get_formats),
15238         (theora_dec_src_convert), (theora_dec_sink_convert),
15239         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15240         (theora_dec_chain):
15241         * ext/theora/theoraenc.c: (theora_enc_sink_link):
15242         Added first attempt at cropping of the image as required by the
15243         theora spec. We need more properties in the caps (offset_x,
15244         offset_y,stride) to implement this correctly.
15245
15246 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
15247
15248         * ext/dvdnav/README:
15249           Update the README to use dvddemux
15250         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
15251           Ensure getcaps returns a subset of the template caps
15252         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
15253         (gst_mpeg2subt_init):
15254           Ensure getcaps returns a subset of the template caps
15255         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
15256         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
15257         (gst_dvd_demux_get_subpicture_stream),
15258         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
15259         * gst/mpegstream/gstdvddemux.h:
15260           Set the explicit caps on the current_video pad before pushing
15261           anything
15262         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
15263         (gst_mpeg_demux_get_audio_stream):
15264           Free caps used to gst_pad_set_explicit_caps, which takes a const
15265           GstCaps *
15266
15267 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15268
15269         * configure.ac: update GStreamer requirement to 0.8.4 because of
15270           GstFraction.
15271
15272 2004-07-28  Wim Taymans  <wim@fluendo.com>
15273
15274         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
15275         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
15276         Add the pad to the element after setting up the caps. This
15277         makes it a lot easier to autoplug.
15278
15279 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
15280
15281         * gst/median/gstmedian.c:
15282         * gst/mpeg2subt/gstmpeg2subt.c:
15283         * gst/mpegaudioparse/gstmpegaudioparse.c:
15284         * gst/mpegstream/gstdvddemux.c:
15285         * gst/mpegstream/gstmpegdemux.c:
15286         * gst/mpegstream/gstmpegpacketize.c:
15287         * gst/rtjpeg/gstrtjpeg.c:
15288         * gst/rtjpeg/gstrtjpegdec.c:
15289         * gst/rtjpeg/gstrtjpegenc.c:
15290         * gst/sine/gstsinesrc.c:
15291         * gst/smooth/gstsmooth.c:
15292         * gst/smpte/gstsmpte.c:
15293         * gst/smpte/gstsmpte.h:
15294         * gst/stereo/gststereo.c:
15295         * gst/videofilter/gstgamma.c:
15296         * gst/videofilter/gstvideobalance.c:
15297         * gst/videofilter/gstvideofilter.c:
15298         * gst/videofilter/gstvideoflip.c:
15299         * gst/videoscale/gstvideoscale.c:
15300         * gst/videoscale/videoscale.c:
15301         * gst/videotestsrc/gstvideotestsrc.c:
15302         * gst/videotestsrc/videotestsrc.c:
15303         * gst/wavenc/gstwavenc.c:
15304         * gst/wavparse/gstwavparse.c:
15305           fix local includes and 64 bits constants
15306
15307 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
15308
15309         * win32/gst.sln:
15310         * gst-libs/gst/*/*.vcproj:
15311         * gst/*/*.vcproj:
15312           more working plugins
15313
15314 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15315
15316         * testsuite/alsa/Makefile.am:
15317         * testsuite/alsa/srcstate.c:
15318         add test for alsasrc changing state
15319
15320 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15321
15322         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
15323         (gst_silence_get):
15324         * gst/silence/gstsilence.h:
15325         fix silence generation for 16bit raw audio
15326
15327 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15328
15329         * gst/matroska/matroska-demux.c:
15330         (gst_matroska_demux_parse_metadata),
15331         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
15332         * gst/mpegaudio/common.c:
15333         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
15334         (gst_videoscale_getcaps), (gst_videoscale_link),
15335         (gst_videoscale_src_fixate), (gst_videoscale_init),
15336         (gst_videoscale_finalize):
15337         * gst/videoscale/gstvideoscale.h:
15338         * gst/videotestsrc/gstvideotestsrc.c:
15339         (gst_videotestsrc_get_capslist):
15340         * gst/wavenc/gstwavenc.c:
15341         * sys/oss/gstossmixer.c: (fill_labels):
15342         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15343         (gst_ximagesink_handle_xevents),
15344         (gst_ximagesink_calculate_pixel_aspect_ratio),
15345         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
15346         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
15347         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
15348         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
15349         (gst_ximagesink_init), (gst_ximagesink_class_init):
15350         * sys/ximage/ximagesink.h:
15351         * sys/xvimage/xvimagesink.c:
15352         (gst_xvimagesink_calculate_pixel_aspect_ratio),
15353         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
15354         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
15355         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15356         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15357         * sys/xvimage/xvimagesink.h:
15358           first batch of pixel aspect ratio commits.
15359
15360 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15361
15362         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15363         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
15364         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
15365           handle stride, needs work if we want to move stride handling
15366           upstream, but works correctly for our purposes.
15367
15368 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15369
15370         * gst/videoscale/README:
15371           add testing examples
15372         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
15373         (gst_videoscale_chain):
15374         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15375         (gst_videoscale_get_size):
15376           add get_size function that handles stride like videotestsrc.
15377           fixes conversion for YUV formats for as much as I can test them.
15378
15379 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15380
15381         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15382         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
15383         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15384         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
15385         (gst_xvimagesink_xvimage_put):
15386           further cleanups, logging, error handling and synchronizing
15387
15388 2004-07-27  Wim Taymans  <wim@fluendo.com>
15389
15390         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
15391         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
15392         (gst_videomixer_pad_set_property),
15393         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
15394         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
15395         (gst_videomixer_class_init), (gst_videomixer_init),
15396         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
15397         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
15398         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
15399         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
15400         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
15401         (gst_videomixer_loop), (plugin_init):
15402         Be a nicer negotiation citizen and provide a getcaps function on
15403         the srcpad. This also fixes a crash when resizing.
15404
15405 2004-07-27  Julien MOUTTE  <julien@moutte.net>
15406
15407         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15408         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
15409
15410 2004-07-27  Wim Taymans  <wim@fluendo.com>
15411
15412         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
15413         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
15414         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
15415         (gst_pngenc_set_property):
15416         * ext/libpng/gstpngenc.h:
15417         Added snapshot property to pngenc.
15418         removed g_print from pngdec
15419
15420 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
15421
15422         * gst/ac3parse/ac3parse.vcproj
15423         * gst/adder/adder.vcproj
15424         * gst/alpha/alpha.vcproj
15425         * gst/alpha/alphacolor.vcproj
15426         * gst/asfdemux/asf.vcproj
15427         * gst/audioconvert/audioconvert.vcproj
15428         * gst/audiorate/audiorate.vcproj
15429         * gst/audioscale/audioscale.vcproj
15430         * gst/auparse/auparse.vcproj
15431         * gst/avi/avi.vcproj
15432         * gst/cdxaparse/cdxaparse.vcproj
15433         * gst/chart/chart.vcproj
15434         * gst/colorspace/colorspace.vcproj
15435         * gst/cutter/cutter.vcproj
15436         * gst/debug/debug.vcproj
15437         * gst/debug/efence.vcproj
15438         * gst/debug/navigationtest.vcproj
15439         * gst/deinterlace/deinterlace.vcproj
15440         * gst/effectv/effectv.vcproj
15441         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
15442         * gst/filter/filter.vcproj
15443         * gst/flx/flxdec.vcproj
15444         * gst/goom/goom.vcproj
15445         * gst/interleave/interleave.vcproj
15446         * gst/law/alaw.vcproj
15447         * gst/law/mulaw.vcproj
15448         * gst/matroska/matroska.vcproj
15449         * gst/median/median.vcproj
15450         * gst/mixmatrix/mixmatrix.vcproj
15451         * gst/mpeg1sys/mpeg1systemencode.vcproj
15452         * gst/mpeg1videoparse/mp1videoparse.vcproj
15453         * gst/mpeg2sub/mpeg2subt.vcproj
15454         * gst/mpegaudio/mpegaudio.vcproj
15455         * gst/mpegaudioparse/mpegaudioparse.vcproj
15456         * gst/mpegstream/mpegstream.vcproj
15457         * gst/multifilesink/multifilesink.vcproj
15458         * gst/multipart/multipart.vcproj
15459         * gst/oneton/oneton.vcproj
15460         * gst/overlay/overlay.vcproj
15461         * gst/passthrough/passthrough.vcproj
15462         * gst/qtdemux/qtdemux.vcproj
15463         * gst/realmedia/rmdemux.vcproj
15464         * gst/rtjpeg/rtjpeg.vcproj
15465         * gst/rtp/rtp.vcproj
15466         * gst/silence/silence.vcproj
15467         * gst/sine/sinesrc.vcproj
15468         * gst/smooth/smooth.vcproj
15469         * gst/smpte/smpte.vcproj
15470         * gst/spectrum/spectrum.vcproj
15471         * gst/speed/speed.vcproj
15472         * gst/stereo/stereo.vcproj
15473         * gst/switch/switch.vcproj
15474         * gst/tags/tagedit.vcproj
15475         * gst/tcp/tcp.vcproj
15476         * gst/typefind/typefindfunctions.vcproj
15477         * gst/udp/udp.vcproj
15478         * gst/videobox/videobox.vcproj
15479         * gst/videocrop/videocrop.vcproj
15480         * gst/videodrop/videodrop.vcproj
15481         * gst/videofilter/gamma.vcproj
15482         * gst/videofilter/videobalance.vcproj
15483         * gst/videofilter/videofilter.vcproj
15484         * gst/videofilter/videoflip.vcproj
15485         * gst/videoflip/videoflip.vcproj
15486         * gst/videomixer/videomixer.vcproj
15487         * gst/videorate/videorate.vcproj
15488         * gst/videoscale/videoscale.vcproj
15489         * gst/videotestsrc/videotestsrc.vcproj
15490         * gst/virtualdub/virtualdub.vcproj
15491         * gst/volenv/volenv.vcproj
15492         * gst/volume/volume.vcproj
15493         * gst/wavenc/wavenc.vcproj
15494         * gst/wavparse/wavparse.vcproj
15495         * gst/y4m/y4menc.vcproj
15496         * gst-libs/gst/audio/audio.vcproj
15497         * gst-libs/gst/audio/audiofilter.vcproj
15498         * gst-libs/gst/colorbalance/colorbalance.vcproj
15499         * gst-libs/gst/idct/idtc.vcproj
15500         * gst-libs/gst/media-info/media-info.vcproj
15501         * gst-libs/gst/mixer/mixer.vcproj
15502         * gst-libs/gst/navigation/navigation.vcproj
15503         * gst-libs/gst/play/play.vcproj
15504         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
15505         * gst-libs/gst/resample/resample.vcproj
15506         * gst-libs/gst/riff/riff.vcproj
15507         * gst-libs/gst/tuner/tuner.vcproj
15508         * gst-libs/gst/video/video.vcproj
15509         * gst-libs/gst/xoverlay/xoverlay.vcproj
15510           avoid problems with math.h, fix release dependancy
15511           rename GStreamer-0.8.lib to libgstreamer.lib
15512
15513 2004-07-27  Julien MOUTTE  <julien@moutte.net>
15514
15515         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
15516         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
15517         the atom is not available we have to unlock the mutex. Fixes #148023
15518
15519 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15520
15521         * gst-libs/gst/media-info/media-info.h:
15522           issue for a vararg macro with MSVC
15523
15524 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15525
15526         * gst/effectv/effectv.vcproj
15527         * gst-libs/gst/idct/idct.vcproj:
15528         * gst-libs/gst/media-info/media-info.vcproj:
15529         * gst-libs/gst/navigation/navigation.vcproj:
15530         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
15531         * gst-libs/gst/video/video.vcproj:
15532         * gst-libs/gst/xoverlay/xoverlay.vcproj:
15533           fixes for build problems
15534
15535 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15536
15537         * gst-libs/gst/audio/audio.def:
15538         * gst-libs/gst/audio/riff.def:
15539           add some definitions needed by plugins
15540
15541 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15542
15543         * gst/asfdemux/gstasfmux.c
15544           Fix some 64 bits constants to be glib friendly
15545
15546 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15547
15548         * gst/ac3parse/gstac3parse.c
15549         * gst/audioscale/gstaudioscale.c
15550         * gst/auparse/gstauparse.c
15551         * gst/colorspace/gstcolorspace.c
15552         * gst/colorspace/yuv2rgb.h
15553           local include fixes
15554
15555 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15556
15557         * win32/gst.sln
15558           add more plugins to the build
15559
15560 2004-07-26  Julien MOUTTE  <julien@moutte.net>
15561
15562         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15563         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
15564
15565 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15566
15567         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
15568         (gst_level_set_property), (gst_level_get_property),
15569         (gst_level_base_init), (gst_level_class_init):
15570           add debugging categories.  cleanups.
15571
15572 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15573
15574         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15575         (gst_videoscale_planar411), (gst_videoscale_planar400),
15576         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
15577         (gst_videoscale_scale_nearest_str1),
15578         (gst_videoscale_scale_nearest_str2),
15579         (gst_videoscale_scale_nearest_str4),
15580         (gst_videoscale_scale_nearest_16bit),
15581         (gst_videoscale_scale_nearest_24bit):
15582           fixed stride issues
15583           tested with 320x240 -> 321, 322, 324 x240
15584           tested with YV12, I420, YUY2, UYVY
15585           fixed packed422rev (don't think it could have worked before)
15586           by testing with UYVY
15587
15588 2004-07-26  Benjamin Otte  <otte@gnome.org>
15589
15590         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
15591         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
15592         (plugin_init):
15593           add debugging category, add error checks like checking return values
15594           of setup calls, make sure it still works after
15595           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
15596
15597 2004-07-26  Wim Taymans  <wim@fluendo.com>
15598
15599         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
15600         (gst_mpeg_demux_get_audio_stream),
15601         (gst_mpeg_demux_process_private):
15602         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
15603         Check for error codes from the negotiation functions. Make sure
15604         we really set the pad caps when a new pad is created.
15605
15606 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15607
15608         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15609         (gst_ffmpeg_caps_to_pix_fmt):
15610         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
15611         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15612         (gst_ffmpegcolorspace_pad_link):
15613           don't make function do two things at the same time without reason.
15614
15615 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15616
15617         * gst/ac3parse/ac3parse.vcproj
15618         * gst/adder/adder.vcproj
15619         * gst/alpha/alpha.vcproj
15620         * gst/alpha/alphacolor.vcproj
15621         * gst/asfdemux/asf.vcproj
15622         * gst/audioconvert/audioconvert.vcproj
15623         * gst/audiorate/audiorate.vcproj
15624         * gst/audioscale/audioscale.vcproj
15625         * gst/auparse/auparse.vcproj
15626         * gst/avi/avi.vcproj
15627         * gst/cdxaparse/cdxaparse.vcproj
15628         * gst/chart/chart.vcproj
15629         * gst/colorspace/colorspace.vcproj
15630         * gst/cutter/cutter.vcproj
15631         * gst/debug/debug.vcproj
15632         * gst/debug/efence.vcproj
15633         * gst/debug/navigationtest.vcproj
15634         * gst/deinterlace/deinterlace.vcproj
15635         * gst/effectv/effectv.vcproj
15636         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
15637         * gst/filter/filter.vcproj
15638         * gst/flx/flxdec.vcproj
15639         * gst/goom/goom.vcproj
15640         * gst/interleave/interleave.vcproj
15641         * gst/law/alaw.vcproj
15642         * gst/law/mulaw.vcproj
15643         * gst/matroska/matroska.vcproj
15644         * gst/median/median.vcproj
15645         * gst/mixmatrix/mixmatrix.vcproj
15646         * gst/mpeg1sys/mpeg1systemencode.vcproj
15647         * gst/mpeg1videoparse/mp1videoparse.vcproj
15648         * gst/mpeg2sub/mpeg2subt.vcproj
15649         * gst/mpegaudio/mpegaudio.vcproj
15650         * gst/mpegaudioparse/mpegaudioparse.vcproj
15651         * gst/mpegstream/mpegstream.vcproj
15652         * gst/multifilesink/multifilesink.vcproj
15653         * gst/multipart/multipart.vcproj
15654         * gst/oneton/oneton.vcproj
15655         * gst/overlay/overlay.vcproj
15656         * gst/passthrough/passthrough.vcproj
15657         * gst/qtdemux/qtdemux.vcproj
15658         * gst/realmedia/rmdemux.vcproj
15659         * gst/rtjpeg/rtjpeg.vcproj
15660         * gst/rtp/rtp.vcproj
15661         * gst/silence/silence.vcproj
15662         * gst/sine/sinesrc.vcproj
15663         * gst/smooth/smooth.vcproj
15664         * gst/smpte/smpte.vcproj
15665         * gst/spectrum/spectrum.vcproj
15666         * gst/speed/speed.vcproj
15667         * gst/stereo/stereo.vcproj
15668         * gst/switch/switch.vcproj
15669         * gst/tags/tagedit.vcproj
15670         * gst/tcp/tcp.vcproj
15671         * gst/typefind/typefindfunctions.vcproj
15672         * gst/udp/udp.vcproj
15673         * gst/videobox/videobox.vcproj
15674         * gst/videocrop/videocrop.vcproj
15675         * gst/videodrop/videodrop.vcproj
15676         * gst/videofilter/gamma.vcproj
15677         * gst/videofilter/videobalance.vcproj
15678         * gst/videofilter/videofilter.vcproj
15679         * gst/videofilter/videoflip.vcproj
15680         * gst/videoflip/videoflip.vcproj
15681         * gst/videomixer/videomixer.vcproj
15682         * gst/videorate/videorate.vcproj
15683         * gst/videoscale/videoscale.vcproj
15684         * gst/videotestsrc/videotestsrc.vcproj
15685         * gst/virtualdub/virtualdub.vcproj
15686         * gst/volenv/volenv.vcproj
15687         * gst/volume/volume.vcproj
15688         * gst/wavenc/wavenc.vcproj
15689         * gst/wavparse/wavparse.vcproj
15690         * gst/y4m/y4menc.vcproj
15691           more plugins supported under windows
15692
15693 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15694
15695         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15696         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
15697         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
15698         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15699         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
15700           Add debugging statements.  Use the sizes as returned by the
15701           *CreateImage calls.
15702
15703 2004-07-26  Johan Dahlin  <johan@gnome.org>
15704
15705         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
15706         the pad is negotiated.
15707
15708         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
15709
15710 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
15711
15712         * gst-libs/gst/colorbalance/colorbalance.vcproj:
15713         * gst-libs/gst/idct/idct.vcproj:
15714         * gst-libs/gst/media-info/media-info.vcproj:
15715         * gst-libs/gst/mixer/mixer.vcproj:
15716         * gst-libs/gst/navigation/navigation.vcproj:
15717         * gst-libs/gst/play/play.vcproj:
15718         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
15719         * gst-libs/gst/resample/resample.vcproj:
15720         * gst-libs/gst/tuner/tuner.vcproj:
15721         * gst-libs/gst/video/video.vcproj:
15722         * gst-libs/gst/xoverlay/xoverlay.vcproj:
15723           more plugins supported under windows
15724
15725 2004-07-25 Iain <iain@prettypeople.org>
15726
15727         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
15728         pad now rather than when the pad is created because state changes wipe
15729         explicit caps (fixes #148043).
15730
15731 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
15732
15733         reviewed by Benjamin Otte  <otte@gnome.org>
15734
15735         * ext/mad/gstmad.c:
15736           fix mad plugin crashing on Sun (fixes #148289)
15737
15738 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
15739
15740         * gst/avi/avi.def:
15741         * gst/avi/avi.vcproj:
15742         * gst/matroska/matroska.def:
15743         * gst/matroska/matroska.vcproj:
15744           remove unused .def files
15745
15746 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
15747
15748         * gst-libs/gst/audio/gstaudiofilter.c:
15749           Clean the local include
15750
15751 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
15752
15753         * win32/gst.sln:
15754         * gst-libs/gst/audio/audio.def:
15755         * gst-libs/gst/audio/audio.vcproj:
15756         * gst-libs/gst/audio/audiofilter.vcproj:
15757         * gst-libs/gst/audio/riff.def:
15758         * gst-libs/gst/audio/riff.vcproj:
15759         * gst-libs/gst/gst-libs.def:
15760         * gst-libs/gst/gst-libs.vcproj:
15761         * gst/avi/avi.vcproj:
15762         * gst/avi/avi.vcproj:
15763           Copy the files where needed after building, cleaner projects
15764
15765 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
15766
15767         * gst/matroska/ebml-write.c:
15768           Fix some 64 bits constants to be glib friendly
15769
15770 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
15771
15772         * win32/gst.sln:
15773         * gst-libs/gst/gst-libs.def:
15774         * gst-libs/gst/gst-libs.vcproj:
15775         * gst/matroska/matroska.def:
15776         * gst/matroska/matroska.vcproj:
15777           Add the preliminary canvas to build plugins on Win32
15778
15779 2004-07-23  Benjamin Otte  <otte@gnome.org>
15780
15781         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
15782           don't enfore negotiation from source side, it breaks
15783           sinesrc ! audioconvert ! osssink
15784
15785 2004-07-22  David Schleef  <ds@schleef.org>
15786
15787         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
15788         for ELF files, since they can easily be recognized as audio/mpeg.
15789         (bug #147441)
15790
15791 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15792
15793         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15794         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
15795         (gst_videoscale_scale_nearest_24bit),
15796         (gst_videoscale_scale_nearest_16bit):
15797           fix 16bit and 24bit for stride (24bit might need testing)
15798           don't pretend we do more than one algorithm
15799
15800 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15801
15802         * configure.ac:
15803         * gst/Makefile.am:
15804         * gst/multifilesink/Makefile.am:
15805         * gst/multifilesink/gstmultifilesink.c:
15806         (gst_multifilesink_get_formats),
15807         (gst_multifilesink_get_query_types), (_do_init),
15808         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
15809         (gst_multifilesink_init), (gst_multifilesink_dispose),
15810         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
15811         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
15812         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
15813         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
15814         (gst_multifilesink_chain), (gst_multifilesink_change_state),
15815         (gst_multifilesink_uri_get_type),
15816         (gst_multifilesink_uri_get_protocols),
15817         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
15818         (gst_multifilesink_uri_handler_init), (plugin_init):
15819         * gst/multifilesink/gstmultifilesink.h:
15820         * testsuite/Makefile.am:
15821         * testsuite/multifilesink/Makefile.am:
15822         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
15823         (gst_newmedia_class_init), (gst_newmedia_init),
15824         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
15825         (newfile_signal), (test_signal), (main):
15826         multifilesink plugin for creating new files every time a new media
15827         discontinuity event occurs
15828
15829 2004-07-22  Wim Taymans  <wim@fluendo.com>
15830
15831         * gst/alpha/Makefile.am:
15832         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
15833         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
15834         (gst_alpha_color_init), (gst_alpha_color_set_property),
15835         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
15836         (transform), (gst_alpha_color_chain),
15837         (gst_alpha_color_change_state), (plugin_init):
15838         Stupid plugin to to RGBA to AYUV conversion because none of
15839         the colorspace plugins can handle that yet.
15840
15841 2004-07-22  Wim Taymans  <wim@fluendo.com>
15842
15843         * examples/seeking/seek.c: (update_scale), (main):
15844         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15845         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
15846         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
15847         (gst_decode_bin_init), (gst_decode_bin_dispose),
15848         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
15849         (no_more_pads), (close_link), (type_found),
15850         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
15851         (plugin_init):
15852         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15853         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
15854         (gst_play_base_bin_dispose), (queue_overrun),
15855         (gen_preroll_element), (remove_prerolls), (unknown_type),
15856         (no_more_pads), (new_stream), (setup_source),
15857         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15858         (play_base_eos), (gst_play_base_bin_change_state),
15859         (gst_play_base_bin_add_element),
15860         (gst_play_base_bin_remove_element),
15861         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
15862         (gst_play_base_bin_unlink_stream),
15863         (gst_play_base_bin_get_streaminfo):
15864         * gst/playback/gstplaybin.c: (gen_video_element),
15865         (gen_audio_element):
15866         * gst/playback/gststreaminfo.h:
15867         More playback updates, attempt to fix things after the state change
15868         breakage.
15869
15870 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15871
15872         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
15873         (gst_videoscale_scale_nearest_16bit):
15874           comment algorithm
15875
15876 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15877
15878         * gst/videotestsrc/gstvideotestsrc.c:
15879         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
15880         (gst_videotestsrc_init), (gst_videotestsrc_get),
15881         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
15882         (gst_videotestsrc_get_property):
15883         * gst/videotestsrc/gstvideotestsrc.h:
15884         * gst/videotestsrc/videotestsrc.c:
15885         * gst/videotestsrc/videotestsrc.h:
15886           cleanup and commenting
15887
15888 2004-07-21  Wim Taymans  <wim@fluendo.com>
15889
15890         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
15891         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
15892         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
15893         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
15894         (_find_chain_get_unknown_part), (_find_streams_check),
15895         (gst_ogg_demux_push), (gst_ogg_pad_push):
15896         * ext/theora/theoradec.c: (theora_get_formats),
15897         (theora_dec_src_convert), (theora_dec_sink_convert),
15898         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15899         (theora_dec_chain):
15900         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
15901         (vorbis_dec_convert), (vorbis_dec_src_query),
15902         (vorbis_dec_src_event), (vorbis_dec_event):
15903         More seeking fixes, oggdemux now supports seeking to time and
15904         uses the downstream element to convert granulepos to time.
15905         Seeking in theora-only ogg files now works.
15906
15907 2004-07-21  Wim Taymans  <wim@fluendo.com>
15908
15909         * ext/theora/theoradec.c: (gst_theora_dec_init),
15910         (theora_get_formats), (theora_get_event_masks),
15911         (theora_get_query_types), (theora_dec_src_convert),
15912         (theora_dec_sink_convert), (theora_dec_src_query),
15913         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
15914         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
15915         (vorbis_get_event_masks), (vorbis_get_query_types),
15916         (gst_vorbis_dec_init), (vorbis_dec_convert),
15917         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
15918         Added query/convert/formats functions to vorbis and theora decoders
15919         so that the outside world can use them too. Fixed seeking on an
15920         ogg/theora/vorbis file by disabling the seeking seeking on the
15921         theora srcpad.
15922
15923 2004-07-21  Julien MOUTTE  <julien@moutte.net>
15924
15925         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15926         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
15927         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
15928         images creation for both elements. We don't create the image on caps
15929         nego or renego, we just destroy the internal one if present if it does
15930         not match the needs. The chain function takes care of creating a new
15931         image when needed.
15932         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15933         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
15934         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
15935         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
15936         the image format information. The buffer pool checks for the context
15937         image format and discard images with different formats.
15938         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
15939
15940 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
15941
15942         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15943         (gst_ffmpegcolorspace_chain):
15944           no point in doing any chaining if the pad we want to push from
15945           isn't usable.
15946
15947 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
15948
15949         * gst-libs/gst/riff/riff-media.c:
15950         (gst_riff_create_audio_caps_with_data):
15951           Fix double end-to-native symbol conversion (#148021).
15952
15953 2004-07-20  David Schleef  <ds@schleef.org>
15954
15955         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
15956         Don't use an Atom that doesn't exist.
15957
15958 2004-07-20  Wim Taymans  <wim@fluendo.com>
15959
15960         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15961         (gst_multifdsink_add), (gst_multifdsink_get_stats),
15962         (gst_multifdsink_client_remove),
15963         (gst_multifdsink_handle_client_write),
15964         (gst_multifdsink_queue_buffer):
15965         * gst/tcp/gstmultifdsink.h:
15966         More multifdsink stats. Avoid deadlock by releasing locks
15967         before sending out a signal.
15968
15969 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
15970
15971         * po/LINGUAS:
15972         * po/hu.po:
15973           added Hungarian translation (Laszlo Dvornik)
15974
15975 2004-07-20  Wim Taymans  <wim@fluendo.com>
15976
15977         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15978         (gst_multifdsink_add), (gst_multifdsink_client_remove),
15979         (gst_multifdsink_handle_client_write),
15980         (gst_multifdsink_queue_buffer):
15981         * gst/tcp/gsttcp-marshal.list:
15982         Fixed the stupid marshal definition.
15983
15984 2004-07-20  Wim Taymans  <wim@fluendo.com>
15985
15986         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15987         (gst_multifdsink_init), (gst_multifdsink_add),
15988         (gst_multifdsink_client_remove),
15989         (gst_multifdsink_handle_client_write),
15990         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
15991         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
15992         (gst_multifdsink_init_send):
15993         * gst/tcp/gstmultifdsink.h:
15994         Added more stats, added timeout for a client, fixed some typos
15995         and added some comments.
15996
15997 2004-07-20  Wim Taymans  <wim@fluendo.com>
15998
15999         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16000         (gst_multifdsink_add), (gst_multifdsink_get_stats),
16001         (gst_multifdsink_client_remove),
16002         (gst_multifdsink_handle_client_write):
16003         * gst/tcp/gstmultifdsink.h:
16004         * gst/tcp/gsttcp-marshal.list:
16005         Added get_stats method that returns a GValueArray of
16006         stats values.
16007
16008 2004-07-19  Benjamin Otte  <otte@gnome.org>
16009
16010         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
16011           make sure longname, description and author are valid UTF-8
16012
16013 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16014
16015         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
16016         (gst_ximagesink_set_property):
16017         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
16018         (gst_xvimagesink_set_property):
16019           make sure SYNCHRONOUS is respected after getting the X context
16020
16021 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
16022
16023         * gst/matroska/matroska-demux.c:
16024         (gst_matroska_demux_handle_src_event),
16025         (gst_matroska_demux_parse_blockgroup):
16026         * gst/matroska/matroska-ids.h:
16027           add BlockReference tag and ignore it to clear out log.
16028           ignore NAVIGATION events to clear out log.
16029
16030 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
16031
16032         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
16033         (gst_matroska_demux_add_stream):
16034         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
16035           add debug categories
16036
16037 2004-07-16  Wim Taymans  <wim@fluendo.com>
16038
16039         * ext/libpng/Makefile.am:
16040         * ext/libpng/gstpng.c: (plugin_init):
16041         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
16042         (gst_pngdec_get_type), (gst_pngdec_base_init),
16043         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
16044         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
16045         * ext/libpng/gstpngdec.h:
16046         Added png decoder.
16047
16048 2004-07-16  Julien MOUTTE  <julien@moutte.net>
16049
16050         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
16051         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
16052         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
16053         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
16054         (gst_ximagesink_buffer_alloc):
16055         * sys/ximage/ximagesink.h:
16056         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16057         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
16058         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16059         (gst_xvimagesink_buffer_alloc):
16060         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
16061         again. Using internal data pointer of the x(v)image to store image's
16062         data to be coherent with the buffer alloc mechanism. Investigated the
16063         image destruction code to be sure that everything gets freed correctly.
16064
16065 2004-07-16  Wim Taymans  <wim@fluendo.com>
16066
16067         * gst-libs/gst/riff/riff-read.c:
16068         (gst_riff_read_strf_vids_with_data),
16069         (gst_riff_read_strf_auds_with_data):
16070         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16071         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
16072         Make sure we don't create 0 sized subbuffers in riff-read.
16073         Signal the no more pads signal after reading the avi header.
16074
16075 2004-07-16  Wim Taymans  <wim@fluendo.com>
16076
16077         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16078         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
16079         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
16080         (gst_decode_bin_init), (gst_decode_bin_dispose),
16081         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16082         (no_more_pads), (close_link), (type_found),
16083         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16084         (gst_decode_bin_change_state), (plugin_init):
16085         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16086         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16087         (gst_play_base_bin_dispose), (queue_overrun),
16088         (gen_preroll_element), (remove_prerolls), (unknown_type),
16089         (no_more_pads), (new_stream), (setup_source),
16090         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
16091         (play_base_eos), (gst_play_base_bin_change_state),
16092         (gst_play_base_bin_add_element),
16093         (gst_play_base_bin_remove_element),
16094         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16095         (gst_play_base_bin_unlink_stream),
16096         (gst_play_base_bin_get_streaminfo):
16097         * gst/playback/gstplaybasebin.h:
16098         Better error recovery. Added configurable preroll queue size. Faster
16099         detection of no-more-pads.
16100
16101 2004-07-16  Wim Taymans  <wim@fluendo.com>
16102
16103         * gst-libs/gst/video/video.h:
16104         Added 32 bits RGBA. Not sure if we should use another mime-type
16105         for alpha rgb. Currently the presence of the alpha_mask property
16106         signals an alpha channel.
16107
16108 2004-07-16  Wim Taymans  <wim@fluendo.com>
16109
16110         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
16111         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
16112         FPS seems to be 0.0 to MAX everywhere else.
16113
16114 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16115
16116         * gst-libs/gst/riff/riff-media.c:
16117         (gst_riff_create_video_caps_with_data):
16118           mp42/mp43 (no caps) exist too.
16119         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
16120           Set pixel_width/height; we've got them in-caps.
16121         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16122         * gst/wavparse/gstwavparse.c: (plugin_init):
16123           Both are valid primary.
16124         * sys/oss/gstossmixer.c:
16125           Remove i18n hack and enable translations.
16126
16127 2004-07-15  Benjamin Otte  <otte@gnome.org>
16128
16129         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16130         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
16131           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
16132
16133 2004-07-15  Benjamin Otte  <otte@gnome.org>
16134
16135         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
16136         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
16137         (gst_alsa_close_audio):
16138           disable some of the debugging code for now. Writing debugging to a
16139           buffer is broken in current alsalib releases.
16140
16141 2004-07-12  Benjamin Otte  <otte@gnome.org>
16142
16143         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
16144           use bufferpools
16145
16146 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
16147
16148         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16149         (theora_dec_src_query), (theora_dec_event):
16150         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
16151           add debugging categories.  Remove \n's.
16152
16153 2004-07-13  Johan Dahlin  <johan@gnome.org>
16154
16155         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
16156         (gst_play_bin_get_property): Impl.
16157
16158 2004-07-13  Wim Taymans  <wim@fluendo.com>
16159
16160         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
16161         When trying to find the stream length, seek back N pages
16162         instead of just one, where N is the number of streams in
16163         the current chain.
16164
16165 2004-07-13  Wim Taymans  <wim@fluendo.com>
16166
16167         * gst-libs/gst/riff/riff-media.c:
16168         (gst_riff_create_audio_caps_with_data),
16169         (gst_riff_create_audio_caps),
16170         (gst_riff_create_audio_template_caps):
16171         * gst-libs/gst/riff/riff-media.h:
16172         * gst-libs/gst/riff/riff-read.c:
16173         (gst_riff_read_strf_vids_with_data),
16174         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
16175         * gst-libs/gst/riff/riff-read.h:
16176         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16177         (gst_avi_demux_add_stream):
16178         Set codec_data on caps for avidemuxer.
16179
16180 2004-07-12  David Schleef  <ds@schleef.org>
16181
16182         * configure.ac: Fix test for Objective C
16183
16184 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
16185         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
16186         (gst_gdk_pixbuf_chain):
16187           Add svg and pcx to template caps, and ensure that getcaps returns a
16188           subset of the template caps.
16189           Copy each row manually for output, as gdkpixbuf may pad the
16190           rowstride to a 32-bit word boundary.
16191
16192 2004-07-12  Wim Taymans  <wim@fluendo.com>
16193
16194         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
16195         (gst_riff_create_video_template_caps):
16196         Fix the template caps to include some more media types.
16197
16198 2004-07-12  Wim Taymans  <wim@fluendo.com>
16199
16200         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16201         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16202         (compare_ranks), (print_feature), (gst_decode_bin_init),
16203         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16204         (try_to_link_1), (new_pad), (close_link), (type_found),
16205         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16206         (gst_decode_bin_change_state), (plugin_init):
16207         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16208         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16209         (gst_play_base_bin_dispose), (queue_overrun),
16210         (gen_preroll_element), (remove_prerolls), (no_more_pads),
16211         (new_stream), (setup_source), (gst_play_base_bin_set_property),
16212         (gst_play_base_bin_get_property), (play_base_eos),
16213         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16214         (gst_play_base_bin_remove_element),
16215         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16216         (gst_play_base_bin_unlink_stream),
16217         (gst_play_base_bin_get_streaminfo):
16218         * gst/playback/gstplaybasebin.h:
16219         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16220         (gst_play_bin_class_init), (gst_play_bin_init),
16221         (gst_play_bin_dispose), (gst_play_bin_set_property),
16222         (gst_play_bin_get_property), (gen_video_element),
16223         (gen_audio_element), (remove_sinks), (setup_sinks),
16224         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16225         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16226         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16227         (gst_play_bin_query), (plugin_init):
16228         * gst/playback/test4.c: (main):
16229         More fixes on reusing of the element.
16230
16231 2004-07-11  Benjamin Otte  <otte@gnome.org>
16232
16233         * ext/mad/gstmad.c: (normal_seek):
16234           allow seeking for other methods than just SET
16235
16236 2004-07-11  Andy Wingo  <wingo@pobox.com>
16237
16238         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
16239         float, "any" caps -> buffer_frames=[0,MAX].
16240
16241         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
16242         doesn't intersect our caps with the template any more. Do it
16243         ourselves.
16244         (interleave_buffered_loop): Use g_newa instead of malloc/free.
16245
16246 2004-07-09  Wim Taymans  <wim@fluendo.com>
16247
16248         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16249         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16250         (compare_ranks), (print_feature), (gst_decode_bin_init),
16251         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16252         (try_to_link_1), (new_pad), (close_link), (type_found),
16253         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16254         (gst_decode_bin_change_state), (plugin_init):
16255         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16256         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16257         (gst_play_base_bin_dispose), (queue_overrun),
16258         (gen_preroll_element), (remove_prerolls), (no_more_pads),
16259         (new_stream), (setup_source), (gst_play_base_bin_set_property),
16260         (gst_play_base_bin_get_property), (play_base_eos),
16261         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16262         (gst_play_base_bin_remove_element),
16263         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16264         (gst_play_base_bin_unlink_stream),
16265         (gst_play_base_bin_get_streaminfo):
16266         * gst/playback/gstplaybasebin.h:
16267         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16268         (gst_play_bin_class_init), (gst_play_bin_init),
16269         (gst_play_bin_dispose), (gst_play_bin_set_property),
16270         (gst_play_bin_get_property), (gen_video_element),
16271         (gen_audio_element), (remove_sinks), (setup_sinks),
16272         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16273         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16274         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16275         (gst_play_bin_query), (plugin_init):
16276         * gst/playback/test4.c: (main):
16277         Work on object reuse and seeking.
16278
16279 2004-07-09  Wim Taymans  <wim@fluendo.com>
16280
16281         * examples/seeking/seek.c: (iterate):
16282         Don't consume all CPU in the idle loop.
16283
16284 2004-07-09  Wim Taymans  <wim@fluendo.com>
16285
16286         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
16287         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
16288         Add pad to element *after* setting the pad functions so that
16289         the scheduler can use the correct ones.
16290
16291 2004-07-09  Wim Taymans  <wim@fluendo.com>
16292
16293         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
16294         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
16295         Sync to keyframe after seek
16296
16297 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16298
16299         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
16300         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16301         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
16302         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
16303         * ext/libvisual/visual.c: (gst_visual_change_state):
16304         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
16305         * ext/theora/theoradec.c: (theora_dec_change_state):
16306         * ext/theora/theoraenc.c: (theora_enc_change_state):
16307         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
16308         * gst-libs/gst/navigation/navigation.c:
16309         * gst/adder/gstadder.c: (gst_adder_change_state):
16310         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
16311         (gst_audio_convert_get_buffer):
16312         * gst/multipart/multipartdemux.c:
16313         (gst_multipart_demux_change_state):
16314         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
16315         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16316         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
16317         * gst/videoscale/gstvideoscale.c:
16318         (gst_videoscale_handle_src_event):
16319         * gst/volume/gstvolume.c: (volume_chain_int16):
16320           don't assert in state change, this should be done by the base
16321           GstElement class.
16322           various debugging fixes.
16323
16324 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16325
16326         * configure.ac:
16327         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16328         (gst_play_dispose), (gst_play_set_location),
16329         (gst_play_set_data_src), (gst_play_set_video_sink),
16330         (gst_play_set_audio_sink), (gst_play_set_visualization),
16331         (gst_play_connect_visualization), (gst_play_get_sink_element),
16332         (gst_play_get_all_by_interface):
16333         * gst-libs/gst/play/play.h:
16334           add new method to get elements implementing an interface.
16335           add various error logging
16336
16337 2004-07-08  Wim Taymans  <wim@fluendo.com>
16338
16339         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
16340         (make_mpeg_pipeline), (make_mpegnt_pipeline),
16341         (make_playerbin_pipeline), (query_durations_elems),
16342         (query_durations_pads), (query_positions_elems),
16343         (query_positions_pads), (update_scale), (iterate), (stop_seek),
16344         (main):
16345         Added playbin seeking example.
16346
16347 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16348
16349         * gst-libs/gst/play/play.c: (gst_play_set_location),
16350         (gst_play_set_data_src), (gst_play_set_video_sink),
16351         (gst_play_set_audio_sink), (gst_play_set_visualization),
16352         (gst_play_connect_visualization), (gst_play_get_framerate):
16353           use a macro to look up elements from hash table
16354
16355 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16356
16357         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16358         (gst_play_get_length_callback), (gst_play_set_location),
16359         (gst_play_seek_to_time), (gst_play_set_data_src),
16360         (gst_play_set_video_sink), (gst_play_set_audio_sink),
16361         (gst_play_set_visualization), (gst_play_connect_visualization),
16362         (gst_play_get_sink_element):
16363         - add debugging info
16364         - fix looking up sink elements by iterating over complete caps
16365         - put everything except for source and autoplugger in a complete bin
16366
16367 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16368
16369         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
16370         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
16371         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
16372         (gst_alsa_sink_write), (gst_alsa_sink_loop):
16373         * ext/alsa/gstalsasink.h:
16374         - add debugging info
16375         - clean up schizophrenia of data/buffer/event
16376         - fix double event unref error
16377
16378 2004-07-08  Wim Taymans  <wim@fluendo.com>
16379
16380         * gst/playback/Makefile.am:
16381         Add headers to noinst
16382
16383 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16384
16385         * tools/gst-launch-ext-m.m:
16386         * tools/gst-launch-ext.1.in:
16387           convert to the third millenium
16388
16389 2004-07-07  David Schleef  <ds@schleef.org>
16390
16391         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
16392
16393 2004-07-07  Wim Taymans  <wim@fluendo.com>
16394
16395         * gst/playback/Makefile.am:
16396         * gst/playback/README:
16397         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16398         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16399         (compare_ranks), (print_feature), (gst_decode_bin_init),
16400         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16401         (try_to_link_1), (new_pad), (close_link), (type_found),
16402         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16403         (plugin_init):
16404         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16405         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16406         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
16407         (gen_preroll_element), (no_more_pads), (new_stream),
16408         (setup_source), (gst_play_base_bin_set_property),
16409         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
16410         (gst_play_base_bin_add_element),
16411         (gst_play_base_bin_remove_element),
16412         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16413         (gst_play_base_bin_unlink_stream),
16414         (gst_play_base_bin_get_streaminfo):
16415         * gst/playback/gstplaybasebin.h:
16416         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16417         (gst_play_bin_class_init), (gst_play_bin_init),
16418         (gst_play_bin_dispose), (gst_play_bin_set_property),
16419         (gst_play_bin_get_property), (gen_video_element),
16420         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
16421         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
16422         (gst_play_bin_get_formats), (gst_play_bin_convert),
16423         (gst_play_bin_get_query_types), (gst_play_bin_query),
16424         (plugin_init):
16425         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
16426         (gst_stream_info_get_type), (gst_stream_info_class_init),
16427         (gst_stream_info_init), (gst_stream_info_new),
16428         (gst_stream_info_dispose), (gst_stream_info_set_property),
16429         (gst_stream_info_get_property):
16430         * gst/playback/gststreaminfo.h:
16431         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16432         (main):
16433         * gst/playback/test2.c: (main):
16434         * gst/playback/test3.c: (update_scale), (main):
16435         More playbin fixes. Added README. Do better element filtering.
16436         Added base class to preroll media. Added test apps.
16437
16438 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16439
16440         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
16441         * ext/mpeg2dec/gstmpeg2dec.h:
16442           various debugging improvements.  Reset stream to next picture
16443           instead of sequence header, otherwise seeks cannot work.
16444
16445 2004-07-07  Wim Taymans  <wim@fluendo.com>
16446
16447         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
16448         (gst_video_box_class_init), (gst_video_box_set_property),
16449         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
16450         Use pad_alloc where possible.
16451
16452 2004-07-07  Wim Taymans  <wim@fluendo.com>
16453
16454         * sys/oss/gstosselement.c: (gst_osselement_reset),
16455         (gst_osselement_parse_caps):
16456         * sys/oss/gstosselement.h:
16457         * sys/oss/gstosssrc.c: (gst_osssrc_get):
16458         Fix offset on osssrc.
16459
16460 2004-07-07  Wim Taymans  <wim@fluendo.com>
16461
16462         * ext/theora/theora.c: (plugin_init):
16463         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
16464         (theora_dec_src_query), (theora_dec_chain):
16465         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16466         (theora_enc_sink_link), (theora_buffer_from_packet),
16467         (theora_push_packet), (theora_enc_chain):
16468         Fix theora granulepos calculation.
16469         Fix overflow in duration/position calculation.
16470         Bump rank to PRIMARY for theoradec.
16471         Use granulepos of last packet to calculate position.
16472         Set keyframe flag on buffers when needed.
16473
16474 2004-07-06  David Schleef  <ds@schleef.org>
16475
16476         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
16477         serious?  (Fixed, obviously.)
16478
16479 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16480
16481         * po/LINGUAS:
16482         * po/cs.po:
16483           added Czech translation (Miloslav Trmac)
16484
16485 2004-07-05  Wim Taymans  <wim@fluendo.com>
16486
16487         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16488         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16489         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
16490         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16491         (close_link), (type_found), (gst_decode_bin_set_property),
16492         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
16493         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
16494         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
16495         (gst_decode_bin_query), (plugin_init):
16496         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16497         (gst_play_bin_class_init), (gst_play_bin_init),
16498         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
16499         (get_video_element), (new_pad), (setup_source),
16500         (gst_play_bin_set_property), (gst_play_bin_get_property),
16501         (gst_play_bin_change_state), (gst_play_bin_add_element),
16502         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
16503         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16504         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16505         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
16506         * gst/playback/test.c: (main):
16507         More fixes, cleaned up playbin, make it use decodebin. Added
16508         threaded property to playbin.
16509
16510 2004-07-05  Wim Taymans  <wim@fluendo.com>
16511
16512         * configure.ac:
16513         * gst/playback/Makefile.am:
16514         * gst/playback/decodetest.c: (main):
16515         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16516         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16517         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
16518         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16519         (close_link), (type_found), (gst_decode_bin_set_property),
16520         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
16521         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
16522         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
16523         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
16524         (plugin_init):
16525         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16526         (gst_play_bin_class_init), (gst_play_bin_init),
16527         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
16528         (collect_sink_pads), (find_compatibles), (close_pad_link),
16529         (try_to_link_1), (new_pad), (close_link), (type_found),
16530         (setup_source), (gst_play_bin_set_property),
16531         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
16532         (compare_ranks), (gst_play_bin_collect_factories),
16533         (gst_play_bin_change_state), (gst_play_bin_add_element),
16534         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
16535         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16536         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16537         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
16538         * gst/playback/test.c: (main):
16539         Added some playback helper elements and some test apps, very alpha
16540         still.
16541
16542 2004-07-04  Benjamin Otte  <otte@gnome.org>
16543
16544         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
16545           only restart audio when we indeed have an xrun to fix repeated
16546           xruns. Fix suggested by Giuliano Pochini.
16547
16548 2004-07-03  David Schleef  <ds@schleef.org>
16549
16550         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
16551         call to gst_debug_log() if debugging is disabled (bug #145118)
16552
16553 2004-07-03  Benjamin Otte  <otte@gnome.org>
16554
16555         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
16556           use our own functions for restarting the alsa device.
16557         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16558           I should apply patches myself - use MIN for the third argument, not
16559           the second, this fixes seeking
16560
16561 2004-07-02  David Schleef  <ds@schleef.org>
16562
16563         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
16564         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
16565         do with the logic.
16566
16567 2004-07-02  David Schleef  <ds@schleef.org>
16568
16569         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
16570         output buffers.  Fix logic mistake.  (bug #144866)
16571
16572 2004-07-02  David Schleef  <ds@schleef.org>
16573
16574         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
16575         on X.  (bug #144753)
16576
16577 2004-07-02  David Schleef  <ds@schleef.org>
16578
16579         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
16580         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
16581         (bug #144624)
16582         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
16583         (gst_osselement_rate_probe_check): Add another workaround for
16584         buggy drivers (bug #145336)
16585
16586 2004-07-02  David Schleef  <ds@schleef.org>
16587
16588         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
16589         Most systems don't have MSG_NOSIGNAL.
16590
16591 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16592
16593         * Makefile.am:
16594         * gst-libs/gst/colorbalance/Makefile.am:
16595         * gst-libs/gst/mixer/Makefile.am:
16596         * gst-libs/gst/play/Makefile.am:
16597         * gst-libs/gst/tuner/Makefile.am:
16598           (hopefully) fix both install and dist and make error message useful.
16599           needs testing across automakes.
16600
16601 2004-07-02  Benjamin Otte  <otte@gnome.org>
16602
16603         * ext/ogg/gstogg.c: (plugin_init):
16604           we require bytestream now
16605         * ext/ogg/gstoggdemux.c:
16606           huge diff to implement chain setup in a fast and generic way. This
16607           improves tag reading and startup of huge files (read: Theora videos)
16608           quite a bit. It probably contains bugs, too, so please test.
16609           Seeking is not improved to the fast method.
16610
16611 2004-06-29  Wim Taymans  <wim@fluendo.com>
16612
16613         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
16614         * ext/ogg/gstoggmux.c:
16615         Fix memleak in oggdemux when running unconnected pads.
16616         doc update in mux, start working on keyframe mode.
16617
16618 2004-06-29  Benjamin Otte  <otte@gnome.org>
16619
16620         * sys/oss/gstosssink.c:
16621         * sys/oss/gstosssrc.c:
16622           advertise correct template caps - we indeed do non-native endianness
16623           and 8bit audio has no endianness
16624         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
16625         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
16626           avoid (wrong) duplications in getcaps function and return
16627           template caps
16628
16629 2004-06-29  Wim Taymans  <wim@fluendo.com>
16630
16631         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16632         (gst_multifdsink_class_init), (gst_multifdsink_add),
16633         (gst_multifdsink_remove), (gst_multifdsink_clear),
16634         (gst_multifdsink_client_remove),
16635         (gst_multifdsink_handle_client_read),
16636         (gst_multifdsink_client_queue_data),
16637         (gst_multifdsink_client_queue_caps),
16638         (gst_multifdsink_client_queue_buffer),
16639         (gst_multifdsink_handle_client_write),
16640         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16641         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16642         (gst_multifdsink_init_send), (gst_multifdsink_close):
16643         Fix wrong GList iteration that could crash the server when
16644         more then 2 clients disconnect at the same time. Read all the
16645         pending commands in one batch to recover from command storms under
16646         very heavy load.
16647
16648 2004-06-28  Wim Taymans  <wim@fluendo.com>
16649
16650         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
16651         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
16652         (gst_videomixer_pad_set_property),
16653         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
16654         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
16655         (gst_videomixer_class_init), (gst_videomixer_init),
16656         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
16657         (pad_zorder_compare), (gst_videomixer_sort_pads),
16658         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
16659         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
16660         (gst_videomixer_update_queues), (gst_videomixer_loop),
16661         (plugin_init):
16662         Avoid divide by zero, choose masterpad as the pad with the highest
16663         framerate.
16664
16665 2004-06-27  Julien Moutte  <julien@moutte.net>
16666
16667         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
16668         (gst_ximagesink_xwindow_new):
16669         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
16670         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
16671         function directly. We might want to call it from somewhere else one day.
16672
16673 2004-06-27  Julien Moutte  <julien@moutte.net>
16674
16675         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
16676         (gst_ximagesink_xwindow_new):
16677         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
16678         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
16679         window decorations.
16680
16681 2004-06-27  Wim Taymans  <wim@fluendo.com>
16682
16683         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
16684         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
16685         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
16686         (gst_dvdec_set_property), (gst_dvdec_get_property):
16687         * ext/dv/gstdvdec.h:
16688         Implement drop_factor property to lower the framerate with
16689         a factor.
16690
16691 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16692
16693         * gst-libs/gst/colorbalance/Makefile.am:
16694         * gst-libs/gst/mixer/Makefile.am:
16695         * gst-libs/gst/play/Makefile.am:
16696         * gst-libs/gst/tuner/Makefile.am:
16697           unbreak Company's fix that didn't install the -enum.h files
16698
16699 2004-06-27  Wim Taymans  <wim@fluendo.com>
16700
16701         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
16702         (gst_dvdec_change_state):
16703         * ext/dv/gstdvdec.h:
16704         Fix timestamp, duration and offset of the buffers.
16705
16706 2004-06-27  Wim Taymans  <wim@fluendo.com>
16707
16708         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16709         (gst_multifdsink_class_init), (gst_multifdsink_add),
16710         (gst_multifdsink_remove), (gst_multifdsink_clear),
16711         (gst_multifdsink_client_remove),
16712         (gst_multifdsink_handle_client_read),
16713         (gst_multifdsink_client_queue_data),
16714         (gst_multifdsink_client_queue_caps),
16715         (gst_multifdsink_client_queue_buffer),
16716         (gst_multifdsink_handle_client_write),
16717         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16718         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16719         (gst_multifdsink_init_send), (gst_multifdsink_close):
16720         * gst/tcp/gstmultifdsink.h:
16721         * gst/tcp/gsttcpserversink.c:
16722         (gst_tcpserversink_handle_server_read),
16723         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
16724         More multifdsink fixes, more recovery policy fixes.
16725         Removed stupid g_print
16726
16727 2004-06-26  Wim Taymans  <wim@fluendo.com>
16728
16729         * gst/tcp/Makefile.am:
16730         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16731         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
16732         (gst_multifdsink_class_init), (gst_multifdsink_init),
16733         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
16734         (gst_multifdsink_handle_client_read),
16735         (gst_multifdsink_client_queue_data),
16736         (gst_multifdsink_client_queue_caps),
16737         (gst_multifdsink_client_queue_buffer),
16738         (gst_multifdsink_handle_client_write),
16739         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16740         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16741         (gst_multifdsink_chain), (gst_multifdsink_set_property),
16742         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
16743         (gst_multifdsink_close), (gst_multifdsink_change_state):
16744         * gst/tcp/gstmultifdsink.h:
16745         * gst/tcp/gsttcpplugin.c: (plugin_init):
16746         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
16747         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
16748         (gst_tcpserversink_handle_server_read),
16749         (gst_tcpserversink_handle_select),
16750         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
16751         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
16752         * gst/tcp/gsttcpserversink.h:
16753         Added multifdsink, made tcpserversink a subclass of fdsink, removed
16754         one of the locks, added recovery policy to multifdsink.
16755
16756 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16757
16758         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
16759           fix decision for when getting frames with same timestamp
16760         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
16761         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
16762         (gst_v4lsrc_get_property):
16763         * sys/v4l/gstv4lsrc.h:
16764           add latency offset property
16765
16766 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16767
16768         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
16769         (plugin_init):
16770           fix debugging. add category.
16771
16772 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
16773
16774         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
16775           fix wrong offsets
16776
16777 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
16778
16779         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16780         (gst_alsa_src_get_time), (gst_alsa_src_loop),
16781         (gst_alsa_src_change_state):
16782           return a time that is in sync with the element's processing
16783
16784 2004-06-25  Wim Taymans  <wim@fluendo.com>
16785
16786         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16787         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
16788         (gst_tcpserversink_client_remove),
16789         (gst_tcpserversink_handle_client_read),
16790         (gst_tcpserversink_client_queue_data),
16791         (gst_tcpserversink_client_queue_caps),
16792         (gst_tcpserversink_client_queue_buffer),
16793         (gst_tcpserversink_handle_client_write),
16794         (gst_tcpserversink_queue_buffer),
16795         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
16796         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
16797         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
16798         (gst_tcpserversink_close):
16799         * gst/tcp/gsttcpserversink.h:
16800         Serversink rewrite. Really do non blocking writes to clients and
16801         maintain an internal queue to handle slower clients while not
16802         disturbing fast clients.
16803
16804 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
16805
16806         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
16807           better debug, don't override OFFSET and OFFSET_END
16808
16809 2004-06-25  Iain <iain@prettypeople.org>
16810
16811         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
16812         name=source for the wavparse pipeline.
16813
16814 2004-06-24  Johan Dahlin  <johan@gnome.org>
16815
16816         * ext/theora/theoraenc.c (theora_enc_chain): Call
16817         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
16818         streamheader caps are set correctly.
16819
16820 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
16821
16822         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
16823         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
16824           respect minimum bitrate; same could be done for max bitrate
16825
16826 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
16827
16828         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
16829         (gst_vorbisenc_setup):
16830           fix sample rate range
16831
16832 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
16833
16834         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
16835         (gst_oggvorbisenc_setup):
16836         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16837         (gst_vorbisenc_setup):
16838           resolve ambiguities in code and description
16839
16840 2004-06-24  Wim Taymans  <wim@fluendo.com>
16841
16842         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
16843         * ext/alsa/gstalsa.h:
16844         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16845         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
16846         Use alsa trigger_tstamp to get the timestamp of the first
16847         sample in the buffer for more precise sync. Some cleanups.
16848
16849 2004-06-24  Wim Taymans  <wim@fluendo.com>
16850
16851         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
16852         (gst_audiorate_init), (gst_audiorate_chain),
16853         (gst_audiorate_set_property), (gst_audiorate_get_property):
16854         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16855         (gst_videorate_chain):
16856         Added some logging, fixed an overflow bug in videorate.
16857
16858 2004-06-24  Benjamin Otte  <otte@gnome.org>
16859
16860         * ext/kio/Makefile.am:
16861           fix for builddir != srcdir and distcheck
16862
16863 2004-06-24  Benjamin Otte  <otte@gnome.org>
16864
16865         * gst-libs/gst/colorbalance/Makefile.am:
16866         * gst-libs/gst/mixer/Makefile.am:
16867         * gst-libs/gst/play/Makefile.am:
16868         * gst-libs/gst/tuner/Makefile.am:
16869         * gst/tcp/Makefile.am:
16870         * sys/dxr3/Makefile.am:
16871           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
16872           tarball.
16873           Also add all *.list files that were missing.
16874         * Makefile.am:
16875           add a distcheck hook to ensure the above doesn't happen again.
16876
16877 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
16878
16879         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
16880
16881 2004-06-23  Colin Walters  <walters@redhat.com>
16882
16883         * m4/Makefile.am: Distribute gst-fionread.m4.
16884
16885 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16886
16887         * configure.ac: back to dev
16888
16889 2004-06-23  Wim Taymans  <wim@fluendo.com>
16890
16891         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
16892         (gst_alsa_xrun_recovery):
16893         * ext/alsa/gstalsa.h:
16894         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16895         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
16896         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16897         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
16898         (gst_alsa_src_loop):
16899         Add clock to alsasrc. Take new capture timestamp when
16900         restarting after an overrun. Split up some functions between
16901         alsasrc and alsasink.
16902
16903 === release 0.8.2 ===
16904
16905 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
16906
16907         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
16908         (gst_alsa_change_state), (gst_alsa_update_avail),
16909         (gst_alsa_xrun_recovery):
16910         * ext/alsa/gstalsa.h:
16911         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16912           merge back changes from release
16913
16914 2004-06-23  Wim Taymans  <wim@fluendo.com>
16915
16916         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
16917         (gst_audiorate_init), (gst_audiorate_chain),
16918         (gst_audiorate_set_property), (gst_audiorate_get_property):
16919         Implement sample dropping and notify
16920
16921 2004-06-22  Wim Taymans  <wim@fluendo.com>
16922
16923         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16924         (theora_enc_sink_link), (theora_buffer_from_packet),
16925         (theora_push_packet), (theora_enc_chain):
16926         Some cleanups, make sure the timestamps are correct.
16927
16928 2004-06-22  Wim Taymans  <wim@fluendo.com>
16929
16930         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
16931         (gst_alsa_change_state), (gst_alsa_update_avail),
16932         (gst_alsa_xrun_recovery):
16933         * ext/alsa/gstalsa.h:
16934         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
16935         Cleanups, take queued samples into account when reporting
16936         the time.
16937
16938 2004-06-22  Wim Taymans  <wim@fluendo.com>
16939
16940         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16941         (gst_videorate_init):
16942         Initialize the property as well.
16943
16944 2004-06-22  Wim Taymans  <wim@fluendo.com>
16945
16946         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16947         (gst_videorate_init), (gst_videorate_chain),
16948         (gst_videorate_set_property), (gst_videorate_get_property):
16949         Add property to make videorate silent.
16950         Add property to prefer new frames over old ones.
16951
16952 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16953
16954         * sys/osxvideo/Makefile.am:
16955         Workaround so that the osxvideo .so file gets linked with the
16956         Cocoa, OpenGL and QuickTime frameworks
16957
16958 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16959
16960         * sys/osxaudio/Makefile.am:
16961         Workaround so that the osxaudio .so file gets linked with the
16962         CoreAudio framework
16963
16964 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16965
16966         * configure.ac:
16967         Whoops, my fault...fixed build issues
16968
16969 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16970
16971         * configure.ac:
16972         Add objective-c support if running in Darwin/Mac OS X
16973         * sys/Makefile.am:
16974         * sys/osxvideo:
16975         * sys/osxvideo/Makefile.am:
16976         * sys/osxvideo/osxvideosink.h:
16977         * sys/osxvideo/osxvideosink.m:
16978         * sys/osxvideo/cocoawindow.h:
16979         * sys/osxvideo/cocoawindow.m:
16980         Add osxvideosink, a cocoa-based osx video sink
16981
16982
16983 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
16984         * ext/dvdnav/gst-dvd:
16985         Grab the gconf key from the right spot
16986         * gst/debug/gstnavseek.c: (gst_navseek_init),
16987         (gst_navseek_segseek), (gst_navseek_handle_src_event),
16988         (gst_navseek_chain):
16989         * gst/debug/gstnavseek.h:
16990           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
16991           and loop parameters of a segment seek.
16992         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
16993         (gst_videotestsrc_get_event_masks),
16994         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
16995         * gst/videotestsrc/gstvideotestsrc.h:
16996           Add seeking support to videotestsrc
16997           Initialise the timestamp_offset variable.
16998
16999 2004-06-18  Wim Taymans  <wim@fluendo.com>
17000
17001         * ext/sidplay/gstsiddec.cc:
17002         Fix negotiation and set correct end offset.
17003
17004 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17005
17006         * configure.ac: branch and prerelease
17007
17008 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17009
17010         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
17011         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
17012         (gst_tcpclientsrc_init_receive):
17013         * gst/tcp/gsttcpclientsrc.h:
17014           read caps when connecting to server for GDP so we set them correctly
17015
17016 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17017
17018         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
17019           notify drops and duplicates
17020         * gst/videoscale/videoscale.c: (videoscale_get_structure):
17021           no good reason to limit ourselves to 100x100
17022
17023 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17024
17025         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
17026         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
17027         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17028         (gst_v4lsrc_get_property):
17029         * sys/v4l/gstv4lsrc.h:
17030         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17031         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
17032         (gst_v4l_set_audio):
17033         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
17034         (gst_v4lsrc_try_capture):
17035         * sys/v4l/v4lsrc_calls.h:
17036           change try_palette to more general try_capture
17037           add autoprobe option so we can turn off autoprobing
17038           various fixes
17039
17040 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17041
17042         * configure.ac:
17043           add videorate
17044         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
17045         (gst_ximagesink_class_init):
17046         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
17047         (gst_xvimagesink_class_init):
17048           run them as finalize, not dispose, since dispose can be invoked
17049           multiple times
17050
17051 2004-06-17  Wim Taymans  <wim@fluendo.com>
17052
17053         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
17054         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
17055         * ext/alsa/gstalsa.h:
17056         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
17057         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
17058         (gst_alsa_src_change_state):
17059         * ext/alsa/gstalsasrc.h:
17060         Make the xrun code timestamp and offset the buffers correctly.
17061         moved the clock to the base class, use alsa methods to get time.
17062         Do correct timestamping on outgoing buffers.
17063
17064 2004-06-17  Wim Taymans  <wim@fluendo.com>
17065
17066         * gst/audiorate/Makefile.am:
17067         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
17068         (gst_audiorate_base_init), (gst_audiorate_class_init),
17069         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
17070         (gst_audiorate_set_property), (gst_audiorate_get_property),
17071         (gst_audiorate_change_state), (plugin_init):
17072         Added an audiorate converter that fills in gaps.
17073
17074 2004-06-17  Johan Dahlin  <johan@gnome.org>
17075
17076         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
17077
17078 2004-06-16  Wim Taymans  <wim@fluendo.com>
17079
17080         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
17081         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17082         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17083         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17084         (gst_v4lsrc_get_property):
17085         * sys/v4l/gstv4lsrc.h:
17086         Added a copy mode to v4lsrc where it will output a copied version
17087         of its internal hardware buffer.
17088         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
17089         can't | them.
17090
17091 2004-06-16  Wim Taymans  <wim@fluendo.com>
17092
17093         * sys/oss/gstosssrc.c: (gst_osssrc_get):
17094         Timestamp fixes.
17095
17096 2004-06-16  Wim Taymans  <wim@fluendo.com>
17097
17098         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17099         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17100         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17101         (gst_v4lsrc_get_property):
17102         * sys/v4l/gstv4lsrc.h:
17103         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
17104         Added a sync mode enum property to control v4lsrc timestamp method
17105         Removed the use-fixed-fps property and moved functionality in
17106         the enum.
17107         Don't error on an error value from v4l-conf, it might not always
17108         be a real error.
17109
17110 2004-06-16  Wim Taymans  <wim@fluendo.com>
17111
17112         * gst/videorate/Makefile.am:
17113         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
17114         (gst_videorate_base_init), (gst_videorate_class_init),
17115         (gst_videorate_getcaps), (gst_videorate_link),
17116         (gst_videorate_init), (gst_videorate_chain),
17117         (gst_videorate_set_property), (gst_videorate_get_property),
17118         (gst_videorate_change_state), (plugin_init):
17119         Added a video timestamp corrector.
17120
17121 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17122
17123         fixed a potential leak with previous commit
17124
17125         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17126
17127 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17128
17129         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17130         Added missing refcount, fixes bug #144425
17131         Cheers Tim for finding the bug
17132
17133 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17134
17135         * sys/v4l/gstv4l.c: (plugin_init):
17136         * sys/v4l/gstv4lcolorbalance.c:
17137         * sys/v4l/gstv4lcolorbalance.h:
17138         * sys/v4l/gstv4lelement.c:
17139         * sys/v4l/gstv4lelement.h:
17140         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
17141         * sys/v4l/gstv4lmjpegsink.h:
17142         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
17143         * sys/v4l/gstv4lmjpegsrc.h:
17144         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17145         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17146         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
17147         * sys/v4l/gstv4lsrc.h:
17148         * sys/v4l/gstv4ltuner.c:
17149         * sys/v4l/gstv4ltuner.h:
17150         * sys/v4l/gstv4lxoverlay.c:
17151         * sys/v4l/gstv4lxoverlay.h:
17152         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
17153         (gst_v4l_set_window), (gst_v4l_enable_overlay):
17154         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17155         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
17156         (gst_v4l_set_audio):
17157         * sys/v4l/v4l_calls.h:
17158         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
17159         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
17160         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
17161         (gst_v4lmjpegsink_playback_init),
17162         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
17163         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
17164         (gst_v4lmjpegsink_playback_stop),
17165         (gst_v4lmjpegsink_playback_deinit):
17166         * sys/v4l/v4lmjpegsink_calls.h:
17167         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
17168         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
17169         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
17170         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
17171         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
17172         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
17173         * sys/v4l/v4lmjpegsrc_calls.h:
17174         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
17175         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
17176         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
17177         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
17178         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
17179         (gst_v4lsrc_try_palette):
17180         * sys/v4l/v4lsrc_calls.h:
17181           bunch of paranoia cleanups
17182
17183 2004-06-14  David Schleef  <ds@schleef.org>
17184
17185         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
17186         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
17187         Send discont events and change timestamps appropriately when
17188         we get a seek event.  (bug #144240)
17189         * ext/cdparanoia/gstcdparanoia.h:
17190
17191 2004-06-14  Benjamin Otte  <otte@gnome.org>
17192
17193         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
17194           snd_pcm_hw_params_set_rate  since the latter fails for no good
17195           reason on some setups.
17196
17197 2004-06-14  David Schleef  <ds@schleef.org>
17198
17199         * gst/volume/demo.c: (value_changed_callback): exp10() is not
17200         standard.  Thank you for playing.
17201
17202 2004-06-14  Wim Taymans  <wim@fluendo.com>
17203
17204         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17205         Patch 1.3 broke the ordering of the colorspace info and
17206         made the plugin basically work by coincidence, reordered
17207         the info.
17208
17209 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17210
17211         * ext/lame/gstlame.c:
17212         * ext/mad/gstmad.c:
17213           sync caps.  Make sure mad can only output a list of rates, not
17214           a full range.  In the future, have three caps lists for each of the
17215           mpeg versions.  Change mpegversion to a double as well.
17216
17217 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17218
17219         * gst/volume/.cvsignore:
17220         * gst/volume/Makefile.am:
17221         * gst/volume/demo.c: (value_changed_callback), (idler),
17222         (setup_gui), (main):
17223           added small demo app
17224
17225 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
17226         * ext/esd/esdsink.c: (gst_esdsink_change_state):
17227         * ext/esd/esdsink.h:
17228         Close the esd connection on pause, because esd will just wait -
17229         blocking all other esd clients indefinitely.
17230
17231 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
17232
17233         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
17234           previous commit with GST_DEBUG
17235
17236 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17237
17238         * configure.ac:
17239           add a header check for a dvdread header in dvdnav.  Fixes #133002
17240
17241 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17242
17243         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
17244         * gst/tcp/gsttcpclientsink.h:
17245         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
17246         * gst/tcp/gsttcpclientsrc.h:
17247         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
17248         (gst_tcpserversink_handle_server_read),
17249         (gst_tcpserversink_init_send):
17250         * gst/tcp/gsttcpserversink.h:
17251         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
17252         * gst/tcp/gsttcpserversrc.h:
17253         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
17254         version of IP)
17255
17256 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17257
17258         * configure.ac:
17259         Added ogg library so that OSX detects libtheora properly
17260
17261 2004-06-11  Wim Taymans  <wim@fluendo.com>
17262
17263         * ext/theora/theoradec.c: (theora_dec_chain),
17264         (theora_dec_change_state):
17265         Don't try to decode frames before we received a keyframe.
17266
17267 2004-06-11  Wim Taymans  <wim@fluendo.com>
17268
17269         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17270         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17271         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17272         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17273         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17274         Added property to set the maximum delay of a page.
17275
17276 2004-06-10  Wim Taymans  <wim@fluendo.com>
17277
17278         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17279         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17280         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17281         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17282         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17283         Added max-delay property to control the maximum amount
17284         of data to put in one page.
17285
17286 2004-06-10  Wim Taymans  <wim@fluendo.com>
17287
17288         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17289         (gst_theora_enc_init), (theora_enc_sink_link),
17290         (theora_buffer_from_packet), (theora_enc_set_property),
17291         (theora_enc_get_property):
17292         Set duration on encoded buffer, added some more properties
17293
17294 2004-06-10  Wim Taymans  <wim@fluendo.com>
17295
17296         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
17297         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17298         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
17299         * ext/theora/theoraenc.c: (theora_enc_chain):
17300         Fix refcounting bugs
17301
17302 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17303
17304         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17305         (gst_asf_demux_loop), (gst_asf_demux_process_file),
17306         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
17307         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
17308         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
17309         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
17310         (gst_asf_demux_change_state):
17311         * gst/asfdemux/gstasfdemux.h:
17312           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
17313           feels like. I think we should set a new requirement for demuxers
17314           from now on to implement sane loop functions, data loops, query
17315           and seek functions before first commit into CVS. And this commit
17316           fixes all of the above.
17317
17318 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
17319
17320         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
17321           vorbis comments are properly encoded in UTF-8 before adding them
17322           to a GstTagList
17323
17324 2004-06-09  Benjamin Otte  <otte@gnome.org>
17325
17326         * ext/alsa/gstalsa.c: (add_channels):
17327           handle min <= max correctly
17328         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
17329         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
17330           add fixation functions so we fixate correctly. No preferring of alaw
17331           anymore because it's the first structure.
17332         * ext/alsa/gstalsa.h:
17333         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
17334         (gst_alsa_hw_params_dump):
17335           add functions to ease debugging in alsalib
17336         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
17337         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
17338         (gst_alsa_start_audio):
17339           only specify hw params if we really setup a format (fixes #134007 -
17340           or at least works around it)
17341
17342 2004-06-09  Wim Taymans  <wim@fluendo.com>
17343
17344         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
17345         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
17346         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
17347         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
17348         (gst_ogg_mux_loop):
17349         Use stream caps to setup the initial pages in the ogg stream.
17350         Correctly set the streamheader caps on the srcpad.
17351
17352 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17353
17354         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17355         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17356         (gst_v4lsrc_getcaps):
17357         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17358         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
17359           add querying of fps lists for webcams.  Negotiating to a framerate
17360           now works.
17361
17362 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17363
17364         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
17365         (theora_push_buffer), (theora_push_packet),
17366         (theora_set_header_on_caps), (theora_enc_chain):
17367           mark buffers and put on streamheader, raw theora streaming
17368           now works too, whee
17369
17370 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17371
17372         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17373         (gst_tcp_gdp_read_caps):
17374           do a looping read for caps and GDP headers too
17375
17376 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17377
17378         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17379         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
17380           return EOS instead of NULL in _get
17381
17382 2004-06-08  Wim Taymans  <wim@fluendo.com>
17383
17384         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17385         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
17386         (gst_tcp_gdp_write_caps):
17387         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17388         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
17389         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
17390         Memory leak fixes
17391
17392 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17393
17394         * ext/vorbis/Makefile.am:
17395         * ext/vorbis/vorbis.c: (plugin_init):
17396         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
17397         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
17398         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
17399         (vorbis_parse_change_state):
17400         * ext/vorbis/vorbisparse.h:
17401           adding a vorbisparse element that marks the buffers, streaming
17402           raw vorbis using GDP now works, whee
17403
17404 2004-06-08  Wim Taymans  <wim@fluendo.com>
17405
17406         * ext/jpeg/Makefile.am:
17407         * ext/jpeg/README:
17408         * ext/jpeg/gstjpeg.c: (plugin_init):
17409         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
17410         (gst_smokedec_base_init), (gst_smokedec_class_init),
17411         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
17412         * ext/jpeg/gstsmokedec.h:
17413         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
17414         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
17415         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
17416         (gst_smokeenc_resync), (gst_smokeenc_chain),
17417         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
17418         * ext/jpeg/gstsmokeenc.h:
17419         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
17420         (smokecodec_flush_destination), (smokecodec_term_destination),
17421         (smokecodec_init_source), (smokecodec_fill_input_buffer),
17422         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
17423         (smokecodec_term_source), (smokecodec_encode_new),
17424         (smokecodec_decode_new), (smokecodec_info_free),
17425         (smokecodec_set_quality), (smokecodec_get_quality),
17426         (smokecodec_set_threshold), (smokecodec_get_threshold),
17427         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
17428         (find_best_size), (abs_diff), (put), (smokecodec_encode),
17429         (smokecodec_parse_header), (smokecodec_decode):
17430         * ext/jpeg/smokecodec.h:
17431         Added a new simple jpeg based codec
17432
17433 2004-06-08  Wim Taymans  <wim@fluendo.com>
17434
17435         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17436         (gst_multipart_mux_loop):
17437         Fix memory leak
17438
17439 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17440
17441         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17442         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
17443         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
17444         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
17445         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
17446         * gst/tcp/gsttcpserversink.h:
17447           take streamheader into account
17448
17449 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17450
17451         * gst/level/Makefile.am:
17452         * gst/level/gstlevel.c: (gst_level_class_init):
17453           clean up marshal generation
17454
17455 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17456
17457         * gst/tcp/Makefile.am:
17458         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
17459         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
17460         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
17461         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
17462         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
17463         (gst_tcpclientsrc_get_property):
17464         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
17465         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
17466         (gst_tcpserversink_handle_client_read),
17467         (gst_tcpserversink_handle_client_write),
17468         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
17469         * gst/tcp/gsttcpserversink.h:
17470           add signals client-added and client-removed
17471         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
17472         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
17473         (gst_tcpserversrc_get_property):
17474         uniformized, change default protocol to NONE
17475         * gst/tcp/gsttcp-marshal.list: added
17476 2004-06-07  Benjamin Otte  <otte@gnome.org>
17477
17478         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17479           handle discont events if they happen before caps nego
17480
17481 2004-06-07  Wim Taymans  <wim@fluendo.com>
17482
17483         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
17484         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
17485         (gst_multipart_demux_plugin_init):
17486         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17487         (gst_multipart_mux_init), (gst_multipart_mux_loop),
17488         (gst_multipart_mux_change_state):
17489         Small updates, fix a memleak
17490
17491 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17492
17493         * configure.ac: OSS portability
17494         * ext/arts/gst_arts.c: idem
17495         * sys/oss/gstosselement.c: idem
17496         * sys/oss/gstossmixer.c: idem
17497         * sys/oss/gstosssink.c: idem
17498         * sys/oss/gstosssrc.c: idem
17499         * sys/oss/oss_probe.c: idem
17500           - check for soundcard.h in different places for some BSD
17501
17502 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
17503
17504         * AUTHORS:
17505         Add me to the authors file
17506         * configure.ac:
17507         Increase the libdv requirement to >= version 0.100
17508         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
17509         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
17510         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
17511         * ext/dv/gstdvdec.h:
17512         Add support for the new_media flag when sending DISCONT events
17513         Make the querying work when video pad is not linked
17514
17515 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
17516
17517         reviewed by Benjamin Otte  <otte@gnome.org>
17518
17519         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
17520           create a NULL-initialized array of pads, so we don't think they
17521           exist already. (fixes #143130)
17522
17523 2004-06-07  Benjamin Otte  <otte@gnome.org>
17524
17525         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
17526         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
17527         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
17528           don't use // coments
17529
17530 2004-06-07  Benjamin Otte  <otte@gnome.org>
17531
17532         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
17533           cast to GstClockTime to get higher granularity
17534         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17535           use gst_element_set_time_delay to get the exact time
17536         * ext/mad/gstmad.c: (gst_mad_chain):
17537           use the negotiated rate instead of the current frame's rate which
17538           might be wrong because of bit errors. This avoids emitting totally
17539           bogus timestamps and screwing sync.
17540         (fixes #143454)
17541
17542 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
17543
17544         reviewed by Benjamin Otte  <otte@gnome.org>
17545
17546         * gst/adder/gstadder.c: (gst_adder_loop):
17547           properly error out when no negotiation has happened yet. (fixes
17548           #143032)
17549
17550 2004-06-06  Benjamin Otte  <otte@gnome.org>
17551
17552         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
17553           forward correctly transformed offset in discont events. Based on
17554           patch by Arwed v. Merkatz. (fixes #142851)
17555
17556 2004-06-06  David Schleef  <ds@schleef.org>
17557
17558         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
17559         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
17560         problems on several systems.
17561
17562 2004-06-06  Benjamin Otte  <otte@gnome.org>
17563
17564         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
17565           use explicit caps on the srcpad
17566         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17567           properly error out if caps couldn't be set (fixes #142764)
17568
17569 2004-06-06  Benjamin Otte  <otte@gnome.org>
17570
17571         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
17572         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
17573         (gst_alsa_start_audio):
17574           - don't call set_periods_integer anymore, it breaks the
17575           configuration randomly
17576           - call snd_pcm_hw_params_set_access directly instead of using masks
17577           - don't fail if the sw_params can't be set, just use the default
17578           params and hope it works. Alsalib has weird issues when you touch
17579           sw_params and does no proper error reporting about what failed.
17580         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
17581         (gst_alsa_close_audio):
17582           make our alsa debugging go via gst debugging and not conditionally
17583           defined
17584         * ext/alsa/gstalsa.h:
17585           add ALSA_DEBUG_FLUSH macro
17586         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
17587         (plugin_init):
17588           wrap alsa errors to be printed via the gst debugging system and not
17589           spammed to stderr
17590
17591 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17592
17593         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17594         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
17595         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
17596         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
17597         (qtdemux_parse_trak):
17598         * gst/qtdemux/qtdemux.h:
17599           Bitch. Also known as seeking, querying & co.
17600         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
17601         (gst_osssink_change_state):
17602         * sys/oss/gstosssink.h:
17603           Resyncing is for weenies, this hack is no longer needed and was
17604           broken anyway (since it - unintendedly - always leaves resync to
17605           TRUE).
17606
17607 2004-06-05  Andrew Turner <zxombie@hotpop.com>
17608
17609         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
17610         * gst/tcp/gsttcpclientsrc.h: idem
17611           - define MSG_NOSIGNAL if not done
17612           - include unistd.h for off_t
17613           (fixes #143749)
17614
17615 2004-06-05  Benjamin Otte  <otte@gnome.org>
17616
17617         * configure.ac:
17618         * ext/kio/Makefile.am:
17619           check for qt's moc preprocessor explicitly and use it
17620
17621 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17622
17623         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
17624           don't get a signal for EPIPE on socket writes
17625           (somebody check if this works on other platforms)
17626
17627 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
17628
17629         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
17630         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
17631           check error condition on available samples correctly
17632
17633 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
17634
17635         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
17636           avoid a segfault
17637         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
17638         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
17639         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
17640         (gst_tcpserversrc_gdp_read_header):
17641          use ssize_t over size_t since the former is signed and thus the
17642          check for error codes can work
17643
17644 2004-06-02  Wim Taymans  <wim@fluendo.com>
17645
17646         reviewed by: Johan
17647
17648         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17649         (gst_multipart_mux_loop):
17650         Oops
17651
17652 2004-06-02  Wim Taymans  <wim@fluendo.com>
17653
17654         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17655         (gst_multipart_mux_init), (gst_multipart_mux_loop),
17656         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
17657         (gst_multipart_mux_change_state):
17658         Added configurable boundary specifier, added the value as a
17659         caps field as well.
17660
17661 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17662
17663         * gst/tcp/gsttcp.c:
17664         * gst/tcp/gsttcpclientsrc.c:
17665         * gst/tcp/gsttcpclientsrc.h:
17666         * gst/tcp/gsttcpserversrc.c:
17667           - portability fix, to compile on OSX
17668             (fixes #143146)
17669
17670         * sys/osxaudio/gstosxaudioelement.c:
17671         * sys/osxaudio/gstosxaudiosink.c:
17672         * sys/osxaudio/gstosxaudiosrc.c:
17673           - compilation warnings on OSX
17674             (fixes #143153)
17675
17676 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17677
17678         * ext/vorbis/vorbisdec.c : sign warning fixes
17679
17680         * gst-libs/gst/mixer/mixertrack.c :
17681           do no use defines which are glib 2.4 specific
17682
17683 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
17684
17685         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
17686           buffer since libflac doesn't expect it (reports a sync error when
17687           it encounters that)
17688
17689
17690 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
17691
17692         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
17693         * gst-libs/gst/mixer/mixertrack.c:
17694         (gst_mixer_track_get_property), (get_mixer_track_init),
17695         (get_mixer_track_get_property): Added property accessors
17696         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
17697         * gst-libs/gst/mixer/mixeroptions.c:
17698         (gst_mixer_options_get_values): Added
17699         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
17700         * gst-libs/gst/mixer/mixer.c: Fixed comment
17701
17702
17703 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17704
17705         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
17706           improve error messages on open
17707
17708
17709 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17710
17711         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
17712           check if v4l-conf is in path
17713
17714 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17715
17716         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
17717           change assert to a more readable error message
17718
17719 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
17720
17721         * gst-libs/gst/tuner/tunerchannel.h:
17722           - add a freq_multiplicator field to make the conversion
17723             between internal frequency unit and Hz
17724         * sys/v4l/gstv4lelement.c:
17725         * sys/v4l2/gstv4l2element.c:
17726           - change default video device to /dev/video0
17727         * sys/v4l/v4l_calls.c:
17728         * sys/v4l2/v4l2_calls.c:
17729           - we only expose frequency to the user in Hz instead of
17730             bastard v4lX unit (either 62.5kHz or 62.5Hz)
17731
17732 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
17733         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17734           Initialise b_o_s and e_o_s variables
17735         * gst-libs/gst/riff/riff-media.c:
17736         (gst_riff_create_video_caps_with_data):
17737           Add some unusual fourcc's from mplayer avi's
17738         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
17739           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
17740           autoplugging.
17741
17742 2004-05-28  Wim Taymans  <wim@fluendo.com>
17743
17744         * configure.ac:
17745         * gst/alpha/Makefile.am:
17746         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
17747         (gst_alpha_get_type), (gst_alpha_base_init),
17748         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
17749         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
17750         (gst_alpha_chroma_key), (gst_alpha_chain),
17751         (gst_alpha_change_state), (plugin_init):
17752         A plugin to add an alpha channel to I420 video. Can optionally do
17753         chroma keying.
17754         * gst/multipart/Makefile.am:
17755         * gst/multipart/multipart.c: (plugin_init):
17756         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
17757         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
17758         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
17759         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
17760         (gst_multipart_demux_change_state),
17761         (gst_multipart_demux_plugin_init):
17762         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
17763         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
17764         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
17765         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
17766         (gst_multipart_mux_pad_unlink),
17767         (gst_multipart_mux_request_new_pad),
17768         (gst_multipart_mux_handle_src_event),
17769         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
17770         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
17771         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
17772         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
17773         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
17774         send multipart jpeg images to a browser.
17775         * gst/videobox/Makefile.am:
17776         * gst/videobox/README:
17777         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
17778         (gst_video_box_get_type), (gst_video_box_base_init),
17779         (gst_video_box_class_init), (gst_video_box_init),
17780         (gst_video_box_set_property), (gst_video_box_get_property),
17781         (gst_video_box_sink_link), (gst_video_box_i420),
17782         (gst_video_box_ayuv), (gst_video_box_chain),
17783         (gst_video_box_change_state), (plugin_init):
17784         Crops or adds borders around an image. can do alpha channel
17785         borders as well.
17786         * gst/videomixer/Makefile.am:
17787         * gst/videomixer/README:
17788         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
17789         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
17790         (gst_videomixer_pad_get_sink_event_masks),
17791         (gst_videomixer_pad_get_property),
17792         (gst_videomixer_pad_set_property),
17793         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
17794         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
17795         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
17796         (gst_videomixer_base_init), (gst_videomixer_class_init),
17797         (gst_videomixer_init), (gst_videomixer_request_new_pad),
17798         (gst_videomixer_handle_src_event),
17799         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
17800         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
17801         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
17802         (gst_videomixer_loop), (gst_videomixer_get_property),
17803         (gst_videomixer_set_property), (gst_videomixer_change_state),
17804         (plugin_init):
17805         Generic video mixer plugin, can handle multiple inputs all with
17806         different framerates and video sizes. Is fully alpha channel
17807         aware.
17808
17809 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17810
17811         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
17812           Select first track as master track. Not sure how else to handle
17813           that...
17814         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
17815           Discard discont events. Should fix #142962.
17816
17817 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17818
17819         * ext/alsa/Makefile.am:
17820         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
17821         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
17822         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
17823         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
17824         (gst_alsa_mixer_get_option):
17825         * ext/alsa/gstalsamixer.h:
17826         * ext/alsa/gstalsamixeroptions.c:
17827         (gst_alsa_mixer_options_get_type),
17828         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
17829         (gst_alsa_mixer_options_new):
17830         * ext/alsa/gstalsamixeroptions.h:
17831         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
17832         * ext/alsa/gstalsamixertrack.h:
17833           Add enumerations (as GstMixerOptions). Make correct distinction
17834           between input/output tracks. Add capture/playback private flag.
17835           Use flag to decide on whether to set capture or playback volumes
17836           or switches. Use playback and record switches.
17837         * gst-libs/gst/mixer/Makefile.am:
17838         * gst-libs/gst/mixer/mixer-marshal.list:
17839         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
17840         (gst_mixer_set_option), (gst_mixer_get_option),
17841         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
17842         (gst_mixer_volume_changed), (gst_mixer_option_changed):
17843         * gst-libs/gst/mixer/mixer.h:
17844         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
17845         (gst_mixer_options_class_init), (gst_mixer_options_init),
17846         (gst_mixer_options_dispose):
17847         * gst-libs/gst/mixer/mixeroptions.h:
17848           Add GstMixerOptions.
17849         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
17850           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
17851           broken device detection on computers with multiple OSS sound
17852           cards.
17853
17854 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17855
17856         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17857           fixate nicely even when the peer is not negotiating
17858
17859 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17860
17861         * gst/audioconvert/gstaudioconvert.c:
17862         (gst_audio_convert_parse_caps):
17863           make sure we don't allow depth > width
17864         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17865           fixate endianness to G_BYTE_ORDER as default
17866         * gst/audioscale/gstaudioscale.c:
17867           we don't handle another endianness as host-endianness
17868
17869 2004-05-25  David Schleef  <ds@schleef.org>
17870
17871         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
17872
17873 2004-05-24  Benjamin Otte  <otte@gnome.org>
17874
17875         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
17876         (gst_oggvorbisenc_setup):
17877           properly fail when we can't setup the vorbis encoder due to
17878           unsupported settings
17879         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
17880         (gst_vorbisenc_setup):
17881           same
17882         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
17883           fix case where warnings occured when one pad was unlinked while the
17884           other's link function was called
17885
17886 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17887
17888         * gst/tcp/Makefile.am:
17889           use GST_ENABLE_NEW
17890
17891 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17892
17893         * gst-libs/gst/resample/private.h:
17894           don't use optimizations that are #if 0'ed
17895
17896 2004-05-24  Wim Taymans  <wim@fluendo.com>
17897
17898         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
17899         Fix potential division by zero error and hopefully get
17900         the position query right to get correct timestamps on avi
17901         audio.
17902
17903 2004-05-24  Wim Taymans  <wim@fluendo.com>
17904
17905         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
17906         (gst_videoscale_scale_nearest_str2),
17907         (gst_videoscale_scale_nearest_str4),
17908         (gst_videoscale_scale_nearest_32bit),
17909         (gst_videoscale_scale_nearest_24bit),
17910         (gst_videoscale_scale_nearest_16bit):
17911         Fix the scaling algorithm and avoid a buffer overflow.
17912         removed the while loop in the scaling function as it
17913         was used for point sampling only.
17914
17915 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17916
17917         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
17918         (gst_id3_tag_class_init), (gst_id3_tag_init),
17919         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
17920         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
17921         (gst_id3_tag_send_tag_event):
17922           lots of fixes to make id3mux work and id3demux work correctly
17923
17924 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17925
17926         * ext/Makefile.am:
17927           add rules to build shout2send (was removed by accident
17928           when this module was no more marked experimental/broken)
17929
17930 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17931
17932         * ext/shout2/gstshout2.c:
17933         * ext/shout2/gstshout2.h:
17934           adding a "connection problem" signal to shout2send
17935           (fixes #142954)
17936
17937 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
17938
17939         * ext/kio/kioreceiver.cpp:
17940         * ext/kio/kioreceiver.h:
17941           fix sign comparison issues
17942
17943 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17944
17945         * gst/cdxaparse/gstcdxaparse.c:
17946         * gst/cdxaparse/gstcdxaparse.h:
17947           some renaming
17948           add some checks/sanity
17949           prepare for seek addition
17950
17951         * sys/sunaudio/gstsunaudio.c:
17952           remove exported dupe init function
17953
17954 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
17955
17956         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
17957         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
17958           Fix format conversion and position querying.
17959         * gst/debug/progressreport.c: (gst_progressreport_report):
17960           Don't output a bogus total value that we didn't query.
17961         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
17962           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
17963           only a blank window after xine has been used.
17964
17965 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17966
17967         * m4/as-arts.m4:
17968           sync with upstream version to fix test on FC2
17969           readd with -ko to preserve Id header
17970
17971 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17972
17973         * configure.ac:
17974           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
17975         * gst/tcp/gsttcpclientsrc.c: idem
17976         * gst/tcp/gsttcpserversink.c: idem
17977         * gst/tcp/gsttcpserversrc.c: idem
17978         * m4/gst-fionread.m4: idem
17979
17980         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
17981
17982         * configure.ac: enable speex plugin for speex 1.1.5+
17983         * ext/speex/gstspeexenc.c: fix cast warning
17984
17985         * ext/esd/README: fix typo
17986
17987 2004-05-20  David Schleef  <ds@schleef.org>
17988
17989         * configure.ac: Minor cosmetic change to convince the buildbot to
17990         reautogen.
17991         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
17992         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
17993         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
17994         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
17995         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
17996         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
17997         More hacking.  Plays audio now.
17998
17999 2004-05-20  David Schleef  <ds@schleef.org>
18000
18001         * configure.ac:
18002         * sys/Makefile.am:
18003
18004 2004-05-20  David Schleef  <ds@schleef.org>
18005
18006         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
18007         * sys/osxaudio/gstosxaudio.c:
18008         * sys/osxaudio/gstosxaudioelement.c:
18009         * sys/osxaudio/gstosxaudioelement.h:
18010         * sys/osxaudio/gstosxaudiosink.c:
18011         * sys/osxaudio/gstosxaudiosink.h:
18012         * sys/osxaudio/gstosxaudiosrc.c:
18013         * sys/osxaudio/gstosxaudiosrc.h:
18014
18015 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18016
18017         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
18018         (gst_vorbisenc_chain):
18019           put the codec headers on the caps as streamheader as well as
18020           pushing them out
18021
18022 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18023
18024         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
18025         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
18026         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
18027         split up push_packet into two functions
18028
18029 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18030
18031         * gst/tcp/.cvsignore:
18032           ignore enums
18033         * gst/tcp/Makefile.am:
18034         * gst/tcp/README:
18035         * gst/tcp/gsttcp.c:
18036         * gst/tcp/gsttcp.h:
18037         * gst/tcp/gsttcpclientsink.c:
18038         * gst/tcp/gsttcpclientsink.h:
18039         * gst/tcp/gsttcpclientsrc.c:
18040         * gst/tcp/gsttcpclientsrc.h:
18041         * gst/tcp/gsttcpplugin.c:
18042         * gst/tcp/gsttcpserversink.c:
18043         * gst/tcp/gsttcpserversink.h:
18044         * gst/tcp/gsttcpserversrc.c:
18045         * gst/tcp/gsttcpserversrc.h:
18046           add new tcp elements
18047
18048 2004-05-19  Wim Taymans  <wim@fluendo.com>
18049
18050         * gst/law/mulaw-conversion.c: (mulaw_encode):
18051         Fix overflow bug in ulaw encoding.
18052
18053 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18054
18055         * ext/mad/gstmad.c: (gst_mad_handle_event):
18056           don't unref the event twice
18057
18058 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18059
18060         * configure.ac:
18061           remove -Wno-sign-compare
18062
18063 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18064
18065         * configure.ac:
18066           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
18067           if you want to work against glib 2.2 and 2.4
18068
18069 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
18070
18071         * gst/tcp/Makefile.am:
18072         * gst/tcp/gsttcp.c:
18073         * gst/tcp/gsttcp.h:
18074         * gst/tcp/gsttcpsink.h:
18075         * gst/tcp/gsttcpsrc.h:
18076           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
18077
18078 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18079
18080         * gst/debug/tests.c: (md5_get_value):
18081           fix segfault on gst-inspect
18082
18083 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18084
18085         * gst/debug/testplugin.c:
18086         * gst/debug/tests.c:
18087         * gst/debug/tests.h:
18088           add new extensible and configurable testing element. Current tests
18089           include buffer count, stream length, timestamp/duration matching and
18090           md5.
18091         * gst/debug/Makefile.am:
18092         * gst/debug/gstdebug.c: (plugin_init):
18093           add infrastructure for new element
18094
18095 2004-05-19  Johan Dahlin  <johan@gnome.org>
18096
18097         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
18098         ending of the array. Fixes gst-inspect segfault on ppc.
18099
18100 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18101
18102         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
18103
18104         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
18105
18106 2004-05-18  David Schleef  <ds@schleef.org>
18107
18108         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
18109         warnings (bugs, actually) noticed by gcc but not forte.
18110
18111 2004-05-18  David Schleef  <ds@schleef.org>
18112
18113         * sys/sunaudio/Makefile.am:
18114         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
18115
18116 2004-05-18  David Schleef  <ds@schleef.org>
18117
18118         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
18119         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
18120         to allow qtdemux to use non-seekable streams. (bug #142272)
18121
18122 2004-05-18  David Schleef  <ds@schleef.org>
18123
18124         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
18125         (gst_resample_sinc_ft_float): Remove use of static temporary
18126         buffer.  This code was obviously not supposed to last long, but
18127         it's stuck in our ABI, so it required a little hack to make it
18128         ABI-compatible.  Fixes #142585.
18129         * gst-libs/gst/resample/resample.h: same.
18130
18131 2004-05-18  David Schleef  <ds@schleef.org>
18132
18133         * configure.ac: Add sunaudio
18134         * examples/Makefile.am: make gstplay depend on gconf
18135         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
18136         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
18137         (convert_table_lookup), (img_convert): remove c99-isms
18138         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
18139           unsigned, to fix a warning on Solaris
18140         * gst/mpeg1sys/systems.c: bcopy->memcpy
18141         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
18142         * sys/Makefile.am: Add sunaudio
18143
18144 2004-05-18  Wim Taymans  <wim@fluendo.com>
18145
18146         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
18147         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
18148         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
18149         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
18150         (gst_ogg_mux_loop):
18151         Fix an ugly memleak where the muxer didn't flush enough ogg
18152         pages. This also resulted in badly muxed ogg files.
18153
18154 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18155
18156         * gst/asfdemux/asfheaders.c :
18157         * gst/asfdemux/asfheaders.h :
18158         * gst/asfdemux/gstasfdemux.c :
18159           - fix ASF_OBJ_PADDING guid
18160           - add 3 new object guids (language list, metadata,
18161             extended stream properties)
18162           - add a function to parse extended header objects
18163
18164 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18165
18166         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
18167           remove leftover debugging g_print
18168
18169 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18170
18171         * ext/mad/gstmad.c: (gst_mad_handle_event):
18172           Fix for when the first format in a discont event is not a
18173           byte-based one. Should fix #137710.
18174
18175 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18176
18177         * m4/a52.m4 : fix compilation with -Wall -Werror
18178         * m4/libfame.m4 : idem
18179         * m4/libmikmod.m4 : idem
18180
18181 2004-05-17  Benjamin Otte  <otte@gnome.org>
18182
18183         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18184           signal the new tags before giving up the reference
18185
18186 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18187
18188         * ext/shout2/gstshout2.c:
18189           use application/ogg instead of application/x-ogg (patch by Patrick
18190           Guimond, fixes #142432)
18191         * sys/oss/gstosselement.c: (gst_osselement_reset),
18192         (gst_osselement_sync_parms):
18193           don't set fragment size unless specified (fixes #142493)
18194
18195 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18196
18197         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
18198           fixes #142664
18199
18200 2004-05-17  Benjamin Otte  <otte@gnome.org>
18201
18202         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
18203           compute offsets correctly for internal buffers so timestamps are set
18204           correctly when we can't seek. Also handle cases where there are no
18205           offsets. (based on a patch by David Moore, fixes #142507)
18206
18207 2004-05-17  Benjamin Otte  <otte@gnome.org>
18208
18209         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18210           use correct variable when determining amount of data to skip so we
18211           don't skip into the void and segfault
18212
18213 2004-05-16  Benjamin Otte  <otte@gnome.org>
18214
18215         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
18216           Hi, I'm a memleak
18217
18218 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18219
18220         * gst/asfdemux/gstasfdemux.c:
18221           - fix a mem leak and always propagate tags
18222           - add WMV3 to known video codecs (but no decoder yet)
18223           - replace "surplus data" at end of audio header for what
18224             it is : codec specific data
18225           - fix a typo
18226
18227 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
18228
18229         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
18230
18231         * gst-libs/gst/audio/audioclock.c:
18232           Fix wrong return type (#142205).
18233
18234 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18235
18236         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
18237           Ignore CRCs by default (fixes #142566).
18238
18239 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18240
18241         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
18242         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
18243         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
18244         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
18245         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
18246         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
18247           Fix for cases where we fail to attach to a mixer.
18248
18249 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18250
18251         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
18252           Don't touch events after not owning them anymore.
18253         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
18254         (gst_wavparse_fmt), (gst_wavparse_other),
18255         (gst_wavparse_handle_seek), (gst_wavparse_loop),
18256         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
18257         (gst_wavparse_srcpad_event):
18258         * gst/wavparse/gstwavparse.h:
18259           Add seeking, fix querying.
18260
18261 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18262
18263         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18264           - process comments even if they don't end with \0\0
18265             g_convert would ignore them if present and works well without them
18266
18267 2004-05-16  Benjamin Otte  <otte@gnome.org>
18268
18269         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
18270           simplify caps
18271
18272 2004-05-16  Benjamin Otte  <otte@gnome.org>
18273
18274         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18275           don't write to memory we might not write to - g_convert does that
18276           for us anyway (fixes #142613)
18277         (gst_asf_demux_audio_caps):
18278           comment out gst_util_dump_mem
18279
18280 2004-05-16  Benjamin Otte  <otte@gnome.org>
18281
18282         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18283           compute correct expected timestamps after seek (broken since
18284           last commit)
18285         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
18286           rename element and debugging category to gdkpixbufscale
18287
18288 2004-05-16  Benjamin Otte  <otte@gnome.org>
18289
18290         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18291           add error checking to snd_pcm_delay and remove duplicate call to
18292           snd_pcm_delay that caused issues (see inline code comments)
18293         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
18294           make more readable and fix return value when snd_pcm_delay fails
18295         (fixes #142586)
18296
18297 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
18298         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
18299         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
18300         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
18301         (gst_pixbufscale_link), (gst_pixbufscale_init),
18302         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
18303         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
18304         (gst_pixbufscale_get_property), (pixbufscale_init):
18305         * ext/gdk_pixbuf/pixbufscale.h:
18306         Add these files I forgot earlier
18307
18308 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
18309         * ext/gdk_pixbuf/Makefile.am:
18310         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
18311         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18312         Add new pixbufscale element to scale RGB video
18313         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
18314         and HYPER interpolation correctly.
18315         * ext/theora/theoraenc.c: (theora_enc_chain),
18316         Discard buffer and return if explicit caps could not be set
18317         (theora_enc_get_property):
18318         Make _get return kbps for the bitrate consistent with
18319         the _set function.
18320
18321
18322 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18323
18324         * ext/libvisual/visual.c: (gst_visual_chain):
18325           add missing visual_audio_analyze
18326
18327 2004-05-14  David Schleef  <ds@schleef.org>
18328
18329         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
18330         is killed while we're playing.
18331         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
18332         gst_element_no_more_pads().
18333
18334 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18335
18336         * gst-libs/gst/riff/riff-read.c :
18337           - fix INFO tag extraction in RIFF/AVI files
18338             because gst_event_unref (event) also freed taglist
18339           - avoid a mem leak
18340
18341 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18342
18343         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
18344         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
18345
18346         * gst/auparse/gstauparse.c :
18347           - add code (commented for now) to support audio/x-adpcm on src pad
18348             (we have no decoder for those layout yet)
18349
18350         * gst/cdxaparse/gstcdxaparse.c :
18351         * gst/cdxaparse/gstcdxaparse.h :
18352           - partial rewrite using RiffRead (ripped iain's wavparse code)
18353
18354         * gst/rtp/gstrtpL16enc.c : typo
18355         * gst/rtp/gstrtpgsmenc.c : typo
18356
18357 2004-05-13  Benjamin Otte  <otte@gnome.org>
18358
18359         * configure.ac:
18360           check for exact version of libvisual, it's not supposed to be
18361           API/ABI stable yet
18362
18363 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18364
18365         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18366           signal no-more-pads
18367
18368 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
18369
18370         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
18371         Report which format was used for GST_FORMAT_DEFAULT
18372         * gst/debug/Makefile.am:
18373         * gst/debug/gstdebug.c: (plugin_init):
18374         * gst/debug/progressreport.c: (gst_progressreport_base_init),
18375         (gst_progressreport_class_init), (gst_progressreport_init),
18376         (gst_progressreport_report), (gst_progressreport_set_property),
18377         (gst_progressreport_get_property), (gst_progressreport_chain),
18378         (gst_progressreport_plugin_init):
18379         Add progressreport element for testing.
18380
18381 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18382
18383         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
18384         * sys/v4l/gstv4lsrc.h:
18385         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
18386         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
18387         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
18388         (gst_v4lsrc_grab_frame):
18389           add more debugging
18390           send a discont at start
18391
18392 2004-05-12  Colin Walters  <walters@redhat.com>
18393
18394         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
18395         inflooping if we can't find a chunk.  Or in other words, don't blow
18396         chunks if we don't have a chunk to blow.
18397
18398 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
18399         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
18400         Remove old debug output
18401         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
18402         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
18403         (gst_dvdec_set_property), (gst_dvdec_get_property):
18404         Change the quality setting to an enum, so it works from gst-launch
18405         Don't renegotiate a non-linked pad. Allows audio only decoding.
18406         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
18407         (gst_deinterlace_link), (gst_deinterlace_init):
18408         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
18409         (gst_videodrop_link):
18410         Some caps negotiation fixes
18411
18412 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18413
18414         * ext/tarkin/gsttarkin.c :
18415           - Change RANK from NONE to PRIMARY
18416         * ext/gdk_pixbuf/gstgdkpixbuf.c :
18417           - Change RANK from NONE to MARGINAL
18418         * ext/divx/gstdivxenc.c :
18419           - Change RANK from PRIMARY to NONE (encoder/spider issue)
18420
18421 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18422
18423         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
18424         (gst_vorbisenc_push_packet):
18425           copy a function that was added between 1.0 and 1.0.1 until we
18426           depend on worthwhile features of post-1.0
18427
18428 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18429
18430         * configure.ac:
18431           enable shout2 by default
18432         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
18433         (gst_shout2send_base_init), (gst_shout2send_init),
18434         (gst_shout2send_connect), (gst_shout2send_change_state):
18435         * ext/shout2/gstshout2.h:
18436           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
18437           #142262)
18438         * ext/theora/theora.c: (plugin_init):
18439           don't set rank on encoders
18440
18441 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
18442
18443         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
18444           Use codec_data property instead of flag1 and flag2 for wma
18445
18446 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18447
18448         * gst/cdxaparse/gstcdxaparse.c :
18449           - Add mpegversion to CAPS to make it link
18450           - Rank is as GST_RANK_SECONDARY instead of NONE
18451         * gst/auparse/gstauparse.c :
18452           - Document all audio encoding we can encounter from Solaris 9
18453             headers and libsndfile information.
18454           - Increase max. rate from 48000 to 192000 (to match other elements)
18455           - Don't try to play junk data between header and samples
18456
18457 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18458
18459         * ext/libvisual/visual.c: (gst_visual_getcaps):
18460           use the right caps depending on endianness (I hope)
18461         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
18462           use GST_RANK_NONE for all non-decoding elements or spider gets
18463           mighty confused
18464
18465 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18466
18467         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18468           Fix some odd cases and fix BE metadata parsing of unicode16 text.
18469
18470 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18471
18472         * gst/switch/gstswitch.c: (gst_switch_release_pad),
18473         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
18474         (gst_switch_loop), (gst_switch_get_type):
18475           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
18476           HEADERS. Had to be said.
18477
18478 2004-05-10  David Schleef  <ds@schleef.org>
18479
18480         * configure.ac: Add prototype Dirac support.
18481         * ext/Makefile.am:
18482         * ext/dirac/Makefile.am:
18483         * ext/dirac/gstdirac.cc:
18484         * ext/dirac/gstdiracdec.cc:
18485
18486 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18487
18488         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
18489         (gst_auparse_init), (gst_auparse_chain),
18490         (gst_auparse_change_state):
18491           Hack around spider. Remove me some day please.
18492
18493 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18494
18495         * gst/auparse/gstauparse.c: (gst_auparse_chain):
18496           Fix for some uninitialized variables in previous patch, also
18497           makes it work. Fixes #142286 while we're at it.
18498
18499 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18500
18501         * gst/auparse/gstauparse.c:
18502                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
18503                 only unsupported formats are ADPCM/CCITT G.72x
18504                 reviewed by Ronald
18505         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
18506
18507 2004-05-10  Wim Taymans  <wim@fluendo.com>
18508
18509         * ext/vorbis/Makefile.am:
18510         * ext/vorbis/README:
18511         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
18512         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
18513         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
18514         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
18515         (gst_oggvorbisenc_convert_sink),
18516         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
18517         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
18518         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
18519         (get_constraints_string), (update_start_message),
18520         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
18521         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
18522         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
18523         * ext/vorbis/oggvorbisenc.h:
18524         * ext/vorbis/vorbis.c: (plugin_init):
18525         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
18526         (raw_caps_factory), (gst_vorbisenc_class_init),
18527         (gst_vorbisenc_init), (gst_vorbisenc_setup),
18528         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
18529         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
18530         * ext/vorbis/vorbisenc.h:
18531         Added a raw vorbis encoder to be used with the oggmuxer.
18532         We still need the old encoder for some gnome applications,
18533         read the README to find out how that works.
18534         The raw encoder is called "rawvorbisenc" until 0.9.
18535
18536 2004-05-10  Wim Taymans  <wim@fluendo.com>
18537
18538         * ext/ogg/gstogg.c: (plugin_init):
18539         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
18540         (gst_ogg_print):
18541         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
18542         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
18543         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
18544         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
18545         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
18546         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
18547         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
18548         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
18549         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
18550         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
18551         Added an ogg muxer.
18552         Small typo fixes in the demuxer.
18553
18554 2004-05-10  Wim Taymans  <wim@fluendo.com>
18555
18556         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18557         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
18558         (theora_enc_change_state), (theora_enc_set_property),
18559         (theora_enc_get_property):
18560         Mark the last packet with an EOS flag which is not really needed
18561         in gstreamer.
18562         Do some better video framerate initialisation.
18563         Update the buffer timestamp.
18564
18565 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
18566
18567         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
18568         Return the result of the parent state change call
18569
18570 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18571
18572         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
18573         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
18574         * gst/law/alaw-encode.c : (idem)
18575         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
18576         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
18577         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
18578
18579 2004-05-09  Benjamin Otte  <otte@gnome.org>
18580
18581         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
18582           don't use a fixed buffer size when writing variable length data to
18583           it. Fixes memory corruption and makes alsasrc work
18584
18585 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18586
18587         * ext/gnomevfs/gstgnomevfssink.c:
18588         (_gst_boolean_allow_overwrite_accumulator),
18589         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
18590           Run glib's default signal handler (??) in RUN_CLEANUP rather than
18591           RUN_LAST, and don't use that to set the accumulator value because
18592           then it's always FALSE.
18593
18594 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18595
18596         * gst-libs/gst/riff/riff-media.c:
18597         (gst_riff_create_video_caps_with_data),
18598         (gst_riff_create_audio_caps),
18599         (gst_riff_create_audio_template_caps):
18600         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
18601           Fix for unaligned RIFF files (i.e. where all the chunks together
18602           in a LIST chunk are not of the same size as the size given in
18603           the LIST chunk header). Fixes several odd WAVE files. Also fix
18604           ADPCM (block_align property) in audio, so that wavparse based
18605           on this works now as it used to stand-alone.
18606
18607 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
18608
18609         reviewed by Benjamin Otte  <otte@gnome.org>
18610
18611         * ext/a52dec/gsta52dec.c:
18612         * ext/divx/gstdivxdec.c:
18613         * ext/divx/gstdivxenc.c:
18614         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
18615         * ext/faac/gstfaac.c: (gst_faac_base_init):
18616         * ext/faad/gstfaad.c: (gst_faad_base_init):
18617         * ext/ivorbis/vorbisfile.c:
18618         * ext/lame/gstlame.c:
18619         * ext/libfame/gstlibfame.c:
18620         * ext/mpeg2enc/gstmpeg2enc.cc:
18621         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
18622         * ext/sidplay/gstsiddec.cc:
18623         * ext/speex/gstspeexdec.c:
18624         * ext/speex/gstspeexenc.c:
18625         * ext/xvid/gstxviddec.c:
18626         * ext/xvid/gstxvidenc.c:
18627           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
18628           (fixes #142193)
18629
18630 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18631
18632         * ext/alsa/gstalsa.c: (device_list),
18633         (gst_alsa_class_probe_devices):
18634         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
18635           Fix alsa oddness in mixer after the combination of using mixer
18636           in source/sink elements and using hw:x,y instead of just hw:x.
18637
18638 2004-05-09  Benjamin Otte  <otte@gnome.org>
18639
18640         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
18641         (gst_wavparse_create_sourcepad):
18642           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
18643           sourcepads
18644
18645 2004-05-09  Benjamin Otte  <otte@gnome.org>
18646
18647         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18648           allow discont events before caps nego
18649
18650 2004-05-08  Benjamin Otte  <otte@gnome.org>
18651
18652         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
18653           don't leak events
18654
18655 2004-05-08  Benjamin Otte  <otte@gnome.org>
18656
18657         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
18658         (gst_level_change_state), (gst_level_init):
18659         * gst/level/gstlevel.h:
18660           figure out if we're initialized directly instead of keeping a
18661           variable that's wrong in 90% of cases
18662           don't initialize pads and then leak them and use a new unitialized
18663           pad. (fixes #142084)
18664           these were bugs so n00bish I didn't find them for an hour :/
18665
18666 2004-05-08 Iain <iain@prettypeople.org>
18667
18668         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
18669         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
18670         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
18671         return the length that was read.
18672         (gst_riff_read_strf_auds): Allow fmt tags as well.
18673
18674 2004-05-07  David Schleef  <ds@schleef.org>
18675
18676         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
18677         signed char assumption in faad.h.
18678
18679 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18680
18681         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
18682           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
18683
18684 2004-05-07  Colin Walters  <walters@redhat.com>
18685
18686         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
18687         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
18688         function.
18689         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
18690         Add dispose function.
18691
18692 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
18693         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
18694           Fix caps nego and pad templates. RGB mode caps should
18695           work now.
18696         * ext/dvdnav/gst-dvd:
18697           Move mpeg2dec inside the thread because otherwise the
18698           queue rejects cap changes mid-stream
18699         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
18700         (gst_mpeg2dec_flush_decoder):
18701           For mpeg2dec > 0.4.0, call the flush function instead of
18702           manually extracting all in-flight frames.
18703         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
18704         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
18705           Change mime type video/dv go video/x-dv to match the
18706           rest of gst-plugins
18707
18708 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18709
18710         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
18711         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
18712         (gst_alsa_sink_class_init):
18713         * ext/alsa/gstalsasink.h:
18714         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
18715         (gst_alsa_src_class_init):
18716         * ext/alsa/gstalsasrc.h:
18717           Make alsasink/src a subclass of alsamixer so that mixer stuff
18718           shows up in gst-rec. Needs some finetuning.
18719
18720 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18721
18722         * ext/lame/gstlame.c: (gst_lame_chain):
18723           simplify
18724         * ext/mad/gstmad.c: (gst_mad_handle_event):
18725           fix event leak
18726         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18727           be able to detect mp3 files < 4096 bytes
18728
18729 2004-05-06  Wim Taymans  <wim@fluendo.com>
18730
18731         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18732         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
18733         (theora_enc_set_property), (theora_enc_get_property):
18734         Also encode the first frame, cleanup some code.
18735
18736 2004-05-06  Wim Taymans  <wim@fluendo.com>
18737
18738         * ext/mpeg2enc/gstmpeg2enc.cc:
18739         Forward events first before deciding that negotiation was
18740         not performed.
18741
18742 2004-05-06  Wim Taymans  <wim@fluendo.com>
18743
18744         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
18745         First process the events before deciding that negotiation
18746         was not performed.
18747
18748 2004-05-06  Wim Taymans  <wim@fluendo.com>
18749
18750         * ext/theora/Makefile.am:
18751         * ext/theora/theora.c: (plugin_init):
18752         * ext/theora/theoradec.c: (theora_dec_change_state):
18753         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
18754         (gst_theora_enc_class_init), (gst_theora_enc_init),
18755         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
18756         (theora_enc_chain), (theora_enc_change_state),
18757         (theora_enc_set_property), (theora_enc_get_property):
18758         Added a theora encoder, grouped the encoder and decoder into the
18759         same plugin.
18760
18761 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18762
18763         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
18764         (gst_jpegenc_chain):
18765         fix DURATION on outgoing buffers
18766         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
18767         debug using time formats
18768         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
18769         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
18770         (gst_xvimagesink_sink_link):
18771         windows with width/height 0 generate X errors, so don't allow them
18772
18773 2004-05-05  Wim Taymans  <wim@fluendo.com>
18774
18775         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
18776         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
18777         (gst_mpeg2dec_negotiate_format):
18778         * ext/mpeg2dec/gstmpeg2dec.h:
18779           removed the static pad template so that we can add the
18780           more accurate framerate value to the caps.
18781
18782
18783 2004-05-04  Benjamin Otte  <otte@gnome.org>
18784
18785         * configure.ac:
18786           check for kdemacros.h, too (should fix #141821)
18787         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
18788           don't crash if no header was sent, but nicely error out (fixes part
18789           of #141554)
18790
18791 2004-05-04  Wim Taymans  <wim@fluendo.com>
18792
18793         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
18794         parent dispose function to avoid segfault on destroy.
18795
18796 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
18797
18798         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
18799         (plugin_init):
18800         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
18801         (gst_xvimagesink_sink_link):
18802         clean up debugging caps
18803         also recreate xvimage when format has changed
18804
18805 2004-05-04  Benjamin Otte  <otte@gnome.org>
18806
18807         * ext/libvisual/Makefile.am:
18808         * ext/libvisual/visual.c: (gst_visual_class_init),
18809         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
18810         (gst_visual_srclink), (gst_visual_chain),
18811         (gst_visual_change_state), (plugin_init):
18812           use a GstAdapter to correctly adapt buffer sizes - allows using a
18813           framerate
18814
18815 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18816
18817         * sys/v4l/gstv4lelement.h:
18818         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
18819         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
18820         (gst_v4lsrc_buffer_free):
18821         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
18822         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
18823         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
18824         (gst_v4lsrc_requeue_frame):
18825         move some debugging categories around
18826         query for fps index and set accordingly if found
18827
18828 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18829
18830         * ext/lame/gstlame.c:
18831         correct defaults that lame_init puts out of range
18832
18833 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18834
18835         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
18836         (gst_divxenc_class_init):
18837         fix range since -1 is the default
18838         * gst/mpeg1sys/gstmpeg1systemencode.c:
18839         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
18840         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
18841         (gst_rtjpegdec_chain):
18842         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
18843         (gst_rtjpegenc_chain):
18844         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
18845         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
18846         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
18847         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
18848         * sys/v4l/gstv4lsrc.c:
18849         * sys/v4l/v4l_calls.c: (gst_v4l_open):
18850         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
18851         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
18852         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
18853         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
18854           remove gst_info calls
18855
18856 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18857
18858         * Makefile.am:
18859         * po/af.po:
18860         * po/az.po:
18861         * po/en_GB.po:
18862         * po/nl.po:
18863         * po/sr.po:
18864         * po/sv.po:
18865           Updated translations
18866
18867 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18868
18869         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
18870           refactor/comment code
18871
18872 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18873
18874         * gst/asfdemux/Makefile.am:
18875         * gst/asfdemux/asfheaders.c:
18876         * gst/asfdemux/asfheaders.h:
18877         * gst/asfdemux/gstasf.c: (plugin_init):
18878         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
18879         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
18880         (gst_asf_demux_setup_pad):
18881         * gst/asfdemux/gstasfdemux.h:
18882         * gst/asfdemux/gstasfmux.c:
18883         * gst/asfdemux/gstasfmux.h:
18884           Add tagging support to demuxer, split out registration in its own
18885           file instead of in demux (hacky), and prevent having some tables
18886           in our memory multiple times (in asfheaders.h).
18887
18888 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18889
18890         * gst/matroska/matroska-demux.c:
18891         (gst_matroska_demux_parse_metadata):
18892         * gst/matroska/matroska-ids.h:
18893           Basic tag reading support.
18894
18895 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18896
18897         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
18898           Really detect ac-3 audio.
18899         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
18900           really detect matroska files (off-by-1).
18901
18902 2004-04-30  David Schleef  <ds@schleef.org>
18903
18904         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18905         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
18906         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
18907         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
18908         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
18909         hackage -- parse a lot more atoms, extract a few tags.  One might even
18910         mistake this for tag support.  Maybe it is.
18911         * gst/qtdemux/qtdemux.h:
18912
18913 2004-04-30  Colin Walters  <walters@verbum.org>
18914
18915         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
18916
18917 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18918
18919         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18920         (gst_ffmpegcolorspace_getcaps):
18921           remove broken nego fix
18922
18923 2004-04-30  Benjamin Otte  <otte@gnome.org>
18924
18925         * configure.ac:
18926         * ext/Makefile.am:
18927         * ext/libvisual/Makefile.am:
18928         * ext/libvisual/visual.c:
18929           add initial support for libvisual (http://libvisual.sourceforge.net)
18930           libvisual is still quite alpha, so expect crashes in there :)
18931
18932 2004-04-29  David Schleef  <ds@schleef.org>
18933
18934         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
18935         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
18936         up qtdemux to make it spit out codec_data.  Do _not_ look at this
18937         code; you will no longer respect me.
18938
18939 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18940
18941         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
18942         * ext/alsa/gstalsa.h :
18943         change alsa pcm device discovery to find more than 1 device
18944         per card. code review by Ronald.
18945
18946 2004-04-29  David Schleef  <ds@schleef.org>
18947
18948         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
18949         Add a check for a driver bug on FreeBSD.  (bug #140565)
18950
18951 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18952
18953         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
18954         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
18955         (gst_jpegenc_getcaps):
18956           move format setting to inner loop
18957         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18958         (gst_ffmpegcolorspace_getcaps):
18959           use GST_PAD_CAPS if available so that we use already negotiated
18960           caps
18961         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18962         (qtdemux_parse_moov), (qtdemux_parse):
18963           extra debugging
18964         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
18965         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
18966           move hardcoded path to DEFINE
18967
18968 2004-04-28  David Schleef  <ds@schleef.org>
18969
18970         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
18971         (bug #140064)
18972
18973 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18974
18975         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
18976           Don't probe for playback device if we're a source element. Fixes
18977           #139658.
18978
18979 2004-04-29  Benjamin Otte  <otte@gnome.org>
18980
18981         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
18982         (gst_id3_tag_chain):
18983           rewrite buffer offset
18984
18985 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18986
18987         * configure.ac:
18988         * ext/Makefile.am:
18989         * ext/dts/Makefile.am:
18990         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
18991         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
18992         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
18993         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
18994         (gst_dtsdec_loop), (gst_dtsdec_change_state),
18995         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
18996         (plugin_init):
18997         * ext/dts/gstdtsdec.h:
18998           New DTS decoder.
18999         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
19000         (gst_faad_srcconnect):
19001           Add ESDS atom handling (.m4a).
19002
19003 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19004
19005         * ext/divx/gstdivxdec.c: (plugin_init):
19006           Remove comment that makes no sense.
19007         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
19008           Fix for obvious typo that resulted in warnings during gst-register.
19009         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
19010         (gst_xviddec_sink_link):
19011           Fix caps negotiation a bit better.
19012         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
19013           We call this 'codec_data', not 'esds'.
19014
19015 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19016
19017         * gst/monoscope/gstmonoscope.c:
19018           make sure we only provide 256x128
19019         * gst/monoscope/monoscope.c: (monoscope_init):
19020           assert size of 256x128
19021
19022 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19023
19024         * Makefile.am:
19025         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
19026         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
19027           fixate to max width and height of device
19028
19029 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19030
19031         * Makefile.am:
19032         * sys/v4l/gstv4l.c:
19033         * sys/v4l/gstv4lsrc.c:
19034         * sys/v4l/v4l_calls.c:
19035         * sys/v4l/v4lsrc_calls.c:
19036           fix for qc-usb driver which fakes having more than one buffer
19037           by handing the same buffer twice, which confused GStreamer's/v4lsrc
19038           buffer_free override
19039           add debugging
19040
19041 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19042
19043         * Makefile.am:
19044         * gst/videotestsrc/gstvideotestsrc.c:
19045         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
19046         (gst_videotestsrc_init), (gst_videotestsrc_get),
19047         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
19048         * gst/videotestsrc/gstvideotestsrc.h:
19049           add num-buffers property
19050
19051         2004-04-26  Benjamin Otte  <otte@gnome.org>
19052
19053         * ext/mad/gstid3tag.c: (plugin_init):
19054           set id3mux rank to NONE so it doesn't confuse spider
19055           require audio/mpeg,mpegversion=1 in id3mux
19056
19057 2004-04-26  Benjamin Otte  <otte@gnome.org>
19058
19059         * configure.ac:
19060           detect faad correctly as non-working if it's indeed non-working
19061
19062 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
19063
19064         * Makefile.am:
19065         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
19066         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
19067         fix _getcaps so it only negotiates to its supported format
19068
19069 2004-04-25  Benjamin Otte  <otte@gnome.org>
19070
19071         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19072           fix memleak
19073
19074 2004-04-23  Benjamin Otte  <otte@gnome.org>
19075
19076         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
19077           audio/x-raw-int with height rules! not. Now it's depth.
19078
19079 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19080
19081         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
19082         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
19083         (gst_wavparse_loop):
19084           Missing variable initialization. Add handling of DVI ADPCM. Fix
19085           mis-parsing of LIST chunks. This works around a bug where we mis-
19086           parse non-aligning LIST chunks (so LIST chunks where the contents
19087           don't align with the actual LIST size). The correct fix is to use
19088           rifflib, I'm not going to fix wavparse - too much work. All this
19089           fixes #104878.
19090
19091 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19092
19093         reviewed by Benjamin Otte  <otte@gnome.org>
19094
19095         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
19096           fix shoutcast not working (fixes #140844)
19097
19098 2004-04-22  Benjamin Otte  <otte@gnome.org>
19099
19100         * ext/hermes/gsthermescolorspace.c:
19101         (gst_hermes_colorspace_caps_remove_format_info):
19102         * gst/colorspace/gstcolorspace.c:
19103         (gst_colorspace_caps_remove_format_info):
19104         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19105         (gst_ffmpegcolorspace_caps_remove_format_info):
19106           s/gst_caps_simplify/gst_caps_do_simplify/
19107
19108 2004-04-22  Benjamin Otte  <otte@gnome.org>
19109
19110         * gst-libs/gst/riff/riff-media.c:
19111         (gst_riff_create_video_caps_with_data):
19112           mpegversion is an int
19113         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
19114           don't try to create pad templates with NULL caps, use any caps
19115           instead.
19116
19117 2004-04-20  David Schleef  <ds@schleef.org>
19118
19119         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
19120         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
19121         (bug #140384)
19122
19123 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
19124
19125         reviewed by David Schleef
19126
19127         * ext/mad/gstid3tag.c: Add stdlib.h
19128         * gst/rtp/gstrtpgsmenc.c: same
19129         * gst/tags/gstid3tag.c: same
19130         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
19131         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
19132         GST_DISABLE_LOADSAVE use.
19133         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
19134         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
19135         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
19136         atol(3)).
19137         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
19138         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
19139         strtoul(3)).
19140         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
19141         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
19142         $(ID3_CFLAGS).
19143         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
19144         $(LIBFAME_CFLAGS).
19145
19146 2004-04-20  David Schleef  <ds@schleef.org>
19147
19148         * gst/realmedia/rmdemux.c:  This was supposed to part of the
19149         last checkin.  Same idea.
19150
19151 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
19152
19153         reviewed by David Schleef
19154
19155         * configure.ac: bump required gstreamer version to 0.8.1.1
19156         because of following changes [--ds]
19157
19158         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
19159         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
19160         (gst_riff_read_header):  Use GST_READ_UINT*
19161         macros to access possibly unaligned memory.
19162
19163         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
19164         (mp3_type_find):  Use GST_READ_UINT*
19165         macros to access possibly unaligned memory.
19166         (mp3_type_find, mpeg1_parse_header, qt_type_find)
19167         (speex_type_find): Likewise
19168
19169         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
19170
19171         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
19172         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
19173         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
19174         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
19175         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
19176         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
19177         macros to access possibly unaligned memory.
19178
19179         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
19180         Likewise.
19181
19182         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
19183         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
19184
19185         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19186         Likewise.
19187
19188         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
19189         (gst_mpeg2subt_chain_subtitle): Likewise.
19190
19191         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
19192         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
19193         Likewise.
19194
19195         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
19196         Likewise.
19197
19198         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
19199         Likewise.
19200
19201         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
19202         Likewise.
19203
19204 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19205
19206         * configure.ac:
19207           update required version of GStreamer because of GST_TIME_FORMAT
19208
19209 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19210
19211         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
19212           remove leftover g_print
19213         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19214           don't try setting only a subset of the caps. We don't want to kill
19215           autoplugging on purpose
19216
19217 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19218
19219         * sys/ximage/ximagesink.c: (plugin_init):
19220         * sys/xvimage/xvimagesink.c: (plugin_init):
19221           add debugging categories
19222
19223 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19224
19225         * po/en_GB.po:
19226         * po/LINGUAS:
19227           Adding en_GB translation (Gareth Owen)
19228
19229 2004-04-20  David Schleef  <ds@schleef.org>
19230
19231         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
19232         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
19233         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
19234         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
19235         A number of new features and hacks to extract the esds atom and
19236         put it into the caps.  (bug #137724)
19237
19238 2004-04-19  David Schleef  <ds@schleef.org>
19239
19240         * gconf/Makefile.am: Fix for non-GNU make
19241         * gst-libs/gst/Makefile.am: Change directory order to handle
19242         GstPlay linking with gstinterfaces
19243         * gst-libs/gst/audio/make_filter: make use of tr portable
19244         * gst-libs/gst/play/Makefile.am: Add intended \
19245         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19246         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
19247         function prototype instead of void *.
19248         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
19249         macro.
19250         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19251         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
19252         * gst/videofilter/make_filter: make use of tr portable
19253         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
19254
19255 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19256
19257         * po/LINGUAS:
19258         * po/uk.po:
19259           Added Ukrainian translation (Maxim V. Dziumanenko)
19260
19261 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19262
19263         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
19264         (gst_gsmdec_link), (gst_gsmdec_chain):
19265           Fix capsnego, simplify chain function slightly.
19266         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
19267           Add GSM.
19268
19269 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19270
19271         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
19272         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
19273         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
19274           Hack to make wavparse work with spider (always -> sometimes pad).
19275           Fixes #135862 && #140411.
19276
19277 2004-04-18  Benjamin Otte  <otte@gnome.org>
19278
19279         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
19280         (gst_osselement_rate_probe_check),
19281         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
19282           get rid of \n in debug output
19283
19284 2004-04-17  Iain <iain@prettypeople.org>
19285
19286         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
19287         not just EOS.
19288
19289 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19290
19291         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
19292         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
19293         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
19294         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
19295         (gst_id3_tag_src_link), (gst_id3_tag_chain),
19296         (gst_id3_tag_change_state), (plugin_init):
19297           deprecate id3tag element and replace with id3demux/id3mux.
19298           great side effect: this ugly file is now even uglier, yay!
19299         * ext/mad/gstmad.h:
19300           remove non-available function
19301           update for new get_type
19302
19303 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19304
19305         * configure.ac:
19306           require mpeg2dec >= 0.4.0
19307
19308 2004-04-17  Benjamin Otte  <otte@gnome.org>
19309
19310         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19311         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
19312         (gst_xvimagesink_set_xwindow_id):
19313           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
19314           assorted cleanup fixes.
19315
19316 2004-04-16  David Schleef  <ds@schleef.org>
19317
19318         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
19319         * sys/xvimage/xvimagesink.h: same
19320
19321 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
19322
19323         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
19324           Fix GST_ELEMENT_ERROR with (NULL)
19325
19326 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19327
19328         * gst-libs/gst/riff/riff-media.c:
19329         (gst_riff_create_video_caps_with_data):
19330           Add div[3456] as fourccs for DivX 3 (fixes #140137).
19331
19332 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19333
19334         * gst-libs/gst/riff/riff-media.c:
19335         (gst_riff_create_video_caps_with_data),
19336         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
19337         (gst_riff_create_video_template_caps),
19338         (gst_riff_create_audio_template_caps):
19339         * gst-libs/gst/riff/riff-media.h:
19340         * gst-libs/gst/riff/riff-read.c:
19341         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
19342         * gst-libs/gst/riff/riff-read.h:
19343         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
19344           Add MS RLE support. I added some functions to read out strf chunks
19345           into strf chunks and the data behind it. This is usually color
19346           palettes (as in RLE, but also in 8-bit RGB). Also use those during
19347           caps creation. Lastly, add ADPCM (similar to wavparse - which
19348           should eventually be rifflib based).
19349         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
19350         (gst_matroska_demux_init), (gst_matroska_demux_reset):
19351         * gst/matroska/matroska-demux.h:
19352           Remove placeholders for some prehistoric tagging system. Didn't add
19353           support for any tag system really anyway.
19354         * gst/qtdemux/qtdemux.c:
19355           Add support for audio/x-m4a (MPEG-4) through spider.
19356         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
19357         (gst_wavparse_loop):
19358           ADPCM support (#135862). Increase max. buffer size because we
19359           cannot split buffers for ADPCM (screws references) and I've seen
19360           files with 2048 byte chunks. 4096 seems safe for now.
19361
19362 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19363
19364         * configure.ac: bump nano to 1
19365
19366 === release 0.8.1 ===
19367
19368 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19369
19370         * configure.ac: releasing 0.8.1, "Comforting Sounds"
19371
19372 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19373
19374         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19375           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
19376           Fixes #140058
19377
19378 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19379
19380         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
19381           lower rank of dvddemux so that it's not used for mpeg playback.
19382
19383 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19384
19385         * configure.ac:
19386           save libs correctly when checking mad
19387
19388 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19389
19390         * ext/mad/gstid3tag.c: (plugin_init):
19391           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
19392
19393 2004-04-13  David Schleef  <ds@schleef.org>
19394
19395         * common/m4/gst-feature.m4: Call -config scripts with
19396         --plugin-libs if it is supported.
19397         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
19398         JPEG images are image/jpeg.
19399         * gst/debug/Makefile.am:
19400         * gst/debug/negotiation.c: (gst_negotiation_class_init),
19401         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
19402         (gst_negotiation_update_caps), (gst_negotiation_get_property),
19403         (gst_negotiation_plugin_init): Add a property that acts like
19404         filter caps.
19405         * testsuite/gst-lint:  Move license checking to be a standard
19406         test.
19407
19408 2004-04-13  David Schleef  <ds@schleef.org>
19409
19410         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
19411         patch from Sebastien Cote (bug #139958)
19412
19413 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19414
19415         * examples/gstplay/Makefile.am:
19416         * examples/gstplay/player.c: (main):
19417           make the commandline player example use gconf settings
19418
19419 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19420
19421         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19422         (gst_cacasink_sinkconnect), (gst_cacasink_init),
19423         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
19424           init/end library during state transition, not object
19425           creation/disposal.  get rid of custom dispose handler.
19426
19427
19428 2004-04-12  Christian Schaller <Uraeus@gnome.org>
19429
19430         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
19431         be a symlink
19432
19433 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19434
19435         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
19436           Handle JUNK chunks inside data section. Prevents warnings.
19437
19438 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19439
19440         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19441         (gst_riff_create_video_template_caps):
19442           Add MS video v1.
19443         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
19444         (gst_avi_demux_stream_data):
19445           Add support for "rec-list" chunks.
19446
19447 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19448
19449         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
19450           Fix another codecname mismatch.
19451
19452 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19453
19454         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19455           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
19456           so that MJPEG plays back.
19457
19458 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19459
19460         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
19461         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
19462         * gst/mpeg1videoparse/gstmp1videoparse.h:
19463           Fix for some slight mis-cuts in buffer parsing, and for some
19464           potential overflows or faults-causers. Adds disconts. Also fixes
19465           #139105 while we're at it.
19466
19467 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19468
19469         * configure.ac:
19470         * sys/v4l2/gstv4l2element.h:
19471           Workaround for missing struct v4l2_buffer declaration in Suse 9
19472           and Mandrake 10 linux/videodev2.h header file (#135919).
19473
19474 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19475
19476         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
19477           Bail out if no filename was given.
19478
19479 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19480
19481         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
19482         (gst_v4l2_fourcc_from_structure):
19483           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
19484           Y41B somewhere).
19485
19486 2004-04-09  Benjamin Otte  <otte@gnome.org>
19487
19488         * ext/gnomevfs/gstgnomevfssink.c:
19489         (_gst_boolean_allow_overwrite_accumulator),
19490         (gst_gnomevfssink_class_init):
19491           fix erase signal - if any handler returns false the file will not be
19492           overwritten. If no handler is connected, the file will not be
19493           overwritten either.
19494           renamed signal to "allow-overwrite"
19495         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
19496           free string when adding it to ID3 failed
19497         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
19498           unref event when done
19499         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19500           free caps
19501         * gst/typefind/gsttypefindfunctions.c:
19502         (mpeg_video_stream_type_find):
19503           fix invalid read
19504
19505 2004-04-08  David Schleef  <ds@schleef.org>
19506
19507         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19508         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
19509
19510 2004-04-08  David Schleef  <ds@schleef.org>
19511
19512         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
19513         we don't support (bug #139532)
19514
19515 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
19516
19517         * ext/mad/gstmad.c: (gst_mad_handle_event),
19518         (gst_mad_check_caps_reset), (gst_mad_chain),
19519         (gst_mad_change_state):
19520           only set explicit caps if they haven't been set before for
19521           this stream.  MPEG-audio sample rate/channels aren't allowed
19522           to change in-stream.
19523           Fixes #139382
19524
19525 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19526
19527         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
19528         (_gst_boolean_did_something_accumulator),
19529         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
19530         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
19531         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
19532         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
19533         (gst_gnomevfssink_change_state):
19534           Fix erase signal. Don't erase by default. Remove handoff signal.
19535           Remove erase property. Don't segfault. General cleanup.
19536
19537 2004-04-07  Benjamin Otte  <otte@gnome.org>
19538
19539         * gst-libs/gst/gconf/test-gconf.c: (main):
19540           add missing gst_init
19541
19542 2004-04-07  Benjamin Otte  <otte@gnome.org>
19543
19544         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
19545           free the mutexes, too
19546
19547 2004-04-07  Benjamin Otte  <otte@gnome.org>
19548
19549         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
19550           actually free the URI string
19551         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
19552           compute offset correctly when passing discont events
19553         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19554           don't leak discont events
19555         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
19556           add some missing breaks so caps aren't copied randomly
19557         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
19558           if we realloc memory, we better use it
19559
19560 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19561
19562         * ext/mad/gstmad.c: (normal_seek):
19563           fix GST_FORMAT_TIME usage
19564
19565 2004-04-05  David Schleef  <ds@schleef.org>
19566
19567         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
19568         a deprecated function (hack!)
19569
19570 2004-04-05  Benjamin Otte  <otte@gnome.org>
19571
19572         * ext/esd/esdmon.c: (gst_esdmon_get):
19573           fix nonterminated vararg and memleak
19574
19575 2004-04-05  Benjamin Otte  <otte@gnome.org>
19576
19577         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
19578         (gst_ladspa_init), (gst_ladspa_force_src_caps),
19579         (gst_ladspa_set_property), (gst_ladspa_get_property),
19580         (gst_ladspa_instantiate), (gst_ladspa_activate),
19581         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
19582           clean up debugging
19583
19584 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
19585
19586         reviewed by Benjamin Otte  <otte@gnome.org>
19587
19588         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
19589           check for broken LADSPA parameters (fixes #138635)
19590
19591 2004-04-05  Benjamin Otte  <otte@gnome.org>
19592
19593         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
19594           advertise buffer-frames correctly on sinkpads
19595
19596 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19597
19598         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
19599         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
19600         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
19601         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
19602         (gst_mad_check_caps_reset), (gst_mad_chain):
19603         add more debugging, only reset caps when we're not in error state
19604
19605 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19606
19607         * ext/mad/gstmad.c: add debugging category, comment + cleanups
19608
19609 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
19610
19611         reviewed by Benjamin Otte  <otte@gnome.org>
19612
19613         * configure.ac:
19614           fix == in test(1) operator
19615
19616 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
19617
19618         reviewed by Benjamin Otte  <otte@gnome.org>
19619
19620         * configure.ac:
19621           fix --export-symblos-regex to a working regex.
19622
19623 2004-04-04  Benjamin Otte  <otte@gnome.org>
19624
19625         * sys/oss/.cvsignore:
19626           add for oss_probe
19627
19628 2004-04-03  Tim-Phillip M??ller <t.i.m@zen.co.uk>
19629
19630         reviewed by Benjamin Otte  <otte@gnome.org>
19631
19632         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19633           add missing 'new_media' argument (fixes #138168)
19634         * gst/matroska/matroska-demux.c:
19635         (gst_matroska_demux_handle_seek_event):
19636           add vararg terminator (fixes #138169)
19637
19638 2004-04-02  David Schleef  <ds@schleef.org>
19639
19640         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
19641         disted (bug #138914)
19642
19643 2004-04-01  Benjamin Otte  <otte@gnome.org>
19644
19645         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
19646         (gst_alsa_close_audio):
19647           handle case better where a soundcard can't pause
19648         * ext/ogg/gstoggdemux.c:
19649           don't crash when we get events but don't have pads yet
19650
19651 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19652
19653         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
19654           throw an error if we couldn't probe any caps.
19655
19656 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
19657
19658         * ext/dvdnav/gst-dvd:
19659         Add a really simple sample DVD player
19660
19661 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
19662
19663         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
19664         (gst_a52dec_push), (gst_a52dec_handle_event),
19665         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
19666         (gst_a52dec_change_state):
19667         * ext/a52dec/gsta52dec.h:
19668           Use a debug category, Output timestamps correctly
19669           Emit tag info, Handle events, tell liba52dec about cpu
19670           capabilities so it can use MMX etc.
19671         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
19672           Fix a crasher accessing invalid memory
19673         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
19674         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
19675         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
19676         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
19677         (dvdnavsrc_query):
19678           Some support for byte-format seeking.
19679           Small fixes for still frames and menu button overlays
19680         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
19681         (gst_mpeg2dec_alloc_buffer):
19682           Use a debug category. Adjust the report level of several items to
19683           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
19684           so it doesn't lose the GstBuffer pointer
19685         * gst/debug/Makefile.am:
19686         * gst/debug/gstdebug.c: (plugin_init):
19687         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
19688         (gst_navseek_base_init), (gst_navseek_class_init),
19689         (gst_navseek_init), (gst_navseek_seek),
19690         (gst_navseek_handle_src_event), (gst_navseek_set_property),
19691         (gst_navseek_get_property), (gst_navseek_chain),
19692         (gst_navseek_plugin_init):
19693         * gst/debug/gstnavseek.h:
19694           Add the navseek debug element for seeking back and forth in a
19695           video stream using arrow keys.
19696         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
19697         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
19698         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
19699         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
19700         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
19701         (gst_mpeg2subt_parse_header), (gst_get_nibble),
19702         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
19703         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
19704         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
19705         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
19706         * gst/mpeg2sub/gstmpeg2subt.h:
19707           Pretty much a complete rewrite. Now a loopbased element. May still
19708           require work to properly synchronise subtitle buffers.
19709         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
19710         (gst_dvd_demux_send_subbuffer):
19711         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
19712           Don't attempt to create subbuffers of size 0
19713           Reduce a couple of error outputs to warnings.
19714         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
19715         (gst_y4mencode_chain):
19716         Output the y4m frame header correctly.
19717
19718 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19719
19720         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
19721           throw errors instead of allowing SIGFPE
19722
19723 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19724
19725         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
19726         (gst_gconf_render_bin_from_key):
19727           leak plugging and style fixing
19728
19729 2004-03-31  David Schleef  <ds@schleef.org>
19730
19731         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
19732         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
19733         (bug #138225)
19734         * gst/debug/Makefile.am:
19735         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
19736         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
19737         plugin.
19738         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
19739         (gst_negotiation_base_init), (gst_negotiation_class_init),
19740         (gst_negotiation_init), (gst_negotiation_getcaps),
19741         (gst_negotiation_pad_link), (gst_negotiation_chain),
19742         (gst_negotiation_set_property), (gst_negotiation_get_property),
19743         (gst_negotiation_plugin_init):  New element to talk about random
19744         negotiation things happening in a pipeline.
19745
19746 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
19747
19748         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
19749           fix integer addition with help of Stefan Kost
19750
19751 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
19752
19753         * po/nl.po: updated Dutch translation (Elros Cyriatan)
19754
19755 2004-03-30  David Schleef  <ds@schleef.org>
19756
19757         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
19758         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
19759         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
19760         (bug #137504)
19761         * ext/mpeg2dec/gstmpeg2dec.h:
19762
19763 2004-03-30  David Schleef  <ds@schleef.org>
19764
19765         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
19766
19767 2004-03-30  David Schleef  <ds@schleef.org>
19768
19769         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
19770         Michael Petullo) to handle .mov
19771
19772 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19773
19774         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
19775         (gst_osselement_rate_check_rate):
19776           probe caps correctly for sound cards that only support one format
19777
19778 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19779
19780         * ext/kio/kiosrc.cpp: (process_events):
19781           update handling event processing if inside KDE - untested
19782
19783 2004-03-29  David Schleef  <ds@schleef.org>
19784
19785         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
19786         by 2 to not interfere with other colorspaces.
19787         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
19788         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
19789         one to not interfere with ffmpeg_colorspace.
19790
19791 2004-03-29  David Schleef  <ds@schleef.org>
19792
19793         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
19794         aren't in the caps.
19795         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
19796         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
19797
19798 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19799
19800         * gst-libs/gst/riff/riff-media.c:
19801           fail on error, don't try to set stuff on NULL caps
19802
19803 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19804
19805         * configure.ac:
19806         * ext/Makefile.am:
19807         * ext/kio/Makefile.am:
19808         * ext/kio/kioreceiver.cpp:
19809         * ext/kio/kioreceiver.h:
19810         * ext/kio/kiosrc.cpp:
19811         * ext/kio/kiosrc.h:
19812           add experimental kiosrc plugin
19813         * ext/alsa/gstalsaplugin.c: (plugin_init):
19814           initialize debugging category only when we're sure registering the
19815           plugins worked.
19816
19817 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19818
19819         * examples/gstplay/player.c: (main):
19820         * gst-libs/gst/play/play.c: (gst_play_class_init),
19821         (gst_play_set_location), (gst_play_set_data_src),
19822         (gst_play_set_video_sink), (gst_play_set_audio_sink),
19823         (gst_play_set_visualization), (gst_play_connect_visualization):
19824           check return values of element_set_state and return FALSE where
19825           failed
19826
19827 2004-03-29  Benjamin Otte  <otte@gnome.org>
19828
19829         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19830           try harder to check if an event is really a discont
19831
19832 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19833
19834         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
19835         * po/az.po:
19836
19837 2004-03-28  Benjamin Otte  <otte@gnome.org>
19838
19839         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
19840         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
19841         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
19842           get rid of non-standard "..." ranges in case statements.
19843
19844 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
19845
19846         * gst/mpegstream/gstmpegdemux.c:
19847         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
19848         specific functionality split to the new dvddemux element.
19849         * gst/mpegstream/gstdvddemux.c:
19850         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
19851         streams, derived from mpegdemux.
19852         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
19853         up. SCR based timestamp rewriting can be turned off (will probably
19854         completely disappear soon).
19855         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
19856         hacking. General cleanup. All printf statements replaced by
19857         debugging messages. Almost complete libdvdnav support.
19858         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
19859         by events. New properties for audio and subpicture languages.
19860         (dvdnavsrc_update_highlight): Now uses events.
19861         (dvdnavsrc_user_op): Cleaned up.
19862         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
19863         based). Lots of cleanup, and propper support for most libdvdnav
19864         events.
19865         (dvdnavsrc_make_dvd_event): New function.
19866         (dvdnavsrc_make_dvd_nav_packet_event): New function.
19867         (dvdnavsrc_make_clut_change_event): New function.
19868
19869 2004-03-26  Benjamin Otte  <otte@gnome.org>
19870
19871         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
19872           fix bug where typefinding would claim it's theora whenever less then
19873           7 bytes of data were available
19874
19875 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19876
19877         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
19878         (gst_alawdec_base_init), (gst_alawdec_class_init),
19879         (gst_alawdec_init), (gst_alawdec_chain):
19880         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
19881         (gst_alawenc_base_init), (gst_alawenc_class_init),
19882         (gst_alawenc_init), (gst_alawenc_chain):
19883         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
19884         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
19885         (gst_mulawdec_init), (gst_mulawdec_chain):
19886         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
19887         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
19888         (gst_mulawenc_init), (gst_mulawenc_chain):
19889           Fix capsnego in all four, remove the unused property functions and
19890           simplify the chain functions slightly. I guess we could use macros
19891           or something similar for those, since the code is so similar, but
19892           I'm currently too lazy...
19893
19894 2004-03-24  David Schleef  <ds@schleef.org>
19895
19896         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
19897         (gst_osselement_close_audio), (gst_osselement_probe_caps),
19898         (gst_osselement_get_format_structure),
19899         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
19900         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
19901         (gst_osselement_rate_int_compare): Add code to handle rate probing
19902         (bug #120883)
19903         * sys/oss/gstosselement.h: same
19904         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
19905         Use rate probing provided by osselement.
19906         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
19907
19908 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19909
19910         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
19911         (gst_xvidenc_get_property):
19912           ulong/int mess-up.
19913
19914 2004-03-24  David Schleef  <ds@schleef.org>
19915
19916         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
19917         (gst_speexdec_init):
19918         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
19919         (gst_speexenc_init):  Create the pad template correctly (from
19920         the static pad template, not a NULL pointer.)
19921
19922 2004-03-25  Benjamin Otte  <otte@gnome.org>
19923
19924         * gst/debug/Makefile.am:
19925         * gst/debug/breakmydata.c:
19926           add element that quasi-randomly changes bytes in the stream.
19927           Intended use is robustness checking of demuxers and decoders in
19928           media tests.
19929
19930 2004-03-24  Benjamin Otte  <otte@gnome.org>
19931
19932         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
19933         (gst_alsa_probe_hw_params):
19934         * ext/alsa/gstalsa.h:
19935           debugging output fixes
19936
19937 2004-03-24  Benjamin Otte  <otte@gnome.org>
19938
19939         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
19940           don't g_return_if_fail if element is PLAYING, fail silently as every
19941           other element.
19942         * gst/effectv/gstquark.c: (gst_quarktv_chain):
19943           only fix needed for cast lvalue issues in gst-plugins
19944         * gst/volenv/gstvolenv.c: (gst_volenv_init):
19945           add proxy_getcaps
19946
19947 2004-03-24  Benjamin Otte  <otte@gnome.org>
19948
19949         * gst/level/gstlevel.c: (gst_level_init):
19950           add proxying getcaps function, so level doesn't advertise impossible
19951           caps
19952
19953 2004-03-24  David Schleef  <ds@schleef.org>
19954
19955         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
19956         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
19957         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
19958         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
19959         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
19960         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
19961         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
19962         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
19963         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
19964         messages.  Divide the chunk size by the compression ratio
19965         (needed for MACE audio)
19966
19967 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19968
19969         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19970           Fix buffer overflow read error.
19971
19972 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19973
19974         * ext/alsa/gstalsa.h:
19975           Remove unused entry.
19976         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19977           Add cinepak.
19978         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
19979         (gst_videodrop_link), (gst_videodrop_chain):
19980           Fix, sort of. Was horribly broken with new capsnego. Bah...
19981
19982 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
19983
19984         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
19985         (plugin_init):
19986         Add a monkeysaudio typefind function
19987
19988 2004-03-23  Johan Dahlin  <johan@gnome.org>
19989
19990         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
19991         (gst_play_video_fixate): Check so the structure has the field
19992         before trying to fixate them, this makes it possible to have
19993         fakesinks for video and audio output without printing errors on
19994         the output console.
19995
19996 2004-03-22  David Schleef  <ds@schleef.org>
19997
19998         * sys/oss/Makefile.am:
19999         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
20000         (check_rate), (add_rate):  Rate probing test app.
20001
20002 2004-03-21  Benjamin Otte  <otte@gnome.org>
20003
20004         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
20005         (_fixate_caps_to_int), (gst_audio_convert_fixate):
20006           add a fixation function that pretty much does the right thing (fixes
20007           #137556)
20008
20009 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
20010
20011         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
20012
20013 2004-03-20  Tim-Phillip M??ller <t.i.m@zen.co.uk>
20014
20015         reviewed by: Benjamin Otte  <otte@gnome.org>
20016
20017         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20018           terminate gst_event_new_discontinuous correctly (fixes parts of
20019           #137711)
20020
20021 2004-03-19  David Schleef  <ds@schleef.org>
20022
20023         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
20024         since it doesn't depend on X, and it's part of our ABI.
20025
20026 2004-03-19  Iain <iain@prettypeople.org>
20027
20028         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
20029         is_int in the structure, not the local variable.
20030
20031 2004-03-19  David Schleef  <ds@schleef.org>
20032
20033         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
20034         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
20035         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
20036         Improvements in caps negotiation.
20037
20038 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20039
20040         * po/LINGUAS:
20041         * po/af.po:
20042           adding Afrikaans (Petri Jooste)
20043
20044 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20045
20046         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20047         (gst_ffmpegcolorspace_chain):
20048         throw error instead of g_critical (#137588)
20049
20050 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20051
20052         * Makefile.am:
20053         * configure.ac:
20054           dist common and m4 correctly
20055         * po/sv.po:
20056
20057 2004-03-17  David Schleef  <ds@schleef.org>
20058
20059         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
20060         (bug #137348)
20061
20062 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20063
20064         * po/LINGUAS:
20065         * po/sv.po:
20066           adding Swedish translation (Christian Rose)
20067
20068 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20069
20070         * Makefile.am: use release.mak
20071
20072 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20073
20074         * common/ChangeLog:
20075         * common/gst-autogen.sh:
20076           add some explanation about the version detection
20077         * configure.ac:
20078           fix X check
20079
20080 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20081
20082         * configure.ac: bump nano to 1
20083
20084 === release 0.8.0 ===
20085
20086 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20087
20088         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
20089
20090 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20091
20092         * configure.ac:
20093           update libtool version
20094         * gst-libs/gst/media-info/Makefile.am:
20095           actually use libtool version
20096
20097 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20098
20099         * configure.ac: fix speex detection to work with 1.0 but not 1.1
20100
20101 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20102
20103         * configure.ac:
20104         * gst-plugins.spec.in:
20105         * pkgconfig/Makefile.am:
20106         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
20107         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20108         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20109         * pkgconfig/gstreamer-libs.pc.in:
20110         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20111         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20112         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
20113         * pkgconfig/gstreamer-plugins.pc.in:
20114           remove @VERSION@ from some of the pc files since core and plugins
20115           are decoupled.
20116           created gstreamer-plugins.pc as it's a better name, but keeping
20117           -libs around for now to get fixes upstream done first.
20118
20119 2004-03-15  Julien MOUTTE <julien@moutte.net>
20120
20121         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
20122         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
20123         * gst-libs/gst/play/play.h:
20124
20125 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20126
20127         * *.c, *.cc: don't mix tabs and spaces
20128
20129 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20130
20131         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
20132           use the new ffmpegcolorspace
20133         * gst-plugins.spec.in:
20134           package new colorspace and media-info
20135         * configure.ac:
20136         * pkgconfig/Makefile.am:
20137           fix some more disting issues
20138         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20139         * pkgconfig/gstreamer-media-info.pc.in:
20140           generate media-info pc files
20141
20142 2004-03-15  Johan Dahlin  <johan@gnome.org>
20143
20144         * *.h: Revert indenting
20145
20146 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20147
20148         * configure.ac:
20149           adding ffmpegcolorspace element
20150         * gst/ffmpegcolorspace/Makefile.am:
20151         * gst/ffmpegcolorspace/avcodec.h:
20152         * gst/ffmpegcolorspace/common.h:
20153         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
20154         * gst/ffmpegcolorspace/dsputil.h:
20155         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
20156         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20157         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
20158         (gst_ffmpeg_caps_to_pix_fmt):
20159         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
20160         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20161         (gst_ffmpegcolorspace_caps_remove_format_info),
20162         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
20163         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
20164         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
20165         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
20166         (gst_ffmpegcolorspace_set_property),
20167         (gst_ffmpegcolorspace_get_property),
20168         (gst_ffmpegcolorspace_register):
20169         * gst/ffmpegcolorspace/imgconvert.c:
20170         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
20171         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
20172         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
20173         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
20174         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
20175         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
20176         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
20177         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
20178         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
20179         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
20180         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
20181         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
20182         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
20183         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
20184         (img_get_alpha_info), (deinterlace_line),
20185         (deinterlace_line_inplace), (deinterlace_bottom_field),
20186         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
20187         * gst/ffmpegcolorspace/imgconvert_template.h:
20188         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
20189         * gst/ffmpegcolorspace/mmx.h:
20190         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
20191           adding ffmpegcolorspace element supplied by Ronald after cleaning
20192           up and pulling in the right bits of upstream source.
20193           I'm sure a better C/compiler wizard could do some cleaning up (for
20194           example use GLIB's malloc stuff), but as a first pass this
20195           works very well
20196
20197 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20198
20199         * ext/alsa/gstalsa.h:
20200           I assume Ronald forgot to commit the change to have cardname
20201           as a struct member.  Expect some public spanking at the next
20202           opportunity.
20203
20204 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20205
20206         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
20207         (gst_alsa_open_audio), (gst_alsa_close_audio):
20208         * ext/alsa/gstalsa.c:
20209           Don't open the device if we're a mixer (= padless).
20210         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
20211         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
20212         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
20213           Open mixer during state change rather than during object
20214           initialization. Also, get a device name. Currently in a somewhat
20215           hackish fashion, but I didn't really find something better.
20216
20217 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20218
20219         * *.c, *.h: run gst-indent
20220
20221 2004-03-14  Benjamin Otte  <otte@gnome.org>
20222
20223         * gst/modplug/gstmodplug.cc:
20224         * gst/modplug/gstmodplug.h:
20225           set correct timestamps on outgoing buffers
20226
20227 2004-03-14  Benjamin Otte  <otte@gnome.org>
20228
20229         * gst/modplug/gstmodplug.cc:
20230           handle events - don't do crap when a discont arrives that's not
20231           necessary
20232           This allows correct loading and playback of mods in Rhythmbox
20233
20234 2004-03-14  Benjamin Otte  <otte@gnome.org>
20235
20236         * configure.ac:
20237         * gst-libs/gst/gconf/Makefile.am:
20238         * pkgconfig/Makefile.am:
20239           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
20240           they get rebuilt properly
20241         * configure.ac:
20242           when checking for vorbis, try pkgconfig first.
20243         * gst/modplug/gstmodplug.cc:
20244           add fixate function
20245
20246 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20247
20248         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20249           Fix for obvious mistake, where we first shift the offset and then
20250           read a samplesize element assuming the old offset. Note that this
20251           part still has something weird, i.e. my movies containing those
20252           don't actually play well, but at least there's something that looks
20253           like sound now.
20254
20255 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
20256         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
20257         (plugin_init):
20258         Add a typefind function for speex format
20259
20260 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20261
20262         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
20263         (gst_asf_demux_setup_pad):
20264           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
20265           instead of 0. Reason is simple: some elements have a fps range
20266           of 1-max instead of 0-max. So now ASF video actually works.
20267
20268 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20269
20270         * po/LINGUAS:
20271         * po/sr.po:
20272           adding serbian as a language
20273
20274 2004-03-13  Benjamin Otte  <otte@gnome.org>
20275
20276         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
20277           return taglist correctly from _get function, don't gst_pad_push it.
20278           (fixes #137042)
20279
20280 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
20281         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20282
20283 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20284
20285         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
20286         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
20287         (gst_alsa_mixer_track_new):
20288         * ext/alsa/gstalsamixertrack.h:
20289           Fix ancient leftovers... MixerTrack is a GObject.
20290
20291 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20292
20293         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20294         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
20295           Don't block during probing...
20296
20297 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20298
20299         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
20300         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
20301         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
20302         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
20303         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
20304         (gst_alsa_open_audio), (gst_alsa_close_audio):
20305         * ext/alsa/gstalsa.h:
20306           Add propertyprobe interface implementation, add some device-name
20307           property, all this so that it looks good in gnome-volume-control.
20308
20309 2004-03-12  David Schleef  <ds@schleef.org>
20310
20311         * configure.ac: the Hermes library controls hermescolorspace, not
20312         colorspace.
20313         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
20314         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
20315         not /* */
20316         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
20317         * ext/sdl/sdlvideosink.h: ditto.
20318         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
20319
20320 2004-03-12  Benjamin Otte  <otte@gnome.org>
20321
20322         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
20323         (gst_x_overlay_got_xwindow_id):
20324         * gst-libs/gst/xoverlay/xoverlay.h:
20325           replace XID with unsigned long to get rid of the xlibs dependency in
20326           XOverlay (fixes #137004)
20327
20328 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
20329         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
20330         (gst_agingtv_setup):
20331         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
20332         (gst_dicetv_base_init), (gst_dicetv_class_init),
20333         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
20334         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
20335         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20336         (gst_edgetv_setup), (gst_edgetv_rgb32):
20337         * gst/effectv/gsteffectv.c:
20338         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
20339         (gst_quarktv_set_property):
20340         * gst/effectv/gstrev.c: (gst_revtv_get_type),
20341         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20342         (gst_revtv_setup), (gst_revtv_rgb32):
20343         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
20344         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20345         (gst_shagadelictv_init), (gst_shagadelictv_setup),
20346         (gst_shagadelictv_rgb32):
20347         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
20348         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20349         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
20350         * gst/effectv/gstwarp.c:
20351         Port everything that can be ported to videofilter and fix up the caps.
20352         Can someone with a big-endian machine please check these?
20353
20354 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20355
20356         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
20357         (gst_osssink_chain), (gst_osssink_change_state):
20358           Latest fixes for A/V sync, audio playback and such. This is about
20359           all... MPEG playback issues are mostly related to the async build-
20360           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
20361
20362 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20363
20364         patch from: Stephane Loeuillet
20365
20366         * configure.ac:
20367           use pkg-config for some libraries, falling back to the old .m4 way
20368           (fixes #131270)
20369         * m4/libdv.m4:
20370           removed
20371
20372 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20373
20374         * configure.ac:
20375         * tools/Makefile.am:
20376         * tools/Makefile.in:
20377         * tools/gst-launch-ext-m.m:
20378         * tools/gst-launch-ext.1.in:
20379         * tools/gst-visualise-m.m:
20380         * tools/gst-visualise.1:
20381         * tools/gst-visualise.1.in:
20382           reorganizing generation of script tools
20383
20384 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20385
20386         * ext/divx/gstdivxdec.c:
20387           Downgrade priority. We prefer ffdec_mpeg4.
20388         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
20389         (gst_faad_chain), (gst_faad_change_state):
20390           Fix capsnego. Doesn't work for some sounds because we don't have
20391           a 5:1 to stereo element.
20392         * ext/xvid/gstxvid.c: (plugin_init):
20393           Add priority.
20394         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
20395         (gst_osssink_change_state):
20396           Add discont handling.
20397
20398 2004-03-09  Colin Walters  <walters@verbum.org>
20399
20400         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
20401         conversion.
20402
20403 2004-03-09  Benjamin Otte  <otte@gnome.org>
20404
20405         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
20406           the signals take 2 arguments
20407
20408 2004-03-09  David Schleef  <ds@schleef.org>
20409
20410         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
20411         (gst_alsa_fixate): Add fixate function.  (bug #136686)
20412         * ext/alsa/gstalsa.h:
20413         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
20414
20415 2004-03-09  Benjamin Otte  <otte@gnome.org>
20416
20417         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
20418         (gst_mikmod_change_state):
20419         * ext/mikmod/gstmikmod.h:
20420           make mikmod's loop function not loop infinitely and call
20421           gst_element_yield anymore
20422         * gst/modplug/gstmodplug.cc:
20423           fix pad negotiation (fixes #136590)
20424
20425 2004-03-09  David Schleef  <ds@schleef.org>
20426
20427         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
20428         doesn't conflict with the internal colorspace plugin.
20429         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
20430         satisfy the crappy-ass shell shipped by a certain vendor.
20431         * gst/videofilter/make_filter: same (bug #135299)
20432
20433 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20434
20435         * configure.ac: bump nano to 1
20436
20437 === release 0.7.6 ===
20438
20439 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20440
20441         * configure.in: releasing 0.7.6, "There"
20442
20443 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20444
20445         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20446         * pkgconfig/gstreamer-play.pc.in:
20447           synchronize the two
20448
20449 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20450
20451         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
20452         (cdparanoia_open), (cdparanoia_event):
20453           fix/add error handling
20454         * po/POTFILES.in:
20455           add cdparanoia source
20456         * tools/Makefile.am:
20457           make scripts executable
20458
20459 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20460
20461         * configure.ac:
20462         * ext/vorbis/Makefile.am:
20463         * sys/Makefile.am:
20464           remove id3types, vorbisfile and xvideosink from the build (#133783)
20465
20466 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20467
20468         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
20469           Fix metadata read crash (#136537).
20470
20471 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20472
20473         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
20474         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
20475           adding mime types, fixing the one-stop function
20476
20477 2004-03-08  Christian Schaller <Uraeus@gnome.org>
20478
20479         * ext/nas/nassink.c and /ext/nas/nassink.h:
20480         More NAS love from Arwed von Merkatz
20481         So lets all sing 'Can you feel the NAS tonight'
20482
20483 2004-03-08  Christian Schaller <Uraeus@gnome.org>
20484
20485         * tools/gst-launch-ext.in:
20486         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
20487
20488 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20489
20490         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
20491         (gst_mpeg2dec_init):
20492         remove the user_data pad for now, because it is being used in
20493         fixating causing MPEG playback to fixate on 1000 Hz for playback.
20494         If someone knows how to fix this properly, please do.
20495
20496 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20497
20498         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20499         (gst_osssink_get_time):
20500         add a warning, IMO this won't get triggered anymore, remove later
20501
20502 2004-03-07  David Schleef  <ds@schleef.org>
20503
20504         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
20505         format (bug #136470)
20506
20507 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
20508
20509         * gst-libs/Makefile.am:
20510         * gst-libs/gst/media-info/Makefile.am:
20511         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
20512         (error_callback), (gst_media_info_error_create),
20513         (gst_media_info_error_element), (gmip_init), (gmip_reset),
20514         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
20515         * gst-libs/gst/media-info/media-info-priv.h:
20516         * gst-libs/gst/media-info/media-info-test.c: (main):
20517         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
20518         (gst_media_info_class_init), (gst_media_info_instance_init),
20519         (gst_media_info_set_source), (gst_media_info_read_with_idler),
20520         (gst_media_info_read_idler), (gst_media_info_read):
20521         * gst-libs/gst/media-info/media-info.h:
20522         fixed, should work now
20523
20524 2004-03-07  Christian Schaller <Uraeus@gnome.org>
20525
20526         * ext/nas/nassink.c:
20527         A bunch of NAS fixes from Arwed von Merkatz
20528
20529 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20530
20531         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
20532         (qtdemux_parse_trak):
20533           Fix crash (j might be greater than n_samples, in which case we're
20534           writing outside the allocated space for the array) and memleak.
20535
20536 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20537
20538         * sys/oss/gstosssink.c: (gst_osssink_chain):
20539           And another caller that couldn't handle delay < 0 (unsigned
20540           integer overflow). Video now continues playing on an audio
20541           buffer underrun, and the clock continues working. Audio still
20542           stalls.
20543
20544 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20545
20546         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20547         (gst_osssink_get_time):
20548           get_delay() may return values lower than 0. In those cases, we
20549           should not actually cast to *unsigned* int64, that will break
20550           stuff horribly. In my case, it screwed up A/V sync in movies
20551           in totem rather badly.
20552
20553 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
20554
20555         * ext/faac/gstfaac.c: (gst_faac_chain):
20556         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
20557         * ext/libpng/gstpngenc.c: (user_write_data):
20558         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
20559         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
20560         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
20561         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
20562         Fix several misuse of gst_buffer_merge (it doesn't take ownership
20563         of any buffer), should fix some leaks. I hope I didn't unref buffers
20564         that shouldn't be...
20565
20566 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20567
20568         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
20569         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
20570         (error_callback), (gmi_reset), (gmi_seek_to_track),
20571         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
20572         (gmip_find_type_post), (gmip_find_stream_post),
20573         (gmip_find_track_streaminfo_post):
20574         * gst-libs/gst/media-info/media-info-priv.h:
20575         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
20576         (info_print), (main):
20577         * gst-libs/gst/media-info/media-info.c:
20578         (gst_media_info_error_create), (gst_media_info_error_element),
20579         (gst_media_info_instance_init), (gst_media_info_get_property),
20580         (gst_media_info_new), (gst_media_info_set_source),
20581         (gst_media_info_read_idler), (gst_media_info_read):
20582         * gst-libs/gst/media-info/media-info.h:
20583           first pass at making this work again.  This seems to work on
20584           tagged ogg/vorbis and mp3 files.
20585
20586 2004-03-06  Benjamin Otte  <otte@gnome.org>
20587
20588         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20589           fix huge leak: gst_buffer_merge doesn't unref the first argument
20590           itself.
20591
20592 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20593
20594         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
20595           report layer/mode/emphasis
20596
20597 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
20598
20599         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
20600
20601 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20602
20603         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
20604           signal serial
20605
20606 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20607
20608         * ext/vorbis/vorbis.c: (plugin_init):
20609         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20610         (gst_vorbis_dec_init), (vorbis_dec_event):
20611         add debug category
20612         make vorbisdec handle _BYTE and _TIME queries
20613
20614 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
20615
20616         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
20617           from the xing header
20618
20619 2004-03-06  Benjamin Otte  <otte@gnome.org>
20620
20621         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
20622         (gst_audio_convert_link), (gst_audio_convert_change_state),
20623         (gst_audio_convert_buffer_from_default_format):
20624           do conversions from/to float correctly, fix some caps nego errors,
20625           export correct supported caps in template and getcaps, use correct
20626           caps in try_set_caps functions
20627
20628 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
20629
20630         For some reason, I only committed a ChangeLog entry yesterday and
20631         not the corresponding code...
20632         * ext/mad/gstmad.c: Fix detection of Xing headers
20633         * gst/tags/gstid3tag.c: Changes to support TLEN tags
20634
20635 2004-03-06  Benjamin Otte  <otte@gnome.org>
20636
20637         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
20638         (gst_ogg_demux_src_query):
20639           make sure to handle the case where there's no current chain
20640           gracefully.
20641
20642 2004-03-05  David Schleef  <ds@schleef.org>
20643
20644         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
20645         Add fixate function. (bug #131128)
20646         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
20647         (gst_sdlvideosink_fixate):  Add fixate function.
20648         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
20649         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
20650         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
20651         Fix missing break that was causing ulaw to be interpreted as
20652         raw int.
20653
20654 2004-03-05  David Schleef  <ds@schleef.org>
20655
20656         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
20657         Fix code that ignores return value of gst_buffer_merge().
20658         (bug #114560)
20659         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
20660         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
20661         * testsuite/gst-lint:  Check for above.
20662
20663 2004-03-05  David Schleef  <ds@schleef.org>
20664
20665         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
20666         caps and throw an element error.  (bug #136334)
20667
20668 2004-03-05  David Schleef  <ds@schleef.org>
20669
20670         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
20671         (gst_faad_chain): Fix negotiation.
20672         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
20673         key and button events.
20674         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
20675         dung heap of code.
20676         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
20677         depends on gconf
20678         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
20679         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
20680         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
20681         function to encourage better negotiation, particularly between
20682         audioconvert and osssink.
20683         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
20684         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
20685         more important.
20686         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
20687         typefinding.
20688         * gst/vbidec/vbiscreen.c:  Add glib header
20689         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
20690
20691 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
20692
20693         * ext/mad/gstmad.c: Fix detection of Xing headers
20694         * gst/tags/gstid3tag.c: Changes to support TLEN tags
20695
20696 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20697
20698         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
20699         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
20700           debug updates
20701
20702 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
20703
20704         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
20705         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
20706         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
20707         files, and report the parsed length as a GST_TAG_DURATION tag.
20708         * gst/tags/gstid3tag.c: support TLEN (duration) tag
20709
20710 2004-03-05  Benjamin Otte  <otte@gnome.org>
20711
20712         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
20713           convert channels correctly. convert correctly to unsigned.
20714
20715 2004-03-05  Julien MOUTTE <julien@moutte.net>
20716
20717         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
20718         we have a window before clearing it.
20719
20720 2004-03-05  Julien MOUTTE <julien@moutte.net>
20721
20722         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
20723         have a window before clearing it.
20724
20725 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20726
20727         * gconf/gstreamer.schemas.in:
20728         * gst-libs/gst/gconf/Makefile.am:
20729           version installation path the same way as for 0.6
20730         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20731         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20732         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20733           remove comment that was fixed
20734
20735 2004-03-05  David Schleef  <ds@schleef.org>
20736
20737         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
20738         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
20739         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
20740         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
20741         Add prototype code for handling seeking and querying.
20742
20743 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20744
20745         * examples/gstplay/player.c: (main):
20746           Initialize variables to NULL. Prevents a segfault because the
20747           (uninitialized) variable is not NULL, resulting in a crash on
20748           trying to reach error->message.
20749
20750 2004-03-05  Benjamin Otte  <otte@gnome.org>
20751
20752         * gst/audioconvert/gstaudioconvert.c:
20753         (gst_audio_convert_buffer_to_default_format):
20754         make float=>int conversion work correctly even in cornercases.
20755
20756 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
20757
20758         * debian/README.Debian:
20759         * debian/build-deps:
20760         * debian/changelog:
20761         * debian/control:
20762         * debian/control.in:
20763         * debian/copyright:
20764         * debian/gstreamer-a52dec.files:
20765         * debian/gstreamer-aa.files:
20766         * debian/gstreamer-alsa.files:
20767         * debian/gstreamer-alsa.manpages:
20768         * debian/gstreamer-arts.files:
20769         * debian/gstreamer-artsd.files:
20770         * debian/gstreamer-audiofile.files:
20771         * debian/gstreamer-avifile.files:
20772         * debian/gstreamer-cdparanoia.files:
20773         * debian/gstreamer-colorspace.files:
20774         * debian/gstreamer-doc.files:
20775         * debian/gstreamer-dv.files:
20776         * debian/gstreamer-dvd.files:
20777         * debian/gstreamer-esd.files:
20778         * debian/gstreamer-festival.files:
20779         * debian/gstreamer-flac.files:
20780         * debian/gstreamer-gconf.conffiles:
20781         * debian/gstreamer-gconf.files:
20782         * debian/gstreamer-gconf.postinst:
20783         * debian/gstreamer-gnomevfs.files:
20784         * debian/gstreamer-gsm.files:
20785         * debian/gstreamer-http.files:
20786         * debian/gstreamer-jack.files:
20787         * debian/gstreamer-jpeg.files:
20788         * debian/gstreamer-mad.files:
20789         * debian/gstreamer-mikmod.files:
20790         * debian/gstreamer-misc.files:
20791         * debian/gstreamer-mpeg2dec.files:
20792         * debian/gstreamer-oss.files:
20793         * debian/gstreamer-plugin-apps.files:
20794         * debian/gstreamer-plugin-apps.manpages:
20795         * debian/gstreamer-plugin-libs-dev.files:
20796         * debian/gstreamer-plugin-libs.files:
20797         * debian/gstreamer-plugin-template.postinst:
20798         * debian/gstreamer-plugin-template.postrm:
20799         * debian/gstreamer-sdl.files:
20800         * debian/gstreamer-sid.files:
20801         * debian/gstreamer-vorbis.files:
20802         * debian/gstreamer-x.files:
20803         * debian/mk.control:
20804         * debian/rules:
20805         Debian package info not maintained here.
20806
20807 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20808
20809         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
20810         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
20811         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
20812         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
20813         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
20814         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
20815         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
20816         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
20817         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
20818         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
20819         * gst-libs/gst/colorbalance/colorbalance.c:
20820         (gst_color_balance_class_init):
20821         * gst-libs/gst/colorbalance/colorbalancechannel.c:
20822         (gst_color_balance_channel_class_init):
20823         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
20824         * gst-libs/gst/play/play.c: (gst_play_class_init):
20825         * gst-libs/gst/propertyprobe/propertyprobe.c:
20826         (gst_property_probe_iface_init):
20827         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
20828         * gst-libs/gst/tuner/tunerchannel.c:
20829         (gst_tuner_channel_class_init):
20830         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
20831         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
20832         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
20833         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
20834         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
20835         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
20836         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
20837         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
20838         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
20839           fix signals to use - instead of _
20840         * ext/libcaca/gstcacasink.h:
20841         * ext/sdl/sdlvideosink.h:
20842           fix header rename
20843
20844 2004-03-04  David Schleef  <ds@schleef.org>
20845
20846         * testsuite/gst-lint:  Add a check for bad signal names.
20847
20848 2004-03-04  <kost@imn.htwk-leipzig.de>
20849
20850         reviewed by David Schleef
20851
20852         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
20853         modified the alpha channel and caused a warning. (bug #136192)
20854
20855 2004-04-03  Christian Schaller <Uraeus@gnome.org>
20856
20857         * gst-plugins.spec.in:
20858         Change names of plugins to actually be correct. Try to keep things
20859         alphabetical to avoid getting beat up by Thomas
20860
20861 2004-03-03  Julien MOUTTE <julien@moutte.net>
20862
20863         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
20864         Using ximagesink as a default if no gconf key found. We should
20865         probably consider using alsasink instead of osssink for the audio
20866         part.
20867
20868 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20869
20870         * configure.ac:
20871           fix --with-plugins, don't think it ever worked before
20872         * gst-plugins.spec.in:
20873           even more updates
20874
20875 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20876
20877         * ext/sdl/sdlvideosink.h:
20878         * sys/ximage/ximagesink.h:
20879         * sys/xvideo/xvideosink.h:
20880         * sys/xvimage/xvimagesink.h:
20881           Fix for move of gstvideosink.h -> videosink.h.
20882
20883 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20884
20885         * gst-libs/gst/xwindowlistener/Makefile.am:
20886           this is a plugin library, not a library
20887
20888 2004-03-01  David Schleef  <ds@schleef.org>
20889
20890         * AUTHORS:  Added some names.  Add yourself if you're still
20891         missing.
20892
20893 2004-03-01  David Schleef  <ds@schleef.org>
20894
20895         * MAINTAINERS: Add
20896
20897 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20898
20899         * gst-plugins.spec.in: clean up spec file
20900
20901 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20902
20903         * gst-libs/gst/video/Makefile.am:
20904         * gst-libs/gst/video/gstvideosink.c:
20905         * gst-libs/gst/video/gstvideosink.h:
20906           rename gstvideosink.h to videosink.h to match other headers
20907         * gst/mixmatrix/Makefile.am:
20908           fix plugin filename
20909         * gst/tags/Makefile.am: fix plugin filename
20910
20911 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20912
20913         * gst/tags/Makefile.am: fix plugin filename
20914
20915 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20916
20917         * examples/gstplay/player.c: (got_time_tick), (main):
20918           add error handler
20919           display time_tick more readably
20920         * gst/mixmatrix/Makefile.am:
20921           fix plugin file name
20922
20923 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
20924
20925         * sys/oss/gstosselement.c: (gst_osselement_probe),
20926         (device_combination_append), (gst_osselement_class_probe_devices):
20927         * sys/oss/gstosselement.h:
20928           Reworked enumeration of oss dsps and mixers so that gst-mixer works
20929           on my system using alsa oss emulation, fixes bug #135597
20930
20931 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20932
20933         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
20934         (gst_videodrop_chain), (gst_videodrop_change_state):
20935         * gst/videodrop/gstvideodrop.h:
20936           Work based on timestamp of input data, not based on the expected
20937           framerate from the input. The consequence is that this element now
20938           not only scales framerates, but also functions as a framerate
20939           corrector or framerate stabilizer/constantizer.
20940
20941 2004-02-27  David Schleef  <ds@schleef.org>
20942
20943         patches from jmmv@menta.net (Julio M. Merino Vidal)
20944
20945         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
20946         GST_ELEMENT_ERROR call (bug #135634)
20947         * gst/interleave/interleave.c: (interleave_buffered_loop),
20948         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
20949         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
20950         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20951         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
20952         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
20953         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
20954         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
20955         Fix GST_ELEMENT_ERROR call.
20956         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
20957         GST_ELEMENT_ERROR call.
20958
20959 2004-02-27  Benjamin Otte  <otte@gnome.org>
20960
20961         * gst-libs/gst/audio/audio.h:
20962           add macro to make sure header isn't included twice
20963         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20964           don't use gst_buffer_free
20965         * gst/playondemand/filter.func:
20966           don't use gst_data_free. Free data only once.
20967
20968 2004-02-26  David Schleef  <ds@schleef.org>
20969
20970         * gst-libs/gst/colorbalance/Makefile.am:
20971         * gst-libs/gst/mixer/Makefile.am:
20972         * gst-libs/gst/tuner/Makefile.am:
20973         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
20974         should not be disted, -marshal.h files should not be installed,
20975         and -enum.h files _should_ be installed.  Fix to make this the
20976         case.
20977
20978 === release 0.7.5 ===
20979
20980 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
20981
20982         * configure.ac: release 0.7.5, "Under The Sea"
20983
20984 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20985
20986         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
20987         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
20988         * gst/videoscale/gstvideoscale.c:
20989         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
20990           assorted debug/warning fixes
20991
20992 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20993
20994         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
20995         (gst_videoscale_init), (gst_videoscale_chain),
20996         (gst_videoscale_set_property), (plugin_init):
20997         * gst/videoscale/gstvideoscale.h:
20998         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
20999         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
21000         (gst_videoscale_planar400), (gst_videoscale_packed422),
21001         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
21002         (gst_videoscale_24bit), (gst_videoscale_16bit),
21003         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
21004         (gst_videoscale_scale_plane_slow),
21005         (gst_videoscale_scale_point_sample),
21006         (gst_videoscale_scale_nearest),
21007         (gst_videoscale_scale_nearest_str2),
21008         (gst_videoscale_scale_nearest_str4),
21009         (gst_videoscale_scale_nearest_32bit),
21010         (gst_videoscale_scale_nearest_24bit),
21011         (gst_videoscale_scale_nearest_16bit):
21012         add debugging category and use it properly
21013         fix use of GST_PTR_FORMAT
21014
21015 2004-02-25  Andy Wingo  <wingo@pobox.com>
21016
21017         * gst/interleave/interleave.c (interleave_buffered_loop): Always
21018         push only when channel->buffer is NULL. Prevents segfaults doing
21019         the state change after a nonlocal exit, like a scheme exception.
21020
21021         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
21022         Handle the case where the intersected caps is empty.
21023
21024 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21025
21026         * gst/law/mulaw-decode.c: (mulawdec_link):
21027         * gst/law/mulaw.c: (plugin_init):
21028           fix mulawdec so it actually works again
21029
21030 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
21031
21032         reviewed by: David Schleef  <ds@schleef.org>
21033
21034         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
21035         (gst_gamma_init), (gst_gamma_set_property),
21036         (gst_gamma_get_property), (gst_gamma_calculate_tables),
21037         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
21038         for RGB, with separate r g and b correction factors. (#131167)
21039
21040 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21041
21042         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
21043           only signal tags for bitrate if they're > 0 (#134894)
21044
21045 2004-02-24  David Schleef  <ds@schleef.org>
21046
21047         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
21048         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
21049         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
21050         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
21051         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
21052         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
21053         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
21054         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
21055         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
21056         category.  Attempt to fix timestamp calculation.
21057
21058 2004-02-24  Johan Dahlin  <johan@gnome.org>
21059
21060         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
21061
21062 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21063
21064         * configure.ac:
21065         * gconf/Makefile.am:
21066         * gconf/gstreamer.schemas:
21067         * gst-libs/gst/gconf/Makefile.am:
21068         * gst-libs/gst/gconf/gconf.c:
21069           version gconf schemas and install locations
21070
21071 2004-02-23  Benjamin Otte  <otte@gnome.org>
21072
21073         * ext/xine/xineinput.c: (gst_xine_input_dispose):
21074         (gst_xine_input_subclass_init):
21075           call parent dispose.
21076           change pad template for CD reader correctly
21077         * ext/xine/Makefile.am:
21078         * ext/xine/gstxine.h:
21079         * ext/xine/xine.c: (plugin_init):
21080         * ext/xine/xineaudiosink.c:
21081           wrap audio sinks, too
21082         * gst-libs/gst/resample/private.h:
21083         * gst-libs/gst/resample/resample.c: (gst_resample_init),
21084         (gst_resample_reinit), (gst_resample_scale),
21085         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
21086         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
21087         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
21088         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
21089         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
21090         * gst-libs/gst/resample/resample.h:
21091         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
21092         (gst_audioscale_class_init), (gst_audioscale_link),
21093         (gst_audioscale_get_buffer), (gst_audioscale_init),
21094         (gst_audioscale_chain), (gst_audioscale_set_property),
21095         (gst_audioscale_get_property):
21096         * gst/audioscale/gstaudioscale.h:
21097           s/resample_*/gst_resample_*/i to not clobber namespaces
21098
21099 2004-02-23  Julien MOUTTE  <julien@moutte.net>
21100
21101         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21102         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
21103         (gst_riff_create_video_template_caps),
21104         (gst_riff_create_audio_template_caps),
21105         (gst_riff_create_iavs_template_caps):
21106         * gst-libs/gst/riff/riff-media.h:
21107         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21108         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
21109         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
21110         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
21111         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21112         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
21113         (gst_matroska_demux_plugin_init): First batch implementing audio and
21114         video codec tags in demuxers.
21115
21116 2004-02-22  Benjamin Otte  <otte@gnome.org>
21117
21118         * ext/xine/Makefile.am:
21119         * ext/xine/gstxine.h:
21120         * ext/xine/xine.c: (plugin_init):
21121         * ext/xine/xineinput.c:
21122           add input plugin wrapper. Playback from files, http, mms and cdda
21123           works.
21124         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
21125           remove leftover G_GNUC_UNUSED
21126         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
21127         (gst_asf_demux_identify_guid):
21128           improve debugging output
21129
21130 2004-02-22  Benjamin Otte  <otte@gnome.org>
21131
21132         reported by: Padraig O'Briain <padraig.obriain@sun.com>
21133
21134         * autogen.sh:
21135           replace test -e with test -x for mkinstalldirs to be more portable.
21136           (fixes #134816)
21137
21138 2004-02-22  Benjamin Otte  <otte@gnome.org>
21139
21140         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
21141
21142         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
21143           set rank to PRIMARY
21144         * gst/volume/gstvolume.c: (plugin_init):
21145           set rank to NONE
21146         fixes #134960
21147
21148 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
21149
21150         reviewed by Benjamin Otte  <otte@gnome.org>
21151
21152         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21153           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
21154
21155 2004-02-22  Benjamin Otte  <otte@gnome.org>
21156
21157         * configure.ac:
21158           export [_]*{gst,Gst,GST}.* symbols from plugins
21159
21160 2004-02-22  Christophe Fergeau <teuf@gnome.org>
21161
21162         reviewed by: Benjamin Otte  <otte@gnome.org>
21163
21164         * ext/lame/gstlame.c: (add_one_tag):
21165         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21166         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
21167         (gst_vorbisenc_metadata_set1):
21168         * gst/tags/gstid3tag.c:
21169         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
21170           apply fixes from bugs #135042 (lame can't write tags) and #133817
21171           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
21172
21173 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
21174
21175         * configure.ac: Export only gst_plugin_desc from plugins.
21176          Note that this change only makes any effect with Linux using libtool
21177          1.5.2 or higher. Otherwise it is silently ignored, but it would build
21178          fine. And don't try to have several versions of libtool in different
21179          directories.
21180
21181 2004-02-20  Andy Wingo  <wingo@pobox.com>
21182
21183         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
21184         interleave respectively.
21185
21186         * gst/interleave/deinterleave.c: New plugin: deinterleave
21187         (replaces on oneton).
21188         * gst/interleave/interleave.c: New plugin: interleave.
21189         * gst/interleave/plugin.h: Support file.
21190         * gst/interleave/plugin.c: Support file.
21191
21192         * configure.ac: Remove intfloat and oneton, add interleave.
21193
21194         * ext/sndfile/gstsf.c: Handle events better.
21195
21196         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
21197         and float2int operation. int2float has scheduling problems as
21198         noted in in2float_chain.
21199
21200 2004-02-20  Benjamin Otte  <otte@gnome.org>
21201
21202         * ext/xine/Makefile.am:
21203         * ext/xine/gstxine.h:
21204         * ext/xine/xine.c:
21205         * ext/xine/xineaudiodec.c:
21206         * ext/xine/xinecaps.c:
21207           add first version of xine plugin wrapper. Currently only wraps the
21208           QDM2 win32 DLL, and even that only in proof-of-concept quality.
21209         * configure.ac:
21210         * ext/Makefile.am:
21211           add xine plugin wrapper, disabled by default. Use --enable-xine to
21212           build. Note that it'll segfault on gst-register if you don't remove
21213           the goom and tvtime post plugins from xine.
21214         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21215         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
21216           add extradata parsing for QDM2.
21217           change around debugging prints.
21218
21219 2004-02-19  Benjamin Otte  <otte@gnome.org>
21220
21221         * ext/lame/gstlame.c: (gst_lame_chain):
21222         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21223           use gst_tag_list_insert when you want to insert tags
21224
21225 2004-02-18  David Schleef  <ds@schleef.org>
21226
21227         * configure.ac:  Move massink to gst-rotten
21228         * ext/Makefile.am:
21229         * ext/mas/Makefile.am:
21230         * ext/mas/massink.c:
21231         * ext/mas/massink.h:
21232
21233 2004-02-18  David Schleef  <ds@schleef.org>
21234
21235         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
21236         typefinding, since it seems to be worse than nothing.
21237         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
21238         atom to recognize .mp4 and .m4a files as video/quicktime.
21239
21240 2004-02-18  David Schleef  <ds@schleef.org>
21241
21242         * gst/sine/demo-dparams.c: (quit_live),
21243         (dynparm_log_value_changed), (dynparm_value_changed), (main):
21244         Use double dparams, not float.
21245         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21246         (gst_sinesrc_init): Change sync default to FALSE, since multiple
21247         sync'd elements don't really work correctly.
21248         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
21249         (volume_update_volume), (volume_get_property):  Change dparam
21250         to double.
21251
21252 2004-02-18  Julien MOUTTE  <julien@moutte.net>
21253
21254         * sys/ximage/ximagesink.c:
21255         (gst_ximagesink_xwindow_update_geometry),
21256         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21257         (gst_ximagesink_change_state), (gst_ximagesink_expose),
21258         (gst_ximagesink_init): Rework the way software video scaling works. So
21259         now we check on each chain call if the video frames are feeling the
21260         window. If not we try to renegotiate caps. On failure we memorize that
21261         and we won't try again for that PLAYING sessions.
21262         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
21263         failure.
21264         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
21265         synchronous flag.
21266
21267 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21268
21269         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
21270           break up _link so we can give a better debug message for errors
21271
21272 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21273
21274         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21275           set up debug category
21276
21277 2004-02-18  Julien MOUTTE <julien@moutte.net>
21278
21279         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21280         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
21281         the way renegotiation work. The event handling function is not taking
21282         care of external windows and renegotiate method check for pad flags
21283         NEGOTIATING. Should fix : #133209
21284
21285 2004-02-17  Julien MOUTTE  <julien@moutte.net>
21286
21287         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
21288         pad is negotiating before trying renegotiation.
21289
21290 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21291
21292         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
21293           pass on all possible mime types as typefind hints
21294
21295 2004-02-17  Julien MOUTTE <julien@moutte.net>
21296
21297         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
21298         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
21299         possible SHM leak if we crash. All other apps using XShm are doing
21300         that.
21301
21302 2004-02-17  Julien MOUTTE  <julien@moutte.net>
21303
21304         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21305         (gst_ximagesink_expose): Renegotiate size on expose.
21306         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
21307         size on expose.
21308
21309 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21310
21311         * testsuite/alsa/sinesrc.c:
21312           cosmetic fix to fix compile issue with gcc 2.95.4
21313
21314 2004-02-16  Julien MOUTTE <julien@moutte.net>
21315
21316         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
21317         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
21318         failed opening the audio device.
21319         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
21320         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
21321         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
21322         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
21323         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21324         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
21325         (gst_ximagesink_change_state), (gst_ximagesink_chain),
21326         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
21327         Removing some useless g_return_if_fail like wingo suggested.
21328         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
21329         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
21330         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
21331         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
21332         (gst_xvimagesink_update_colorbalance),
21333         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
21334         (gst_xvimagesink_xcontext_clear),
21335         (gst_xvimagesink_get_fourcc_from_caps),
21336         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
21337         (gst_xvimagesink_set_xwindow_id),
21338         (gst_xvimagesink_colorbalance_list_channels),
21339         (gst_xvimagesink_colorbalance_set_value),
21340         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
21341         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
21342
21343 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21344
21345         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
21346           throw error when not negotiated instead of asserting
21347
21348 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21349
21350         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
21351         correct data refcounting.
21352
21353 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21354
21355         * gst/switch/gstswitch.c: (gst_switch_change_state),
21356         (gst_switch_class_init): Cleaning the sinkpads correctly on state
21357         change, mostly the EOS flag.
21358
21359 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21360
21361         * examples/gstplay/player.c: (got_eos), (main): Adding some
21362         output for debugging.
21363         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
21364         timeouts if we go to any state different from PLAYING.
21365         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
21366         more EOS bugs in riff lib.
21367
21368 2004-02-14  Julien MOUTTE  <julien@moutte.net>
21369
21370         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
21371         visualization until i find a way to fix switch correctly.
21372         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
21373         EOS arrives.
21374         * gst/switch/gstswitch.c: (gst_switch_release_pad),
21375         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
21376         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
21377         Reworked switch to get a more correct behaviour with events and refing
21378         of data stored in sinkpads.
21379         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
21380         we don't pull from a pad in EOS.
21381
21382 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21383
21384         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21385           remove v1 tag even if we can't read it (makes sure we don't detect
21386           it again)
21387
21388 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21389
21390         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
21391         (gst_alsa_xrun_recovery):
21392         * ext/alsa/gstalsa.h:
21393           try xrun recovery when wait failed. Make xrun recovery function
21394           return TRUE/FALSE to indicate success. (might fix #134354)
21395
21396 2004-02-13  David Schleef  <ds@schleef.org>
21397
21398         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
21399         (dynparm_value_changed), (main): Convert from float to double.
21400         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
21401
21402 2004-02-13  David Schleef  <ds@schleef.org>
21403
21404         * gst/silence/gstsilence.c: (gst_silence_class_init),
21405         (gst_silence_set_clock), (gst_silence_get),
21406         (gst_silence_set_property), (gst_silence_get_property):
21407         * gst/silence/gstsilence.h: Add sync property.
21408         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21409         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
21410         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
21411         * gst/sine/gstsinesrc.h: Add sync property.
21412
21413 2004-02-13  David Schleef  <ds@schleef.org>
21414
21415         * gst/intfloat/gstint2float.c: (conv_f32_s16),
21416         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
21417
21418 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21419
21420         * configure.ac:
21421         * ext/Makefile.am:
21422         * gst-libs/ext/Makefile.am:
21423           move ffmpeg plugin to gst-ffmpeg module
21424
21425 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21426
21427         * configure.ac: use GST_ARCH to detect architecture
21428
21429 2004-02-12  Julien MOUTTE  <julien@moutte.net>
21430
21431         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
21432
21433 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21434
21435         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
21436           classify LADSPA plugins based on number of src/sink pads
21437           (#133663, Stefan Kost)
21438         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
21439           fix dparams registration
21440           (#133528, Stefan Kost)
21441         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
21442           fix use of isprint and use g_ascii_isprint instead
21443           (#133316, Stefan Kost)
21444
21445 2004-02-11  David Schleef  <ds@schleef.org>
21446
21447         Convert a few inner loops to use liboil.  This is currently
21448         optional, and is only enabled if liboil is present (duh!).
21449         * configure.ac: Check for liboil-0.1
21450         * gst/intfloat/Makefile.am:
21451         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
21452         (gst_int2float_chain_gint16):
21453         * gst/videofilter/Makefile.am:
21454         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
21455         (tablelookup_u8), (gst_videobalance_planar411):
21456         * gst/videotestsrc/Makefile.am:
21457         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
21458         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
21459         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
21460         (paint_hline_RGB565), (paint_hline_xRGB1555):
21461
21462 2004-02-11  David Schleef  <ds@schleef.org>
21463
21464         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
21465         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
21466         (gst_colorspace_getcaps), (gst_colorspace_link),
21467         (gst_colorspace_base_init), (gst_colorspace_init),
21468         (gst_colorspace_chain), (gst_colorspace_change_state),
21469         (plugin_init): Merge Ronald's patch (bug #117897) and update
21470         for new caps and negotiation.  Seems to work, although it
21471         shows off bugs in lcs.
21472
21473 2004-02-11  David Schleef  <ds@schleef.org>
21474
21475         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
21476         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
21477
21478 2004-02-11  David Schleef  <ds@schleef.org>
21479
21480         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
21481         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
21482         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
21483         Add server and port properties
21484
21485 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21486
21487         * m4/a52.m4:
21488         * m4/aalib.m4:
21489         * m4/as-ffmpeg.m4:
21490         * m4/as-liblame.m4:
21491         * m4/as-slurp-ffmpeg.m4:
21492         * m4/check-libheader.m4:
21493         * m4/esd.m4:
21494         * m4/freetype2.m4:
21495         * m4/gconf-2.m4:
21496         * m4/glib.m4:
21497         * m4/gst-alsa.m4:
21498         * m4/gst-artsc.m4:
21499         * m4/gst-ivorbis.m4:
21500         * m4/gst-matroska.m4:
21501         * m4/gst-sdl.m4:
21502         * m4/gst-shout2.m4:
21503         * m4/gst-sid.m4:
21504         * m4/gtk.m4:
21505         * m4/libdv.m4:
21506         * m4/libfame.m4:
21507         * m4/libmikmod.m4:
21508         * m4/ogg.m4:
21509         * m4/vorbis.m4:
21510           fix underquotedness of macros (#133800)
21511         * m4/as-avifile.m4:
21512         * m4/xmms.m4:
21513           removed because no longer used
21514
21515 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21516
21517         * configure.ac:
21518           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
21519           by autopoint (fixes #132996)
21520
21521 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21522
21523         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
21524         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
21525         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
21526         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
21527           fix memleaks
21528
21529 2004-02-11  David Schleef  <ds@schleef.org>
21530
21531         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
21532         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
21533         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
21534         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
21535         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
21536         (gst_jpegenc_class_init), (gst_jpegenc_init),
21537         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
21538         (gst_jpegenc_chain), (gst_jpegenc_set_property),
21539         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
21540         * ext/jpeg/gstjpegenc.h: Fix negotiation.
21541
21542 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21543
21544         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
21545         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
21546         * ext/mikmod/gstmikmod.h:
21547           fix caps negotiation in mikmod
21548         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
21549           output debug information
21550
21551 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21552
21553         * gst-libs/gst/colorbalance/Makefile.am:
21554         * gst-libs/gst/navigation/Makefile.am:
21555         * gst-libs/gst/xoverlay/Makefile.am:
21556           remove unused GST_OPT_CFLAGS from Makefiles
21557           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
21558
21559 2004-02-07  David Schleef  <ds@schleef.org>
21560
21561         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
21562         push events to pads that haven't been created (#133508)
21563
21564 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
21565
21566         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
21567         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
21568         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
21569         (gst_dvdec_loop), (gst_dvdec_change_state):
21570         Second attempt at committing a working dvdec element.
21571
21572 2004-02-06  David Schleef  <ds@schleef.org>
21573
21574         Build fixes for OS X: (see #129600)
21575         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
21576         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
21577         (gst_riff_read_strf_iavs):
21578         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
21579         (gst_avi_demux_stream_odml):
21580         * gst/playondemand/Makefile.am:
21581         * gst/rtp/rtp-packet.c:
21582
21583 2004-02-05  David Schleef  <ds@schleef.org>
21584
21585         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
21586         last change, because it Just Doesn't Compile.
21587
21588 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21589
21590         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21591           skip undecodable id3v2 tag instead of keeping it
21592
21593 2004-02-05  David Schleef  <ds@schleef.org>
21594
21595         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
21596         Unref leaked buffer.  (Noticed by Ronald)
21597
21598 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
21599
21600         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21601         Sync requires with other checks.  >= vs =.
21602
21603 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
21604
21605         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
21606         (gst_dvdec_video_link), (gst_dvdec_loop):
21607         * ext/dv/gstdvdec.h:
21608           rework the caps negotiation so that dvdec works again instead
21609           of just segfaulting.
21610
21611 === release 0.7.4 ===
21612
21613 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21614
21615         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
21616         * configure.ac: changed for release
21617
21618 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21619
21620         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
21621         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
21622         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21623         * pkgconfig/gstreamer-play-uninstalled.pc.in:
21624           reworked patch by David Lehn to fix libdir and includedir for
21625           uninstalled libraries
21626           removed play and gconf from gstreamer-libs since they have their
21627           own pkgconfig files
21628
21629 2004-02-04  David Schleef  <ds@schleef.org>
21630
21631         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
21632         memleak.
21633
21634 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21635
21636         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
21637           use correct GST_TAG_ENCODER tag
21638
21639 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21640
21641         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
21642           be sure to stop the clock when going to paused
21643         * sys/oss/gstosssink.c: (gst_osssink_change_state):
21644           reset number of transmitted when going to ready.
21645         fixes #132935
21646
21647 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
21648
21649         reviewed by Benjamin Otte
21650
21651         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21652           extract track count (fixes #133410)
21653
21654 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21655
21656         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
21657           that should be !=, not == (fixes #132519)
21658
21659 2004-02-04  David Schleef  <ds@schleef.org>
21660
21661         Make sure set_explicit_caps() is called before adding pad.
21662         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
21663         * gst/id3/gstid3types.c: (gst_id3types_loop):
21664         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
21665         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
21666
21667 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
21668
21669         * configure.ac:
21670           bump nano to 2, first prerelease
21671           put back AM_PROG_LIBTOOL
21672
21673 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
21674
21675         * testsuite/alsa/Makefile.am:
21676           these are user test apps, not automatic testsuite tests
21677
21678 2004-02-04  David Schleef  <ds@schleef.org>
21679
21680         Convert GST_DEBUG_CAPS() to GST_DEBUG():
21681         * gst/mpeg1videoparse/gstmp1videoparse.c:
21682         (mp1videoparse_parse_seq):
21683         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
21684         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
21685         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
21686         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
21687         (gst_xvideosink_getcaps):
21688         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
21689         * testsuite/gst-lint: more tests
21690
21691 2004-02-04  David Schleef  <ds@schleef.org>
21692
21693         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
21694         with the code that they would expand to.
21695         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
21696         (gst_flacdec_get_src_query_types),
21697         (gst_flacdec_get_src_event_masks):
21698         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
21699         (gst_gnomevfssrc_get_query_types),
21700         (gst_gnomevfssrc_get_event_mask):
21701
21702 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21703
21704         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21705         (gst_sinesrc_dispose):
21706           fix memleak by properly disposing sinesrc
21707
21708 2004-02-04  Julien MOUTTE  <julien@moutte.net>
21709
21710         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
21711         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
21712         an overlay to redraw the image because it has been exposed.
21713         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
21714         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
21715         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
21716         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
21717         interface
21718         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
21719         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
21720         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
21721         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
21722         interface
21723
21724 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21725
21726         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
21727           more memleak fixage
21728
21729 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21730
21731         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21732         * gst/typefind/gsttypefindfunctions.c:
21733           fix memleaks shown by gst-typefind
21734
21735 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21736
21737         * common/glib-gen.mak:
21738           add hack rule to touch .Plo files
21739         * gst-libs/gst/colorbalance/Makefile.am:
21740         * gst-libs/gst/mixer/Makefile.am:
21741         * gst-libs/gst/play/Makefile.am:
21742         * gst-libs/gst/tuner/Makefile.am:
21743           remove glib_root variable
21744
21745 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21746
21747         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
21748           set explicit caps before adding the element, so the autopluggers can
21749           plug correctly.
21750         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
21751         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
21752         (mpeg_video_type_find), (mpeg_video_stream_type_find),
21753         (dv_type_find):
21754           fix memleaks in typefind functions. gst_type_find_suggest takes a const
21755           argument.
21756
21757 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21758
21759         * gst-libs/gst/colorbalance/Makefile.am:
21760         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
21761         * gst-libs/gst/colorbalance/colorbalance.c:
21762         * gst-libs/gst/colorbalance/colorbalance.h:
21763         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
21764         * gst-libs/gst/mixer/Makefile.am:
21765         * gst-libs/gst/mixer/mixer-marshal.list:
21766         * gst-libs/gst/mixer/mixer.c:
21767         * gst-libs/gst/mixer/mixer.h:
21768         * gst-libs/gst/mixer/mixermarshal.list:
21769         * gst-libs/gst/play/Makefile.am:
21770         * gst-libs/gst/play/play.h:
21771         * gst-libs/gst/tuner/Makefile.am:
21772         * gst-libs/gst/tuner/tuner-marshal.list:
21773         * gst-libs/gst/tuner/tuner.c:
21774         * gst-libs/gst/tuner/tuner.h:
21775         * gst-libs/gst/tuner/tunermarshal.list:
21776           use new glib-gen.mak snippet to clean up Makefile.am
21777           fix various bugs in Makefile.am's
21778
21779 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21780
21781         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
21782           handle chain parsing correctly in the multichain case
21783         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
21784         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
21785         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21786         (theora_dec_chain):
21787           handle events and queries correctly
21788
21789 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
21790
21791         * .cvsignore:
21792         Ignore generated file _stdint.h.
21793
21794 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
21795
21796         * gst-libs/gst/colorbalance/Makefile.am:
21797         * gst-libs/gst/colorbalance/colorbalance.h:
21798         * gst-libs/gst/mixer/Makefile.am:
21799         * gst-libs/gst/mixer/mixer.h:
21800         * gst-libs/gst/play/Makefile.am:
21801         * gst-libs/gst/play/play.h:
21802         * gst-libs/gst/tuner/Makefile.am:
21803         * gst-libs/gst/tuner/tuner.h:
21804         Generate enum type code with glib-mkenums.
21805         * gst-libs/gst/colorbalance/.cvsignore:
21806         * gst-libs/gst/mixer/.cvsignore:
21807         * gst-libs/gst/play/.cvsignore:
21808         * gst-libs/gst/tuner/.cvsignore:
21809         Ignore generated files.
21810
21811 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
21812
21813         * gst-libs/gst/audio/.cvsignore:
21814         Ignore generated file.
21815         * gst-libs/gst/audio/Makefile.am:
21816         Do not install example filter.
21817
21818 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
21819
21820         * examples/switch/.cvsignore:
21821         Ignore generated file.
21822
21823 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21824
21825         * common/m4/ax_create_stdint_h.m4:
21826         * configure.ac:
21827           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
21828           _stdint.h.
21829         * Makefile.am:
21830           remove generated _stdint.h in DISTCLEANFILES
21831         * ext/a52dec/gsta52dec.c:
21832           include _stdint.h for a52dec. (should fix #133064)
21833
21834 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
21835
21836         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
21837         (gst_tag_to_vorbis_comments):
21838         Add replaygain support to vorbistag
21839
21840 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
21841         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
21842         (gst_ffmpeg_caps_to_extradata):
21843           Fix SVQ3 caps flag properties
21844           Use glib macro for bytes swap
21845
21846 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21847
21848         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
21849         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
21850         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21851         * ext/sndfile/gstsf.c: (plugin_init):
21852         * gst/avi/gstavi.c: (plugin_init):
21853         * sys/dxr3/dxr3init.c: (plugin_init):
21854         * sys/oss/gstossaudio.c: (plugin_init):
21855         * sys/v4l/gstv4l.c: (plugin_init):
21856         * sys/v4l2/gstv4l2.c: (plugin_init):
21857           remove textdomain calls
21858         * po/nl.po:
21859           update Dutch translation
21860
21861 2004-02-02  Julien MOUTTE  <julien@moutte.net>
21862
21863         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
21864         (gst_play_set_audio_sink): Moving volume in the audio thread for
21865         instantaneous volume change. Maybe i will add another volume in front
21866         of visualization later, not sure yet though.
21867
21868 2004-02-02  Julien MOUTTE  <julien@moutte.net>
21869
21870         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21871         (gst_ximagesink_handle_xevents): Better X events handling, only take
21872         the latest events for configure and motion.
21873         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
21874
21875 2004-02-02  Jon Trowbridge  <trow@gnu.org>
21876
21877         reviewed by: David Schleef  <ds@schleef.org>
21878
21879         Fix memory leaks:
21880         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
21881         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
21882
21883 2004-02-02  David Schleef  <ds@schleef.org>
21884
21885         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
21886         of lines.
21887         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
21888         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21889         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
21890         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
21891         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
21892         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
21893         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
21894         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
21895         (gst_float2_2_int_link):
21896         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
21897         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
21898         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
21899         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
21900         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
21901         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
21902         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
21903         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
21904         * testsuite/gst-lint: Add tests for bzero and ;;
21905
21906 2004-02-02  David Schleef  <ds@schleef.org>
21907
21908         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
21909
21910 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21911
21912         * ext/aalib/gstaasink.c: (gst_aasink_open):
21913         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
21914         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21915         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
21916         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
21917         (gst_afsink_close_file):
21918         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
21919         (gst_afsrc_close_file):
21920         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
21921         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
21922         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
21923         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
21924         * ext/esd/esdmon.c: (gst_esdmon_get):
21925         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
21926         * ext/faac/gstfaac.c: (gst_faac_chain):
21927         * ext/faad/gstfaad.c: (gst_faad_chain):
21928         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
21929         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
21930         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
21931         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
21932         (gst_flacdec_loop):
21933         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21934         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21935         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
21936         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
21937         (gst_gnomevfssink_close_file):
21938         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
21939         (gst_gnomevfssrc_open_file):
21940         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
21941         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
21942         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
21943         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
21944         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
21945         * ext/mad/gstmad.c: (gst_mad_chain):
21946         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
21947         * ext/mpeg2dec/gstmpeg2dec.c:
21948         * ext/mpeg2enc/gstmpeg2enc.cc:
21949         * ext/mplex/gstmplex.cc:
21950         * ext/mplex/gstmplexibitstream.cc:
21951         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
21952         (gst_ogg_demux_push):
21953         * ext/raw1394/gstdv1394src.c:
21954         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
21955         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
21956         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
21957         (gst_sf_loop):
21958         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
21959         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
21960         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
21961         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
21962         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21963         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
21964         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
21965         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
21966         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21967         (gst_riff_read_element_data), (gst_riff_read_seek),
21968         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
21969         * gst/adder/gstadder.c: (gst_adder_loop):
21970         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
21971         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
21972         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
21973         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
21974         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
21975         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
21976         * gst/goom/gstgoom.c: (gst_goom_chain):
21977         * gst/id3/gstid3types.c: (gst_id3types_loop):
21978         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
21979         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
21980         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
21981         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
21982         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21983         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
21984         (gst_ebml_read_float), (gst_ebml_read_header):
21985         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21986         (gst_matroska_demux_parse_blockgroup):
21987         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
21988         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
21989         * gst/oneton/gstoneton.c: (gst_oneton_chain):
21990         * gst/silence/gstsilence.c: (gst_silence_get):
21991         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
21992         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
21993         * gst/speed/gstspeed.c: (speed_loop):
21994         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
21995         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
21996         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
21997         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
21998         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
21999         (gst_wavparse_loop):
22000         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
22001         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
22002         (dxr3audiosink_close):
22003         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
22004         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
22005         (dxr3videosink_close), (dxr3videosink_write_data):
22006         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22007         * sys/oss/gstosssink.c: (gst_osssink_chain):
22008         * sys/oss/gstosssrc.c: (gst_osssrc_get):
22009         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
22010         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
22011         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
22012         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
22013         (gst_v4l_set_window), (gst_v4l_enable_overlay):
22014         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
22015         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
22016         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
22017         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
22018         (gst_v4l_set_audio):
22019         * sys/v4l/v4l_calls.h:
22020         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
22021         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
22022         (gst_v4lmjpegsink_playback_init),
22023         (gst_v4lmjpegsink_playback_start):
22024         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
22025         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
22026         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
22027         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
22028         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
22029         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
22030         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
22031         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22032         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
22033         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
22034         (gst_v4l2_get_output), (gst_v4l2_set_output),
22035         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
22036         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
22037         (gst_v4l2_set_attribute):
22038         * sys/v4l2/v4l2_calls.h:
22039         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
22040         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
22041         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
22042         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
22043         (gst_v4l2src_capture_stop):
22044         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
22045         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22046         (gst_ximagesink_chain):
22047         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
22048         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
22049         (gst_xvideosink_xwindow_new):
22050         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22051         (gst_xvimagesink_chain):
22052
22053 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22054
22055         * gst/volume/gstvolume.c: (gst_volume_set_volume),
22056         (gst_volume_get_volume), (volume_class_init), (volume_init),
22057         (volume_chain_int16), (volume_update_volume):
22058         * gst/volume/gstvolume.h:
22059           make code more readable by removing magic numbers
22060           make mixer interface export 0-100 range
22061           make it internally map to 0.0-1.0 range so users don't distort
22062           output by putting the sliders at full volume
22063
22064 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22065
22066         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
22067         (gst_play_state_change), (gst_play_seek_to_time):
22068         block the tick callback for 0.5 secs after doing a seek
22069
22070 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22071
22072         * gst-libs/gst/play/play.c: (gst_play_new):
22073           check for GError
22074
22075 2004-02-01  Julien MOUTTE  <julien@moutte.net>
22076
22077         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
22078         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
22079         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
22080         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
22081         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
22082         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
22083
22084 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22085
22086         * configure.ac:
22087         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22088           check for a function added in vorbis 1.1
22089
22090 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22091
22092         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
22093         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
22094           really start/stop clock only on PLAYING <=> PAUSED
22095         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22096           remove \n from debugging lines
22097         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
22098           make it work when seeking does not
22099         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22100           reset on DISCONT
22101
22102 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22103
22104         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
22105           start clock on PAUSED=>PLAYING, not later
22106         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22107           extract correct time for different discont formats
22108         (gst_alsa_sink_get_time):
22109           don't segfault when no format is negotiated yet, just return 0
22110         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22111         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
22112         (gst_ogg_pad_push):
22113           handle flush and discont events correctly
22114         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
22115           handle discont events correctly
22116
22117 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
22118
22119         * gst-libs/gst/play/play.c: (gst_play_error_quark),
22120         (gst_play_error_create), (gst_play_error_plugin),
22121         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
22122         * gst-libs/gst/play/play.h:
22123           add error handling during creation
22124         * examples/gstplay/player.c: (main):
22125           use new gst_play_new
22126
22127
22128 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22129
22130         * ext/theora/theoradec.c: (theora_dec_chain):
22131           make comments work
22132         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22133         (vorbis_dec_src_event), (vorbis_dec_chain):
22134           add encoder tag, fix tag reading to be more error tolerant, change
22135           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
22136           gst_pad_event_default.
22137         * gst/tags/gstvorbistag.c:
22138         (gst_tag_list_from_vorbiscomment_buffer):
22139           undefine function specific define at end of function
22140
22141 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
22142
22143         * ext/flac/gstflac.c: (plugin_init):
22144         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
22145         * ext/flac/gstflacdec.h:
22146         * ext/flac/gstflacenc.h:
22147           Fix typos
22148
22149 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
22150
22151         * examples/gstplay/player.c: s/gstplay.h/play.h/
22152
22153 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22154
22155         * gst-libs/gst/play/Makefile.am:
22156         * gst-libs/gst/play/gstplay.c:
22157         * gst-libs/gst/play/gstplay.h:
22158         * gst-libs/gst/play/play.c:
22159           more surgery, operation complete
22160
22161 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22162
22163         * gst-libs/gst/play/play.old.c:
22164         * gst-libs/gst/play/play.old.h:
22165           after CVS surgery by moving, remove
22166         * gst-libs/gst/play/playpipelines.c:
22167           remove
22168
22169         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
22170           add negotiation error
22171
22172 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22173
22174         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22175         (gst_ogg_demux_push):
22176           add some seeking debug info
22177           send a flush when seeking
22178
22179 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22180
22181         * configure.ac:
22182           use AC_C_INLINE
22183         * configure.ac:
22184         * ext/Makefile.am:
22185         * ext/theora/Makefile.am:
22186         * ext/theora/theoradec.c:
22187           add theora video decoder. Does just do simple decoding for now and
22188           has been tested against Theora cvs only. It only works when theora
22189           is compiled with --enable-static.
22190         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22191           always reset packetno on DISCONT
22192
22193 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22194
22195         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
22196           Fix audio.
22197
22198 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22199
22200         * gst/mpegaudioparse/gstmpegaudioparse.c:
22201         (mp3_type_frame_length_from_header):
22202           Fix header parsing - stolen from ffmpeg (thank you! :) ).
22203
22204 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22205
22206         * ext/esd/esdsink.c: (gst_esdsink_init):
22207           Since we have static pad template caps, we don't need to negotiate;
22208           either the core errors out or we know the format.
22209
22210 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22211
22212         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22213         (gst_riff_read_seek):
22214         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22215         (gst_ebml_read_seek):
22216           Fix event handling.
22217
22218 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22219
22220         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
22221           removee video/x-theora from vp3 decoder, it doesn't handle raw
22222           theora streams
22223         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
22224           fix bug with finalizing element that never went to PAUSED
22225         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
22226           length and position queries were swapped
22227         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
22228         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
22229         (vorbis_dec_src_event):
22230           implement querying time and bytes
22231
22232 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22233
22234         * just about every source file:
22235           gst_element_error -> GST_ELEMENT_ERROR
22236
22237 2004-01-29  Julien MOUTTE  <julien@moutte.net>
22238
22239         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
22240         emiting FLUSH and even before DISCONT.
22241         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
22242         get the best instant seeking as possible yay!
22243
22244 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22245
22246         * gst/mpeg1videoparse/gstmp1videoparse.c:
22247         (gst_mp1videoparse_real_chain):
22248           Committed wrong version last week... Grr... Didn't notice until now.
22249
22250 2004-01-29  Julien MOUTTE <julien@moutte.net>
22251
22252         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
22253         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
22254         have_xwindow_id signal in xwindow_create.
22255
22256 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22257
22258         * ext/ogg/gstoggdemux.c:
22259           lots of changes - mainly support for chained bitstreams, seeking,
22260           querying and bugfixes of course
22261         * ext/vorbis/Makefile.am:
22262         * ext/vorbis/vorbisdec.c:
22263         * ext/vorbis/vorbisdec.h:
22264           add vorbisdec raw vorbis decoder
22265         * ext/vorbis/vorbis.c: (plugin_init):
22266           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
22267         * gst/intfloat/Makefile.am:
22268         * gst/intfloat/float22int.c:
22269         * gst/intfloat/float22int.h:
22270         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
22271           add float2intnew plugin. It converts multichannel interleaved float to
22272           multichannel interleaved int. The name should probably be changed.
22273         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
22274         (plugin_init):
22275           add typefinding for raw theora video so oggdemux can detect it.
22276
22277 2004-01-28  Julien MOUTTE  <julien@moutte.net>
22278
22279         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
22280         sink element first.
22281         * gst/videoscale/gstvideoscale.c:
22282         (gst_videoscale_handle_src_event): Fixing src event handler.
22283
22284 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22285
22286         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
22287         (gst_v4lsrc_open), (gst_v4lsrc_close),
22288         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
22289         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
22290         * sys/v4l/gstv4lsrc.h:
22291         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
22292         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
22293           Implement resizing... Hack. But that's why v4l is b0rked...
22294
22295 2004-01-28  Julien MOUTTE <julien@moutte.net>
22296
22297         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22298         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
22299         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
22300         (gst_ximagesink_xwindow_destroy):
22301         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22302         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22303         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
22304         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
22305         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
22306         correctly cleaning the image created to check xshm calls on succes,
22307         added a lot of XSync calls in X11 functions, and fixed a segfault when
22308         no image format was defined before negotiation happened.
22309
22310 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22311
22312         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
22313           use gst_element_get_time to get correct time
22314
22315 2004-01-28  Julien MOUTTE  <julien@moutte.net>
22316
22317         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
22318         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
22319         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
22320         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
22321         (gst_xvimagesink_check_xshm_calls),
22322         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
22323         X plugins are now able to detect that XShm calls will fail even if the
22324         server claims that it has XShm support (remote displays most of the
22325         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
22326         so that we use non XShm functions. This feature is almost useless for
22327         xvimagesink as Xv is not supported on remote displays anyway, but
22328         it might happen than even on the local display XShm calls fail.
22329
22330 2004-01-27  David Schleef  <ds@schleef.org>
22331
22332         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
22333         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
22334         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
22335         changed esdsink to only use 44100,16,2, since esd sucks at rate
22336         conversion and esdsink has had difficulty negotiating.
22337
22338 2004-01-27  Julien MOUTTE <julien@moutte.net>
22339
22340         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
22341         (gst_play_seek_to_time): Fixing the way to get current position.
22342
22343 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22344
22345         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
22346           use gst_element_get_time to get correct time
22347
22348 2004-01-27  Julien MOUTTE <julien@moutte.net>
22349
22350         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
22351         fix ever... Inverting 2 lines of code make spider autoplug correctly
22352         tagged mp3 !
22353
22354 2004-01-27  David Schleef  <ds@schleef.org>
22355
22356         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22357         Use gst_pad_try_set_caps_nonfixed().
22358
22359 2004-01-27  David Schleef  <ds@schleef.org>
22360
22361         * gst/ac3parse/gstac3parse.c: update to checklist 5
22362         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
22363         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
22364         * gst/audioscale/gstaudioscale.c: same
22365         * gst/auparse/gstauparse.c: same
22366         * gst/avi/gstavidemux.c: same
22367
22368 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22369
22370         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
22371           stop processing after EOS
22372
22373 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22374
22375         * gst/asfdemux/asfheaders.h:
22376         * gst/asfdemux/gstasfdemux.c:
22377         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
22378         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
22379         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
22380           lot's of fixes to make data extraction simpler and get the code
22381           architecture and compiler independant. Add debugging category
22382         * gst/goom/gstgoom.c: (gst_goom_change_state):
22383           reset channel count on PAUSED=>READY, not READY=>PAUSED
22384
22385 2004-01-26  Colin Walters  <walters@verbum.org>
22386
22387         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
22388         code to pull a bigger buffer in iradio mode.  This as a side effect
22389         makes typefinding work.
22390
22391 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
22392
22393         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
22394         Fix SVQ3 decoding on PPC
22395
22396 2004-01-26  Julien MOUTTE <julien@moutte.net>
22397
22398         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
22399         that one managed to stay there... Fixed.
22400
22401 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
22402
22403         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
22404         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
22405         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
22406         (qtdemux_video_caps):
22407         * gst/qtdemux/qtdemux.h:
22408         Add SVQ3 specific flags to qtdemux and ffmpeg
22409
22410 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22411
22412         * gst-libs/gst/audio/audio.h:
22413           remove buffer-frames from audio caps
22414         * gst/audioconvert/gstaudioconvert.c:
22415           fix plugin to really work.
22416
22417 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22418
22419         * gst-libs/gst/mixer/mixer.c:
22420         * gst-libs/gst/propertyprobe/propertyprobe.c:
22421         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
22422         (gst_tuner_find_channel_by_name):
22423         * gst-libs/gst/tuner/tuner.h:
22424           Add gtk-doc style comments. Also fix a function name.
22425
22426 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22427
22428         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
22429         (gst_divxdec_negotiate):
22430           Fix for new capsnego - also fixes gst-player with divxdec.
22431
22432 2004-01-25  Julien MOUTTE  <julien@moutte.net>
22433
22434         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
22435         (gst_play_identity_handoff), (gst_play_set_location),
22436         (gst_play_set_visualization), (gst_play_connect_visualization): Another
22437         try in visualization implementation. Still have an issue with switch
22438         blocking when pulling from video_queue and only audio comes out of
22439         spider.
22440         * gst/switch/gstswitch.c: (gst_switch_release_pad),
22441         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
22442         release method. And check if the pad is usable before pulling.
22443
22444 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22445
22446         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
22447         (gst_videobalance_init),
22448         (gst_videobalance_colorbalance_list_channels),
22449         (gst_videobalance_colorbalance_set_value),
22450         (gst_videobalance_colorbalance_get_value),
22451         (gst_videobalance_update_properties),
22452         (gst_videobalance_update_tables_planar411),
22453         (gst_videobalance_planar411):
22454         * gst/videofilter/gstvideobalance.h:
22455           Implement lookup-tables. +/- 10x faster.
22456
22457 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22458
22459         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
22460         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
22461           The index reading was broken. The rest worked fine, but the whole
22462           goal of my rewrite was to make avidemux readable, and this was
22463           not at all readable. Please use typed variables.
22464
22465 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22466
22467         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22468           Additional pad usability check.
22469         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
22470         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
22471         (gst_mp1videoparse_real_chain):
22472           Fix MPEG video stream parsing. The original plugin had several
22473           issues, including not timestamping streams where the source was
22474           not timestamped (this happens with PTS values in mpeg system
22475           streams, but MPEG video is also a valid stream on its own so
22476           that needs timestamps too). We use the display time code for that
22477           for now. Also, if one incoming buffer contains multiple valid
22478           frames, we push them all on correctly now, including proper EOS
22479           handling. Lastly, several potential segfaults were fixed, and we
22480           properly sync on new sequence/gop headers to include them in next,
22481           not previous frames (since they're header for the next frame, not
22482           the previous). Also see #119206.
22483         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
22484         (bpf_from_header):
22485           Move caps setting so we only do it after finding several valid
22486           MPEG-1 fraes sequentially, not right after the first one (which
22487           might be coincidental).
22488         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
22489         (mpeg_video_type_find), (mpeg_video_stream_type_find),
22490         (plugin_init):
22491           Add unsynced MPEG video stream typefinding, and change some
22492           probability values so we detect streams rightly. The idea is as
22493           follows: I can have an unsynced system stream which contains
22494           video. In the current code, I would randomly get a type for either
22495           system or video stream type found, because the probabilities are
22496           being calculated rather randomly. I now use fixed values, so we
22497           always prefer system stream if that was found (and that is how it
22498           should be). If no system stream was found, we can still identity                the stream as video-only.
22499
22500 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22501
22502         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
22503         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
22504           don't write to buffer. Extract data without the need of
22505           __attribute__ ((packed))
22506
22507 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22508
22509         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
22510         (mpeg1_sys_type_find):
22511           Fix MPEG-1 stream typefinding.
22512
22513 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22514
22515         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
22516           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
22517
22518 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22519
22520         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
22521         * ext/esd/gstesd.c: (plugin_init):
22522           private debugging, better error reporting
22523
22524 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22525
22526         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
22527         (gst_riff_read_init), (gst_riff_read_change_state):
22528         * gst-libs/gst/riff/riff-read.h:
22529           Remove stuff fromold metadata system.
22530
22531 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22532
22533         * ext/ogg/gstoggdemux.c:
22534           Fix wrong file comment.
22535         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22536         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
22537           Add metadata reading properly.
22538
22539 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22540
22541         * ext/Makefile.am:
22542           Fix nas DIST_SUBDIRS
22543           Uraeus:
22544           Fix bug where make distcheck doesn't get run on adding stuff to
22545           the build.
22546
22547 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22548
22549         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
22550         * ext/divx/gstdivxdec.h:
22551           Fix divx3 ("msmpeg4") playback using divxdec.
22552
22553 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22554
22555         * gst/typefind/gsttypefindfunctions.c:
22556         (mp3_type_frame_length_from_header): fix bug in length computation
22557         (mp3_type_find): improve debugging output
22558
22559 2004-01-23  Julien MOUTTE  <julien@moutte.net>
22560
22561         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
22562         (gst_play_set_location), (gst_play_seek_to_time),
22563         (gst_play_set_audio_sink), (gst_play_set_visualization),
22564         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
22565         the pipeline from scratch. Visualization is back and switch went out as
22566         i realized it was not possible to use the way i wanted.
22567         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
22568         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
22569         clearing in state change from READY to NULL. So that one can clean the
22570         X ressources keeping the element.
22571         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22572         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
22573         (gst_xvimagesink_colorbalance_set_value),
22574         (gst_xvimagesink_colorbalance_get_value),
22575         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
22576         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
22577         change from READY to NULL and fixed some stupid bugs in colorbalance
22578         get/set values. Also added the following feature : when nobody tries to
22579         set some values to the colorbalance levels before the xcontext is
22580         grabbed, then when creating channels list from Xv attributes we set the
22581         internal values to the Xv defaults. This way we handle buggy Xv drivers
22582         that set default hue values far from the middle of the range (Thanks
22583         to Jon Trowbridge for pointing that issue).
22584         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
22585         colorbalance levels have been set before xcontext is grabbed.
22586
22587 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22588
22589         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
22590           Fix the ossmixer case where we shouldn't open /dev/dsp* because
22591           it might block operations (which is bad for a mixer).
22592
22593 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22594
22595         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
22596         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
22597         (gmip_find_type_pre):
22598         * gst-libs/gst/media-info/media-info-priv.h:
22599         * gst-libs/gst/media-info/media-info.c:
22600         (gst_media_info_instance_init), (gst_media_info_read_idler):
22601         add fakesink to get caps on decoder src pad again
22602         fix callback prototype to match new have_type signal signature
22603
22604 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
22605
22606         * gst/adder/gstadder.c: (gst_adder_link):
22607           fix non-compile and cut-n-paste code
22608
22609 2004-01-21  David Schleef  <ds@schleef.org>
22610
22611         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
22612         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
22613         (gst_swfdec_init), (gst_swfdec_change_state):
22614         * ext/swfdec/gstswfdec.h:
22615         Fix negotiation.
22616         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
22617         (gst_adder_request_new_pad): Fix negotiation.
22618         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
22619         Add a fixate function.
22620         * gst/intfloat/gstfloat2int.c:
22621         * gst/intfloat/gstfloat2int.h:
22622         * gst/intfloat/gstint2float.c:
22623         * gst/intfloat/gstint2float.h:
22624         Completely rewrite the negotiation.  Doesn't quite work yet,
22625         due to some buffer-frames problem.
22626
22627 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22628
22629         * ext/gnomevfs/gstgnomevfssrc.c:
22630         * sys/v4l2/v4l2_calls.h:
22631           fix includes for distcheck
22632
22633 2004-01-21  Christian Schaller <uraeus@gnome.org>
22634
22635         * ext/nas/
22636         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
22637         based on earlier patch from Laurent Vivier
22638
22639 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
22640
22641         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
22642         Fix wma caps property
22643         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
22644         Fix typo (flags1 and flags2)
22645
22646 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22647
22648         * gst-libs/gst/media-info/media-info-priv.c:
22649         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
22650         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
22651         (gmip_find_stream), (gmip_find_track_metadata),
22652         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
22653         (gmip_find_track_format):
22654         * gst-libs/gst/media-info/media-info-priv.h:
22655         * gst-libs/gst/media-info/media-info-test.c: (main):
22656         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
22657         (gst_media_info_read_idler), (gst_media_info_read):
22658         * gst-libs/gst/media-info/media-info.h:
22659           register debugging category and use it for debugging
22660
22661 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22662
22663         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
22664         (gst_vorbisfile_new_link):
22665           signal streaminfo through tags
22666
22667 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22668
22669         * ext/mplex/gstmplex.cc:
22670         * ext/mplex/gstmplexibitstream.cc:
22671           g++ doesn't like NULL in our i18n/error macros, should be
22672           either (NULL) or ("").
22673
22674 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22675
22676         * sys/dxr3/dxr3audiosink.c:
22677         * sys/dxr3/dxr3init.c:
22678         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
22679         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
22680           Fix more error error error errors (missing includes here).
22681
22682 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22683
22684         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
22685           fix thomas' error errors.
22686
22687 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22688
22689         * ext/mpeg2enc/gstmpeg2enc.cc:
22690           fix error errors.
22691
22692 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22693
22694         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
22695         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
22696           Fix for new error system.
22697
22698 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22699
22700         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
22701           fix for new error reporting
22702
22703 2004-01-20  David Schleef  <ds@schleef.org>
22704
22705         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
22706         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22707         (gst_ximagesink_set_xwindow_id): Change to using a framerate
22708         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
22709         and neither is 100+, most likely.
22710         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
22711         (gst_xvimagesink_getcaps): same
22712
22713 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22714
22715         * configure.ac:
22716           Up version requirement to 2.0.3 (not yet released) to avoid symbol
22717           clashes with ffmpeg.
22718
22719 2004-01-20  Julien MOUTTE  <julien@moutte.net>
22720
22721         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
22722         (gst_switch_init): Fixed switch element : proxying link and setting
22723         caps from src to sink on request.
22724
22725 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22726
22727         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
22728         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
22729         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
22730         fix element_error
22731
22732 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22733
22734         * sys/v4l/v4l_calls.h:
22735         * sys/v4l2/v4l2_calls.h:
22736           element_error fixes
22737
22738 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22739
22740         * gst-libs/gst/gst-i18n-plugin.h:
22741           add locale.h
22742           remove config.h inclusion
22743
22744 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22745
22746         * autogen.sh:
22747           adding autopoint invocation
22748         * Makefile.am:
22749         * configure.ac:
22750         * gst-libs/gst/gettext.h:
22751           adding gettext bits
22752         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
22753         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
22754         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
22755         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
22756         (gst_gnomevfssink_close_file):
22757         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
22758         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
22759         * gst-libs/gst/gst-i18n-plugin.h:
22760         * gst/avi/gstavi.c: (plugin_init):
22761         * sys/dxr3/dxr3init.c: (plugin_init):
22762         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
22763         * sys/oss/gstossaudio.c: (plugin_init):
22764         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22765         * sys/v4l/gstv4l.c: (plugin_init):
22766         * sys/v4l/v4l_calls.c: (gst_v4l_open):
22767         * sys/v4l2/gstv4l2.c: (plugin_init):
22768         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22769         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
22770         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
22771         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
22772         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
22773         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
22774           make sure locale and translation domain are set
22775           fix translated strings
22776         * po/.cvsignore:
22777         * po/LINGUAS:
22778         * po/Makevars:
22779         * po/POTFILES.in:
22780         * po/nl.po:
22781           put translation files into place
22782         * sys/xvideo/imagetest.c: (main):
22783         * ext/dv/demo-play.c: (main):
22784           fix unnecessary translations
22785
22786 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
22787
22788         * ext/sndfile/gstsf.c:
22789         * gst/avi/gstavimux.c:
22790         * ext/audiofile/gstafsink.c:
22791         * ext/audiofile/gstafsrc.c:
22792         * ext/gnomevfs/gstgnomevfssink.c:
22793         * ext/gnomevfs/gstgnomevfssrc.c:
22794         * sys/oss/gstosselement.c:
22795         * sys/v4l/v4l_calls.h:
22796           fix i18n include
22797
22798 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22799
22800         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22801         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
22802         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
22803         (gst_v4l2_get_output), (gst_v4l2_set_output),
22804         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
22805         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
22806         (gst_v4l2_set_attribute):
22807         update to new error handling
22808
22809 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22810
22811         * ext/sidplay/gstsiddec.cc:
22812         * gst/modplug/gstmodplug.cc:
22813           parenthese NULL because C++ seems angry about it
22814
22815 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22816
22817         * gst-libs/gst/gst-i18n-plugin.h:
22818           add skeleton i18n stuff, but needs to be further implemented
22819
22820 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
22821
22822         * examples/gstplay/player.c: (main):
22823         * ext/aalib/gstaasink.c: (gst_aasink_open):
22824         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
22825         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22826         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
22827         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
22828         (gst_afsink_close_file):
22829         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
22830         (gst_afsrc_close_file):
22831         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
22832         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
22833         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
22834         * ext/esd/esdmon.c: (gst_esdmon_get):
22835         * ext/esd/esdsink.c: (gst_esdsink_chain):
22836         * ext/faac/gstfaac.c: (gst_faac_chain):
22837         * ext/faad/gstfaad.c: (gst_faad_chain):
22838         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
22839         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
22840         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
22841         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
22842         (gst_flacdec_loop):
22843         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
22844         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
22845         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
22846         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
22847         (gst_gnomevfssink_close_file):
22848         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
22849         (gst_gnomevfssrc_open_file):
22850         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
22851         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
22852         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
22853         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
22854         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
22855         * ext/mad/gstmad.c: (gst_mad_chain):
22856         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
22857         * ext/mpeg2dec/gstmpeg2dec.c:
22858         * ext/mpeg2enc/gstmpeg2enc.cc:
22859         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
22860         * ext/mplex/gstmplex.cc:
22861         * ext/mplex/gstmplexibitstream.cc:
22862         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
22863         (gst_ogg_demux_push), (gst_ogg_pad_push):
22864         * ext/raw1394/gstdv1394src.c:
22865         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
22866         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
22867         * ext/sidplay/gstsiddec.cc:
22868         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
22869         (gst_sf_loop):
22870         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
22871         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
22872         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
22873         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
22874         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
22875         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
22876         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
22877         * gst-libs/gst/Makefile.am:
22878         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22879         (gst_riff_read_element_data), (gst_riff_read_seek),
22880         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
22881         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
22882         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
22883         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
22884         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
22885         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
22886         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
22887         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
22888         * gst/goom/gstgoom.c: (gst_goom_chain):
22889         * gst/id3/gstid3types.c: (gst_id3types_loop):
22890         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
22891         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
22892         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22893         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
22894         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
22895         (gst_ebml_read_float), (gst_ebml_read_header):
22896         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
22897         (gst_matroska_demux_parse_blockgroup):
22898         * gst/modplug/gstmodplug.cc:
22899         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
22900         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
22901         * gst/oneton/gstoneton.c: (gst_oneton_chain):
22902         * gst/silence/gstsilence.c: (gst_silence_get):
22903         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
22904         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
22905         * gst/speed/gstspeed.c: (speed_loop):
22906         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
22907         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
22908         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
22909         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
22910         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
22911         (gst_wavparse_loop):
22912         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
22913         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
22914         (dxr3audiosink_close):
22915         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
22916         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
22917         (dxr3videosink_close), (dxr3videosink_write_data):
22918         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22919         * sys/oss/gstosselement.h:
22920         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
22921         (gst_osssink_chain):
22922         * sys/oss/gstosssrc.c: (gst_osssrc_get):
22923         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
22924         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
22925         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
22926         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
22927         (gst_v4l_enable_overlay):
22928         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
22929         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
22930         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
22931         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
22932         (gst_v4l_set_audio):
22933         * sys/v4l/v4l_calls.h:
22934         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
22935         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
22936         (gst_v4lmjpegsink_playback_init),
22937         (gst_v4lmjpegsink_playback_start):
22938         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
22939         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
22940         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
22941         (gst_v4lmjpegsrc_requeue_frame):
22942         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
22943         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
22944         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
22945         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
22946         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
22947         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
22948         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
22949         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
22950         (gst_v4l2src_capture_stop):
22951         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
22952         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22953         (gst_ximagesink_chain):
22954         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
22955         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
22956         (gst_xvideosink_xwindow_new):
22957         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22958         (gst_xvimagesink_chain):
22959         use new error signal, function and categories
22960
22961 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
22962
22963         * configure.ac:
22964         * ext/Makefile.am:
22965         * ext/musicbrainz/gsttrm.c:
22966         * ext/musicbrainz/gsttrm.h:
22967         * ext/musicbrainz/Makefile.am:
22968         Add a trm plugin
22969
22970 2004-01-18  Julien MOUTTE  <julien@moutte.net>
22971
22972         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
22973         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
22974         synchronous property for debugging.
22975         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
22976         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22977         (gst_xvimagesink_set_property): Moving a pointer declaration to a
22978         smaller block, fixing indent.
22979
22980 2004-01-16  David Schleef  <ds@schleef.org>
22981
22982         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
22983         property affects the video stream.
22984         * sys/xvimage/xvimagesink.c:
22985         * sys/xvimage/xvimagesink.h:
22986         Add synchronous property for debugging.  Should probably be
22987         disabled in non-CVS builds.  Make sure that the Xv attribute
22988         exists before we set it (crash!).  Fix a silly float bug that
22989         caused colorbalance to just not work.
22990
22991 2004-01-17  Christian Schaller <Uraeus@gnome.org>
22992
22993         * tools/gst-launch-ext.in - update for new plugins
22994
22995 2004-01-16  David Schleef  <ds@schleef.org>
22996
22997         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
22998         already-freed caps.
22999
23000 2994-01-16  Christian Schaller <Uraeus@gnome.org>
23001
23002         * Update spec for new colorspace plugin and libcaca plugin
23003         * Fix compilation of libcaca plugin (clock -> id)
23004
23005 2004-01-16  Julien MOUTTE <julien@moutte.net>
23006
23007         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
23008         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
23009         (gst_xvimagesink_set_xwindow_id),
23010         (gst_xvimagesink_colorbalance_set_value),
23011         (gst_xvimagesink_colorbalance_get_value),
23012         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
23013         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
23014         correct colorbalance properties. They can now be set when the element
23015         is still in NULL state. The values will be committed to the Xv Port
23016         when xcontext is initialized.
23017         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
23018         brightness int values in the GstXvImagesink structure.
23019
23020 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23021
23022         * gst-libs/gst/Makefile.am:
23023           restructure so having local patches works easier.
23024
23025 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23026
23027         * ext/mpeg2enc/Makefile.am:
23028         * ext/mpeg2enc/gstmpeg2enc.cc:
23029         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23030           Bugfix with respect to EOS handling.
23031
23032 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23033
23034         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
23035           Link with right caps (else, it segfaults).
23036         * ext/mplex/gstmplexjob.cc:
23037           Fix for slight API change in 1.6.1.93 release of mjpegtools.
23038
23039 2004-01-15  David Schleef  <ds@schleef.org>
23040
23041         * gst-libs/gst/audio/Makefile.am:
23042         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
23043         from the template.
23044         * gst-libs/gst/audio/gstaudiofilter.c:
23045         * gst-libs/gst/audio/gstaudiofilter.h:
23046         Add bytes_per_sample and size and n_samples calculation.
23047         * gst-libs/gst/audio/gstaudiofilterexample.c:
23048         Remove, now autogenerated.
23049         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
23050         Moved from gstaudiofilterexample, object name changed, code added
23051         so that it actually works.
23052         * gst-libs/gst/audio/make_filter:
23053         Script to build an audiofilter subclass from the template.
23054         * gst/colorspace/Makefile.am:
23055         * gst/colorspace/yuv2yuv.c:
23056         Remove file, since it's GPL, and we don't use it.
23057
23058 2004-01-15  Julien MOUTTE  <julien@moutte.net>
23059
23060         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
23062         them use the buffer free function to test how the buffer was allocated.
23063
23064 2004-01-15  David Schleef  <ds@schleef.org>
23065
23066         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
23067         that handles osssink fallback.
23068         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
23069         (gst_audio_convert_getcaps):
23070         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
23071         Add audio/x-qdm2 for QDM2 audio.
23072         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23073         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
23074         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
23075         Decrease minimum size to 16x16.
23076         * gst/wavparse/gstwavparse.c:
23077         Convert disabled pad template caps to new caps.
23078         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23079         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23080         (gst_xvimagesink_chain): Throw element error when display cannot
23081         be opened.  Increase minimum framerate to 1.0.  Check the data
23082         free function on a buffer to make sure it is the type we expect
23083         before manipulating it.
23084
23085 2004-01-15  Julien MOUTTE <julien@moutte.net>
23086
23087         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23088         (gst_videobalance_colorbalance_set_value): Implement passthru if
23089         settings are in the middle.
23090         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
23091
23092 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23093
23094         * gst/videofilter/Makefile.am:
23095         * gst/volume/Makefile.am:
23096           Since we use videofilter symbols, link to it.
23097
23098 2004-01-15  Julien MOUTTE <julien@moutte.net>
23099
23100         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
23101         mixer interface type to HARDWARE.
23102         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
23103         type to SOFTWARE.
23104         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
23105         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
23106         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
23107         (gst_volume_interface_init), (gst_volume_list_tracks),
23108         (gst_volume_set_volume), (gst_volume_get_volume),
23109         (gst_volume_set_mute), (gst_volume_mixer_init),
23110         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
23111         (volume_init): Implementing mixer interface.
23112         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
23113         * sys/oss/gstosselement.c: (gst_osselement_get_type),
23114         (gst_osselement_change_state): Removing some trailing commas in
23115         structures.
23116         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
23117         interface type to HARDWARE.
23118         * sys/v4l/gstv4lcolorbalance.c:
23119         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
23120         type to HARDWARE.
23121         * sys/v4l2/gstv4l2colorbalance.c:
23122         (gst_v4l2_color_balance_interface_init): Setting colorbalance
23123         interface type to HARDWARE.
23124         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
23125         same code than ximagesink for event handling.
23126
23127 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23128
23129         * ext/snapshot/Makefile.am:
23130         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
23131         (gst_snapshot_chain):
23132         * ext/snapshot/gstsnapshot.h:
23133           This has to be a joke... Snapshot should be connected to a tee,
23134           colorspace element before it and EOS after that, where the other
23135           src of the tee receives normal data.
23136           The current way is *wrong*.
23137
23138 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23139
23140         * ext/hermes/gsthermescolorspace.c:
23141           Fix another compile error. Same as below.
23142
23143 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23144
23145         * gst/colorspace/gstcolorspace.c:
23146         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
23147         (gst_colorspace_i420_to_yv12):
23148           Fix compiling... Didn't test if it actually works.
23149
23150 2004-01-15  David Schleef  <ds@schleef.org>
23151
23152         * configure.ac:
23153         * gst/colorspace/Makefile.am:
23154         * gst/colorspace/gstcolorspace.c:
23155         * gst/colorspace/gstcolorspace.h:
23156         * gst/colorspace/yuv2rgb.c:
23157         * gst/colorspace/yuv2rgb.h:
23158         Duplicate the ext/hermes colorspace plugin, and remove Hermes
23159         code and GPL code.  Fix for new caps negotiation.  Rewrite
23160         much of the format handling code, and some of the conversion
23161         code.  Basically, rewrote almost everything.  This element
23162         handles I420, YV12 to RGB conversions.
23163         * ext/hermes/Makefile.am:
23164         * ext/hermes/gsthermescolorspace.c:
23165         Rename colorspace to hermescolorspace.  Fix negotiation issues.
23166         Remove non-Hermes related code.  This element handles lots of
23167         RGB to RGB conversions, but no YUV.
23168         * ext/hermes/gstcolorspace.c:
23169         * ext/hermes/gstcolorspace.h:
23170         * ext/hermes/rgb2yuv.c:
23171         * ext/hermes/yuv2rgb.c:
23172         * ext/hermes/yuv2rgb.h:
23173         * ext/hermes/yuv2rgb_mmx16.s:
23174         * ext/hermes/yuv2yuv.c:
23175         * ext/hermes/yuv2yuv.h:
23176         Remove old code.
23177
23178 2004-01-14  Colin Walters  <walters@verbum.org>
23179
23180         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
23181         they've already been.
23182
23183 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23184
23185         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
23186           assume tag mode when pad is not connected
23187
23188 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23189
23190         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23191           Don't update the time of the clock
23192         (gst_alsa_sink_loop):
23193           sync to the clock given to alsasink, not the own clock
23194         * sys/oss/gstosssink.c: (gst_osssink_chain):
23195           sync to the clock
23196         (gst_osssink_change_state):
23197           activate the clock
23198         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23199         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23200           remove bogus code that made DISCONT events unhandled
23201         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
23202           explicitly case to double in _set_simple. (fixes 2nd warning in bug
23203           #131502)
23204         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
23205         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
23206         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
23207           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
23208           2nd warning in bug #131502)
23209
23210 2004-01-14  Julien MOUTTE  <julien@moutte.net>
23211
23212         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23213         (gst_videobalance_colorbalance_set_value),
23214         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
23215         for colorbalance interface implementation.
23216         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
23217         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
23218         (gst_ximagesink_dispose), (gst_ximagesink_init),
23219         (gst_ximagesink_class_init): Adding DISPLAY property.
23220         * sys/ximage/ximagesink.h: Adding display_name to store display.
23221         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23222         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
23223         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
23224         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
23225         properties (they still need polishing though for gst-launch use : no
23226         xcontext yet, i ll do that tomorrow).
23227         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
23228
23229 2004-01-14  Julien MOUTTE  <julien@moutte.net>
23230
23231         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
23232         (gst_play_set_location), (gst_play_set_visualization): Preparing
23233         switch integration, adding videobalance in the pipeline.
23234
23235 2004-01-14  Julien MOUTTE <julien@moutte.net>
23236
23237         * gst-libs/gst/colorbalance/colorbalance.c:
23238         (gst_color_balance_class_init): Adding a default type.
23239         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
23240         the type.
23241         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
23242         (gst_videobalance_dispose), (gst_videobalance_class_init),
23243         (gst_videobalance_init), (gst_videobalance_interface_supported),
23244         (gst_videobalance_interface_init),
23245         (gst_videobalance_colorbalance_list_channels),
23246         (gst_videobalance_colorbalance_set_value),
23247         (gst_videobalance_colorbalance_get_value),
23248         (gst_videobalance_colorbalance_init): Implementing colorbalance
23249         interface.
23250         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
23251         list.
23252         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
23253         bug which was triggering a BadAccess X error when setting an overlay
23254         before pad was really negotiated.
23255         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
23256         Using the colorbalance type macro.
23257
23258 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23259
23260         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
23261         (gst_flacenc_chain):
23262           handle tags correctly
23263         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
23264           extract ID3v1 tags correctly
23265
23266 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23267
23268         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
23269         (plugin_init):
23270           Improve matroska typefinding for odd-typed headers...
23271
23272 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23273
23274         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
23275           Fix for using incremental number on padnames.
23276
23277 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23278
23279         * ext/divx/gstdivxdec.c:
23280         * ext/divx/gstdivxenc.c:
23281           Set category to divx4linux instead of divx (too generic).
23282         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23283         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
23284         (gst_wavparse_loop), (gst_wavparse_change_state):
23285         * gst/wavparse/gstwavparse.h:
23286           fix parsing of WAV files with non-standard fmt-tag size and fix
23287           skipping of unrecognized chunks... Someone please fix this thing
23288           to use rifflib so all this is automated.
23289         * sys/v4l/Makefile.am:
23290         * sys/v4l2/Makefile.am:
23291           Add X_CFLAGS because we depend on X (for overlay).
23292
23293 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
23294
23295         * ext/mpeg2dec/gstmpeg2dec.c:
23296           Don't issue a timestamp unless we tagged the frame
23297           with a PTS.
23298
23299 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23300
23301         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
23302           Query the audio element to get the time, not the clock. We're
23303           interested in the element's time here.
23304
23305 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23306
23307         * ext/aalib/gstaasink.c: (gst_aasink_chain):
23308         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23309         * ext/esd/esdsink.c: (gst_esdsink_chain):
23310         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
23311         * ext/mas/massink.c: (gst_massink_chain):
23312         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
23313         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
23314         (gst_matroska_demux_parse_metadata):
23315         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
23316         (gst_mpeg_parse_release_locks):
23317         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
23318         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
23319         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23320         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
23321         (gst_osssink_change_state):
23322         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
23323         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23324         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
23325         (gst_xvideosink_release_locks):
23326         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23327           use element time.
23328         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
23329         (gst_alsa_clock_stop):
23330         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
23331         (gst_audio_clock_get_internal_time):
23332           simplify for use with new clocking code.
23333         * testsuite/alsa/Makefile.am:
23334         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
23335           fix testsuite for new caps system
23336
23337 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23338
23339         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
23340         * ext/flac/gstflacenc.c: (add_one_tag):
23341           length is already host endian, no need to convert. Fixes playback of
23342           tagged files on PPC. (bug #128384)
23343
23344 2004-01-13  Julien MOUTTE <julien@moutte.net>
23345
23346         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
23347         colorbalance interface stating if it is hardware based or software
23348         based.
23349         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
23350         Removing a trailing comma.
23351         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23352         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
23353         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
23354         the documentation seems to be wrong on the -1000 to 1000 interval.
23355
23356 2004-01-12  David Schleef  <ds@schleef.org>
23357
23358         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
23359         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
23360         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
23361         Fix negotiation.  Add a bufferalloc function for the sink pad,
23362         and generally clean up some of the code.
23363
23364 2004-01-12  Julien MOUTTE <julien@moutte.net>
23365
23366         * gst-libs/gst/colorbalance/colorbalancechannel.c:
23367         (gst_color_balance_channel_dispose): Adding safety check in dispose
23368         method.
23369         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23370         (gst_xvimagesink_xcontext_clear),
23371         (gst_xvimagesink_interface_supported),
23372         (gst_xvimagesink_colorbalance_list_channels),
23373         (gst_xvimagesink_colorbalance_set_value),
23374         (gst_xvimagesink_colorbalance_get_value),
23375         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
23376         Adding colorbalance interface support to set XV parameters such as
23377         HUE, BRIGHTNESS, CONTRAST, SATURATION.
23378         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
23379         interface.
23380
23381 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23382
23383         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
23384         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
23385         (gst_audio_convert_init), (gst_audio_convert_set_property),
23386         (gst_audio_convert_get_property), (gst_audio_convert_chain),
23387         (gst_audio_convert_link),
23388         (gst_audio_convert_buffer_to_default_format),
23389         (gst_audio_convert_buffer_from_default_format), (plugin_init):
23390           - implement _getcaps and use it
23391           - improve linking
23392           - remove float caps since no float conversion is actually done
23393           - remove properties and arguments that were to be used for rate
23394             conversion
23395
23396 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23397
23398         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
23399         (gst_audio_structure_set_int):
23400         * gst-libs/gst/audio/audio.h:
23401           add helper functions for _getcaps matching the standard audio
23402           templates
23403
23404 2004-01-12  David Schleef  <ds@schleef.org>
23405
23406         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23407         Test that pad is negotiated before getting its caps.
23408
23409 2004-01-12  Julien MOUTTE <julien@moutte.net>
23410
23411         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
23412         analyzing the pads of an element the bin is mostly in READY state so
23413         no caps were negotiated. This helper function needs to work with
23414         _get_caps directly then. I was not freeing them though, added that to
23415         fix the mem leak.
23416
23417 2004-01-12  Julien MOUTTE <julien@moutte.net>
23418
23419         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23420         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
23421         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
23422         than the free_func.
23423
23424 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23425
23426         * sys/oss/gstossaudio.c: (plugin_init):
23427         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
23428         * sys/oss/gstosselement.h:
23429           make an oss debugging category
23430           make failure more descriptive
23431
23432 2004-01-11  David Schleef  <ds@schleef.org>
23433
23434         * ext/ffmpeg/gstffmpeg.c:
23435         * ext/ffmpeg/gstffmpegcodecmap.c:
23436         * ext/ffmpeg/gstffmpegdec.c:
23437         * ext/ffmpeg/gstffmpegenc.c:
23438         * ext/ffmpeg/gstffmpegprotocol.c:
23439         * ext/gdk_pixbuf/gstgdkanimation.c:
23440         * ext/jpeg/gstjpeg.c:
23441         * ext/libpng/gstpng.c:
23442         * ext/mpeg2dec/perftest.c:
23443         * ext/speex/gstspeex.c:
23444         * gst-libs/gst/resample/dtos.c:
23445         * gst/intfloat/gstintfloatconvert.c:
23446         * gst/oneton/gstoneton.c:
23447         * gst/rtjpeg/RTjpeg.c:
23448         * gst/rtp/gstrtp.c:
23449         * sys/dxr3/dxr3init.c:
23450         * sys/glsink/gstgl_nvimage.c:
23451         * sys/glsink/gstgl_pdrimage.c:
23452         * sys/glsink/gstglsink.c:
23453         * testsuite/gst-lint:
23454         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
23455
23456 2004-01-11  David Schleef  <ds@schleef.org>
23457
23458         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
23459         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
23460         * ext/gdk_pixbuf/gstgdkanimation.c:
23461         (gst_gdk_animation_iter_create_pixbuf):
23462         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
23463         (gst_gdk_pixbuf_chain):
23464         * ext/gdk_pixbuf/gstgdkpixbuf.h:
23465         * ext/jack/gstjack.c: (gst_jack_change_state):
23466         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
23467         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
23468         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
23469         * gst/videofilter/gstvideofilter.c:
23470         (gst_videofilter_set_output_size):
23471         Remove all usage of gst_pad_get_caps(), and replace it with
23472         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
23473
23474 2004-01-11  David Schleef  <ds@schleef.org>
23475
23476         * configure.ac:
23477         * ext/Makefile.am: Fixes to make ext/libcaca compile.
23478         * ext/divx/gstdivxdec.c:
23479         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
23480         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
23481         handle images that span multiple buffers.  Now work with both
23482         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
23483         * ext/gdk_pixbuf/gstgdkpixbuf.h:
23484         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
23485         video/video.h changes
23486         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
23487         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23488         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
23489         of GstData free function.
23490         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
23491         same.
23492
23493 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23494
23495         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
23496         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
23497         (gst_v4l2element_get_property):
23498         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
23499           add norm, channel and frequency properties.
23500         * sys/v4l2/gstv4l2tuner.c:
23501           fixes for tuner interface changes
23502         * sys/v4l2/gstv4l2element.h:
23503         * sys/v4l2/gstv4l2src.c:
23504         * sys/v4l2/gstv4l2src.h:
23505         * sys/v4l2/v4l2src_calls.c:
23506         * sys/v4l2/v4l2src_calls.h:
23507           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
23508
23509 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23510
23511         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
23512         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
23513         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
23514         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
23515         * gst-libs/gst/tuner/tuner.h:
23516           GObjects aren't const.
23517           Add find_by_name functions.
23518           Add checks to _changed functions.
23519         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
23520         (gst_v4l_tuner_get_norm):
23521           Fixes for above.
23522
23523 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23524
23525         * gst-libs/gst/video/video.h:
23526           Fix caps template names to be understandable.
23527           Prefix everything with GST_VIDEO.
23528         * ext/aalib/gstaasink.c:
23529         * ext/divx/gstdivxdec.c:
23530         * ext/divx/gstdivxenc.c:
23531         * ext/gdk_pixbuf/gstgdkpixbuf.c:
23532         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
23533         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
23534         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
23535         * ext/libcaca/gstcacasink.c:
23536         * ext/libpng/gstpngenc.c: (raw_caps_factory):
23537         * ext/snapshot/gstsnapshot.c:
23538         * ext/swfdec/gstswfdec.c:
23539         * ext/xvid/gstxviddec.c:
23540         * ext/xvid/gstxvidenc.c:
23541         * gst/chart/gstchart.c:
23542         * gst/deinterlace/gstdeinterlace.c:
23543         * gst/effectv/gsteffectv.c:
23544         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
23545         * gst/goom/gstgoom.c:
23546         * gst/median/gstmedian.c:
23547         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
23548         (gst_monoscope_srcconnect), (gst_monoscope_chain):
23549         * gst/overlay/gstoverlay.c:
23550         * gst/smooth/gstsmooth.c:
23551         * gst/smpte/gstsmpte.c:
23552         * gst/synaesthesia/gstsynaesthesia.c:
23553         * gst/videocrop/gstvideocrop.c:
23554         * gst/videodrop/gstvideodrop.c:
23555         * gst/y4m/gsty4mencode.c:
23556         * sys/qcam/gstqcamsrc.c:
23557         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
23558           Make them work with new video.h file.
23559         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23560         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
23561         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23562         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
23563           Make it work with new buffer allocation system.
23564
23565 2004-01-11  Julien MOUTTE  <julien@moutte.net>
23566
23567         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
23568         pad_alloc_buffer implementation to use ->srcpad
23569         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
23570         pad_alloc_buffer implementation to use ->srcpad
23571         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
23572         pad_alloc_buffer implementation to use ->srcpad
23573         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23574         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23575         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
23576         a reference to everything we need.
23577         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
23578         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23579         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23580         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
23581         a reference to everything we need.
23582         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
23583
23584 2004-01-11  David Schleef  <ds@schleef.org>
23585
23586         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
23587         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
23588         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
23589         structure members.
23590         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
23591         value during a resize/renegotiation.
23592         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
23593         gst_pad_alloc_buffer();
23594         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23595         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
23596         structure members.
23597         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
23598         Fix for rename of buffer private structure members.
23599         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23600         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
23601         Fix for rename of buffer private structure members.
23602         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23603         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
23604         Fix for rename of buffer private structure members.
23605
23606 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
23607
23608         reviewed by: David Schleef <ds@schleef.org>
23609
23610         * gst/videofilter/Makefile.am:
23611         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
23612         from the patch by ds to fit in with recent make_filter changes.
23613
23614 2004-01-11  Julien MOUTTE  <julien@moutte.net>
23615
23616         * configure.ac: Adding examples/switch/Makefile
23617         * examples/Makefile.am: Adding examples/switch
23618         * examples/switch/Makefile.am: Adding switcher example.
23619         * examples/switch/switcher.c: (got_eos), (idle_iterate),
23620         (switch_timer), (main): Adding an example demonstrating switch usage
23621         with 2 videotestsrc showing different patterns.
23622         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
23623         (gst_switch_init): Fixing switch with the new caps system.
23624
23625 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23626
23627         * gst-libs/gst/video/video.h:
23628           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
23629           They should probably be like
23630           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
23631
23632 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23633
23634         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
23635         (qtdemux_parse_trak):
23636           fix audio chunk size/timestamp calculation
23637
23638 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23639
23640         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
23641           fix SVQ3 caps
23642
23643 2004-01-11  Steve Baker  <steve@stevebaker.org>
23644
23645         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
23646         (gst_agingtv_base_init), (gst_agingtv_class_init),
23647         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
23648         (gst_agingtv_set_property), (gst_agingtv_get_property):
23649         Port agingTV to videofilter
23650
23651 2004-01-09  Julien MOUTTE <julien@moutte.net>
23652
23653         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
23654         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23655
23656 2004-01-09  Julien MOUTTE <julien@moutte.net>
23657
23658         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
23659         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23660         * gst-libs/gst/xoverlay/xoverlay.c:
23661         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
23662         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
23663         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23664         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23665         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23666         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23667         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
23668         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
23669         the bufferalloc_function to replace bufferpools, fixing the XOverlay
23670         interface implementation to handle xid being 0 and fix some bugs
23671         triggered by Benjamin's testcase.
23672         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23673         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
23674         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
23675         the bufferalloc_function to replace bufferpools, fixing the XOverlay
23676         interface implementation to handle xid being 0 and fix some bugs
23677         triggered by Benjamin's testcase.
23678
23679 2004-01-09  David Schleef  <ds@schleef.org>
23680
23681         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
23682         mouse pointer events.  It works.
23683
23684 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23685
23686         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
23687           Use explicit caps - fix capsnego.
23688         * ext/xvid/gstxviddec.c:
23689         * ext/xvid/gstxvidenc.c:
23690           Remove macro-inside-macro which caused compile errors.
23691         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
23692           Error out if it's not a RIFF file. Else we error out without
23693           gst_element_error() which is not good...
23694
23695 2004-01-08  David Schleef  <ds@schleef.org>
23696
23697         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
23698         Fix pad_link function to handle formats that ffmpeg returns
23699         as multiple caps structures.
23700         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
23701         Only complain if source buffer is _smaller_ than expected.
23702         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
23703         (gst_videoscale_handle_src_event): Resize navigation events
23704         when passing them upstream.
23705         * gst/videotestsrc/gstvideotestsrc.c:
23706         * gst/videotestsrc/gstvideotestsrc.h:
23707         * gst/videotestsrc/videotestsrc.c:
23708         * gst/videotestsrc/videotestsrc.h:
23709         Rewrite many of the buffer painting functions to handle odd
23710         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
23711         been verified to work with my video card.
23712         * testsuite/gst-lint:  Add check for elements calling
23713         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
23714
23715 2004-01-08  David Schleef  <ds@schleef.org>
23716
23717         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
23718         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
23719
23720 2004-01-08  Julien MOUTTE  <julien@moutte.net>
23721
23722         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
23723         configure event is not emiting the desired size signal. That fixes
23724         aspect ratio issues with gst-player.
23725
23726 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23727
23728         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
23729           Fix capsnego.
23730
23731 2004-01-08  Julien MOUTTE  <julien@moutte.net>
23732
23733         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
23734         public method to fire size signal.
23735
23736 2004-01-07  Julien MOUTTE  <julien@moutte.net>
23737
23738         * examples/gstplay/Makefile.am: Adding the interface library.
23739         * gst-libs/gst/play/Makefile.am: Adding the interface library.
23740         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
23741         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
23742         GST_IS_X_OVERLAY before signal connect.
23743         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
23744         Removing the have_video_size signal.
23745         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
23746         and associated public method.
23747         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
23748         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
23749         signal.
23750         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
23751         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
23752         signal.
23753         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
23754         Using XOverlay public method to fire size signal.
23755
23756 2004-01-07  David Schleef  <ds@schleef.org>
23757
23758         * gst/videofilter/Makefile.am:
23759         * gst/videofilter/gstvideotemplate.c:
23760         * gst/videofilter/make_filter:
23761         Create gstvideoexample.c in a srcdir!=builddir friendly way.
23762         Convert make_filter to /bin/sh script.
23763
23764 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
23765
23766         * gst/modplug/gstmodplug.cc: fix element description
23767
23768 2004-01-07  Julien MOUTTE  <julien@moutte.net>
23769
23770         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
23771         (got_video_size): Adding some new lines in g_print calls.
23772         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
23773         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
23774         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
23775         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
23776         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
23777         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
23778         Complete code review, reverting some stuff i disagree with, adding
23779         some fixes : time synchronization on invalid timestamps, renegotiation
23780         of private window.
23781         * sys/ximage/ximagesink.h:
23782         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
23783         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
23784         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
23785         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
23786         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
23787         (gst_xvimagesink_buffer_new),
23788         (gst_xvimagesink_navigation_send_event),
23789         (gst_xvimagesink_set_xwindow_id),
23790         (gst_xvimagesink_get_desired_size),
23791         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
23792         stuff i disagree with, adding some fixes : Renegotiation of private
23793         window, implementing get_desired_size.
23794
23795 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23796
23797         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
23798         (gst_afsink_handle_event):
23799         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
23800         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
23801         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
23802         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
23803         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
23804           Fix for instantiate-test (see core). Also remove dead code from
23805           jpegenc (which still needs fixing, but that's lower on my TODO
23806           list...).
23807         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
23808           Never return NULL as caps.
23809
23810 2004-01-07  David Schleef  <ds@schleef.org>
23811
23812         * configure.ac:
23813         * ext/Makefile.am:
23814         * ext/librfb/Makefile.am:
23815         * ext/librfb/gstrfbsrc.c:
23816         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
23817         is the protocol used by VNC.
23818
23819 2004-01-07  David Schleef  <ds@schleef.org>
23820
23821         * gst/videofilter/gstvideotemplate.c:
23822         * gst/videofilter/gstvideotemplate.h:
23823         * gst/videofilter/make_filter:
23824         Merge videotemplate header into source file.
23825         * gst/effectv/Makefile.am:
23826         * gst/effectv/gsteffectv.c: (plugin_init):
23827         * gst/effectv/gstwarp.c:
23828         Make warpTV a subclass of videofilter.
23829
23830 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23831
23832         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
23833           Add guard against invalid utf-8 conversions in mad. Just in case.
23834
23835 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23836
23837         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
23838           Fix for bug shown by poisoning
23839
23840 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23841
23842         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23843         (gst_v4lmjpegsrc_buffer_free):
23844         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
23845         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
23846         (gst_v4lsrc_buffer_free):
23847           Fix for removed bufferpools.
23848
23849 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
23850
23851         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
23852         Fix caps negotiation.
23853
23854         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
23855         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
23856         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
23857         (dvdnavsrc_event):
23858         * ext/mpeg2dec/gstmpeg2dec.c:
23859         * gst-libs/gst/navigation/navigation.c:
23860         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
23861         * gst-libs/gst/navigation/navigation.h:
23862         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
23863         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
23864         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
23865         Super-simple first version of mouse and keyboard events. Clicking
23866         on a DVD menu now works, although it may not take you where you
23867         expected.
23868
23869         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
23870         * gst/videotestsrc/gstvideotestsrc.c:
23871         (gst_videotestsrc_src_fixate):
23872         These fixate functions were broken - they never actually
23873         fixated :)
23874
23875 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23876
23877         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
23878         (gst_icecastsend_init):
23879           fix for new caps system.
23880         * gst-libs/gst/mixer/mixertrack.h:
23881         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
23882           Add 'master track' flag (for tools like ACME that only want to
23883           change the main volume).
23884
23885 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
23886
23887         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
23888         (gst_xvid_csp_to_caps):
23889         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
23890         * ext/xvid/gstxvidenc.c:
23891         ifdef out ARGB type when it isn't available
23892         in xvidcore 1.0.0beta2
23893
23894 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23895
23896         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
23897           When we have received a new SCR right in the first buffer after
23898           a seek (so in the same cycle that handles the discont), we should
23899           handle the buffer instead of unreffing it, else we lose data.
23900
23901 2004-01-06  Iain <iain@prettypeople.org>
23902
23903         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
23904           buffer-frames caps too.
23905
23906         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
23907           caps that we need, don't destroy them all and rebuild them. And when
23908           creating src pads, use the src pad template rather than the sink...
23909
23910 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23911
23912         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
23913           Add pad to element *after* setting functions such as event handler.
23914           Without this, the scheduler (opt) will link pads, set the event
23915           handler from the default event function (dispatcher in gstpad.c)
23916           and *after* that, we will set our own event function, which will
23917           thus never be used (and thus mpegdemux doesn't handle events).
23918
23919 2004-01-04  David Schleef  <ds@schleef.org>
23920
23921         Fix the fixate functions to handle new prototype:
23922         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
23923         * gst/videotestsrc/gstvideotestsrc.c:
23924         (gst_videotestsrc_src_fixate):
23925         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
23926         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
23927         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
23928
23929 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23930
23931         * sys/ximage/ximagesink.h:
23932         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
23933         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
23934         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
23935         (gst_ximagesink_xoverlay_init):
23936           assorted fixes to make (re)embedding work
23937         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
23938         (gst_ximagesink_get_desired_size):
23939           implement desired size additions to XOverlay
23940
23941 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23942
23943         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
23944         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
23945         (gst_x_overlay_got_desired_size):
23946         * gst-libs/gst/xoverlay/xoverlay.h:
23947           Add optional "desired size" signal and querying.
23948
23949 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23950
23951         * gst/matroska/matroska-demux.c:
23952         (gst_matroska_demux_parse_blockgroup):
23953           Fix EBML-laced block parsing. Diffs are relative to previous
23954           lace, not the first lace. Thanks to Mosu from the Matroska
23955           team for detecting this.
23956         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23957         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
23958         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
23959         (gst_wavparse_change_state):
23960         * gst/wavparse/gstwavparse.h:
23961           Quickfix for capsnego.
23962
23963 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23964
23965         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
23966           Fix indenting, fix pad creation.
23967
23968 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23969
23970         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
23971         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
23972         (gst_xviddec_sink_link):
23973           Implement src_getcaps() so proper size caps is negotiated.
23974
23975 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23976
23977         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
23978           Finish flac decoder on EOS. See #116178.
23979
23980 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23981
23982         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
23983         (gst_matroska_demux_add_stream):
23984         * gst/matroska/matroska-ids.h:
23985           Add getcaps() function to fix capsnego...
23986
23987 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23988
23989         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
23990         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
23991         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
23992           Fix more integer overflows. Again, see #126967.
23993
23994 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23995
23996         * ext/mpeg2dec/gstmpeg2dec.c:
23997           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
23998           #130416.
23999
24000 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24001
24002         * configure.ac:
24003         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
24004         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
24005         * ext/xvid/gstxvid.h:
24006         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
24007         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
24008         (gst_xviddec_src_link), (gst_xviddec_sink_link),
24009         (gst_xviddec_change_state):
24010         * ext/xvid/gstxviddec.h:
24011         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
24012         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
24013         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
24014         (gst_xvidenc_link), (gst_xvidenc_set_property),
24015         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
24016         * ext/xvid/gstxvidenc.h:
24017           Update xvid plugin to latest xvid (1.0.0-beta3) API.
24018
24019 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24020
24021         * gst/rtp/rtp-packet.c:
24022           Add sys/types.h include, since OS X doesn't define in_addr_t
24023           in netinet/in.h, like it does on Linux (see #129600).
24024
24025 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
24026
24027         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
24028
24029         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
24030           Correct logic of dispose function (see #129306).
24031
24032 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24033
24034         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
24035         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
24036         (gst_mpeg_parse_init):
24037         * gst/mpegstream/gstmpegparse.h:
24038           Remove clock (which was never provided, i.e. dead code), and
24039           also fix integer overflows at high PTS values (see #126967).
24040
24041 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24042
24043         * ext/flac/gstflacdec.c:
24044         * ext/libpng/gstpngenc.h:
24045         * ext/mikmod/gstmikmod.h:
24046           OS X fixes (see #126628).
24047
24048 2004-01-02  David Schleef  <ds@schleef.org>
24049
24050         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
24051         (gst_alsa_src_base_init): Remove bogus "src" request pad.
24052         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
24053         (gst_mpeg_parse_class_init): Move pad template registration
24054         to class_init, since the derived class (mpegdemux) doesn't
24055         want them.
24056
24057 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24058
24059         * sys/ximage/Makefile.am:
24060         * sys/xvideo/Makefile.am:
24061         * sys/xvimage/Makefile.am:
24062           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
24063           after installation (see #127664).
24064
24065 2004-01-02  David Schleef  <ds@schleef.org>
24066
24067         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
24068         (gst_ffmpegenc_connect):  Negotiation fixes.
24069         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
24070         Remove inappropriate gst_caps_free().
24071         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24072         Reenable Ronald's internal resize code, since the core handles
24073         it correctly now.
24074
24075 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24076
24077         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
24078         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
24079         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
24080           Fix pad template stuff.
24081
24082 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24083
24084         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
24085         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
24086           fix signed integer reading/writing.
24087
24088 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24089
24090         * ext/alsa/README:
24091           Remove outdated document
24092
24093 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
24094
24095         * gst/cutter/gstcutter.c: (gst_cutter_init):
24096           src pad was being created twice - oops.
24097
24098 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24099
24100         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24101           Comment out internal resize. It doesn't handle the resulting
24102           XEvent internally, does another try_set_caps() which leads to
24103           a really nice loop.
24104           Real fix will come when Julien and Dave are awake. ;).
24105
24106 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24107
24108         * ext/mpeg2enc/gstmpeg2enc.cc:
24109           fix const/nonconst compile issue.
24110
24111 2004-01-02  David Schleef  <ds@schleef.org>
24112
24113         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
24114         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
24115         Add fixate function and a check for bad formats.
24116
24117 2004-01-01  David Schleef  <ds@schleef.org>
24118
24119         Negotiation fixes:
24120         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24121         (gst_audiofilter_init):
24122         * gst/debug/efence.c: (gst_efence_init):
24123         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
24124         (gst_deinterlace_init):
24125         * gst/volume/gstvolume.c: (volume_connect):
24126
24127 2004-01-01  David Schleef  <ds@schleef.org>
24128
24129         Convert elements to use gst_pad_use_explicit_caps() where
24130         appropriate:
24131         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
24132         * ext/audiofile/gstafparse.c: (gst_afparse_init),
24133         (gst_afparse_open_file):
24134         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
24135         (gst_afsrc_open_file):
24136         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
24137         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
24138         (gst_ffmpegdec_chain):
24139         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
24140         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
24141         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
24142         (gst_gdk_pixbuf_chain):
24143         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
24144         (gst_jpegdec_chain):
24145         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
24146         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
24147         (gst_mikmod_negotiate):
24148         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
24149         (gst_mpeg2dec_negotiate_format):
24150         * ext/mpeg2enc/gstmpeg2enc.cc:
24151         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24152         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
24153         (gst_speexdec_sinkconnect):
24154         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
24155         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
24156         (gst_vorbisfile_new_link):
24157         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
24158         (gst_ac3parse_chain):
24159         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
24160         (gst_asf_demux_setup_pad):
24161         * gst/auparse/gstauparse.c: (gst_auparse_init),
24162         (gst_auparse_chain):
24163         * gst/id3/gstid3types.c: (gst_id3types_loop):
24164         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
24165         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
24166         (mp1videoparse_parse_seq):
24167         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
24168         (bpf_from_header):
24169         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
24170         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
24171         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
24172         (gst_mpeg_parse_send_data):
24173         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
24174         (gst_qtdemux_add_stream):
24175         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
24176         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
24177         (gst_wavparse_parse_fmt):
24178
24179 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24180
24181         * configure.ac:
24182           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
24183           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
24184           it therefore uses the wrong include paths. Too bad... Note
24185           that 1.6.1.93 is not release yet. ;).
24186           Also add a check for mplex, which is now using the lib'ified
24187           mplex from mjpegtools, too.
24188         * ext/ffmpeg/gstffmpegcodecmap.c:
24189           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
24190           issues. I don't think ffmpeg handles 3ivx correctly, so this
24191           probably won't work. But it won't hurt either.
24192         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
24193         (gst_ffmpegdec_chain):
24194         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
24195         (gst_ffmpegenc_chain_audio):
24196           Fix memleak in audio encoding. Close codec if open fails, this
24197           calls the cleanup routines so we can re-use the context.
24198         * ext/mpeg2enc/gstmpeg2enc.cc:
24199           Fix pad template names/types, fix memory issue with getcaps().
24200         * ext/mpeg2enc/gstmpeg2encoder.cc:
24201         * ext/mpeg2enc/gstmpeg2encoder.hh:
24202           Fix compile issue with new caps system (const thingy).
24203         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24204         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
24205           We read a first frame right on initing, so that we have a caps
24206           when we init the output. This caps is cached in padprivate and
24207           read as first frame.
24208         * ext/mplex/Makefile.am:
24209         * ext/mplex/gstmplex.cc:
24210         * ext/mplex/gstmplex.h:
24211         * ext/mplex/gstmplex.hh:
24212         * ext/mplex/gstmplexibitstream.cc:
24213         * ext/mplex/gstmplexibitstream.hh:
24214         * ext/mplex/gstmplexjob.cc:
24215         * ext/mplex/gstmplexjob.hh:
24216         * ext/mplex/gstmplexoutputstream.cc:
24217         * ext/mplex/gstmplexoutputstream.hh:
24218           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
24219           had issues, didn't do capsnego, supported only a subset of the
24220           mplex features and required a mplex fork in our local CVS. Plus
24221           that it worked agaist a very old mplex version. Rewriting was
24222           faster than updating it.
24223         * gst-libs/ext/Makefile.am:
24224         * gst-libs/ext/mplex/INSTRUCT:
24225         * gst-libs/ext/mplex/Makefile.am:
24226         * gst-libs/ext/mplex/README:
24227         * gst-libs/ext/mplex/TODO:
24228         * gst-libs/ext/mplex/ac3strm_in.cc:
24229         * gst-libs/ext/mplex/audiostrm.hh:
24230         * gst-libs/ext/mplex/audiostrm_out.cc:
24231         * gst-libs/ext/mplex/aunit.hh:
24232         * gst-libs/ext/mplex/bits.cc:
24233         * gst-libs/ext/mplex/bits.hh:
24234         * gst-libs/ext/mplex/buffer.cc:
24235         * gst-libs/ext/mplex/buffer.hh:
24236         * gst-libs/ext/mplex/fastintfns.h:
24237         * gst-libs/ext/mplex/format_codes.h:
24238         * gst-libs/ext/mplex/inputstrm.cc:
24239         * gst-libs/ext/mplex/inputstrm.hh:
24240         * gst-libs/ext/mplex/lpcmstrm_in.cc:
24241         * gst-libs/ext/mplex/mjpeg_logging.cc:
24242         * gst-libs/ext/mplex/mjpeg_logging.h:
24243         * gst-libs/ext/mplex/mjpeg_types.h:
24244         * gst-libs/ext/mplex/mpastrm_in.cc:
24245         * gst-libs/ext/mplex/mpegconsts.cc:
24246         * gst-libs/ext/mplex/mpegconsts.h:
24247         * gst-libs/ext/mplex/mplexconsts.hh:
24248         * gst-libs/ext/mplex/multplex.cc:
24249         * gst-libs/ext/mplex/outputstream.hh:
24250         * gst-libs/ext/mplex/padstrm.cc:
24251         * gst-libs/ext/mplex/padstrm.hh:
24252         * gst-libs/ext/mplex/stillsstream.cc:
24253         * gst-libs/ext/mplex/stillsstream.hh:
24254         * gst-libs/ext/mplex/systems.cc:
24255         * gst-libs/ext/mplex/systems.hh:
24256         * gst-libs/ext/mplex/vector.cc:
24257         * gst-libs/ext/mplex/vector.hh:
24258         * gst-libs/ext/mplex/videostrm.hh:
24259         * gst-libs/ext/mplex/videostrm_in.cc:
24260         * gst-libs/ext/mplex/videostrm_out.cc:
24261         * gst-libs/ext/mplex/yuv4mpeg.cc:
24262         * gst-libs/ext/mplex/yuv4mpeg.h:
24263         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
24264         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
24265           We don't fork mjpegtools' mplex in our CVS anymore.
24266         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
24267         (gst_avi_demux_add_stream):
24268         * gst/avi/gstavidemux.h:
24269           Add getcaps() function for proper caps nego. This makes some
24270           parts of AVI playback/reading work.
24271         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24272           Resize window on new capsnego. This is probably wrong, but
24273           I'm still committing it because with current capsnego, the
24274           first successfull capsnego is auto-fixated, therefore rounded
24275           down to the lowest values in the caps. this results in a 16x16
24276           XWindow that is not reized when real capsnego finishes.
24277           Dave, I see more cases of this, do you know a proper solution?
24278         * tools/gst-launch-ext.in:
24279           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
24280
24281 2003-12-31  David Schleef  <ds@schleef.org>
24282
24283         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
24284         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
24285           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
24286
24287 2003-12-30  David Schleef  <ds@schleef.org>
24288
24289         * ext/ffmpeg/gstffmpegcolorspace.c:
24290         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
24291         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
24292         (gst_ffmpegcsp_chain): Negotiation fixes
24293         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
24294         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24295         (gst_audio_convert_link), (gst_audio_convert_channels):
24296         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
24297         (gst_audioscale_link), (gst_audioscale_get_buffer),
24298         (gst_audioscale_chain): Negotiation fixes
24299         * gst/audioscale/gstaudioscale.h:
24300         * gst/videofilter/gstvideofilter.c:
24301         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
24302         (gst_videofilter_link), (gst_videofilter_init),
24303         (gst_videofilter_set_output_size), (gst_videofilter_setup),
24304         (gst_videofilter_find_format_by_structure):
24305         * gst/videofilter/gstvideofilter.h: Negotiation fixes
24306         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
24307         (gst_videoscale_link):
24308         * gst/videoscale/videoscale.c: (videoscale_get_structure),
24309         (videoscale_find_by_structure), (gst_videoscale_setup):
24310         * gst/videoscale/videoscale.h: Negotiation fixes
24311         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
24312         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
24313         function, restrict resizing to a multiple of 4 (hack until
24314         everyone supports odd sizes correctly).
24315
24316 2003-12-29  Colin Walters  <walters@verbum.org>
24317
24318         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
24319         signed.
24320
24321 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
24322
24323         * ext/sndfile/gstsf.c: (gst_sf_loop):
24324           Fix warning about discarding const qualifier
24325
24326 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
24327
24328         * gst/cutter/gstcutter.c:
24329         * gst/videoscale/gstvideoscale.c:
24330         * gst/volenv/gstvolenv.c:
24331         * gst-libs/gst/audio/audio.c:
24332         * gst-libs/gst/video/video.c:
24333           Fix warnings
24334
24335 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24336
24337         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24338           Don't send ALSA debugging to stderr.
24339         * ext/alsa/gstalsa.h:
24340           Use GST_WARNING instead of g_warning when ALSA functions fail.
24341
24342 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24343
24344         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
24345           Free XVAdapterInfo correctly.
24346
24347 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24348
24349         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
24350         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
24351           Make id3tag use correct caps nego.
24352
24353 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
24354
24355         * ext/ivorbis/vorbis.c:
24356         * ext/ivorbis/vorbisenc.h:
24357         * ext/ivorbis/vorbisfile.c:
24358           Modify so that it uses the new caps things
24359
24360 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24361
24362         * testsuite/spider/spider1.c: (main):
24363         * testsuite/spider/spider2.c: (main):
24364         * testsuite/spider/spider3.c: (main):
24365           Make tests compile again. They probably don't work.
24366
24367 2003-12-24  Colin Walters  <walters@verbum.org>
24368
24369         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
24370         we can't fixate the caps anymore.
24371
24372 2003-12-23  David Schleef  <ds@schleef.org>
24373
24374         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
24375         * sys/oss/gstosssink.c: (gst_osssink_init),
24376         (gst_osssink_sink_fixate): Add fixate function.
24377
24378 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24379
24380         * ext/ffmpeg/gstffmpegcodecmap.c:
24381         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
24382         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
24383         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
24384         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
24385         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
24386         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24387         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
24388           fix typo in RGB masks, and move back to "old" colorspace
24389           capsnego code until whoever wrote this new crap has actually
24390           tested it so that it works.
24391           And yes, this works, keep it that way please.
24392
24393 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24394
24395         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
24396         (gst_divxdec_init), (gst_divxdec_negotiate):
24397         * ext/divx/gstdivxdec.h:
24398         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
24399         (gst_divxenc_init):
24400         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
24401         (gst_faac_sinkconnect), (gst_faac_srcconnect):
24402         * ext/mpeg2enc/gstmpeg2enc.cc:
24403         * ext/mpeg2enc/gstmpeg2encoder.cc:
24404         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24405         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
24406         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
24407         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
24408         (dxr3spusink_init):
24409         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
24410         (dxr3videosink_init):
24411           Fix caps breakage after Dave's caps branch merge.
24412
24413 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24414
24415         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
24416           Fix for 24bpp display.
24417
24418 2003-12-23  Colin Walters  <walters@verbum.org>
24419
24420         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
24421         a GnomeVFSHandle directly.
24422
24423 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24424
24425         * gst/volume/Makefile.am:
24426         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
24427         (volume_base_init), (volume_init):
24428           Reenable volume element and fix to work with new caps stuff.
24429           Rhythmbox needs this.
24430
24431 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24432
24433         * gst/qtdemux/qtdemux.c: (plugin_init):
24434           qtdemux requires bytestream
24435
24436 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24437
24438         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
24439           Fix remaining caps handling errors due to CAPS merge.
24440
24441 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24442
24443         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
24444         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
24445         (gst_faad_srcconnect):
24446           Port to new caps system.
24447
24448 2003-12-21  Julien MOUTTE  <julien@moutte.net>
24449
24450         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
24451         (got_video_size), (main): using g_print instead of g_message.
24452         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
24453         signal which was not emitted because of "switch" element added to the
24454         bin but not connected. (Removing from the bin temporarily)
24455
24456 2003-12-21  Julien MOUTTE  <julien@moutte.net>
24457
24458         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
24459         find X development files. I don't understand the previous tests and
24460         they fail on my debian/ppc unstable. This one works.
24461         * examples/gstplay/player.c: (main): Set the pipeline to READY before
24462         exiting.
24463         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
24464         (gst_play_set_video_sink), (gst_play_set_audio_sink),
24465         (gst_play_set_visualization): Add some safety checks in set_ methods
24466         and state_change. This was throwing some ugly CRITICAL messages when
24467         pipeline was getting disposed and casts were failing.
24468
24469 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24470
24471         * configure.ac:
24472           Improve mpeg2enc detection. This is for distributions that do
24473           ship mjpegtools, but without mpeg2enc. Also does object check
24474           for might there ever be ABI incompatibility.
24475         * ext/mpeg2enc/gstmpeg2enc.cc:
24476           Add Andrew as second maintainer (he's helping me), and also add
24477           an error if no caps was set. This happens if I pull before capsnego
24478           and that's something I should solve sometime else.
24479         * gst/matroska/matroska-demux.c:
24480         (gst_matroska_demux_parse_blockgroup):
24481           Fix time parsing.
24482         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
24483         (gst_matroska_mux_track_header):
24484           Add caps to templates.
24485         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
24486           Add mpegversion=1 to prevent confusion with MPEG/AAC.
24487         * gst/mpegstream/gstmpegdemux.c:
24488           Remove layer since it causes warnings about unfixed caps.
24489         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
24490           Fix obvious typo (we error out if caps were set, we should of
24491           course error out if *no* caps were set).
24492         * sys/oss/gstosselement.c: (gst_osselement_convert):
24493           Fix format conversion, we confused bits/bytes.
24494         * sys/oss/gstosselement.h:
24495           Improve documentation for 'bps'.
24496         * sys/v4l/TODO:
24497           Remove stuff about plugins that need removing - this was done
24498           ages ago.
24499         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
24500         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
24501         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
24502         (gst_v4lsrc_src_query):
24503         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
24504         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
24505           Add get_query_types(), get_formats() and query() functions.
24506
24507 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
24508
24509         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
24510         * moved CVS to freedesktop.org