ext/vorbis/vorbisenc.c: Remove leaks from vorbisenc.
[platform/upstream/gstreamer.git] / ChangeLog
1 2006-04-07  Michael Smith  <msmith@fluendo.com>
2
3         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
4         (gst_vorbis_enc_chain):
5           Remove leaks from vorbisenc.
6           Mostly minor changes, the only significant one is that now the
7           buffers we set as 'streamheader' on the caps are copies of the
8           original buffers, to avoid circular refcounting problems.
9
10 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
11
12         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
13           Don't remove our mute-probe if someone else already did so.
14           Don't set a 2nd one if there is already one pending on the pad.
15
16         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
17         (do_playbin_seek):
18           When a seek fails, ensure that playbin is still set back to playing.
19           
20         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
21         (mpeg_ts_type_find), (plugin_init):
22           Add a typefind function for mpeg-ts streams.
23
24 2006-04-06  Andy Wingo  <wingo@pobox.com>
25
26         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
27         (gst_video_rate_init): Caps-related parameters should not be reset
28         by a flush -- move their inits to the instance init function.
29         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
30         is not OK, just return the result.
31
32         * gst/audiotestsrc/gstaudiotestsrc.c
33         (gst_audio_test_src_class_init)
34         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
35         broken by Stefan's commit on 24 March.
36
37         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
38         buffers being pushed out. Fixes oggmux ! multifdsink.
39
40 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
41
42         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
43         (gst_vorbis_dec_init), (vorbis_dec_finalize):
44         * ext/vorbis/vorbisdec.h:
45         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
46         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
47         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
48         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
49         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
50         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
51         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
52         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
53         (gst_vorbis_enc_buffer_from_packet),
54         (gst_vorbis_enc_buffer_from_header_packet),
55         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
56         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
57         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
58         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
59         (gst_vorbis_enc_change_state):
60         * ext/vorbis/vorbisenc.h:
61           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
62           vorbisenc adhere to the official nomenclature; use boilerplate
63           macro.
64
65 2006-04-04  Andy Wingo  <wingo@pobox.com>
66
67         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
68         Whoops, fix bug introduced. Bad hacker!
69         
70         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
71         Properly handle the case where you get EOS before any buffers are
72         received. Use gst_buffer_make_metadata_writable where appropriate.
73
74         * ext/theora/theoradec.c (theora_handle_data_packet): This value
75         is often negative -- make it signed so as not to wrap around.
76         Fixes segfaults introduced on 9 March.
77
78 2006-04-03  Wim Taymans  <wim@fluendo.com>
79
80         * ext/theora/gsttheoradec.h:
81         * ext/theora/theoradec.c: (theora_dec_src_event):
82         Don't try to store a gdouble in a gboolean.
83         Small cleanups.
84
85 2006-04-03  Michael Smith  <msmith@fluendo.com>
86
87         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
88           Oggmux sucks.
89           Make it suck slightly less by writing out the final page.
90           Still can't encode a vorbis-in-ogg file correctly, though.
91
92 2006-04-03  Andy Wingo  <wingo@pobox.com>
93
94         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
95         a g_print.
96
97         * ext/theora/theora.c (plugin_init): Register theoraparse.
98
99         * ext/theora/gsttheoraparse.h: 
100         * ext/theora/theoraparse.c: New files implementing a theora
101         parser. Now we can properly remux ogg/theora+vorbis, yay.
102
103         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
104
105 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
106
107         * gst/audiotestsrc/gstaudiotestsrc.c:
108           Fixed the sample pipeline (see #323798)
109
110 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
111
112         * configure.ac:
113         * win32/common/config.h:
114         * win32/common/config.h.in:
115           use AS_VERSION and AS_NANO
116           more cleanups
117
118 2006-03-31  Andy Wingo  <wingo@pobox.com>
119
120         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
121         uninitialized variable return that would happen.
122         
123         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
124         uninitialized variable return that would never happen.
125
126         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
127         (vorbis_parse_sink_event): Add an event function to flush our
128         state on a seek, and to drain buffers on a premature EOS.
129         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
130         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
131         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
132         (vorbis_parse_drain_queue): Queue up buffers until we can set
133         their timestamps and granulepos values.
134
135         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
136         and keep track of data needed for deriving granulepos and
137         timestamps for buffers.
138
139 2006-03-29  Wim Taymans  <wim@fluendo.com>
140
141         Patch by: j^ <j at bootlab dot org>
142
143         * ext/alsa/gstalsamixerelement.c:
144         (gst_alsa_mixer_element_class_init):
145         * ext/alsa/gstalsasink.c:
146         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
147         * ext/ogg/gstoggdemux.c:
148         * ext/ogg/gstoggmux.c:
149         * ext/ogg/gstoggparse.c:
150         * ext/pango/gstclockoverlay.c:
151         * ext/pango/gsttextoverlay.c:
152         * ext/pango/gsttextrender.c:
153         * ext/pango/gsttimeoverlay.c:
154         * ext/theora/theoradec.c:
155         * ext/theora/theoraenc.c:
156         * ext/vorbis/vorbisdec.c:
157         * ext/vorbis/vorbisenc.c:
158         * gst/audioconvert/gstaudioconvert.c:
159         * gst/subparse/gstsubparse.c:
160         * gst/tcp/gstmultifdsink.c:
161         * gst/tcp/gsttcpclientsink.c:
162         * gst/tcp/gsttcpclientsrc.c:
163         * gst/tcp/gsttcpserversink.c:
164         * gst/tcp/gsttcpserversrc.c:
165           better/unified long descriptions
166           Fixes #336477
167
168 2006-03-29  Wim Taymans  <wim@fluendo.com>
169
170         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
171         (stop_seek):
172         Don't let double and tripple clicks mess up our state.
173
174 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
175
176         * gst/playback/gstplaybin.c: (gen_video_element),
177         (gen_text_element), (gen_audio_element), (gen_vis_element):
178           Error out gracefully when we can't create any of the usual
179           conversion elements for some reason. Also, don't try to
180           create an audioscale (sic) element that's not used anyway.
181
182 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
183
184         * gst/playback/gstplaybasebin.c: (setup_source):
185           Don't post RESOURCE_NOT_FOUND error when we can't find a source
186           element for a particular protocol, that's confusing for users.
187           Instead, post a RESOURCE_FAILED error, so that our own error
188           message is actually shown in totem etc. (#336303).
189
190 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
191
192         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
193
194         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
195         (gst_gnome_vfs_src_get_icy_metadata):
196           Fix some minor memory leaks (#336194).
197
198 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
199
200         * ext/gnomevfs/gstgnomevfs.c:
201         (gst_gnome_vfs_location_to_uri_string):
202         * ext/gnomevfs/gstgnomevfs.h:
203         * ext/gnomevfs/gstgnomevfssink.c:
204         (gst_gnome_vfs_sink_set_property):
205         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
206           Make gnomevfssink accept filenames as well as URIs for the
207           "location" property, just like gnomevfssrc does (and
208           filesrc/filesink do) (#336190).
209
210 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
211
212         * tests/check/generic/clock-selection.c: (GST_START_TEST):
213           set to NULL before unreffing, fixes a valgrind leak.
214           Why was this not triggering the error that an object needs to
215           be NULL before unreffing ?
216         * win32/common/config.h:
217           update
218
219 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
220
221         * gst/subparse/gstsubparse.c: (convert_encoding),
222         (gst_sub_parse_change_state):
223         * gst/subparse/gstsubparse.h:
224           Text subtitle files may or may not be UTF-8. If it's not, we
225           don't really want to see '?' characters in place of non-ASCII
226           characters like accented characters. So let's assume the input
227           is UTF-8 until we come across text that is clearly not. If it's
228           not UTF-8, we don't really know what it is, so try the following:
229           (a) see whether the GST_SUBTITLE_ENCODING environment variable
230           is set; if not, check (b) if the current locale encoding is
231           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
232           the current locale encoding is UTF-8 and the environment variable
233           was not set to any particular encoding. Not perfect, but better
234           than nothing (and better than before, I think) (fixes #172848).
235
236 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
237
238         * configure.ac:
239           update core requirement to 0.10.4.1 because of async_playback
240           vmethod on GstBaseSink
241
242 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
243
244         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
245         * gst/adder/gstadder.c: (gst_adder_init):
246         use DEBUG_FUNCPTR for collectpads
247
248 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
249
250         * docs/plugins/Makefile.am:
251         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
252         * docs/plugins/gst-plugins-base-plugins-sections.txt:
253         * ext/cdparanoia/gstcdparanoiasrc.c:
254         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
255         (gst_gnome_vfs_sink_class_init):
256         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
257         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
258         * ext/ogg/gstoggmux.c:
259         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
260         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
261         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
262         * ext/pango/gsttextoverlay.c:
263         * ext/pango/gsttextrender.c:
264         * ext/theora/theoradec.c:
265         * ext/theora/theoraenc.c:
266         * ext/vorbis/vorbisdec.c:
267         * ext/vorbis/vorbisenc.c:
268         * gst-libs/gst/audio/gstaudiofilter.c:
269         (gst_audio_filter_base_init):
270         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
271         (gst_audio_filter_template_base_init):
272         * gst/adder/gstadder.c: (gst_adder_get_type):
273         * gst/adder/gstadder.h:
274         * gst/audioconvert/gstaudioconvert.c:
275         * gst/audiotestsrc/gstaudiotestsrc.c:
276         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
277         (gst_audio_test_src_create):
278         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
279         * gst/playback/gstdecodebin.c:
280         * gst/playback/gstplaybin.c:
281         * gst/playback/gststreamselector.c:
282         (gst_stream_selector_base_init):
283         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
284         * gst/volume/gstvolume.c:
285         * sys/v4l/gstv4lmjpegsink.c:
286         * sys/v4l/gstv4lmjpegsrc.c:
287         * tests/check/libs/cddabasesrc.c:
288         * tests/old/examples/gob/gst-identity2.gob:
289         Add docs for adder, use GST_ELEMENT_DETAILS macro,
290         define GstElementDetails at the top
291
292 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
293
294         * win32/common/libgstinterfaces.def:
295         Add a lot of export functions for gst-python
296         * win32/vs6/libgstinterfaces.dsp:
297         Add a missing include folder in the project configuration
298         
299 2006-03-23  Wim Taymans  <wim@fluendo.com>
300
301         * gst-libs/gst/audio/gstbaseaudiosrc.c:
302         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
303         (gst_base_audio_src_change_state):
304         Fix audio sources, forgot to make the ringbuffer
305         startable...
306
307 2006-03-23  Wim Taymans  <wim@fluendo.com>
308
309         * gst-libs/gst/audio/gstbaseaudiosrc.c:
310         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
311         (gst_base_audio_src_change_state):
312         unparent instead of unref the ringbuffer.
313
314 2006-03-23  Wim Taymans  <wim@fluendo.com>
315
316         * gst-libs/gst/audio/gstbaseaudiosink.c:
317         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
318         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
319         Implement new async_play vmethod to start slaving and allow
320         playback start in case of async PLAY state changes. 
321
322         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
323         Enable QoS with new method in base class.
324
325 2006-03-23  Wim Taymans  <wim@fluendo.com>
326
327         Patch by: Julien MOUTTE <julien at moutte dot net>
328
329         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
330         (gst_video_test_src_do_seek), (gst_video_test_src_create):
331         Partially handle 0 framerate, only EOS after the first frame
332         is missing.
333
334 2006-03-23  Wim Taymans  <wim@fluendo.com>
335
336         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
337
338         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
339         (gst_riff_create_video_template_caps):
340         * gst/ffmpegcolorspace/avcodec.h:
341         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
342         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
343         (gst_ffmpegcsp_avpicture_fill):
344         * gst/ffmpegcolorspace/imgconvert.c:
345         Patch for support of YVU9 AVI files (#334822)
346
347 2006-03-22  Edward Hervey  <edward@fluendo.com>
348
349         * docs/design/design-decodebin.txt:
350         Added design document for new decodebin
351         (Target Caps): text/x-pango-markup is also a default target caps.
352
353 2006-03-22  Wim Taymans  <wim@fluendo.com>
354
355         * gst-libs/gst/audio/gstbaseaudiosink.c:
356         (gst_base_audio_sink_dispose):
357         Since we _parent the ringbuffer, we also need to
358         _unparent instead of a plain _unref.
359
360 2006-03-22  Wim Taymans  <wim@fluendo.com>
361
362         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
363         (stop_seek), (scrub_toggle_cb), (main):
364         Add scrub checkbox.
365
366 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
367
368         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
369         (gst_ogg_parse_chain):
370           Fix very inefficient usage of linked lists (#335365).
371
372 2006-03-21  Edward Hervey  <edward@fluendo.com>
373
374         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
375         * gst/playback/gstplaybin.c: (handoff):
376         * gst/playback/gststreamselector.c:
377         (gst_stream_selector_set_property):
378         gcc 4.1 unreferenced pointer fixes.
379         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
380         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
381         gst_buffer_ref() now takes a GstBuffer*.
382
383 2006-03-20  Julien MOUTTE  <julien@moutte.net>
384
385         * sys/xvimage/xvimagesink.c:
386         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
387         by Jan Schmidt.
388
389 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
390
391         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
392         (id3v1_type_find), (apetag_type_find), (plugin_init):
393           Can't do tag preferences via probability, as tags would then
394           lose against types that are recognised with MAXIMUM probability
395           (like .wav); so let all tag typefinders return MAXIMUM themselves
396           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
397           that we can prefer APE to ID3v1 (fixes #335028).
398           
399 2006-03-17  Wim Taymans  <wim@fluendo.com>
400
401         * gst-libs/gst/audio/gstbaseaudiosink.c:
402         (gst_base_audio_sink_change_state):
403         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
404         (gst_ring_buffer_may_start):
405         * gst-libs/gst/audio/gstringbuffer.h:
406         Only start playback if we are playing.
407         should fix #330748.
408
409 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
410
411         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
412         * win32/common/config.h:
413           Revert accidental commits to these files.
414
415 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
416
417         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
418
419         * tests/Makefile.am:
420           Don't try to build tests in tests/icles if we
421           don't have X (#323852)
422
423 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
424
425         * gst-libs/gst/tag/gstid3tag.c:
426           Add TXXX frame identifiers for replaygain stuff as used
427           by some taggers (see #323721).
428
429 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
430
431         * gst/playback/gststreamselector.c:
432         (gst_stream_selector_set_property),
433         (gst_stream_selector_bufferalloc):
434           Preserve the existing buggy streamselector behaviour by performing
435           a fallback buffer allocation when downstream isn't linked yet.
436           This should really be fixed in playbin by blocking pads until it's
437           linked them.
438           Also, use gst_pad_alloc_buffer instead of
439           gst_pad_alloc_buffer_and_set.
440
441 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
442
443         * gst-libs/gst/tag/gstid3tag.c:
444           Don't crash on unknown ID3v2 TXXX frames.
445           
446 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
447
448         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
449           Chain up to the parent finalize method.
450           Add 32-bit sample size to the template caps.
451
452         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
453         (gst_riff_create_video_template_caps):
454           Add the fourcc that the VMWare codec uses.
455           
456         * gst/playback/gststreamselector.c:
457         (gst_stream_selector_set_property),
458         (gst_stream_selector_bufferalloc),
459         (gst_stream_selector_request_new_pad):
460           For the active pad, forward buffer-alloc requests, otherwise
461           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
462           having to memcpy every frame when used by playbin.
463
464         * gst/tcp/gstmultifdsink.c:
465         (gst_multi_fd_sink_handle_client_write):
466           Get negotiated caps from the sink pad, rather than the sink
467           pad's peer.
468
469 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
470
471         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
472         
473         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
474           Don't forget to set src->callbacks_pushed to FALSE again when
475           popping them, otherwise re-activation in a different mode won't
476           work (#334620).
477
478 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
479
480         Patch by: Sebastien Moutte  <sebastien moutte net>
481
482         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
483         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
484         (gst_ffmpeg_smpfmt_to_caps):
485           Replace __VA_ARGS__ caps creation macros with varargs functions.
486           Makes things compile on MSVC (#320765), looks nicer, and we can
487           tell the compiler to check for the NULL terminator.
488
489 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
490
491         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
492
493         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
494           Make sure the buffer we copy into is really always big
495           enough, this time for real (#333488).
496           
497 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
498
499         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
500           Add support for 24bpp DIB (#305279).
501
502 2006-03-14  Wim Taymans  <wim@fluendo.com>
503
504         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
505         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
506         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
507         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
508         (gst_video_scale_init), (gst_video_scale_src_event):
509         Re-enable QoS after the release.
510         Rework videoscale to use the base class src_event handler.
511
512 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
513
514         * configure.ac:
515           back to CVS.
516
517 === release 0.10.5 ===
518
519 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
520
521         * configure.ac:
522           releasing 0.10.5, "Net"
523
524 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
525
526         * docs/plugins/Makefile.am:
527           Part of previous cdparanoiasrc docs fixes, forgot to commit.
528           
529 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
530
531         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
532         * docs/plugins/gst-plugins-base-plugins-sections.txt:
533         * docs/plugins/gst-plugins-base-plugins.hierarchy:
534           Add cdparanoiasrc to docs.
535
536         * gst-libs/gst/cdda/gstcddabasesrc.c:
537           More GstCddaBaseSrc docs.
538
539 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
540
541         * docs/libs/gst-plugins-base-libs-sections.txt:
542         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
543         * gst-libs/gst/tag/tag.h:
544           Add new API to libgsttag: gst_tag_from_id3_user_tag().
545
546 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
547
548         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
549           NULL-terminate array of mpeg4 video file extensions.
550           Fixes crash on PPC (#334226).
551
552 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
553
554         * ext/gnomevfs/gstgnomevfssrc.c:
555         (gst_gnome_vfs_src_check_get_range):
556           gnome_vfs_uri_is_local() alone is not a good indicator
557           whether we can operate in pull-mode with a specific URI,
558           as it returns FALSE for file:// URIs that point to an
559           NFS-mounted path. Be more conservative here: whitelist
560           local files, blacklist http URIs and use the old
561           mechanism for anything else (fixes #334216).
562
563 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
564
565         * configure.ac:
566           back to trunk
567
568 === release 0.10.4 ===
569
570 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
571
572         * configure.ac:
573           releasing 0.10.4, "Power"
574
575 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
576
577         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
578         Disable max-lateness by setting it to -1 for now, so that 
579         we can bed QoS stuff in thoroughly between now and the next
580         release.
581
582 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
583
584         Patch by: Fabrizio Gennari
585
586         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
587           Make sure we don't read beyond the palette buffer in case of
588           broken or manipulated files (#333488)
589
590 2006-03-10  Edward Hervey  <edward@fluendo.com>
591
592         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
593         Fix for variable not initialized.
594
595 2006-03-09  Wim Taymans  <wim@fluendo.com>
596
597         * ext/libvisual/visual.c: (gst_visual_get_type),
598         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
599         (gst_visual_chain):
600         Small cleanups.
601
602         * ext/theora/gsttheoradec.h:
603         * ext/theora/theoradec.c: (gst_theora_dec_init),
604         (gst_theora_dec_reset), (_theora_granule_time),
605         (theora_dec_src_convert), (theora_dec_sink_convert),
606         (theora_dec_src_query), (theora_dec_src_event),
607         (theora_dec_sink_event), (theora_handle_comment_packet),
608         (theora_handle_header_packet), (theora_dec_push),
609         (theora_handle_data_packet), (theora_dec_chain),
610         (theora_dec_change_state):
611         Add simple QoS.
612
613 2006-03-09  Wim Taymans  <wim@fluendo.com>
614
615         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
616         (audiocast_register_listener), (gst_gnome_vfs_src_start):
617         Some cleanups.
618
619 2006-03-09  Wim Taymans  <wim@fluendo.com>
620
621         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
622         Don't try to activate NULL chains.
623
624 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
625
626         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
627           Fix invalid memory access to region before peek'd data (#332964).
628
629 2006-03-09  Wim Taymans  <wim@fluendo.com>
630
631         Patch by: Christophe Fergeau
632
633         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
634         * ext/pango/gsttextrender.c: (gst_text_render_init):
635         * gst/adder/gstadder.c: (gst_adder_init):
636         Don't leak padtemplates, closes #333510.
637
638 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
639
640         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
641           Fix invalid memory access: make sure string passed to
642           regexec() is NUL-termianted.
643
644 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
645
646         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
647         (mp3_type_find):
648           Refactor mpeg/audio typefinding to make it more maintainable
649           and easier to fine-tune. Make probing into middle of the file
650           work properly (fixes #333900, also see #152688).
651
652 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
653
654         * gst/typefind/gsttypefindfunctions.c:
655         (utf8_type_find_have_valid_utf8_at_offset):
656           Remove part from previous commit that was bogus:
657           g_utf8_validate() does in fact not accept embedded
658           zeroes, so we don't need to check for those (thanks
659           to Mike for the hint).
660
661 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
662
663         * gst/typefind/gsttypefindfunctions.c:
664         (utf8_type_find_count_embedded_zeroes),
665         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
666           Make plain/text typefinder more conservative: firstly, check
667           for embedded zeroes, which are perfectly valid UTF-8 characters,
668           but also a fairly good sign that something is not a plain text
669           file; secondly, probe into the middle of the file if possible.
670           If we can't probe into the middle, limit the probability value
671           to be returned to TYPE_FIND_POSSIBLE (see #333900).
672
673 2006-03-08  Michael Smith  <msmith@fluendo.com>
674
675         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
676           Make typefind function name for mpeg4 video unique.
677
678 2006-03-08  Wim Taymans  <wim@fluendo.com>
679
680         * ext/libvisual/visual.c: (gst_visual_init),
681         (gst_visual_clear_actors), (gst_visual_dispose),
682         (gst_visual_reset), (gst_visual_src_setcaps),
683         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
684         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
685         (gst_visual_chain), (gst_visual_change_state):
686         Cleanups, post nice errors.
687         Handle sink and src events.
688         Implement simple QoS.
689
690         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
691         Use new basesink methods to configure max-lateness.
692         Small doc update.
693
694         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
695         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
696         Debug statement cleanups.
697
698         * gst/volume/gstvolume.c: (gst_volume_class_init):
699         Simple cleanup.
700
701 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
702
703         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
704         (gst_text_overlay_init), (gst_text_overlay_set_property),
705         (gst_text_overlay_get_property):
706           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
707           as string type properties, but mark them deprecated. Add
708           'halignment' and 'valignment' properties that use enums
709           instead of strings.
710
711 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
712
713         Patch by: Fabrizio Gennari
714
715         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
716           Allow palettes with less than 256 colours in AVI files
717           (#333488)
718
719 2006-03-07  Julien MOUTTE  <julien@moutte.net>
720
721         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
722         (gst_text_overlay_video_event): Fix wrong EOS handling on text
723         pad. We were releasing the queued text buffer when we should keep
724         it until video pad gets EOS or discard the text buffer because it's
725         too old. That was eating the last subtitle buffer. Add some more
726         debug.
727
728 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
729
730         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
731         (gst_text_overlay_video_chain):
732           Fix invalid memory access (we can't access a buffer after it's been
733           pushed downstream without taking a reference); fix memory leak (if
734           there's no text to render, bail out before allocating stuff).
735
736 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
737
738         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
739         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
740         * ext/pango/gsttextoverlay.h:
741           If input is plain text, escape it before passing it to
742           pango_layout_set_markup().
743
744 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
745
746         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
747           Don't ignore flow return from gst_pad_push().
748
749 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
750
751         Patch by: Fabrizio Gennari
752
753         * ext/libvisual/visual.c: (gst_visual_getcaps),
754         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
755         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
756         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
757         (gst_vorbisenc_convert_sink):
758         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
759         (gst_audio_duration_from_pad_buffer):
760         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
761         (gst_audio_filter_chain):
762         * gst-libs/gst/rtp/gstbasertpdepayload.c:
763         (gst_base_rtp_depayload_setcaps):
764         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
765         (gst_video_get_size):
766         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
767           Don't leak references returned by gst_pad_get_parent()
768           (#333663)
769
770 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
771
772         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
773           change location param details
774         * gst/volume/gstvolume.c: (plugin_init):
775           correct plugin description
776
777 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
778
779         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
780         (gst_gnome_vfs_src_check_get_range):
781           Override GstBaseSrc::check_get_range() in order to avoid opening
782           the resource just to check whether we can operate in pull-mode or
783           not - we can predict that pretty well from the URI alone. Should
784           fix problems with last.fm (#331690). (Requires latest core CVS).
785
786 2006-03-06  Wim Taymans  <wim@fluendo.com>
787
788         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
789         (gst_video_sink_class_init):
790         Throw away frames that are later than 20 ms.
791
792 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
793
794         Patch by: Fabrizio Gennari
795
796         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
797           Set depth on WMA caps (#333545)
798
799 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
800
801         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
802         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
803           put Theora BOS pages before others.  This hardcodes
804           the Ogg/Theora I profile, but hey.
805
806 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
807
808         * ext/ogg/README:
809           updated with some examples
810         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
811         (granulepos_add), (theora_buffer_from_packet):
812         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
813         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
814         (gst_vorbisenc_chain):
815           implement strategy from ext/ogg/README
816         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
817         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
818         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
819         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
820           Fix muxer so that oggz-validate is happy with all streams;
821           except for no eos mark, and the BOS page ordering
822         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
823         (check_buffer_granulepos):
824         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
825           update tests to check for OFFSET being set as requested
826           fixed type of granulepos, it's not a ClockTime
827
828 2006-03-05  Julien MOUTTE  <julien@moutte.net>
829
830         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
831         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
832         Check that the xvimage we are creating has a correct size
833         before returning it. (#314897)
834
835 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
836
837         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
838           Give id3 and ape tag typefinders a rank slightly higher
839           than PRIMARY to ensure they're always run before any of
840           the other typefinders (in particular wav and mp3) (#324186).
841
842 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
843
844         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
845           Add support for '3IVD' fourcc (#333403).
846
847 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
848
849         * configure.ac:
850           Bump requirements to GStreamer CVS for the new error enum.
851
852         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
853           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
854           space left on the device (fixes #333352).
855
856 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
857
858         * win32/vs6:
859           add a project file for libgstvolume
860           update the workspace
861
862 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
863
864         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
865         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
866         (GST_START_TEST):
867           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
868           Set IN_CAPS on header buffers
869
870 2006-03-02  Wim Taymans  <wim@fluendo.com>
871
872         * docs/plugins/Makefile.am:
873         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
874         * docs/plugins/gst-plugins-base-plugins-sections.txt:
875         Add audioresample to docs.
876
877         * gst/audioconvert/gstaudioconvert.c:
878         Add revision date.
879
880         * gst/audioresample/gstaudioresample.c:
881         (gst_audioresample_base_init), (gst_audioresample_class_init),
882         (gst_audioresample_init), (gst_audioresample_dispose),
883         (audioresample_get_unit_size), (audioresample_transform_caps),
884         (resample_set_state_from_caps), (audioresample_transform_size),
885         (audioresample_set_caps), (audioresample_event),
886         (audioresample_do_output), (audioresample_transform),
887         (audioresample_pushthrough), (gst_audioresample_set_property),
888         (gst_audioresample_get_property), (plugin_init):
889         * gst/audioresample/gstaudioresample.h:
890         Added docs.
891         Small code cleanups.
892
893 2006-03-02  Wim Taymans  <wim@fluendo.com>
894
895         * docs/plugins/Makefile.am:
896         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
897         * docs/plugins/gst-plugins-base-plugins-sections.txt:
898         Added videoscale to docs.
899
900         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
901         (gst_video_rate_swap_prev), (gst_video_rate_event),
902         (gst_video_rate_chain):
903         Fix typo in docs.
904
905         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
906         (gst_video_scale_init), (gst_video_scale_prepare_size),
907         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
908         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
909         * gst/videoscale/gstvideoscale.h:
910         Added docs, examples.
911         Some code cleanups.
912         Post errors instead of g_warning.
913
914 2006-03-02  Wim Taymans  <wim@fluendo.com>
915
916         * docs/libs/gst-plugins-base-libs-docs.sgml:
917         * docs/libs/gst-plugins-base-libs-sections.txt:
918         * docs/libs/gst-plugins-base-libs.types:
919         * docs/plugins/Makefile.am:
920         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
921         * docs/plugins/gst-plugins-base-plugins-sections.txt:
922         Added some more docs to libs and plugins.
923
924         * gst-libs/gst/audio/gstringbuffer.c:
925         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
926         * gst-libs/gst/audio/gstringbuffer.h:
927         Document ringbuffer some more.
928
929         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
930         (gst_video_rate_setcaps), (gst_video_rate_reset),
931         (gst_video_rate_init), (gst_video_rate_flush_prev),
932         (gst_video_rate_swap_prev), (gst_video_rate_event),
933         (gst_video_rate_chain), (gst_video_rate_change_state):
934         * gst/videorate/gstvideorate.h:
935         Fix videorate to use segments.
936         Make it work with 0/1 framerates (closes #331903)
937         Handle EOS correctly.
938         Added docs.
939
940 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
941
942         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
943         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
944         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
945           In state change function, first chain up to parent class,
946           then handle downwards state change stuff. Remove some
947           commented out cruft from 0.8 code.
948
949 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
950
951         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
952         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
953         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
954         (gst_ogm_parse_chain):
955           Don't remove/re-add source pad if the new caps are the same as
956           the old caps anyway (#333042). When removing source pad, don't
957           unref it afterwards - we didn't ref it when adding. Sprinkle some
958           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
959           after using gst_pad_get_parent(). Return downstream flow return
960           value in chain function.
961
962 2006-03-02  Wim Taymans  <wim@fluendo.com>
963
964         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
965         * docs/plugins/gst-plugins-base-plugins.args:
966         * docs/plugins/gst-plugins-base-plugins.hierarchy:
967         * docs/plugins/gst-plugins-base-plugins.interfaces:
968         * docs/plugins/gst-plugins-base-plugins.signals:
969         Fix hierarchy, added some more elements to the docs.
970
971         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
972         (gst_ffmpegcsp_get_type):
973         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
974         Fix docs for ffmpegcolorspace.
975
976 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
977
978         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
979         (apetag_type_find), (ape_type_find), (plugin_init):
980           Some typefinding fine-tuning:
981           - rank ID3/APE tags in order of preference via probabilities, so that
982             ID3v2 > APEv2 > APEv1 > ID3v1.
983           - three or four bytes don't really justify MAXIMUM probability,
984             change those to 'very likely' (musepack and monkeysaudio).
985
986 2006-03-01  Wim Taymans  <wim@fluendo.com>
987
988         * docs/plugins/Makefile.am:
989         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
990         * docs/plugins/gst-plugins-base-plugins-sections.txt:
991         * ext/alsa/gstalsamixer.c:
992         * ext/alsa/gstalsamixer.h:
993         * ext/alsa/gstalsamixerelement.c:
994         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
995         * ext/alsa/gstalsamixerelement.h:
996         * ext/alsa/gstalsasink.c:
997         * ext/alsa/gstalsasink.h:
998         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
999         (gst_alsasrc_init):
1000         * ext/alsa/gstalsasrc.h:
1001         Added alsa docs.
1002         Small code cleanups.
1003
1004 2006-03-01  Wim Taymans  <wim@fluendo.com>
1005
1006         * ext/theora/Makefile.am:
1007         Dist new header too,
1008
1009 2006-03-01  Wim Taymans  <wim@fluendo.com>
1010
1011         * docs/plugins/Makefile.am:
1012         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1013         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1014         * ext/gnomevfs/gstgnomevfssink.h:
1015         * ext/gnomevfs/gstgnomevfssrc.h:
1016         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1017         * ext/vorbis/vorbisdec.h:
1018         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
1019         * ext/vorbis/vorbisenc.h:
1020         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
1021         (vorbis_parse_chain), (vorbis_parse_change_state):
1022         * ext/vorbis/vorbisparse.h:
1023         * gst/audioconvert/gstaudioconvert.h:
1024         * gst/tcp/gsttcpserversink.h:
1025         * gst/videotestsrc/gstvideotestsrc.c:
1026         * gst/videotestsrc/gstvideotestsrc.h:
1027         * gst/volume/gstvolume.c:
1028         * gst/volume/gstvolume.h:
1029         Fix some more docs.
1030         Added docs for vorbisdec and vorbisparse.
1031         Fix vorbisparse.
1032
1033 2006-03-01  Wim Taymans  <wim@fluendo.com>
1034
1035         * docs/plugins/Makefile.am:
1036         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1037         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1038         * ext/pango/gstclockoverlay.h:
1039         * ext/pango/gsttextoverlay.h:
1040         * ext/pango/gsttextrender.h:
1041         * ext/pango/gsttimeoverlay.h:
1042         * ext/theora/gsttheoradec.h:
1043         * ext/theora/gsttheoraenc.h:
1044         * ext/theora/theoradec.c:
1045         * ext/theora/theoraenc.c:
1046         * gst/audioconvert/gstaudioconvert.h:
1047         * gst/audiotestsrc/gstaudiotestsrc.h:
1048         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
1049         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
1050         * gst/tcp/gstmultifdsink.h:
1051         Updated/added documentation.
1052
1053         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
1054         (gst_text_overlay_halign_get_type),
1055         (gst_text_overlay_wrap_mode_get_type),
1056         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
1057         (gst_text_overlay_init), (gst_text_overlay_set_property),
1058         (gst_text_overlay_get_property):
1059         Fix up properties to be enums instead of string to make bindings,
1060         introspection and automatic GUI creation possible.
1061         Add getters for the properties.
1062
1063 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
1064
1065         * gst/audiotestsrc/gstaudiotestsrc.c:
1066           added defines of M_PI and M_PI_2
1067         * gst/ffmpegcolorspace/avcodec.h:
1068           removed #include "stdint.h" for win32 as _stdint.h is 
1069           autogenerated to win32/common
1070         * win32/common/libgstaudio.def:
1071         * win32/common/libgsttag.def:
1072           added some exports
1073         * win32/vs6:
1074           some project files bugs corrected
1075         * win32/vs7:
1076           project files are reset to the default vs7 configuration 
1077           (they link to msvcr71.dll using default optimizations)
1078           
1079 2006-02-28  Wim Taymans  <wim@fluendo.com>
1080
1081         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
1082         Fix some docs.
1083
1084 2006-02-28  Edward Hervey  <edward@fluendo.com>
1085
1086         * ext/alsa/gstalsasrc.c:
1087         Set proper class on the ElementDetails:
1088         Source/Audio instead of Src/Audio/
1089
1090 2006-02-28  Edward Hervey  <edward@fluendo.com>
1091
1092         * gst/videoscale/vs_scanline.c:
1093         (vs_scanline_resample_nearest_RGBA):
1094         Revert optimization in videoscale. It should go in liboil and have
1095         an appropriate liboil function.
1096
1097 2006-02-28  Wim Taymans  <wim@fluendo.com>
1098
1099         * gst-libs/gst/audio/gstbaseaudiosink.c:
1100         (gst_base_audio_sink_provide_clock):
1101         Don't try to provide a clock in the NULL state.
1102
1103 2006-02-28  Wim Taymans  <wim@fluendo.com>
1104
1105         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
1106         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
1107         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
1108         (gst_ogg_demux_deactivate_current_chain),
1109         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
1110         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
1111         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
1112         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
1113         Use GstSegment infrastructure to remove duplicated code
1114         and handle more seek cases correctly.
1115
1116 2006-02-28  Wim Taymans  <wim@fluendo.com>
1117
1118         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1119         (gst_ffmpegcsp_transform):
1120         Don't ignore return code from ffmpeg convert function.
1121
1122         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
1123         Split out some long statements to ease debugging.
1124
1125 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
1126
1127         * ext/libvisual/visual.c: (gst_visual_init),
1128         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
1129         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
1130         being able to renegotiate the size. Instead, use the negotiation
1131         algorithm from the goom plugin to pick an initial output caps. 
1132
1133         Also, allow theoretical libvisual plugins that might support non-GL 
1134         output even if they also do GL.
1135
1136 2006-02-26  Julien MOUTTE  <julien@moutte.net>
1137
1138         * ext/libvisual/visual.c: (gst_visual_init),
1139         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
1140         (plugin_init): Load only non GL plugins. Fix some memleaks and 
1141         possible negotiation issues.
1142
1143 2006-02-25  Julien MOUTTE  <julien@moutte.net>
1144
1145         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
1146
1147 2006-02-24  Michael Smith  <msmith@fluendo.com>
1148
1149         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
1150         (cmml_type_find), (plugin_init):
1151           Fix CMML type find function to not require a specific minor version
1152           of the CMML header.
1153
1154           Add an MPEG4 video elementary stream typefind function.
1155
1156 2006-02-04  Michael Smith  <msmith@fluendo.com>
1157
1158         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
1159         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
1160         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
1161         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
1162         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
1163         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
1164           Annodex support in ogg demuxer. Doesn't do very much without the
1165           other annodex patches (to come).
1166
1167 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
1168
1169         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
1170
1171         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1172           Pick up palette for MS video v1 (#327028)
1173
1174 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
1175
1176         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1177         (gst_ffmpegcsp_caps_remove_format_info),
1178         (gst_ffmpegcsp_get_unit_size):
1179           The 'palette_data' field from incoming RGB caps shouldn't be
1180           proxied on outgoing YUV caps; also, restrict unit size
1181           adjustment in case of paletted data only to the unit that
1182           actually has a palette. Fixes #330711.
1183
1184 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
1185
1186         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1187         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
1188         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
1189         (gst_ffmpegcsp_get_unit_size):
1190           Plug some memory leaks.
1191
1192 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
1193
1194         * sys/ximage/Makefile.am:
1195         * sys/xvimage/Makefile.am:
1196           Add some _CFLAGS and _LIBS that seem to be missing
1197           and/or required for Cygwin (see #317048).
1198
1199 2006-02-22  Wim Taymans  <wim@fluendo.com>
1200
1201         * ext/alsa/gstalsasrc.c:
1202         Fix description as pointed out by caugier.
1203
1204 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
1205
1206         Reviewed by : Edward Hervey  <edward@fluendo.com>
1207
1208         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
1209         (qt_type_find):
1210         Better 3gp typefinding (#331526).
1211
1212 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
1213
1214         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
1215           Don't send EOS event here, the base class will send one for us.
1216
1217         * gst/playback/gstplaybasebin.c: (prepare_output):
1218           Subpictures without video stream aren't allowed either.
1219         
1220         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
1221           Fix debug statement copy'n'paste-o.
1222
1223 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
1224
1225         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
1226           Fix issues with mixer keeping state when muting/unmuting
1227           and when changing the volume whilst muted (see #331763
1228           and #331765).
1229
1230 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
1231
1232         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
1233         (parse_subrip), (gst_sub_parse_format_autodetect):
1234           Set right caps given that we send escaped text. Also,
1235           honour <i></i>, <b></b> and <u></u> markers that can be found
1236           in .srt files (fixes #310202).
1237
1238 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
1239
1240         * gst-libs/gst/audio/mixerutils.c:
1241         (element_factory_rank_compare_func):
1242           Make order in which elements are tried more determinable.
1243
1244 2006-02-20  Julien MOUTTE  <julien@moutte.net>
1245
1246         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
1247         (remove_element_chain), (cleanup_decodebin),
1248         (gst_decode_bin_change_state): Make decodebin reusable by
1249         fixing remove_element_chain first and then introduce a
1250         cleaner in state change to ->NULL. (Closes #331678)
1251
1252 2006-02-19  Wim Taymans  <wim@fluendo.com>
1253
1254         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
1255         use 0666 mask when creating files so umask gets applied
1256         correctly. Fixes #331295.
1257
1258 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1259
1260         * gst/subparse/Makefile.am:
1261         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
1262         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
1263         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
1264         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
1265         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
1266         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
1267         * gst/subparse/gstssaparse.h:
1268         * gst/subparse/gstsubparse.c: (plugin_init):
1269           Add very basic parser for SSA subtitle streams (as often
1270           found in matroska files).
1271
1272 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
1273
1274         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
1275           That should be text/x-pango-markup, not text/x-pango-layout.
1276
1277 2006-02-19  Julien MOUTTE  <julien@moutte.net>
1278
1279         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
1280         Polishing.
1281
1282 2006-02-19  Julien MOUTTE  <julien@moutte.net>
1283
1284         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
1285         (gst_text_overlay_finalize), (gst_text_overlay_init),
1286         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
1287         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
1288         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
1289         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
1290         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
1291         Fix state change deadlock.
1292
1293 2006-02-19  Julien MOUTTE  <julien@moutte.net>
1294
1295         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
1296         (gst_text_overlay_finalize), (gst_text_overlay_init),
1297         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
1298         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
1299         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
1300         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
1301         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
1302         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
1303         and subtitles files.
1304
1305 2006-02-19  Julien MOUTTE  <julien@moutte.net>
1306
1307         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
1308         should be considered as raw.
1309
1310 2006-02-19  Julien MOUTTE  <julien@moutte.net>
1311
1312         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
1313         (cb_probe):
1314         * gst/playback/gststreaminfo.h: Introduce language informations.
1315
1316 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
1317
1318         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1319         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
1320         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1321         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
1322         Set shared memory segments to be deleted as soon as we have attached,
1323         that way they get cleaned up automatically if we crash.
1324
1325 2006-02-18  Julien MOUTTE  <julien@moutte.net>
1326
1327         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
1328         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
1329         functions are called with lock held.
1330
1331 2006-02-18  Julien MOUTTE  <julien@moutte.net>
1332
1333         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
1334         (gst_text_overlay_finalize), (gst_text_overlay_init),
1335         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
1336         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
1337         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
1338         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
1339         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
1340         (gst_text_overlay_change_state): Refactoring of textoverlay
1341         without collectpads. This now supports sparse subtitles coming
1342         from a demuxer instead of a sub file. Seeking is still broken 
1343         though. Need to discuss with wtay some more on how to handle
1344         seeking correctly.
1345         * ext/pango/gsttextoverlay.h:
1346         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
1347         subtitles coming from the demuxer.
1348
1349 2006-02-17  Wim Taymans  <wim@fluendo.com>
1350
1351         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
1352         (gst_vorbisenc_convert_sink):
1353         Use some more scaling functions.
1354
1355 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
1356
1357         * ext/cdparanoia/gstcdparanoiasrc.c:
1358         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
1359         (gst_cd_paranoia_paranoia_callback),
1360         (gst_cd_paranoia_src_signal_is_being_watched),
1361         (gst_cd_paranoia_src_read_sector):
1362         * ext/cdparanoia/gstcdparanoiasrc.h:
1363           Add back 'transport-error' and 'uncorrected-error' signals and
1364           make them actually be fired when bad stuff happens (#319340).
1365
1366 2006-02-17  Wim Taymans  <wim@fluendo.com>
1367
1368         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
1369         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
1370         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
1371         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
1372         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
1373         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
1374         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
1375         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
1376         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
1377         (gst_ring_buffer_clear):
1378         Small cleanups.
1379         Added some G_LIKELY.
1380
1381 2006-02-17  Wim Taymans  <wim@fluendo.com>
1382
1383         * gst-libs/gst/audio/TODO:
1384         Update TODO
1385
1386         * gst-libs/gst/audio/gstbaseaudiosink.c:
1387         (gst_base_audio_sink_get_offset):
1388         When trying to play samples ASAP and we don't have a
1389         previous sample, try to play at position 0 instead of
1390         an invalid position.
1391
1392 2006-02-17  Wim Taymans  <wim@fluendo.com>
1393
1394         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
1395         (gst_alsasink_reset):
1396         Also release lock when we get an error in _reset();
1397         fix an error message.
1398
1399 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
1400
1401         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
1402         (gst_alsasink_init), (get_channel_free_structure),
1403         (caps_add_channel_configuration), (gst_alsasink_getcaps),
1404         (gst_alsasink_close):
1405         * ext/alsa/gstalsasink.h:
1406           Add support for more than 2 channels (#326720).
1407
1408 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
1409
1410         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
1411           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
1412           with 4 or 6 channels, assume a default channel layout to make things
1413           work (not sure there's anything else we can do in those cases).
1414
1415 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
1416
1417         * gst-libs/gst/audio/multichannel.c:
1418           Minor docs fix.
1419
1420         * gst-libs/gst/riff/Makefile.am:
1421         * gst-libs/gst/riff/riff-ids.h:
1422         * gst-libs/gst/riff/riff-media.c:
1423         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
1424           Add support for WAVEFORMATEX, eg. PCM audio with more than two
1425           channels and a channel layout map.
1426           
1427 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
1428
1429         Reviewed by Edward Hervey  <edward@fluendo.com>
1430
1431         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
1432         C-level optimization of the RGBA nearest neighbour function.
1433         Eventually this might end up in liboil with vectorized versions.
1434
1435 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
1436
1437         * gst-libs/gst/audio/multichannel.c:
1438         (gst_audio_get_channel_positions):
1439           When we have more than 2 channels, but no channel layout is
1440           specified in the caps, return some default channel layout
1441           to the caller and warn about about a possibly buggy element
1442           (could be buggy filtercaps as well of course) (#317038).
1443
1444 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
1445
1446         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1447           Add gst-libs/gst/cdda to list of lib search paths.
1448
1449 2006-02-15  Andy Wingo  <wingo@pobox.com>
1450
1451         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
1452         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
1453         to the Lord Jesus that I do not have to touch the ogg muxer ever
1454         again.
1455
1456 2006-02-15  Edward Hervey  <edward@fluendo.com>
1457
1458         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
1459         quicktime movie files can also contain 'uuid' atoms.
1460
1461 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
1462
1463         * gst/audioconvert/plugin.c: (plugin_init):
1464           Register the GstAudioChannelPosition enum type with the type
1465           system in the plugin_init function, so that it is known before
1466           any element actually makes use of multi-channel stuff. This is
1467           required for example if one wants to be able to deserialise/use
1468           a caps string with channel positions before any pipeline has
1469           been setup and started, like with gst-launch.
1470
1471 2006-02-14  Wim Taymans  <wim@fluendo.com>
1472
1473         * gst-libs/gst/audio/gstringbuffer.c:
1474         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
1475         (gst_ring_buffer_samples_done), (wait_segment),
1476         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
1477         Add some compiler G_(UN_)LIKELY help.
1478         SIGNAL the ringbuffer waiters when going to PAUSED as well to
1479         make sure they can exit their functions. Should fix #330748
1480
1481 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1482
1483         * Makefile.am:
1484         * configure.ac:
1485         * win32/MANIFEST:
1486         * win32/common/_stdint.h:
1487           Windows does not have long long; copy the generated _stdint.h
1488         * win32/common/interfaces-enumtypes.c:
1489         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
1490         (gst_mixer_track_flags_get_type),
1491         (gst_tuner_channel_flags_get_type):
1492         * win32/common/multichannel-enumtypes.c:
1493         (gst_audio_channel_position_get_type):
1494           update
1495
1496 2006-02-13  Wim Taymans  <wim@fluendo.com>
1497
1498         * gst-libs/gst/audio/gstbaseaudiosink.c:
1499         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
1500         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1501         Always sync on first sample we receive when starting.
1502
1503 2006-02-13  Wim Taymans  <wim@fluendo.com>
1504
1505         * gst/playback/gstplaybin.c: (gen_vis_element):
1506         Update vis bin docs.
1507         Move queue after tee so we don't queue video buffers but
1508         audio samples instead. Fixes problems where the video queue
1509         is filled and the audio queue empty.
1510
1511 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
1512
1513         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1514           No need to push an EOS event here, GstBaseSrc will do that for us
1515           when we return FLOW_UNEXPECTED.
1516           
1517 2006-02-12  Wim Taymans  <wim@fluendo.com>
1518
1519         * gst-libs/gst/audio/gstbaseaudiosink.c:
1520         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
1521         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
1522         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1523         Use scale functions when possible.
1524         Fix error messages.
1525         Free clockid when after waiting for EOS.
1526         Use G_(UN_)LIKLY when it makes sense.
1527         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
1528
1529 2006-02-12  Edward Hervey  <edward@fluendo.com>
1530
1531         * gst/playback/gstplaybasebin.c: (prepare_output): 
1532         Remove stray semi-colon (fixes #330888).
1533
1534 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
1535
1536         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
1537         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
1538         Fix up the XShm call testing so that we catch errors, and don't
1539         cause new ones by attempting to detach from a segment we failed
1540         to attach to. Fixes #312439.
1541
1542 2006-02-10  Edward Hervey  <edward@fluendo.com>
1543
1544         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1545         Added flv file typefind (video/x-flv).
1546
1547 2006-02-10  Edward Hervey  <edward@fluendo.com>
1548
1549         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1550         (gst_riff_create_video_template_caps):
1551         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
1552         Also added the caps to the default set of riff video caps.
1553
1554 2006-02-09  Andy Wingo  <wingo@pobox.com>
1555
1556         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
1557         time and the end time of the last packet in the page.
1558         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
1559         on the pages in our queue, set the duration as well. Reflow a
1560         debug statement.
1561         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
1562         Fixes bad muxing order.
1563
1564 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
1565
1566         * gst-libs/gst/rtp/gstbasertppayload.c:
1567         (gst_basertppayload_setcaps), (gst_basertppayload_push):
1568           update seqnum before setting it on the packet; this makes sure
1569           that the timestamp and seqnum properties match after pushing
1570           a buffer
1571
1572 2006-02-09  Andy Wingo  <wingo@pobox.com>
1573
1574         * gst-libs/gst/audio/gstringbuffer.c
1575         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
1576         overflow after 13.5 hours of recording. Kapow!
1577
1578         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
1579         the buffer size -- we don't care about underrun/overrun reporting
1580         right now, just need to return a useful value.
1581
1582 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
1583
1584         * configure.ac:
1585           Back to CVS
1586
1587 === release 0.10.3 ===
1588
1589 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
1590
1591         * configure.ac:
1592           releasing 0.10.3, "Under Pressure"
1593
1594 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
1595
1596         * configure.ac:
1597         Drat. Bump libtool version number for new API.
1598         Prelease 0.10.2.3 (of 0.10.3)
1599
1600 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
1601
1602         * configure.ac:
1603         * win32/common/config.h:
1604         0.10.2.2 prerelease (of 0.10.3).
1605
1606 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
1607
1608         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
1609           Revert Andy's newsegment change pending a more correct
1610           fix.
1611
1612 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
1613
1614         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
1615         (qt_type_find), (plugin_init):
1616           detect more files as 3gp
1617           group and reorder the iso file formats
1618
1619 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1620
1621         * ext/vorbis/vorbis.c: (plugin_init):
1622           Register musicbrainz tags, so apps don't have to.
1623
1624 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1625
1626         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
1627         (gst_tag_to_vorbis_tag):
1628           Make sure we called gst_tag_register_musicbrainz_tags()
1629           before possibly mapping a vorbiscomment string from/to a
1630           musicbrainz tag.
1631
1632 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1633
1634         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
1635           In case we can't find the required number of consecutive
1636           mpeg audio frames to positively identify an MPEG audio
1637           stream, check if there's at least a valid mpeg audio
1638           frame right at offset 0 and if so suggest mpeg/audio
1639           caps with a very low probability (#153004).
1640
1641 2006-02-07  Andy Wingo  <wingo@pobox.com>
1642
1643         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
1644         a TIME segment if we get timestamped buffers. Requires recent
1645         fixes in core to work properly.
1646
1647 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1648
1649         * gst/playback/gstplaybasebin.c: (prepare_output):
1650           Don't print the URI as part of the error message, it
1651           makes error dialogs look rather ugly, especially if
1652           the URI is very long or has characters in it that
1653           need escaping.
1654
1655 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1656
1657         * gst/playback/gstplaybasebin.c: (prepare_output):
1658           Error out if we have only text or subtitles, but nothing
1659           else. Also error out if we have subtitles but no video
1660           stream.
1661
1662 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
1663
1664         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
1665           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
1666           Post an error message on the bus when we encounter an
1667           error, which will hopefully be more meaningful than the
1668           'Internal Flow Error' message users get to see if we
1669           just return GST_FLOW_ERROR.
1670
1671 2006-02-07  Andy Wingo  <wingo@pobox.com>
1672
1673         * configure.ac (GST_MAJORMINOR): Update core version req to
1674         0.10.2.2, for the collectpads API addition (#330244).
1675
1676 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
1677
1678         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1679           Return FALSE from plugin_init() when GnomeVFS can't
1680           be initialised for some reason (#328423).
1681
1682 2006-02-06  Julien MOUTTE  <julien@moutte.net>
1683
1684         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
1685         Stick to seeking theory until i find the bug.
1686         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
1687
1688 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
1689
1690         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1691         (theora_enc_finalize), (theora_enc_sink_setcaps),
1692         (theora_set_header_on_caps), (theora_enc_chain),
1693         (theora_enc_change_state):
1694         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
1695           Make theoraenc and the tests leak free. Like, really.
1696
1697 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
1698
1699         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1700         (theora_enc_finalize), (theora_enc_sink_setcaps):
1701           Add a finalize method to ensure we clean up state even if
1702           someone omitted the state change back to NULL.
1703
1704         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
1705         (gst_vorbisenc_chain):
1706           Free some more leaked bits.
1707
1708         * tests/check/pipelines/theoraenc.c: (start_pipeline),
1709         (stop_pipeline):
1710           Wait for state changes to happen if they're ASYNC.
1711
1712           This ought to teach those fancy pants buildbots a lesson.
1713
1714 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
1715
1716         * gst-libs/gst/tag/gstid3tag.c:
1717           Add mapping for ID3 International Standard Recording Code
1718           tag "TSRC"
1719
1720 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
1721
1722         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
1723           Don't leak tag names.
1724
1725 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1726
1727         * docs/libs/gst-plugins-base-libs-docs.sgml:
1728         * docs/libs/gst-plugins-base-libs-sections.txt:
1729         * gst-libs/gst/tag/gstid3tag.c:
1730         * gst-libs/gst/tag/gstvorbistag.c:
1731         * gst-libs/gst/tag/tags.c:
1732           Split libgsttag docs into multiple sections.
1733
1734 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1735
1736         * docs/libs/Makefile.am:
1737         * docs/libs/gst-plugins-base-libs-docs.sgml:
1738         * docs/libs/gst-plugins-base-libs-sections.txt:
1739         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
1740         * gst-libs/gst/tag/gstvorbistag.c:
1741         * gst-libs/gst/tag/tag.h:
1742         * gst-libs/gst/tag/tags.c:
1743           Add libgsttag to the docs.
1744
1745 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1746
1747         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
1748         (gst_text_overlay_init), (gst_text_overlay_src_event),
1749         (gst_text_overlay_collected): Fix clockoverlay.
1750
1751 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1752
1753         * docs/libs/compiling.sgml:
1754           Fix typo: it's pkg-config, not pkg-gconfig
1755
1756         * docs/libs/gst-plugins-base-libs-docs.sgml:
1757         * docs/libs/gst-plugins-base-libs-sections.txt:
1758         * docs/libs/tmpl/gstgconf.sgml:
1759           There is no libgstgconf in 0.10, remove it
1760           from the docs.
1761
1762 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1763
1764         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
1765         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1766         (gst_text_overlay_src_event), (gst_text_overlay_collected):
1767         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1768         (gst_sub_parse_class_init), (gst_sub_parse_init),
1769         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
1770         (parse_mpsub), (parser_state_init), (handle_buffer),
1771         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
1772         * gst/subparse/gstsubparse.h: Introduce seeking code.
1773
1774 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1775
1776         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1777           Add comment about LANGUAGE tag inconsistency (we want
1778           ISO-639-1, but extract three-letter identifiers?)
1779
1780         * po/POTFILES.in:
1781           Add two translatable files.
1782
1783 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
1784
1785         * gst-libs/gst/tag/Makefile.am:
1786         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1787         * gst-libs/gst/tag/tag.h:
1788         * gst-libs/gst/tag/tags.c:
1789         (gst_tag_register_musicbrainz_tags_internal),
1790         (gst_tag_register_musicbrainz_tags):
1791           Forward-port some tags stuff from the 0.8 branch. This is
1792           mostly the addition of musicbrainz tags and their mapping
1793           to vorbistags, and a vorbistag mapping of the language tag.
1794
1795 2006-02-05  Julien MOUTTE  <julien@moutte.net>
1796
1797         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
1798         refactoring.
1799
1800 2006-02-04  David Schleef  <ds@schleef.org>
1801
1802         * ext/ogg/gstoggmux.c:
1803         * gst/typefind/gsttypefindfunctions.c:
1804           Add Dirac typefinding and add dirac format to oggmux.
1805
1806 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
1807
1808         * gst/playback/gstdecodebin.c: (try_to_link_1):
1809           Don't put essential function call into
1810           g_return_*() macro, otherwise it'll all be
1811           replaced by NOOPs when compiling with
1812           G_DISABLE_CHECKS defined.
1813
1814 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
1815
1816         * ext/ogg/gstoggdemux.c:
1817         * ext/ogg/gstoggparse.c:
1818         * gst/tcp/gsttcpserversink.c:
1819         * sys/v4l/v4lsrc_calls.c:
1820         * sys/v4l/v4lsrc_calls.h:
1821         Just make it compile with --disable-gst-debug.
1822
1823 2006-02-03  Wim Taymans  <wim@fluendo.com>
1824
1825         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
1826         (gst_alsasink_class_init), (gst_alsasink_init),
1827         (gst_alsasink_write), (gst_alsasink_reset):
1828         * ext/alsa/gstalsasink.h:
1829         Add lock to protect alsa calls.
1830         Implement reset to flush samples ASAP, does not work
1831         with dmix though.
1832
1833 2006-02-02  Wim Taymans  <wim@fluendo.com>
1834
1835         * gst-libs/gst/audio/gstbaseaudiosink.c:
1836         (gst_base_audio_sink_provide_clock):
1837         Ugh.. getting late I guess...
1838
1839 2006-02-02  Wim Taymans  <wim@fluendo.com>
1840
1841         * gst-libs/gst/audio/gstbaseaudiosink.c:
1842         (gst_base_audio_sink_provide_clock),
1843         (gst_base_audio_sink_set_property),
1844         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
1845         Don't try to provide a clock when we are not negotiated since
1846         we might not be able to make it run.
1847
1848 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
1849
1850         * gst/playback/gstdecodebin.c: (try_to_link_1):
1851           Unlinking two source pads is ... hard.
1852
1853 2006-02-02  Wim Taymans  <wim@fluendo.com>
1854
1855         * gst-libs/gst/audio/TODO:
1856         Updated.
1857
1858         * gst-libs/gst/audio/gstbaseaudiosink.c:
1859         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
1860         On EOS, wait till the last sample is played before posting EOS.
1861
1862 2006-02-01  Philippe Kalaf <burger at speedy dot org>
1863
1864         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1865           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
1866           setting queue_delay to zero. Also avoid thread being started if
1867           queue_delay is zero.
1868
1869 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1870
1871         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
1872           Make test work again by connecting fakesinks to each decoded pad,
1873           which makes the pipeline wait until each fakesink has a buffer
1874           queued before going to PAUSED state. At that point we know the
1875           decodebin pads are negotiated.
1876
1877 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1878
1879         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
1880         (gst_cdda_base_src_handle_event):
1881         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
1882           Pass unhandled queries to the parent class's query function.
1883
1884 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1885
1886         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
1887         (gst_ogg_pad_src_query):
1888         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
1889         * ext/theora/theoradec.c: (theora_dec_src_query),
1890         (theora_dec_sink_query):
1891         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
1892         (vorbis_dec_sink_query):
1893         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
1894         (gst_vorbisenc_sink_query):
1895         * gst/adder/gstadder.c: (gst_adder_query):
1896           Pass unhandled queries upstream instead of just
1897           dropping them (#326447). Also, fix supported
1898           query types list for some elements.
1899
1900 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
1901
1902         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
1903         (paris_type_find), (ilbc_type_find), (plugin_init):
1904           Fix typefinding for audio/x-au, audio/x-paris and
1905           audio/iLBC-sh. We cannot use the START_WITH macros
1906           here, because there can only be one typefind factory
1907           with the same name (caps), so the second one would
1908           replace the first one and the first one would never
1909           be called when doing typefinding (see #161712).
1910           
1911
1912 2006-01-31  Wim Taymans  <wim@fluendo.com>
1913
1914         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
1915         (vorbis_handle_header_packet), (vorbis_dec_push),
1916         (vorbis_handle_data_packet):
1917         Use scale_int when we can, add some more scaling.
1918         Check packettype before parsing it.
1919
1920 2006-01-31  Wim Taymans  <wim@fluendo.com>
1921
1922         * ext/theora/theoradec.c: (_theora_granule_time),
1923         (theora_dec_src_convert), (theora_dec_sink_convert):
1924         Call right _scale functions.
1925         Use parameter instead of some other random value.
1926
1927 2006-01-31  Wim Taymans  <wim@fluendo.com>
1928
1929         * ext/theora/theoradec.c: (_theora_granule_frame),
1930         (_theora_granule_time), (_inc_granulepos),
1931         (theora_dec_src_convert), (theora_dec_sink_convert),
1932         (theora_handle_type_packet), (theora_handle_data_packet),
1933         (theora_dec_chain):
1934         Use higher precision timestamps calculation.
1935         Convert some other conversions to _scale.
1936
1937 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
1938
1939         * gst/audiotestsrc/gstaudiotestsrc.c:
1940         (gst_audio_test_src_create_sine_table), (plugin_init):
1941         * gst/volume/gstvolume.c: (plugin_init):
1942           initialize gst_controller before using
1943
1944 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
1945
1946         * tests/check/pipelines/theoraenc.c:
1947         * tests/check/pipelines/vorbisenc.c:
1948         Define constant using G_GINT64_CONSTANT to avoid errors when
1949         passing it around - otherwise it gets truncated to 32 bits.
1950
1951         Fixes failing tests.
1952
1953 2006-01-31  Andy Wingo  <wingo@pobox.com>
1954
1955         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
1956         caps being set doesn't have a framerate value. Basically a stopgap
1957         measure.
1958
1959         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
1960         technically correct enough to put into core though.
1961         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
1962         DURATION. Fixes theoraenc ! oggmux.
1963
1964         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
1965         fraction, not double.
1966
1967 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
1968
1969         * win32/vs7:
1970         add vs7 project files created by Sergey Scobich
1971
1972 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
1973
1974         * win32/vs8:
1975         add vs8 project files created by Sergey Scobich
1976         
1977 2006-01-30  Andy Wingo  <wingo@pobox.com>
1978
1979         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
1980         timestamp + duration, not just timestamp -- ogg pages should be
1981         ordered by stop time. Necessary fix given the change in vorbis
1982         timestamps.
1983
1984         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
1985         (gst_theora_enc_init): Pull the granule shift out of the encoder.
1986         (granulepos_add): New function, handles the messiness of adjusting
1987         granulepos values.
1988         (theora_buffer_from_packet):
1989         (theora_enc_chain):
1990         (theora_enc_sink_event): Use granulepos_add, not +.
1991
1992         * tests/check/pipelines/theoraenc.c
1993         (check_buffer_granulepos_from_starttime): Just check the frame
1994         count, not the actual granulepos -- we can't dictate to the
1995         encoder when it should be placing keyframes.
1996
1997 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1998
1999         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
2000           SERVICE_NOT_AVAILABLE happens for example when you're trying to
2001           play an http:// stream from a server that's not serving
2002
2003 2006-01-30  Andy Wingo  <wingo@pobox.com>
2004
2005         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
2006         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
2007         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
2008         available.
2009
2010         * ext/theora/gsttheoraenc.h:
2011         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
2012         although theoraenc was timestamping correctly. Added handling of
2013         streams that start with nonzero timestamps.
2014
2015         * tests/check/Makefile.am:
2016         * tests/check/pipelines/theoraenc.c: New file, basically does same
2017         tests as vorbisenc.
2018
2019         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
2020
2021 2006-01-30  Wim Taymans  <wim@fluendo.com>
2022
2023         * gst-libs/gst/audio/gstaudiosink.c:
2024         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
2025         (gst_audioringbuffer_pause):
2026         Implement pause that does not wait for completion.
2027
2028         * gst-libs/gst/audio/gstbaseaudiosink.c:
2029         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2030         Don't drop buffers when going to PAUSED but perform preroll on
2031         remaining samples now that core base class supports this.
2032
2033         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
2034         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
2035         (gst_ring_buffer_commit):
2036         Pause should not signal waiters.
2037         Implement return value of _commit correctly.
2038
2039 2006-01-30  Andy Wingo  <wingo@pobox.com>
2040
2041         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
2042
2043         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
2044         updated to timestamp from the first sample, not the last.
2045         (gst_vorbisenc_buffer_from_header_packet): New function, takes
2046         special care of granulepos and timestamp for header packets.
2047         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
2048         when the first buffer has a nonzero timestamp.
2049
2050         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
2051         (GstVorbisEnc.subgranule_offset): New members. Take care of the
2052         case when the first audio buffer we get has a nonzero timestamp.
2053         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
2054         properly timestamp vorbis buffers with the time of the first
2055         sample, not the last.
2056         
2057         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
2058         vorbis_granule_time_copy -- now it takes the granule/subgranule
2059         offset into account.
2060
2061         * tests/check/pipelines/vorbisenc.c: New test for correctness of
2062         timestamps, durations, and granulepos on buffers produced by
2063         vorbisenc.
2064
2065 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
2066
2067         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2068         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
2069           Patch from Eric Jonas to support conversions to/from UYVY 
2070           (Fixes: #324626)
2071
2072 2006-01-30  Julien MOUTTE  <julien@moutte.net>
2073
2074         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
2075         (setup_subtitle), (setup_source), (set_active_source):
2076         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
2077         (gen_text_element), (gen_audio_element), (gen_vis_element),
2078         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
2079
2080 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
2081
2082         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
2083         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
2084                 use gst_guint64_to_gdouble to be compliant with vs6
2085         * gst/playback/gstdecodebin.c: (try_to_link_1)
2086         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
2087                 use G_GINT64_CONSTANT for int64 constants
2088         * win32/common/libgstinterfaces.def:
2089                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
2090         * win32/vs6:
2091                 update and add new project files
2092                 
2093 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
2094
2095         * Makefile.am:
2096         * win32/MANIFEST:
2097         * win32/common/interfaces-enumtypes.c:
2098         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
2099         (gst_mixer_track_flags_get_type),
2100         (gst_tuner_channel_flags_get_type):
2101         * win32/common/interfaces-enumtypes.h:
2102         * win32/common/multichannel-enumtypes.c:
2103         (gst_audio_channel_position_get_type):
2104         * win32/common/multichannel-enumtypes.h:
2105           add a win32-update rule like in core, and copy over enumtypes files
2106
2107 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
2108
2109         * win32/MANIFEST:
2110         * win32/common/config.h:
2111         * win32/common/config.h.in:
2112           add config files just like in core
2113
2114 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
2115
2116         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
2117           Make gcc-4.1 happy (part of #327357).
2118
2119 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
2120
2121         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
2122         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
2123         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
2124         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
2125         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
2126         (gst_alsasrc_unprepare), (gst_alsasrc_read):
2127           Update all error messages.  All of them should either use
2128           the default translated message, or actually provide a
2129           translatable string.
2130           Make the string for channel count problems meaningful.
2131
2132 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
2133
2134         * sys/v4l/v4l_calls.c: (gst_v4l_open):
2135           check for and throw RESOURCE_BUSY
2136
2137 2006-01-27  David Schleef  <ds@schleef.org>
2138
2139         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
2140           checked in this change -- it requires liboil features not
2141           in 0.3.6.  Revert parts.
2142
2143 2006-01-27  David Schleef  <ds@schleef.org>
2144
2145         * REQUIREMENTS:
2146         * configure.ac: update liboil requirement to 0.3.6
2147         * gst/videoscale/Makefile.am:
2148         * gst/videoscale/vs_scanline.c: liboilify
2149
2150 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
2151
2152         * ext/libvisual/visual.c: (get_buffer):
2153           When pad_alloc returns a GstFlowReturn other
2154           than GST_FLOW_OK, make sure it is passed upstream.
2155
2156 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
2157
2158         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
2159         (gst_alsasink_class_init):
2160           Free the device name string.
2161
2162         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
2163         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
2164         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
2165           Don't remove a pad from the collectpads structure until it
2166           is released - it's a request pad, and may receive data again
2167           if the element gets moved back to PLAYING state.
2168
2169         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2170           Ensure we turn on double buffering on the Xv port, and
2171           set the colour key to something dark and mysterious that
2172           isn't black.
2173
2174 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
2175
2176         * ext/alsa/gstalsaplugin.c: (plugin_init):
2177         * ext/cdparanoia/gstcdparanoiasrc.c:
2178         (gst_cd_paranoia_src_base_init), (plugin_init):
2179         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
2180         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
2181           - a library should not call setlocale. see "Libraries" node in
2182             gettext manual
2183           - make sure all plugins that use translation do bindtextdomain
2184             to point to the localedir
2185         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
2186         (setup_sinks), (plugin_init):
2187           all this, and check for NULL when creating sinks
2188
2189 2006-01-27  Julien MOUTTE  <julien@moutte.net>
2190
2191         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
2192         (plugin_init): Make typefinding of subtitles work again.
2193
2194 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
2195
2196         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
2197         (mp3_type_frame_length_from_header), (mp3_type_find),
2198         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
2199         (plugin_init):
2200           Backport a bunch of typefinding fixes from the 0.8 branch.
2201           Also, improve wavpack typefinding: if we can't peek the
2202           entire wavpack block, try to parse the bits we can get and
2203           see if we find what we're looking for in those.
2204
2205 2006-01-26  Julien MOUTTE  <julien@moutte.net>
2206
2207         * sys/ximage/ximagesink.c:
2208         (gst_ximagesink_calculate_pixel_aspect_ratio):
2209         * sys/xvimage/xvimagesink.c:
2210         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
2211         more cases of pixel aspect ratio.
2212
2213 2006-01-26  Edward Hervey  <edward@fluendo.com>
2214
2215         * gst/playback/gstdecodebin.c: (pad_probe):
2216         Also consider the flush-start and tag events as unblockers
2217         for the pad probes.
2218
2219 2006-01-26  Julien MOUTTE  <julien@moutte.net>
2220
2221         * gst/playback/gstplaybin.c: (gst_play_bin_init),
2222         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
2223         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
2224         On the fly visualisation switch, works disabling, enabling as
2225         well but it won't be able to enable vis in a playbin that was
2226         created with no visualisation.
2227
2228 2006-01-25  Wim Taymans  <wim@fluendo.com>
2229
2230         * gst-libs/gst/audio/gstbaseaudiosink.c:
2231         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2232         Undo previous commit that returned WRONG_STATE sooner, it breaks 
2233         resume after pause.
2234
2235 2006-01-25  Wim Taymans  <wim@fluendo.com>
2236
2237         * gst-libs/gst/audio/gstbaseaudiosink.c:
2238         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
2239         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
2240         Improve debugging.
2241         Post error when caps cannot be parsed.
2242         Resync on discontinuity in the stream.
2243         Clip samples to segment boundaries.
2244         return WRONG_STATE sooner when we are flushing.
2245
2246         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
2247         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
2248         Make audiosrc operate in TIME.
2249         Set TIMESTAMP and DURATION on buffers.
2250
2251 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
2252
2253         * tests/examples/seek/seek.c: (main):
2254           Output tag messages as well.
2255
2256 2006-01-23  Edward Hervey  <edward@fluendo.com>
2257
2258         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2259         (free_pad_probes), (remove_fakesink), (pad_probe),
2260         (close_pad_link), (gst_decode_bin_change_state):
2261         Replace GstPadBlockCallback with pad probes that detect
2262         first buffer AND eos before removing fakesink.
2263         Fixes hang with demuxers doing EOS while pre-rolling.
2264         Solves #328279
2265
2266 2006-01-23  Andy Wingo  <wingo@pobox.com>
2267
2268         * ext/alsa/gstalsasink.c:
2269         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2270         (gst_base_rtp_depayload_setcaps),
2271         (gst_base_rtp_depayload_add_to_queue),
2272         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
2273         
2274         Patch by: Jens Granseuer <jensgr at gmx dot net>
2275
2276 2006-01-22  Julien MOUTTE  <julien@moutte.net>
2277
2278         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
2279         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2280         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
2281         frames. We might get a frame destroyed after changing state to
2282         NULL, adding a safety check on xcontext.
2283
2284 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
2285
2286         * gst-libs/gst/interfaces/xoverlay.c:
2287           Fix prepare-xwindow-id code example in the docs - we need to
2288           ignore all messages that aren't element messages as well.
2289           
2290 2006-01-21  Julien MOUTTE  <julien@moutte.net>
2291
2292         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2293           I think one day i'll completely undestand how caps negotiation
2294           is supposed to work. This refactoring handles buffer_alloc
2295           called with caps we can't handle. We definitely don't want a
2296           set_caps with those caps, so we define and allocate a buffer
2297           we would like to receive.
2298
2299 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
2300
2301         * gst/playback/gstplaybasebin.c: (setup_source):
2302           Free iterator when done.
2303
2304 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
2305
2306         * gst-libs/gst/audio/gstbaseaudiosink.c:
2307         (gst_base_audio_sink_render):
2308           Fix playback of non-synchronised streams by assuming a rate
2309           of 1.0 instead of a random one.
2310
2311           Makes this work again:
2312
2313           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
2314           endianness=(int)4321, signed=(boolean)true, width=(int)16,
2315           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
2316           audioresample ! alsasink
2317
2318 === release 0.10.2 ===
2319
2320 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
2321
2322         * configure.ac:
2323           releasing 0.10.2, "Then the devil is six"
2324
2325 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
2326
2327         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
2328         * gst/playback/gststreamselector.c:
2329         (gst_stream_selector_set_property):
2330           Comment out broken code that connects to the state-changed signal.
2331           At this point, changing current stream selection is broken, but 
2332           stuff like gst-launch playbin current-audio=1 works and filters
2333           to the chosen stream.
2334
2335 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
2336
2337         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
2338           Fix #327216 (null dereference in vorbisdec)
2339
2340 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
2341
2342         * ext/theora/theoradec.c: (theora_handle_comment_packet):
2343           Post taglist actually on bus instead of just freeing it
2344           (fixes #327114 and totem bug #327080).
2345
2346         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
2347           Use gst_element_found_tags_for_pad(), so that the tags
2348           are sent downstream as an event as well.
2349
2350 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
2351
2352         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
2353         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
2354         (gst_ximagesink_buffer_alloc):
2355         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
2356         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
2357         (gst_xvimagesink_buffer_alloc):
2358           move all regularly occurring messages to GST_LOG level
2359           add some more object logs
2360
2361 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2362
2363         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
2364           fix a silly segfault
2365
2366 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
2367
2368         * docs/libs/gst-plugins-base-libs-docs.sgml:
2369         * docs/libs/gst-plugins-base-libs-sections.txt:
2370         * gst-libs/gst/audio/mixerutils.c:
2371         * gst-libs/gst/audio/mixerutils.h:
2372           Add docs for mixerutils stuff.
2373
2374 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
2375
2376         * gst/playback/gstplaybasebin.c: (setup_source):
2377           Fix playback for sources that emit raw audio or
2378           raw video streams (e.g.: cd audio sources) (#325984).
2379
2380 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
2381
2382         * gst-libs/gst/audio/mixerutils.c:
2383         (gst_audio_mixer_filter_do_filter):
2384           actually save the element we create
2385
2386 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
2387
2388         * gst-libs/gst/cdda/gstcddabasesrc.c:
2389         (gst_cdda_base_src_handle_track_seek):
2390           No need to post a tag message on the bus when seeking
2391           within the same track, only post it when the current
2392           track changes.
2393
2394 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
2395
2396         * gst/playback/gstplaybasebin.c: (group_destroy),
2397         (probe_triggered), (new_decoded_pad), (mute_group_type),
2398         (set_active_source):
2399         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
2400         * gst/playback/gststreamselector.c:
2401         (gst_stream_selector_base_init),
2402         (gst_stream_selector_set_property),
2403         (gst_stream_selector_request_new_pad):
2404           Reenable stream selection. These mechanisms need a complete overhaul
2405           in the face of 0.8->0.10 changes though.
2406
2407 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
2408
2409         * ext/ogg/gstoggdemux.c:
2410           Change the pad template to src_%d to match the pads that 
2411           are created from it. decodebin needs this information in order
2412           to decide that oggdemux is capable of producing multiple pads
2413           (and hence needs queues inserted).
2414
2415         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
2416         (gst_ogg_mux_collected):
2417           Make debug output more useful by using GST_PTR_FORMAT.
2418
2419 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
2420
2421         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2422
2423         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
2424           Set depth and width for alaw/mulaw (fixes #326601).
2425
2426 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2427
2428         * tests/icles/Makefile.am:
2429           don't build the tests if we don't have the libs
2430
2431 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
2432
2433         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
2434         (gst_cd_paranoia_paranoia_callback):
2435           Don't try to free NULL pointers.
2436
2437 2006-01-10  Edward Hervey  <edward@fluendo.com>
2438
2439         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
2440         (gst_audio_rate_change_state), (plugin_init):
2441         Add debugging category.
2442         Fix type issues.
2443         Add case for incoming buffers without valid offset/offset_end.
2444
2445 2006-01-10  Michael Smith  <msmith@fluendo.com>
2446
2447         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
2448           Don't leak GCond in audio sources.
2449
2450 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
2451
2452         * gst/playback/gstplaybin.c: (gen_audio_element):
2453           Don't leak an autoaudiosink/alsasink when we generate
2454           a new audio element. (old code, I guess)
2455
2456 2006-01-10  Michael Smith  <msmith@fluendo.com>
2457
2458         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
2459           Support float audio in audiorate.
2460           Use width rather than depth for selecting sample width.
2461
2462 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
2463
2464         * gst/videotestsrc/videotestsrc.h:
2465           Use GLib types here (that way we don't have to include the
2466           generated _stdint.h header, which makes life easier for win32
2467           folks that don't use autotools for the build) (#325990, patch
2468           by: Sergey Scobich).
2469
2470 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
2471
2472         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
2473         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
2474         (gst_ring_buffer_pause), (wait_segment):
2475         * gst-libs/gst/audio/gstringbuffer.h:
2476           Name (private) union, makes Forte compiler happy (this time
2477           for real) (#324900).
2478
2479 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
2480
2481         * gst-libs/gst/audio/Makefile.am:
2482           Link against libgstinterfaces, needed for mixer
2483           and property probe stuff.
2484
2485 2006-01-09  Edward Hervey  <edward@fluendo.com>
2486
2487         * gst-libs/gst/Makefile.am:
2488
2489 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
2490
2491         * gst-libs/gst/audio/Makefile.am:
2492         * gst-libs/gst/audio/mixerutils.c:
2493         (gst_audio_mixer_filter_do_filter),
2494         (gst_audio_mixer_filter_check_element),
2495         (gst_audio_mixer_filter_probe_feature),
2496         (element_factory_rank_compare_func),
2497         (gst_audio_default_registry_mixer_filter):
2498         * gst-libs/gst/audio/mixerutils.h:
2499           Add gst_audio_default_registry_mixer_filter() utility
2500           function.
2501
2502 2006-01-03  Michael Smith  <msmith@fluendo.com>
2503
2504         * gst/audioresample/resample.h:
2505           As before, but for o_buf
2506
2507 2006-01-03  Michael Smith  <msmith@fluendo.com>
2508
2509         * gst/audioresample/resample.h:
2510           Declare struct _ResampleState.buffer as unsigned char *, not void *,
2511           since we do arithmetic on it.
2512
2513 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
2514
2515         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
2516         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
2517         (gst_ring_buffer_pause), (wait_segment):
2518         * gst-libs/gst/audio/gstringbuffer.h:
2519           Sun's Forte compiler doesn't seem to like anonymous structs,
2520           so use same setup as in GstBaseSrc (fixes #324900).
2521
2522 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
2523
2524         * configure.ac:
2525         * gst/volume/Makefile.am:
2526         * gst/volume/demo.c:
2527           move old example to tests/examples/volume/volune.c
2528         * tests/examples/Makefile.am:
2529         * tests/examples/seek/seek.c: (main):
2530           change window-close event from "delete-event" to "destroy"
2531         * tests/examples/volume/Makefile.am:
2532         * tests/examples/volume/volume.c: (value_changed_callback),
2533         (setup_gui), (message_received), (eos_message_received), (main):
2534           fix event handling and bus usage
2535
2536 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
2537
2538         * gst/audiotestsrc/gstaudiotestsrc.c:
2539         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
2540         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
2541         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
2542         (gst_audio_test_src_create_square),
2543         (gst_audio_test_src_create_saw),
2544         (gst_audio_test_src_create_triangle),
2545         (gst_audio_test_src_create_silence),
2546         (gst_audio_test_src_create_white_noise),
2547         (gst_audio_test_src_create_pink_noise),
2548         (gst_audio_test_src_init_sine_table),
2549         (gst_audio_test_src_create_sine_table),
2550         (gst_audio_test_src_change_wave),
2551         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
2552         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
2553         * gst/audiotestsrc/gstaudiotestsrc.h:
2554           update to basesrc changes, implement segmented seeking and eos
2555           handling, add a 'sine-tab' waveform for performance critical playback
2556
2557 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2558
2559         * po/POTFILES.in:
2560           ... and this time the other modified file that I missed last time.
2561
2562 2005-12-29  Michael Smith  <msmith@fluendo.com>
2563
2564         * gst/playback/gstdecodebin.c: (new_pad):
2565           Fix non-C89 variable declaration not at the start of a block. Should
2566           help some compilers.
2567
2568 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2569
2570         * tests/check/Makefile.am:
2571           And now fix 'make distcheck' (builddir != srcdir)
2572
2573 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2574
2575         * configure.ac:
2576         * ext/cdparanoia/Makefile.am:
2577         * ext/cdparanoia/gstcdparanoia.c:
2578         * ext/cdparanoia/gstcdparanoia.h:
2579         * ext/cdparanoia/gstcdparanoiasrc.c:
2580         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
2581         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
2582         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
2583         (gst_cd_paranoia_paranoia_callback),
2584         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
2585         (gst_cd_paranoia_src_set_property),
2586         (gst_cd_paranoia_src_get_property), (plugin_init):
2587         * ext/cdparanoia/gstcdparanoiasrc.h:
2588           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
2589           plugin again (there are still fixes required to playbin to make
2590           cdda:// uris work there).
2591
2592 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2593
2594         * tests/check/Makefile.am:
2595           Fix test case compilation.
2596
2597 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
2598
2599         * gst-libs/gst/cdda/gstcddabasesrc.c:
2600         (gst_cdda_base_src_update_duration),
2601         (gst_cdda_base_src_calculate_cddb_id):
2602           An integer is not a string. Fix access to uninitialised variable.
2603
2604         * tests/check/Makefile.am:
2605           Add cddabasesrc unit test; also actually enable the vorbis test.
2606
2607         * tests/check/generic/states.c:
2608           Blacklist new cd audio elements as well.
2609
2610         * tests/check/libs/cddabasesrc.c:
2611           Unit test for GstCddaBaseSrc (discid calculation mostly).
2612
2613 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2614
2615         * docs/libs/Makefile.am:
2616         * docs/libs/gst-plugins-base-libs-docs.sgml:
2617         * docs/libs/gst-plugins-base-libs-sections.txt:
2618         * docs/libs/gst-plugins-base-libs.types:
2619           Add docs for libgstcdda/GstCddaBaseSrc.
2620
2621         * gst-libs/gst/interfaces/mixertrack.h:
2622           Do one struct member per line with a semicolon at the end, that way
2623           even gtk-doc might parse it without complaining.
2624
2625 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2626
2627         * configure.ac:
2628         * gst-libs/gst/Makefile.am:
2629         * gst-libs/gst/cdda/Makefile.am:
2630         * gst-libs/gst/cdda/base64.c:
2631         * gst-libs/gst/cdda/base64.h:
2632         * gst-libs/gst/cdda/gstcddabasesrc.c:
2633         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
2634         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
2635         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
2636         (gst_cdda_base_src_get_property),
2637         (gst_cdda_base_src_get_track_from_sector),
2638         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
2639         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
2640         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
2641         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
2642         (gst_cdda_base_src_uri_get_protocols),
2643         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
2644         (gst_cdda_base_src_uri_handler_init),
2645         (gst_cdda_base_src_setup_interfaces),
2646         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
2647         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
2648         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
2649         (gst_cdda_base_src_add_tags),
2650         (gst_cdda_base_src_add_index_associations),
2651         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
2652         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
2653         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
2654         (gst_cdda_base_src_create):
2655         * gst-libs/gst/cdda/gstcddabasesrc.h:
2656         * gst-libs/gst/cdda/sha1.c:
2657         * gst-libs/gst/cdda/sha1.h:
2658           Add new libgstcdda with GstCddaBaseSrc class.
2659
2660 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
2661
2662         * ext/gnomevfs/gstgnomevfssink.h:
2663           Use GstBaseSinkClass as parent_class member for class struct, not
2664           GstBaseSink.
2665
2666 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2667
2668         Patch by: Michael Benes
2669
2670         * gst/videotestsrc/gstvideotestsrc.c:
2671         (gst_video_test_src_class_init), (gst_video_test_src_start):
2672           Add start method to reset running time and number of frames sent
2673           when starting up (fixes #324696)
2674
2675 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2676
2677         * docs/plugins/Makefile.am:
2678         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2679         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2680         * docs/plugins/gst-plugins-base-plugins.args:
2681         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2682         * docs/plugins/gst-plugins-base-plugins.signals:
2683           Add docs stuff for gnomevfssrc and gnomevfssink.
2684
2685         * ext/gnomevfs/gstgnomevfssrc.c:
2686           Fix example pipeline in gtk-doc blurb.
2687
2688 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
2689
2690         * ext/gnomevfs/Makefile.am:
2691         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
2692         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
2693         (gst_gnome_vfs_handle_get_type), (plugin_init):
2694         * ext/gnomevfs/gstgnomevfs.h:
2695         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
2696         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
2697         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
2698         (gst_gnome_vfs_sink_set_property),
2699         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
2700         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
2701         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
2702         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
2703         (gst_gnome_vfs_sink_uri_get_type),
2704         (gst_gnome_vfs_sink_uri_get_protocols),
2705         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
2706         (gst_gnome_vfs_sink_uri_handler_init):
2707         * ext/gnomevfs/gstgnomevfssink.h:
2708           Port gnomevfssink; add gtk-doc blurb.
2709
2710         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
2711         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
2712         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
2713         (gst_gnome_vfs_src_uri_get_type),
2714         (gst_gnome_vfs_src_uri_get_protocols),
2715         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
2716         (gst_gnome_vfs_src_uri_handler_init),
2717         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
2718         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
2719         (gst_gnome_vfs_src_send_additional_headers_callback),
2720         (gst_gnome_vfs_src_received_headers_callback),
2721         (gst_gnome_vfs_src_push_callbacks),
2722         (gst_gnome_vfs_src_pop_callbacks),
2723         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
2724         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
2725         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
2726         * ext/gnomevfs/gstgnomevfssrc.h:
2727           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
2728           file; add gtk-doc blurb with example pipelines.
2729
2730 === release 0.10.1 ===
2731
2732 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
2733
2734         * configure.ac:
2735           releasing 0.10.1, "Dobro Dedek"
2736
2737 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
2738
2739         * gst/typefind/gsttypefindfunctions.c:
2740         iLBC30 and iLBC20 added to typefind.
2741
2742 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
2743
2744         * gst-libs/gst/audio/gstbaseaudiosink.c:
2745         (gst_base_audio_sink_class_init):
2746         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2747         (gst_base_audio_src_class_init):
2748           update strings, values are in microseconds
2749           change the default sink buffer time to something that is smaller
2750           (to help software volume mixing have a slightly lower delay) but
2751           still be acceptable on Wim's laptop
2752
2753 2005-12-20  Edward Hervey  <edward@fluendo.com>
2754
2755         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
2756         Made a quack, forgot to add DUCK to the riff video template.
2757
2758 2005-12-19  Edward Hervey  <edward@fluendo.com>
2759
2760         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
2761         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
2762         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
2763         (gst_ogm_parse_chain):
2764         Make sure pads are initialized correctly.
2765         * gst-libs/gst/riff/riff-ids.h:
2766         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2767         (gst_riff_create_video_template_caps):
2768         Add a whole bunch of FOURCC <=> MimeType.
2769         Extend the riff video pad template to support the newly added fourcc.
2770
2771 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
2772
2773         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
2774         (gst_ogg_demux_activate_chain):
2775           Extra debug output when activating/deactivating chains.
2776
2777         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2778         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
2779         (unlinked):
2780           Remove a queue from our list when it becomes unlinked.
2781           Don't add queues to elements in class 'Demux' if they
2782           can only produce one pad 
2783
2784 2005-12-18  Julien MOUTTE  <julien@moutte.net>
2785
2786         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
2787         (gst_video_sink_get_type): Add a debug category.
2788
2789 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
2790
2791         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2792         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
2793           Handle downstream newsegment by sending our own newsegment before the
2794           next buffer to be released. (#323900)
2795
2796 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
2797
2798         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2799         (gst_base_rtp_depayload_set_gst_timestamp):
2800           add queue delay to new segment as well (as opposed to just the first
2801           buffer). (bug #322347)
2802
2803 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
2804
2805         * ext/libvisual/visual.c: (make_valid_name):
2806           change some char* into char[]
2807         * gst/audiotestsrc/gstaudiotestsrc.c:
2808         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
2809         (gst_audio_test_src_create):
2810         * gst/audiotestsrc/gstaudiotestsrc.h:
2811           prepare to handle EOS and SEGMENT_DONE
2812
2813 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2814
2815         * tests/check/generic/states.c: (GST_START_TEST):
2816           Blacklist cdparanoia element in state test.
2817
2818 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
2819
2820           Patch by: Benjamin Pineau
2821
2822         * gst/tcp/gsttcp.c:
2823         * gst/tcp/gsttcpclientsink.c:
2824         * gst/tcp/gsttcpserversink.c:
2825         * gst/tcp/gsttcpserversrc.c:
2826           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
2827
2828 2005-12-15  Michael Smith  <msmith@fluendo.com>
2829
2830         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
2831         (gst_video_rate_chain):
2832           Fix timestamping for videorate when the first buffer it sees has a
2833           non-zero timestamp. Fix some misleading debug output.
2834
2835 2005-12-15  Michael Smith  <msmith@fluendo.com>
2836
2837         * gst/audioresample/gstaudioresample.c:
2838           Don't leak all input buffers to audioresample.
2839
2840 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2841
2842         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
2843           Don't operate on empty text buffers. Strip newlines and
2844           tabs only from the end of the text, but leave them intact
2845           in the middle. Fix typo in gtk-doc description.
2846
2847 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
2848
2849         * gst/playback/gstplaybasebin.c:
2850         * gst/playback/gstplaybin.c: (handoff):
2851           Make sure the video frame buffer we return to apps via the
2852           "frame" property always has caps set on it. Modify
2853           _gst_gvalue_set_object() macro to handle NULL objects
2854           gracefully too.
2855
2856 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
2857
2858         * gst/audiotestsrc/gstaudiotestsrc.c:
2859         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
2860         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
2861         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
2862         (gst_audio_test_src_create):
2863         * gst/audiotestsrc/gstaudiotestsrc.h:
2864         Adjust to some recent api changes and add wtays new cool seeking
2865         capabillities
2866
2867 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
2868
2869         * ext/alsa/Makefile.am:
2870         * ext/alsa/gstalsadeviceprobe.c:
2871         * ext/alsa/gstalsadeviceprobe.h:
2872           Helper functions to add device probing via the GstPropertyProbe
2873           interface to a class.
2874
2875         * ext/alsa/gstalsamixer.h:
2876           Comment out GST_ALSA_MIXER, it returns a struct that's not
2877           used.
2878
2879         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
2880           Add some debug info. 
2881
2882         * ext/alsa/gstalsamixerelement.c:
2883         (gst_alsa_mixer_element_interface_supported),
2884         (gst_implements_interface_init),
2885         (gst_alsa_mixer_element_init_interfaces),
2886         (gst_alsa_mixer_element_class_init),
2887         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
2888         (gst_alsa_mixer_element_set_property),
2889         (gst_alsa_mixer_element_get_property),
2890         (gst_alsa_mixer_element_change_state):
2891         * ext/alsa/gstalsamixerelement.h:
2892           Add 'device' and 'device-name' properties. Add GstPropertyProbe
2893           for device handling (gnome-volume-control will need that).
2894
2895 2005-12-12  Christian Schaller  <uraeus@gnome.org>
2896
2897         * ext/Makefile.am: fix cdparanoia entry
2898         * gst-plugins-base.spec.in: add cdparanoia
2899
2900 2005-12-12  Michael Smith  <msmith@fluendo.com>
2901
2902         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
2903           Use the correct function to free list of typefind factories.
2904
2905 2005-12-12  Wim Taymans  <wim@fluendo.com>
2906
2907         * gst/videotestsrc/gstvideotestsrc.c:
2908         (gst_video_test_src_class_init), (gst_video_test_src_init),
2909         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
2910         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
2911         (gst_video_test_src_create):
2912         * gst/videotestsrc/gstvideotestsrc.h:
2913         Implement seeking in videotestsrc.
2914         Small cleanups.
2915
2916 2005-12-12  Wim Taymans  <wim@fluendo.com>
2917
2918         * ext/cdparanoia/Makefile.am:
2919         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
2920         (gst_paranoia_endian_get_type), (_do_init),
2921         (cdparanoia_class_init), (cdparanoia_init),
2922         (cdparanoia_set_property), (cdparanoia_get_property),
2923         (cdparanoia_do_seek), (cdparanoia_is_seekable),
2924         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
2925         (cdparanoia_convert), (cdparanoia_get_query_types),
2926         (cdparanoia_query), (cdparanoia_set_index),
2927         (cdparanoia_uri_set_uri):
2928         * ext/cdparanoia/gstcdparanoia.h:
2929         Partially ported cdparanoia now that basesrc can support a
2930         plugin like this..
2931
2932 2005-12-12  Wim Taymans  <wim@fluendo.com>
2933
2934         * tests/examples/seek/scrubby.c: (main):
2935         Set higher priority for bus events so they don't get reordered with
2936         gtk gui events.
2937
2938         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2939         (flush_toggle_cb), (main):
2940         Added checkbox to disable flushing seeks. 
2941         Disable scrubbing when doing non flushing seeks.
2942
2943 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
2944
2945         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
2946         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
2947         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
2948         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
2949           Implement some sort of event handling that doesn't rely on
2950           g_return_if_fail; make sure we always push the last chunk of an 
2951           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
2952           state change function; remove some old cruft. Seeking is still
2953           rather unlikely to work though.
2954
2955         * tools/.cvsignore:
2956           Ignore more.
2957
2958 2005-12-11  Julien MOUTTE  <julien@moutte.net>
2959
2960         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
2961         Fixed a leak of the current image reference when cleaning up.
2962         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
2963
2964 2005-12-09  Michael Smith  <msmith@fluendo.com>
2965
2966         * tools/Makefile.am:
2967         * tools/gst-launch-ext-m.m:
2968           Remove gst-launch-ext. It doesn't work, and is no longer
2969           particularly useful.
2970
2971 2005-12-08  Luca Ognibene  <luogni@tin.it>
2972
2973         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
2974           don't pass random values to ogmparse convert function.
2975           Make seeking possible in the exile1.ogm file.
2976
2977 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
2978
2979         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
2980         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
2981           Work around refcount problem with g_value_set_object() that occur
2982           if the core has been compiled against GLib-2.6 (g_value_set_object()
2983           will only g_object_ref() the element, but the caller will
2984           gst_object_unref() it and bad things will happen due to the way
2985           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
2986           totem for people on FC4 using Thomas's 0.10 RPMs.
2987           
2988 2005-12-07  Edward Hervey  <edward@fluendo.com>
2989
2990         Time to welcome ogm to 0.10 :)
2991         
2992         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
2993         (gst_ogg_pad_typefind):
2994         Oggdemux can now properly typefind elements with dynamic pads.
2995         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
2996         Properly set caps on src pad, and set caps on outgoing buffers.
2997
2998 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2999
3000         * ext/alsa/gstalsamixer.h:
3001         * ext/alsa/gstalsamixerelement.h:
3002         * ext/alsa/gstalsamixeroptions.h:
3003         * ext/alsa/gstalsamixertrack.h:
3004         * ext/alsa/gstalsasink.c:
3005         * ext/alsa/gstalsasink.h:
3006         * ext/alsa/gstalsasrc.c:
3007         * ext/alsa/gstalsasrc.h:
3008         * ext/cdparanoia/gstcdparanoia.h:
3009         * ext/gnomevfs/gstgnomevfsuri.h:
3010         * ext/ogg/gstoggdemux.c:
3011         * ext/ogg/gstoggmux.c:
3012         * ext/pango/gsttextoverlay.h:
3013         * ext/theora/theoradec.c:
3014         * ext/theora/theoraenc.c:
3015         * ext/vorbis/vorbisdec.h:
3016         * ext/vorbis/vorbisenc.c:
3017         * ext/vorbis/vorbisenc.h:
3018         * ext/vorbis/vorbisparse.h:
3019         * gst-libs/gst/audio/gstaudioclock.h:
3020         * gst-libs/gst/audio/gstaudiosink.c:
3021         * gst-libs/gst/audio/gstaudiosink.h:
3022         * gst-libs/gst/audio/gstaudiosrc.c:
3023         * gst-libs/gst/audio/gstaudiosrc.h:
3024         * gst-libs/gst/audio/gstbaseaudiosink.c:
3025         * gst-libs/gst/audio/gstbaseaudiosink.h:
3026         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3027         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3028         * gst-libs/gst/audio/gstringbuffer.h:
3029         * gst-libs/gst/audio/multichannel.h:
3030         * gst-libs/gst/floatcast/floatcast.h:
3031         * gst-libs/gst/interfaces/colorbalance.c:
3032         * gst-libs/gst/interfaces/colorbalance.h:
3033         * gst-libs/gst/interfaces/colorbalancechannel.h:
3034         * gst-libs/gst/interfaces/mixer.h:
3035         * gst-libs/gst/interfaces/mixeroptions.h:
3036         * gst-libs/gst/interfaces/mixertrack.h:
3037         * gst-libs/gst/interfaces/navigation.h:
3038         * gst-libs/gst/interfaces/propertyprobe.h:
3039         * gst-libs/gst/interfaces/tuner.h:
3040         * gst-libs/gst/interfaces/tunerchannel.h:
3041         * gst-libs/gst/interfaces/tunernorm.h:
3042         * gst-libs/gst/interfaces/xoverlay.h:
3043         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3044         * gst-libs/gst/riff/riff-ids.h:
3045         * gst-libs/gst/riff/riff-media.h:
3046         * gst-libs/gst/riff/riff-read.h:
3047         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3048         * gst-libs/gst/rtp/gstbasertppayload.c:
3049         * gst-libs/gst/rtp/gstbasertppayload.h:
3050         * gst-libs/gst/rtp/gstrtpbuffer.c:
3051         * gst-libs/gst/rtp/gstrtpbuffer.h:
3052         * gst-libs/gst/tag/gsttageditingprivate.h:
3053         * gst-libs/gst/tag/gstvorbistag.c:
3054         (gst_tag_list_from_vorbiscomment_buffer):
3055         * gst-libs/gst/tag/tag.h:
3056         * gst-libs/gst/video/video.h:
3057         * gst/adder/gstadder.c:
3058         * gst/adder/gstadder.h:
3059         * gst/audioconvert/audioconvert.c:
3060         * gst/audioconvert/audioconvert.h:
3061         * gst/audioconvert/gstaudioconvert.c:
3062         * gst/audioconvert/gstchannelmix.c:
3063         * gst/audioconvert/gstchannelmix.h:
3064         * gst/audiorate/gstaudiorate.c:
3065         * gst/audioresample/buffer.h:
3066         * gst/audioresample/functable.h:
3067         * gst/audioresample/gstaudioresample.c:
3068         * gst/audioresample/resample.h:
3069         * gst/ffmpegcolorspace/avcodec.h:
3070         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3071         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
3072         * gst/ffmpegcolorspace/imgconvert.c:
3073         * gst/ffmpegcolorspace/imgconvert_template.h:
3074         * gst/playback/gstdecodebin.c:
3075         * gst/playback/gstplaybasebin.h:
3076         * gst/playback/gstplaybin.c:
3077         * gst/playback/gststreaminfo.h:
3078         * gst/tcp/gstfdset.c:
3079         * gst/tcp/gstfdset.h:
3080         * gst/tcp/gstmultifdsink.c:
3081         * gst/tcp/gstmultifdsink.h:
3082         * gst/tcp/gsttcp.h:
3083         * gst/tcp/gsttcpclientsrc.c:
3084         * gst/tcp/gsttcpclientsrc.h:
3085         * gst/tcp/gsttcpplugin.h:
3086         * gst/tcp/gsttcpserversink.c:
3087         * gst/tcp/gsttcpserversrc.c:
3088         * gst/typefind/gsttypefindfunctions.c:
3089         * gst/videorate/gstvideorate.c:
3090         * gst/videotestsrc/gstvideotestsrc.h:
3091         * gst/videotestsrc/videotestsrc.h:
3092         * sys/v4l/gstv4lcolorbalance.h:
3093         * sys/v4l/gstv4ltuner.h:
3094         * sys/v4l/gstv4lxoverlay.h:
3095         * sys/v4l/v4l_calls.h:
3096         * sys/v4l/videodev_mjpeg.h:
3097         * tests/check/elements/audioconvert.c:
3098         * tests/check/elements/audioresample.c:
3099         * tests/check/elements/audiotestsrc.c:
3100         * tests/check/elements/videotestsrc.c:
3101         * tests/check/elements/volume.c:
3102         * tests/examples/seek/scrubby.c:
3103         * tests/examples/seek/seek.c:
3104           expand tabs
3105
3106 === release 0.10.0 ===
3107
3108 2005-12-05   <thomas (at) apestaart (dot) org>
3109
3110         * configure.ac:
3111           releasing 0.10.0, "Mont-d'or"
3112
3113 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
3114
3115         * tests/examples/seek/Makefile.am:
3116         Build fix for when gtk is not available.
3117
3118 2005-12-05  Andy Wingo  <wingo@pobox.com>
3119
3120         * ext/libvisual/visual.c: (get_buffer):
3121         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
3122         * ext/pango/gsttextrender.c: (gst_text_render_chain):
3123         * ext/theora/theoradec.c: (theora_handle_data_packet):
3124         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
3125         (theora_enc_chain):
3126         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3127         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
3128         Update for alloc_buffer changes.
3129
3130 2005-12-05  Andy Wingo  <wingo@pobox.com>
3131
3132         patch by: Kai Vehmanen <kv2004 eca cx>
3133         
3134         * gst-libs/gst/rtp/gstbasertpdepayload.c
3135         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
3136
3137 2005-12-04  Andy Wingo  <wingo@pobox.com>
3138
3139         patch by: Sebastien Cote <sebas642 yahoo ca>
3140         
3141         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
3142         Fixes #319172.
3143
3144 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
3145
3146         * docs/plugins/Makefile.am:
3147         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3148         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3149         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3150         * ext/pango/gstclockoverlay.c:
3151         * ext/pango/gsttextoverlay.c: 
3152         * ext/pango/gsttextrender.c:
3153         * ext/pango/gsttimeoverlay.c:
3154           Add gtk-doc blurbs to pango elements.
3155
3156 2005-12-02  Wim Taymans  <wim@fluendo.com>
3157
3158         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
3159         * gst/audioresample/buffer.h:
3160         * gst/audioresample/gstaudioresample.c:
3161         * gst/audioresample/gstaudioresample.h:
3162         * gst/audioresample/resample.c: (resample_input_flush),
3163         (resample_input_pushthrough), (resample_input_eos),
3164         (resample_get_output_size_for_input),
3165         (resample_get_input_size_for_output), (resample_get_output_size),
3166         (resample_get_output_data):
3167         * gst/audioresample/resample.h:
3168         * gst/audioresample/resample_ref.c: (resample_scale_ref):
3169         Fix audioresample, seek torture, new segments, reverse negotiation
3170         etc.. work fine.
3171
3172 2005-12-02  Wim Taymans  <wim@fluendo.com>
3173
3174         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3175         Small cleanups.
3176
3177 2005-12-02  Wim Taymans  <wim@fluendo.com>
3178
3179         * gst/audioconvert/gstaudioconvert.c:
3180         (gst_audio_convert_transform):
3181         Post errors.
3182
3183 === release 0.9.7 ===
3184
3185 2005-12-01   <thomas (at) apestaart (dot) org>
3186
3187         * configure.ac:
3188           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
3189
3190 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3191
3192         * Makefile.am:
3193         * po/hu.po:
3194         * win32/MANIFEST:
3195         * win32/gst.sln:
3196           add win32 MANIFEST file
3197           do something to the hungarian translation
3198
3199 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
3200
3201         * ext/Makefile.am:
3202           Add $(PANGO_DIR) to SUBDIRS
3203
3204         * ext/pango/gstclockoverlay.c:
3205         * ext/pango/gsttimeoverlay.c:
3206           Fix and improve element descriptions.
3207
3208 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
3209
3210         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3211         * docs/plugins/inspect/plugin-libvisual.xml:
3212         * docs/plugins/inspect/plugin-pango.xml:
3213           add pango plugin to docs
3214
3215 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
3216
3217         * configure.ac:
3218         * ext/Makefile.am:
3219           moved pango to base
3220
3221 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3222
3223         * configure.ac:
3224         * tests/Makefile.am:
3225         * tests/icles/.cvsignore:
3226         * tests/icles/Makefile.am:
3227         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
3228         (close_display), (resize_window), (move_window), (create_window),
3229         (terminate_playback), (pause_playback), (start_playback), (main):
3230           add stress test for xoverlay from Julien
3231
3232 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
3233
3234         * docs/libs/tmpl/gstcolorbalance.sgml:
3235         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3236         * gst-libs/gst/rtp/gstbasertppayload.c:
3237         * gst-libs/gst/rtp/gstrtpbuffer.c:
3238         * gst-libs/gst/rtp/gstrtpbuffer.h:
3239           Do burger's rename for rtp payloaders and depayloaders
3240
3241 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3242
3243         * win32/:
3244           add Visual Studio 6 build files
3245
3246 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3247
3248         * docs/libs/gst-plugins-base-libs-docs.sgml:
3249         * docs/libs/gst-plugins-base-libs-sections.txt:
3250         * docs/libs/tmpl/gstaudio.sgml:
3251         * docs/libs/tmpl/gstringbuffer.sgml:
3252         * gst-libs/gst/interfaces/xoverlay.c:
3253         * gst-libs/gst/video/gstvideofilter.c:
3254         * gst-libs/gst/video/gstvideosink.c:
3255           update documentation
3256
3257 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3258
3259         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
3260         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
3261         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
3262         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
3263         (gst_multi_fd_sink_get_stats),
3264         (gst_multi_fd_sink_remove_client_link),
3265         (gst_multi_fd_sink_handle_client_read),
3266         (gst_multi_fd_sink_client_queue_data),
3267         (gst_multi_fd_sink_client_queue_caps),
3268         (gst_multi_fd_sink_client_queue_buffer),
3269         (gst_multi_fd_sink_new_client),
3270         (gst_multi_fd_sink_handle_client_write),
3271         (gst_multi_fd_sink_recover_client),
3272         (gst_multi_fd_sink_queue_buffer),
3273         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
3274         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
3275         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
3276         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
3277         * gst/tcp/gstmultifdsink.h:
3278         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
3279         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
3280         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
3281         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
3282         (gst_tcp_client_sink_set_property),
3283         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
3284         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
3285         * gst/tcp/gsttcpclientsink.h:
3286         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
3287         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
3288         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
3289         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
3290         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
3291         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
3292         * gst/tcp/gsttcpclientsrc.h:
3293         * gst/tcp/gsttcpplugin.c: (plugin_init):
3294         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
3295         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
3296         (gst_tcp_server_sink_finalize),
3297         (gst_tcp_server_sink_handle_server_read),
3298         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
3299         (gst_tcp_server_sink_set_property),
3300         (gst_tcp_server_sink_get_property),
3301         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
3302         * gst/tcp/gsttcpserversink.h:
3303         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
3304         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
3305         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
3306         (gst_tcp_server_src_set_property),
3307         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
3308         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
3309         * gst/tcp/gsttcpserversrc.h:
3310           more borgifying
3311
3312 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
3313
3314         * docs/plugins/Makefile.am:
3315         * docs/plugins/gst-plugins-base-plugins.args:
3316         * docs/plugins/inspect/plugin-libvisual.xml:
3317         * gst/audioconvert/plugin.h:
3318         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
3319         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
3320         (gst_audio_rate_setcaps), (gst_audio_rate_init),
3321         (gst_audio_rate_chain), (gst_audio_rate_set_property),
3322         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
3323         (plugin_init):
3324         * gst/audiotestsrc/gstaudiotestsrc.c:
3325         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
3326         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
3327         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
3328         (gst_audio_test_src_get_query_types),
3329         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
3330         (gst_audio_test_src_create_square),
3331         (gst_audio_test_src_create_saw),
3332         (gst_audio_test_src_create_triangle),
3333         (gst_audio_test_src_create_silence),
3334         (gst_audio_test_src_create_white_noise),
3335         (gst_audio_test_src_init_pink_noise),
3336         (gst_audio_test_src_generate_pink_noise_value),
3337         (gst_audio_test_src_create_pink_noise),
3338         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
3339         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
3340         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
3341         (plugin_init):
3342         * gst/audiotestsrc/gstaudiotestsrc.h:
3343         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
3344         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
3345         (gst_sub_parse_init), (gst_sub_parse_formats),
3346         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
3347         (convert_encoding), (get_next_line),
3348         (gst_sub_parse_data_format_autodetect),
3349         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
3350         (gst_sub_parse_loop), (gst_sub_parse_chain),
3351         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
3352         (plugin_init):
3353         * gst/subparse/gstsubparse.h:
3354         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
3355         (gst_video_rate_base_init), (gst_video_rate_class_init),
3356         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
3357         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
3358         (gst_video_rate_init), (gst_video_rate_event),
3359         (gst_video_rate_chain), (gst_video_rate_set_property),
3360         (gst_video_rate_get_property), (gst_video_rate_change_state),
3361         (plugin_init):
3362         * gst/videoscale/gstvideoscale.c:
3363         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
3364         (gst_video_scale_src_template_factory),
3365         (gst_video_scale_sink_template_factory),
3366         (gst_video_scale_get_type), (gst_video_scale_base_init),
3367         (gst_video_scale_class_init), (gst_video_scale_init),
3368         (gst_video_scale_set_property), (gst_video_scale_get_property),
3369         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
3370         (gst_video_scale_prepare_size), (parse_caps),
3371         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
3372         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
3373         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
3374         (plugin_init):
3375         * gst/videoscale/gstvideoscale.h:
3376         * gst/videotestsrc/gstvideotestsrc.c:
3377         (gst_video_test_src_pattern_get_type),
3378         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
3379         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
3380         (gst_video_test_src_set_pattern),
3381         (gst_video_test_src_set_property),
3382         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
3383         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
3384         (gst_video_test_src_event), (gst_video_test_src_get_times),
3385         (gst_video_test_src_create), (plugin_init):
3386         * gst/videotestsrc/gstvideotestsrc.h:
3387         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
3388         (gst_video_test_src_smpte), (gst_video_test_src_snow),
3389         (gst_video_test_src_black):
3390         * gst/videotestsrc/videotestsrc.h:
3391           borgify further
3392           clean up docs a little
3393
3394 2005-11-30  Wim Taymans  <wim@fluendo.com>
3395
3396         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3397         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
3398         (gst_basertppayload_event), (gst_basertppayload_push),
3399         (gst_basertppayload_change_state):
3400         * gst-libs/gst/rtp/gstbasertppayload.h:
3401         closed #320644.
3402
3403 2005-11-30  Julien MOUTTE  <julien@moutte.net>
3404
3405         * docs/libs/gst-plugins-base-libs-docs.sgml:
3406         * docs/libs/gst-plugins-base-libs-sections.txt:
3407         * gst-libs/gst/video/gstvideofilter.c:
3408         * gst-libs/gst/video/gstvideosink.c:
3409         * gst-libs/gst/video/gstvideosink.h: Adding docs.
3410
3411 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
3412
3413         * LICENSE:
3414           move
3415         * po/af.po:
3416         * po/az.po:
3417         * po/cs.po:
3418         * po/en_GB.po:
3419         * po/hu.po:
3420         * po/it.po:
3421         * po/nb.po:
3422         * po/nl.po:
3423         * po/or.po:
3424         * po/sq.po:
3425         * po/sr.po:
3426         * po/sv.po:
3427         * po/uk.po:
3428         * po/vi.po:
3429         * Makefile.am:
3430           update
3431         * scripts/autoplugins.sh:
3432           remove
3433
3434 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
3435
3436         * Makefile.am:
3437         * configure.ac:
3438         * examples/Makefile.am:
3439         * examples/capsfilter/Makefile.am:
3440         * examples/capsfilter/capsfilter1.c:
3441         * examples/gob/Makefile.am:
3442         * examples/gob/gst-identity2.gob:
3443         * examples/indexing/.cvsignore:
3444         * examples/indexing/Makefile.am:
3445         * examples/indexing/indexmpeg.c:
3446         * examples/seeking/.cvsignore:
3447         * examples/seeking/Makefile.am:
3448         * examples/seeking/cdparanoia.c:
3449         * examples/seeking/cdplayer.c:
3450         * examples/seeking/chained.c:
3451         * examples/seeking/scrubby.c:
3452         * examples/seeking/seek.c:
3453         * examples/stats/Makefile.am:
3454         * examples/stats/mp2ogg.c:
3455         * examples/switch/.cvsignore:
3456         * examples/switch/Makefile.am:
3457         * examples/switch/switcher.c:
3458         * tests/Makefile.am:
3459         * tests/check/generic/.cvsignore:
3460         * tests/check/pipelines/.cvsignore:
3461         * tests/examples/Makefile.am:
3462         * tests/examples/seek/Makefile.am:
3463           reorganize stuff under tests/
3464
3465 2005-11-30  Edward Hervey  <edward@fluendo.com>
3466
3467         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
3468         Go away you stupid GstStaticPadTemplate memleak.
3469
3470 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
3471
3472         * gst-libs/gst/net/Makefile.am:
3473         * gst-libs/gst/net/README:
3474         * gst-libs/gst/net/gstnetbuffer.c:
3475         * gst-libs/gst/net/gstnetbuffer.h:
3476           this was moved to "netbuffer"
3477
3478 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
3479
3480         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
3481         (gst_video_filter_class_init), (gst_video_filter_init):
3482         * gst-libs/gst/video/gstvideofilter.h:
3483           borgify name to bring in line with other classes
3484
3485 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
3486
3487         * gst/audioscale/.cvsignore:
3488         * gst/audioscale/Makefile.am:
3489         * gst/audioscale/README:
3490         * gst/audioscale/audioscale.vcproj:
3491         * gst/audioscale/dtof.c:
3492         * gst/audioscale/dtos.c:
3493         * gst/audioscale/functable.c:
3494         * gst/audioscale/gstaudioscale.c:
3495         * gst/audioscale/gstaudioscale.h:
3496         * gst/audioscale/private.h:
3497         * gst/audioscale/resample.c:
3498         * gst/audioscale/resample.h:
3499         * gst/audioscale/test.c:
3500           remove
3501
3502 2005-11-30  Edward Hervey  <edward@fluendo.com>
3503
3504         * gst-libs/gst/netbuffer/Makefile.am:
3505         really, really tired
3506
3507 2005-11-30  Edward Hervey  <edward@fluendo.com>
3508
3509         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3510         Update for new GstTypeFindFactory _register()
3511
3512 2005-11-30  Edward Hervey  <edward@fluendo.com>
3513
3514         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
3515         Let's not override libgstnet from core for no reason...
3516         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
3517         Ok, maybe not so quick next time.
3518
3519 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3520
3521         * configure.ac:
3522         * gst-libs/gst/Makefile.am:
3523           moved gst-libs/gst/net to netbuffer through CVS surgery
3524           remove old directory
3525           updating build to accomodate
3526           (#322257)
3527
3528 2005-11-29  Andy Wingo  <wingo@pobox.com>
3529
3530         * pkgconfig/gstreamer-plugins-base.pc.in:
3531         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
3532         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
3533         (#322257).
3534
3535 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
3536
3537         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
3538         3rd time's the charm. Correct ref-counting for discarded buffers.
3539
3540 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
3541
3542         * gst/playback/gststreamselector.c:
3543         (gst_stream_selector_class_init),
3544         (gst_stream_selector_set_property),
3545         (gst_stream_selector_get_property),
3546         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
3547         Fix ref-counting
3548
3549 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
3550
3551         * gst/subparse/gstsubparse.c: (feed_textbuf):
3552           Don't access already unref'ed buffer.
3553
3554 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
3555
3556         * gst/playback/gststreamselector.c:
3557         (gst_stream_selector_class_init), (gst_stream_selector_init),
3558         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
3559         (gst_stream_selector_get_property),
3560         (gst_stream_selector_get_linked_pad),
3561         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
3562         * gst/playback/gststreamselector.h:
3563         Add the active-pad property for playbin to use shortly. Ignore buffers
3564         from any other pad, returning GST_FLOW_NOT_LINKED
3565
3566 2005-11-29  Julien MOUTTE  <julien@moutte.net>
3567
3568         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
3569         patch from bug #322704 (Alessandro Decina).
3570
3571 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3572
3573         * gst-libs/gst/audio/Makefile.am:
3574           folded audiofilter into the audio library
3575
3576 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3577
3578         * gst/videoscale/gstvideoscale.h:
3579         * gst/videoscale/gstvideoscale.c:
3580           remove unimplemented scale methods
3581
3582 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
3583
3584         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
3585           Don't leak caps.
3586
3587 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3588
3589         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
3590         (gst_ximagesink_setcaps):
3591         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3592         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
3593         happens (only visible on ximagesink but bug is in xv too) set_caps was
3594         destroying the internal x[v]image used to memcpy non locally alloced
3595         buffers so that it got renewed on next _chain. The issue is that 
3596         _expose will try to put that image as it reffed it in _put.
3597         Using gst_buffer_unref instead of destroy fixes it !
3598
3599 2005-11-28  Edward Hervey  <edward@fluendo.com>
3600
3601         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
3602         (try_to_link_1), (queue_filled_cb):
3603         Better use of the queues. Start with a small size queue and only increase
3604         the size of the queues when the other queues are empty.
3605
3606 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
3607
3608         * gst-libs/gst/video/Makefile.am:
3609           compile in copied-over videofilter into the video library
3610         * gst-libs/gst/video/videosink.h:
3611           rename the header to gstvideosink.h since it's a base GstObject class
3612         * sys/ximage/ximagesink.h:
3613         * sys/xvimage/xvimagesink.h:
3614           use the new header
3615
3616 2005-11-28  Wim Taymans  <wim@fluendo.com>
3617
3618         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
3619         * gst/playback/gstplaybasebin.h:
3620         Prepare to handle errors betters.
3621
3622         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
3623         Set sinks to PAUSED first before adding and linking them so that
3624         we don't interrupt dataflow.
3625
3626 2005-11-28  Wim Taymans  <wim@fluendo.com>
3627
3628         * gst-libs/gst/audio/TODO:
3629         Updated TODO
3630
3631         * gst-libs/gst/audio/gstaudiosink.c:
3632         (gst_audioringbuffer_open_device),
3633         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
3634         (gst_audioringbuffer_release):
3635         Small cleanups.
3636
3637         * gst-libs/gst/audio/gstbaseaudiosink.c:
3638         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
3639         (gst_base_audio_sink_change_state):
3640         Slave to the master clock when going to PLAYING and unslave when
3641         going to PAUSED.
3642
3643         * gst-libs/gst/audio/gstringbuffer.c:
3644         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
3645         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
3646         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
3647         (gst_ring_buffer_clear_all), (wait_segment),
3648         (gst_ring_buffer_commit), (gst_ring_buffer_read),
3649         (gst_ring_buffer_advance):
3650         * gst-libs/gst/audio/gstringbuffer.h:
3651         Add some docs and cleanups.
3652
3653 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3654
3655         * sys/xvimage/xvimagesink.c:
3656         (gst_xvimagesink_navigation_send_event): Fix navigation events
3657         coordinates translation with pixel aspect ratios.
3658
3659 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3660
3661         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
3662         Use calculated video geometry from _setcaps instead of buffer
3663         caps to respect pixel aspect ratio. (fixes #322388)
3664
3665 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3666
3667         * docs/libs/tmpl/gstcolorbalance.sgml:
3668         * docs/libs/tmpl/gstmixer.sgml:
3669         * docs/libs/tmpl/gstxoverlay.sgml:
3670         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
3671         interface.
3672
3673 2005-11-28  Julien MOUTTE  <julien@moutte.net>
3674
3675         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
3676         Refuse to create an XvImage if we can't find the format.
3677
3678 2005-11-28  Edward Hervey  <edward@fluendo.com>
3679
3680         * gst-libs/gst/riff/riff-media.c:
3681         (gst_riff_create_audio_template_caps):
3682         Add ATRAC3 to the list of riff-possible audio caps.
3683         I know we still don't have a plugin for atrac3, but it's saner to output
3684         that than a cryptic mimetype.
3685
3686 2005-11-27  Edward Hervey  <edward@fluendo.com>
3687
3688         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
3689         Don't try to create a zero-sized subbuffer.
3690
3691 2005-11-27  Julien MOUTTE  <julien@moutte.net>
3692
3693         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
3694         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
3695         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
3696         (gst_ximagesink_expose): Fixed a tricky race.
3697         * sys/ximage/ximagesink.h:
3698         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3699         (gst_xvimagesink_expose): Fixed a tricky race.
3700         * sys/xvimage/xvimagesink.h:
3701
3702 2005-11-27  Edward Hervey  <edward@fluendo.com>
3703
3704         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
3705         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
3706         Remove unused properties, and add queues between demuxers and decoders
3707         so that a lot more files can preroll properly.
3708
3709 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3710
3711         * gst-libs/gst/net/Makefile.am:
3712         * gst-libs/gst/rtp/Makefile.am:
3713         * gst-libs/gst/tag/Makefile.am:
3714           remove silly include
3715         * gst/tags/Makefile.am:
3716         * gst/tags/gsttagediting.c:
3717         * gst/tags/gsttageditingprivate.h:
3718         * gst/tags/tagedit.vcproj:
3719           remove directory, is as good as empty
3720
3721 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3722
3723         * configure.ac:
3724           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
3725         * gst-libs/Makefile.am:
3726         * gst-libs/gst/audio/Makefile.am:
3727         * gst-libs/gst/interfaces/Makefile.am:
3728         * gst-libs/gst/net/Makefile.am:
3729         * gst-libs/gst/riff/Makefile.am:
3730         * gst-libs/gst/rtp/Makefile.am:
3731         * gst-libs/gst/tag/Makefile.am:
3732         * gst-libs/gst/video/Makefile.am:
3733           and use them
3734
3735 2005-11-27  Julien MOUTTE  <julien@moutte.net>
3736
3737         * docs/libs/tmpl/gstcolorbalance.sgml:
3738         * docs/libs/tmpl/gstmixer.sgml:
3739         * docs/libs/tmpl/gstxoverlay.sgml:
3740         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
3741         * sys/ximage/ximagesink.h:
3742         * sys/xvimage/xvimagesink.h: More and more documentation.
3743
3744 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3745
3746         * docs/libs/gst-plugins-base-libs-docs.sgml:
3747         * docs/libs/gst-plugins-base-libs-sections.txt:
3748         * docs/libs/tmpl/gstcolorbalance.sgml:
3749         * docs/libs/tmpl/gstmixer.sgml:
3750         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
3751         to documentation.
3752
3753 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3754
3755         * docs/plugins/Makefile.am:
3756         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3757         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3758         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
3759
3760 2005-11-26  Julien MOUTTE  <julien@moutte.net>
3761
3762         * docs/plugins/Makefile.am:
3763         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3764         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3765         * docs/plugins/inspect/plugin-adder.xml:
3766         * docs/plugins/inspect/plugin-alsa.xml:
3767         * docs/plugins/inspect/plugin-audioconvert.xml:
3768         * docs/plugins/inspect/plugin-audiorate.xml:
3769         * docs/plugins/inspect/plugin-audioresample.xml:
3770         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3771         * docs/plugins/inspect/plugin-decodebin.xml:
3772         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3773         * docs/plugins/inspect/plugin-gnomevfs.xml:
3774         * docs/plugins/inspect/plugin-ogg.xml:
3775         * docs/plugins/inspect/plugin-playbin.xml:
3776         * docs/plugins/inspect/plugin-subparse.xml:
3777         * docs/plugins/inspect/plugin-tcp.xml:
3778         * docs/plugins/inspect/plugin-theora.xml:
3779         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3780         * docs/plugins/inspect/plugin-video4linux.xml:
3781         * docs/plugins/inspect/plugin-videorate.xml:
3782         * docs/plugins/inspect/plugin-videoscale.xml:
3783         * docs/plugins/inspect/plugin-videotestsrc.xml:
3784         * docs/plugins/inspect/plugin-volume.xml:
3785         * docs/plugins/inspect/plugin-vorbis.xml:
3786         * docs/plugins/inspect/plugin-ximagesink.xml:
3787         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
3788         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
3789
3790 2005-11-26  Edward Hervey  <edward@fluendo.com>
3791
3792         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
3793         Properly return GstFlowReturn from gst_pad_push in chain functions.
3794
3795 2005-11-25  Michael Smith  <msmith@fluendo.com>
3796
3797         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
3798         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
3799         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
3800         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
3801           Handle various conditions better when we don't understand a stream.
3802           Removes a heap of CRITICALs on ogg streams containing unknown data.
3803
3804 2005-11-24  Andy Wingo  <wingo@pobox.com>
3805
3806         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
3807         Be threadsafe.
3808
3809 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3810
3811         * configure.ac: back to HEAD
3812
3813 === release 0.9.6 ===
3814
3815 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
3816
3817         * configure.ac:
3818           releasing 0.9.6, "White Eight"
3819
3820 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3821
3822         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
3823         * docs/plugins/inspect/plugin-sine.xml:
3824           remove sinesrc some more
3825
3826 2005-11-23  Wim Taymans  <wim@fluendo.com>
3827
3828         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
3829         If we are reading too slowly, jump forward in the ringbuffer
3830         instead of blocking.
3831
3832 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3833
3834         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
3835         (gst_visual_chain):
3836         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
3837         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
3838         (gst_videorate_chain):
3839         * gst/videotestsrc/gstvideotestsrc.c:
3840         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
3841         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
3842         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
3843         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
3844         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3845         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3846           Updates for API changes
3847
3848 2005-11-23  Wim Taymans  <wim@fluendo.com>
3849
3850         * gst-libs/gst/audio/gstbaseaudiosink.c:
3851         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3852         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3853         Fix for calibration API change.
3854
3855 2005-11-23  Michael Smith <msmith@fluendo.com>
3856
3857         * gst-libs/gst/audio/multichannel.c:
3858         (gst_audio_get_channel_positions),
3859         (gst_audio_set_channel_positions),
3860         (gst_audio_set_structure_channel_positions_list),
3861         (gst_audio_fixate_channel_positions):
3862           Use gst_value_array_*() functions on value arrays, not
3863           gst_value_list_*().
3864
3865 2005-11-23  Edward Hervey  <edward@fluendo.com>
3866
3867         * autogen.sh:
3868         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
3869         Fixes autogen
3870
3871 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3872
3873         * check/Makefile.am:
3874         * check/elements/videotestsrc.c: (setup_videotestsrc),
3875         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
3876         (main):
3877           add a test for videotestsrc
3878
3879 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3880
3881         * gst/sine/.cvsignore:
3882         * gst/sine/Makefile.am:
3883         * gst/sine/gstsinesrc.c:
3884         * gst/sine/gstsinesrc.h:
3885         * gst/sine/sinesrc.vcproj:
3886           and remove sinesrc from the repository.  Closes #321446
3887
3888 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3889
3890         * configure.ac:
3891         * gst-plugins-base.spec.in:
3892           remove sinesrc from the build
3893
3894 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3895
3896         * check/Makefile.am:
3897         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
3898         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
3899         (main):
3900           add a test for audiotestsrc, testing all waves.  Even seems
3901           leak-free at first glance, nice job Stefan
3902
3903 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3904
3905         * po/af.po:
3906         * po/az.po:
3907         * po/cs.po:
3908         * po/en_GB.po:
3909         * po/hu.po:
3910         * po/it.po:
3911         * po/nb.po:
3912         * po/nl.po:
3913         * po/or.po:
3914         * po/sq.po:
3915         * po/sr.po:
3916         * po/sv.po:
3917         * po/uk.po:
3918         * po/vi.po:
3919           Translation string updates
3920
3921         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3922         (gst_v4lsrc_set_caps):
3923         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3924         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3925         * sys/v4l/v4lsrc_calls.h:
3926           Improve v4lsrc, by making it work again.
3927
3928 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3929
3930         * ext/libvisual/visual.c: (gst_visual_chain):
3931           Fix the fps calculations.
3932
3933         * gst/ffmpegcolorspace/avcodec.h:
3934           Move structure element for clarity
3935
3936         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
3937         * gst-libs/gst/interfaces/tunernorm.h:
3938         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
3939         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
3940         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
3941         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
3942         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
3943         (gst_v4lmjpegsrc_getcaps):
3944         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3945         (gst_v4lsrc_set_caps):
3946         * sys/v4l/gstv4lsrc.h:
3947         * sys/v4l/v4l_calls.c: (gst_v4l_open):
3948         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3949         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3950         * sys/v4l/v4lsrc_calls.h:
3951           Fractional framerates...
3952
3953 2005-11-22  Wim Taymans  <wim@fluendo.com>
3954
3955         * gst-libs/gst/audio/gstbaseaudiosink.c:
3956         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3957         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3958         And we provide a clock by default, of course...
3959
3960 2005-11-22  Wim Taymans  <wim@fluendo.com>
3961
3962         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
3963         This clock can be slaved to a master clock now.
3964
3965         * gst-libs/gst/audio/gstbaseaudiosink.c:
3966         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
3967         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
3968         (gst_base_audio_sink_set_clock),
3969         (gst_base_audio_sink_set_property),
3970         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
3971         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3972         * gst-libs/gst/audio/gstbaseaudiosink.h:
3973         Handle slaving the internal clock to the clock selected in the
3974         pipeline.
3975         Add property to make the basesink not provide a clock.
3976
3977         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3978         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
3979         (gst_base_rtp_depayload_wait):
3980         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3981         We can use the clock in GstElement, no need to store it ourselves.
3982
3983 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3984
3985         * docs/libs/tmpl/gstaudio.sgml:
3986           update
3987         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
3988         (gst_paranoia_endian_get_type):
3989         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
3990         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
3991         * gst/audiotestsrc/gstaudiotestsrc.c:
3992         (gst_audiostestsrc_wave_get_type):
3993         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
3994         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
3995         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
3996         (gst_sync_method_get_type), (gst_unit_type_get_type),
3997         (gst_client_status_get_type), (gst_multifdsink_class_init),
3998         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
3999         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
4000         (gst_multifdsink_get_property):
4001         * gst/tcp/gstmultifdsink.h:
4002         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
4003         * gst/videotestsrc/gstvideotestsrc.c:
4004         (gst_videotestsrc_pattern_get_type):
4005           remove deprecated properties
4006           fix up enums to correctly have short lowercase dashed nicks
4007
4008 2005-11-22  Michael Smith <msmith@fluendo.com>
4009
4010         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
4011         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
4012           Add underscore.
4013
4014 2005-11-22  Michael Smith <msmith@fluendo.com>
4015
4016         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
4017         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
4018           Use utility method for scaling clocktime for fractional framerates.
4019
4020 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
4021
4022         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
4023         (gst_visual_chain):
4024         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
4025         * ext/theora/theoradec.c: (theora_handle_type_packet):
4026         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
4027         (theora_enc_chain):
4028         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4029         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
4030         * gst-libs/gst/video/video.h:
4031         * gst/ffmpegcolorspace/avcodec.h:
4032         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4033         (gst_ffmpeg_caps_to_pixfmt):
4034         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4035         (gst_ffmpegcsp_set_caps):
4036         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
4037         (gst_videorate_setcaps), (gst_videorate_blank_data),
4038         (gst_videorate_chain):
4039         * gst/videotestsrc/gstvideotestsrc.c:
4040         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
4041         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
4042         (gst_videotestsrc_event), (gst_videotestsrc_create):
4043         * gst/videotestsrc/gstvideotestsrc.h:
4044         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
4045         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
4046         (gst_ximagesink_get_times), (gst_ximagesink_init):
4047         * sys/ximage/ximagesink.h:
4048         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
4049         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
4050         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
4051         * sys/xvimage/xvimagesink.h:
4052           Convert elements to use fractions for their framerate.
4053           V4L elements to come later tonight.
4054
4055 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
4056
4057         * gst-libs/gst/audio/audio.c:
4058         * gst-libs/gst/audio/audio.h:
4059           remove some deprecated functions
4060
4061 2005-11-22  Andy Wingo  <wingo@pobox.com>
4062
4063         * Update for gst_tag_setter API changes.
4064
4065 2005-11-22  Andy Wingo  <wingo@pobox.com>
4066
4067         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
4068         (gst_ogg_demux_perform_seek):
4069         * ext/theora/theoradec.c (theora_dec_sink_event):
4070         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
4071         update-funcnames.
4072
4073 2005-11-22  Wim Taymans  <wim@fluendo.com>
4074
4075         * examples/seeking/seek.c: (main):
4076         Give higher priority to bus signals than the gtk events
4077         to fix a race condition in the segment looping.
4078
4079 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
4080
4081         * ext/theora/Makefile.am:
4082         * ext/vorbis/Makefile.am:
4083         * gst-libs/gst/tag/Makefile.am:
4084         * gst-plugins-base.spec.in:
4085           Rename libgsttagedit to libgsttag (#322117).
4086
4087 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
4088
4089         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
4090         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
4091           Call gst_x_overlay_prepare_xwindow_id() to give applications
4092           a final chance to set their own xwindow id before the video
4093           sink creates its own window.
4094
4095 2005-11-22  Julien MOUTTE  <julien@moutte.net>
4096
4097         * sys/xvimage/xvimagesink.c:
4098         (gst_xvimagesink_navigation_send_event): Handle navigation
4099         events correcly with borders if applicable.
4100
4101 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
4102
4103         Patch by: Luca Ognibene
4104
4105         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4106         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
4107         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4108         (gst_ffmpegcsp_caps_remove_format_info):
4109         * gst/ffmpegcolorspace/imgconvert.c:
4110         * gst/ffmpegcolorspace/imgconvert_template.h:
4111           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
4112           #318353); use gst_structure_has_name().
4113
4114 2005-11-22  Julien MOUTTE  <julien@moutte.net>
4115
4116         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
4117         (gst_ximagesink_class_init): Add debug macros on functions.
4118         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4119         (gst_xvimagesink_xwindow_draw_borders),
4120         (gst_xvimagesink_xvimage_put),
4121         (gst_xvimagesink_xwindow_update_geometry),
4122         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
4123         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
4124         (gst_xvimagesink_xcontext_clear),
4125         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
4126         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
4127         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
4128         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
4129         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
4130         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
4131         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
4132         expose while being PAUSED, out of data flow navigation events, etc..
4133
4134 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
4135
4136         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
4137         * gst-libs/gst/audio/audio.h:
4138           fix prototype - wondering why the test worked regardless
4139
4140 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
4141
4142         * check/Makefile.am:
4143         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
4144         * gst-libs/gst/audio/audio.h:
4145           add a method that returns a proper GstClockTime
4146
4147 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
4148
4149         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
4150         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
4151         * gst-libs/gst/interfaces/xoverlay.h:
4152           Remove everything having to do with the desired size; add 
4153           gst_x_overlay_prepare_xwindow_id() function; remove the
4154           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
4155           post a message on the bus instead (#321816).
4156
4157         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
4158         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
4159         (gst_xvimagesink_xoverlay_init):
4160           Remove desired size stuff (#321816).
4161
4162 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
4163
4164         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
4165         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
4166         (mpeg_video_type_find), (mpeg_video_stream_type_find):
4167           Terminate vararg functions with NULL instead of 0 to 
4168           make gcc4 happy.
4169
4170 2005-11-21  Andy Wingo  <wingo@pobox.com>
4171
4172         patch by: Sebastien Cote <sebas642@yahoo.ca>
4173         
4174         * gst-libs/gst/rtp/gstrtpbuffer.h: 
4175         * gst-libs/gst/rtp/gstrtpbuffer.c
4176         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
4177
4178 2005-11-21  Andy Wingo  <wingo@pobox.com>
4179
4180         * gst/playback/gstplaybin.c (gen_audio_element) 
4181         (gen_video_element): Use the new MISSING_PLUGIN core error
4182         category. Closes #320060.
4183
4184         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
4185         * gst/videorate/gstvideorate.c (gst_videorate_event):
4186         * ext/theora/theoradec.c (theora_dec_sink_event): 
4187         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
4188         stream lock.
4189
4190         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
4191         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
4192         stream lock changes.
4193
4194 2005-11-21  Wim Taymans  <wim@fluendo.com>
4195
4196         * gst-libs/gst/audio/gstbaseaudiosink.c:
4197         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
4198         (gst_base_audio_sink_provide_clock),
4199         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
4200         (gst_base_audio_sink_change_state):
4201         * gst/audioresample/gstaudioresample.c:
4202         Segment update fix.
4203
4204 2005-11-21  Andy Wingo  <wingo@pobox.com>
4205
4206         * *.h:
4207         * *.c: Ran scripts/update-macros. Oh yes.
4208
4209 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
4210
4211         * sys/ximage/Makefile.am:
4212         * sys/ximage/ximage.c:
4213           Rename ximage plugin to ximagesink (#321426) (Don't forget to
4214           remove your old libgstximage.* manually if necessary).
4215
4216 2005-11-21  Michael Smith <msmith@fluendo.com>
4217
4218         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
4219           Minimal fix for bug #320200: set the min/max bitrate in the correct
4220           units. A better fix would be to upgrade to the RATEMANAGE2
4221           interface, rather than using the deprecated interface used here, but
4222           that would require an update in our libvorbis dependency (to 1.1),
4223           which is probably undesirable.
4224
4225 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
4226
4227         * ext/libvisual/visual.c: (get_buffer):
4228         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4229         (gst_base_audio_src_fixate):
4230         * gst/audioconvert/gstaudioconvert.c:
4231         (gst_audio_convert_fixate_caps):
4232         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
4233         * gst/audiotestsrc/gstaudiotestsrc.c:
4234         (gst_audiotestsrc_src_fixate):
4235         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
4236         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
4237         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
4238         * gst/videotestsrc/gstvideotestsrc.c:
4239         (gst_videotestsrc_src_fixate):
4240         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
4241         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
4242           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
4243           (#322027)
4244
4245
4246 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
4247
4248         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
4249         (gst_riff_create_iavs_caps):
4250         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
4251         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
4252         (gst_riff_parse_info):
4253         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
4254         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
4255         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
4256           Fixes for GST_FOURCC_FORMAT API change.
4257
4258 2005-11-21  Andy Wingo  <wingo@pobox.com>
4259
4260         patch by: Alessandro Dessina <alessandro nnva org>
4261
4262         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
4263         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
4264         (gst_ogg_parse_chain):
4265         * ext/theora/theoraenc.c (theora_set_header_on_caps):
4266         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
4267         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
4268         gst_value_list calls on arrays. Fixes #321962.
4269
4270 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
4271
4272         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
4273         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
4274         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4275         * gst/adder/gstadder.c: (gst_adder_init),
4276         (gst_adder_request_new_pad), (gst_adder_collected),
4277         (gst_adder_change_state):
4278           Update for gst_collectpads_foo() to gst_collect_pads_foo()
4279           API change.
4280
4281 2005-11-21  Michael Smith <msmith@fluendo.com>
4282
4283         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
4284         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
4285           Properly handle pad_push return values.
4286
4287 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
4288
4289         * gst-libs/gst/tag/Makefile.am:
4290         * gst-libs/gst/tag/gstvorbistag.c:
4291         (gst_tag_list_to_vorbiscomment_buffer):
4292           Remove obsolete vorbistag element and debug category.
4293
4294         * gst/playback/gstplaybasebin.c: (check_queue):
4295           Don't divide by 0 when queue-threshold is 0.
4296
4297         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
4298           Don't modify an existing pixel-aspect-ratio if we fail to read
4299           a new one.
4300
4301 2005-11-20  Wim Taymans  <wim@fluendo.com>
4302
4303         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
4304         (gst_vorbisenc_push_packet):
4305         GST_PAD_IS_USABLE is gone, use the return value of
4306         the push or pad_alloc_buffer instead.
4307
4308 2005-11-18  Julien MOUTTE  <julien@moutte.net>
4309
4310         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4311         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
4312         (gst_ximagesink_ximage_destroy),
4313         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
4314         (gst_ximagesink_xwindow_new),
4315         (gst_ximagesink_xwindow_update_geometry),
4316         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
4317         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
4318         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
4319         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
4320         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
4321         (gst_ximagesink_navigation_send_event),
4322         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
4323         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
4324         (gst_ximagesink_finalize), (gst_ximagesink_init),
4325         (gst_ximagesink_class_init):
4326         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
4327         This new version brings correct software scaling, non flickering
4328         window while resizing, pixel aspect ratio handling, usage of
4329         hardware buffer pools, out of data flow event thread for 
4330         navigation and handling of expose events even when being PAUSED,
4331         a new property to keep video aspect ratio when resizing, etc...
4332
4333 2005-11-18  Julien MOUTTE  <julien@moutte.net>
4334
4335         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
4336         (gst_videoscale_fixate_caps): Introduce back caps fixate with
4337         handling of PAR.
4338
4339 2005-11-18    <bilboed@dvdsrc.fluendo.com>
4340
4341         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
4342         Unsetting IS_SINK flag from the fakesink, so decodebin
4343         never behaves as a sink.
4344
4345 2005-11-17  Wim Taymans  <wim@fluendo.com>
4346
4347         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4348         (gst_base_audio_src_change_state):
4349         Fix the audiosrc base class again, we did not unflush.
4350
4351 2005-11-17  Julien MOUTTE  <julien@moutte.net>
4352
4353         * examples/seeking/seek.c: (make_dv_pipeline),
4354         (make_vorbis_theora_pipeline), (make_avi_pipeline),
4355         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
4356         to ogg/vorbis/theora pipeline.
4357
4358 2005-11-17  Wim Taymans  <wim@fluendo.com>
4359
4360         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
4361         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
4362         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
4363         Fix EOS on multiple streams.
4364         More debugging.
4365
4366 2005-11-16  Wim Taymans  <wim@fluendo.com>
4367
4368         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
4369         (gst_ogg_demux_perform_seek):
4370         Segment done must include stream time.
4371
4372         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
4373         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
4374         (gst_ogg_mux_change_state):
4375         Fix ogg muxer again.
4376
4377 2005-11-16  Wim Taymans  <wim@fluendo.com>
4378
4379         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
4380         Fix compile again.
4381
4382 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4383
4384         * ext/libvisual/visual.c: (gst_visual_init):
4385         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
4386         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
4387         (gst_ogg_parse_chain):
4388         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
4389         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
4390         * ext/theora/theoradec.c: (gst_theora_dec_init):
4391         * ext/theora/theoraenc.c: (gst_theora_enc_init):
4392         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
4393         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
4394         * gst/adder/gstadder.c: (gst_adder_class_init),
4395         (gst_adder_dispose):
4396         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
4397         * gst/subparse/gstsubparse.c: (gst_subparse_init):
4398         * gst/videorate/gstvideorate.c: (gst_videorate_init):
4399           Fix a whole set of pad template leaks
4400
4401 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4402
4403         * check/generic/states.c: (GST_START_TEST):
4404           fix the test so that it only checks for elements that are part of
4405           this source module
4406
4407 2005-11-16  Michael Smith <msmith@fluendo.com>
4408
4409         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
4410         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
4411         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
4412         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
4413         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
4414         (gst_ogg_mux_change_state):
4415           Fix leaking collectpads.
4416
4417 2005-11-16  Edward Hervey  <edward@fluendo.com>
4418
4419         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
4420         (gst_videorate_event), (gst_videorate_chain):
4421         Handle segment seeks
4422
4423 2005-11-16  Wim Taymans  <wim@fluendo.com>
4424
4425         * gst-libs/gst/audio/gstbaseaudiosink.c:
4426         (gst_base_audio_sink_provide_clock),
4427         (gst_base_audio_sink_change_state):
4428         Set ringbuffer to non-flushing when going to PAUSED, set to
4429         flushing again when going to READY.
4430
4431         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
4432         (gst_ring_buffer_stop):
4433         Start in flushing mode by default.
4434         Don't set flushing in the _stop method, let the app call
4435         this explicitly.
4436
4437 2005-11-16  Julien MOUTTE  <julien@moutte.net>
4438
4439         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
4440         * gst-libs/gst/video/videosink.h: Add helper function needed
4441         for video sinks.
4442
4443 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
4444
4445         * gst/videoscale/gstvideoscale.c:
4446         (gst_videoscale_handle_src_event):
4447           Don't leak reference to pad parent.
4448
4449 2005-11-16  Wim Taymans  <wim@fluendo.com>
4450
4451         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
4452         Set ringbuffer to flushing when stopping so that we don't
4453         block on wait_segment anymore and livelock.
4454
4455 2005-11-16  Wim Taymans  <wim@fluendo.com>
4456
4457         * examples/seeking/seek.c: (send_event), (do_seek),
4458         (loop_toggle_cb), (segment_done), (main):
4459         Added looping checkbox.
4460
4461 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4462
4463         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
4464         (gst_ogg_demux_init):
4465         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
4466         (gst_vorbis_dec_init):
4467           revert unrefs, they don't pass make check
4468
4469 2005-11-15  Johan Dahlin  <johan@gnome.org>
4470
4471         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
4472         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
4473         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
4474         (gst_vorbis_dec_init):
4475         Fix pad template leaks. 
4476
4477 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
4478
4479         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
4480           Make state change function thread safe.
4481
4482 2005-11-15  Edward Hervey  <edward@fluendo.com>
4483
4484         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
4485         (gst_ogg_demux_class_init):
4486         Implement GstElement::send_event, so we can send seek events
4487         in GST_STATE_READY
4488
4489 2005-11-14  Julien MOUTTE  <julien@moutte.net>
4490
4491         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
4492         Discovered how to take away flickering while resizing the
4493         window. Please don't put that in ximagesink, refactoring in
4494         progress.
4495
4496 2005-11-14  Michael Smith <msmith@fluendo.com>
4497
4498         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
4499         (gst_multifdsink_render):
4500           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
4501
4502 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4503
4504         * gst/playback/gstplaybin.c: (gen_audio_element):
4505           Use autoaudiosink, it tends to be more widely available than
4506           autoaudiiosink.
4507           
4508 2005-11-14  Andy Wingo  <wingo@pobox.com>
4509
4510         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
4511         as well if it is available. Fixes #316442.
4512
4513 2005-11-14  Michael Smith <msmith@fluendo.com>
4514
4515         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
4516         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
4517         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
4518         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
4519         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
4520         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
4521         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
4522         (gst_vorbisenc_change_state):
4523           Fix a small memory leak in vorbisenc.
4524           Fix large memory leaks in oggmux, also fix lots of state change
4525           bugs in oggmux.
4526
4527 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4528
4529         * gst/videotestsrc/gstvideotestsrc.c:
4530         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
4531         (gst_videotestsrc_src_fixate):
4532           move fixation to a fixate function
4533           remove negotiate function, basesrc's is good enough
4534           fixes a bug for check when using the element alone
4535
4536 2005-11-13  Edward Hervey  <edward@fluendo.com>
4537
4538         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
4539         (key_toggle_cb), (main):
4540         Added checkboxes for adding/removing the accurate and key_unit seek
4541         flags.
4542
4543 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
4544
4545         * configure.ac: back to HEAD
4546
4547 === release 0.9.5 ===
4548
4549 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
4550
4551         * configure.ac:
4552           releasing 0.9.5, "No No Kia"
4553
4554 2005-11-11  Edward Hervey  <edward@fluendo.com>
4555
4556         * examples/seeking/seek.c: (make_parselaunch_pipeline):
4557         Added parse-launch syntax seeking mode for the seeking example.
4558         This should help stress-test even more cases.
4559         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
4560
4561 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
4562
4563         * sys/xvimage/xvimagesink.c:
4564         (gst_xvimagesink_navigation_send_event):
4565           Check whether peer pad exists before sending navigation events
4566           to it.
4567
4568 2005-11-11  Michael Smith <msmith@fluendo.com>
4569
4570         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
4571         (gst_vorbisenc_buffer_from_packet):
4572         * ext/vorbis/vorbisenc.h:
4573           Set duration on encoded buffers. This allows oggmux's
4574           max_page_delay parameter to actually work.
4575
4576 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
4577
4578         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4579         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
4580         (gst_ffmpegcsp_avpicture_fill):
4581         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4582         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
4583           Make palettes work again (see #132341). Use our own macros
4584           for rounding up.
4585
4586 2005-11-10  Andy Wingo  <wingo@pobox.com>
4587
4588         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
4589         string doober.
4590
4591 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4592
4593         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4594         (gst_ffmpegcsp_transform_caps):
4595           Prefer passthrough in transform_caps
4596
4597 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4598
4599         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
4600           check for ALSA errors properly, instead of relying on ALSA's
4601           error strings to serve to the user.
4602
4603 2005-11-10  Wim Taymans  <wim@fluendo.com>
4604
4605         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
4606         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
4607         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
4608         Modernise the seek code.
4609
4610 2005-11-10  Michael Smith <msmith@fluendo.com>
4611         
4612         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
4613         (setup_substreams), (set_active_source):
4614           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
4615           trying to go to NULL if we failed to read a file.
4616
4617 2005-11-10  Wim Taymans  <wim@fluendo.com>
4618
4619         * gst/audiotestsrc/gstaudiotestsrc.c:
4620         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
4621         (gst_audiotestsrc_create):
4622         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4623         (gst_sinesrc_get_times), (gst_sinesrc_create):
4624         * gst/videotestsrc/gstvideotestsrc.c:
4625         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
4626         (gst_videotestsrc_create):
4627         The base class can now sync for us.
4628
4629 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4630
4631         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
4632           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
4633           name=source autoprobe=false autoprobe-fps=false copy-mode=1
4634           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
4635           format=(fourcc)I420" ! xvimagesink
4636
4637 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
4638
4639         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4640         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
4641         (gst_sinesrc_newsegment):
4642           Send newsegment event in TIME format, set duration if
4643           num-buffers is set, fix duration querying.
4644
4645 2005-11-10  Michael Smith <msmith@fluendo.com>
4646
4647         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4648         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
4649         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
4650         (gst_ogg_mux_collected):
4651          Fix EOS handling, partially. Now forwarding an EOS event once we have
4652          EOS on all pads works correctly. However, we still don't properly set
4653          EOS on the actual ogg stream pages.
4654
4655 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
4656
4657         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
4658           Set elements to NULL state before disposing of them.
4659
4660 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
4661
4662         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4663
4664         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4665         (gst_base_rtp_depayload_init),
4666         (gst_base_rtp_depayload_set_gst_timestamp):
4667         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4668           We need to send a newsegment event for each instance, not
4669           just for the first instance of this class (get rid of
4670           static variable in function). (#321011).
4671           
4672 2005-11-08  Michael Smith <msmith@fluendo.com>
4673
4674         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4675         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
4676         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
4677         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
4678           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
4679           This makes us mux things correctly according to the ogg muxing
4680           rules. Still not handling EOS correctly right now, though.
4681
4682 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
4683
4684         * gst/audioconvert/gstaudioconvert.c:
4685           Fix typo in docs. 
4686
4687 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
4688
4689         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4690         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
4691           Initialise segment_stop to GST_CLOCK_TIME_NONE when
4692           creating a new chain; should fix live streaming. Also
4693           add more debug output and fix a typo.
4694
4695 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
4696
4697         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4698
4699         * gst/volume/gstvolume.c: (volume_set_caps):
4700           Fix compilation on Solaris with Forte. (#320923)
4701
4702 2005-11-08  Wim Taymans  <wim@fluendo.com>
4703
4704         * gst-libs/gst/audio/gstbaseaudiosink.c:
4705         (gst_base_audio_sink_render):
4706         No need to do a typecheck.
4707
4708 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
4709
4710         * ext/alsa/gstalsa.h:
4711           We register a debug category, so let's use it.
4712
4713 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
4714
4715         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4716         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
4717         Fixed a small problem.
4718
4719 2005-11-04  Wim Taymans  <wim@fluendo.com>
4720
4721         * examples/seeking/Makefile.am:
4722         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
4723         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
4724         (make_playerbin_pipeline), (format_value), (update_scale),
4725         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
4726         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
4727         (print_usage), (main):
4728         Added app for playback speed testing.
4729
4730         * examples/seeking/seek.c: (dynamic_link),
4731         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
4732         (make_mpeg_pipeline), (do_seek), (set_update_scale),
4733         (message_received), (main):
4734         Updated seek example.
4735
4736 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
4737
4738         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4739         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4740         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
4741         (gst_base_rtp_depayload_set_clock):
4742         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4743         Don't sleep on the bench (system clock) when you have a nice 
4744         comfortable bed (Gstreamer clock) to sleep on.
4745
4746 2005-11-03  Wim Taymans  <wim@fluendo.com>
4747
4748         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4749         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
4750         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
4751         Handle the case where a pad_block failed.
4752
4753 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
4754
4755         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
4756
4757         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4758         (gst_base_rtp_depayload_add_to_queue),
4759         (gst_base_rtp_depayload_push),
4760         (gst_base_rtp_depayload_set_gst_timestamp),
4761         (gst_base_rtp_depayload_queue_release):
4762           Fixes some bugs in the depayloader's queuing/de-queueing code.
4763
4764 2005-10-31  Michael Smith <msmith@fluendo.com>
4765
4766         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
4767         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
4768         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
4769           Patch from Alessandro Decina <alessandro@nnva.org>.
4770           Make oggdemux only find the final time in a chain, not per-pad,
4771           since the per-pad information can be very expensive to locate, and
4772           it isn't used anywhere. This makes reading a file containing
4773           OggSkeleton reasonably fast.
4774           Also, make chain finding work when there are logical bitstreams that
4775           can't be decoded. Fixes #319110.
4776
4777 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4778
4779         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4780         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4781         (gst_base_rtp_depayload_chain),
4782         (gst_base_rtp_depayload_add_to_queue),
4783         (gst_base_rtp_depayload_push),
4784         (gst_base_rtp_depayload_set_gst_timestamp),
4785         (gst_base_rtp_depayload_queue_release),
4786         (gst_base_rtp_depayload_start_thread),
4787         (gst_base_rtp_depayload_set_property),
4788         (gst_base_rtp_depayload_get_property):
4789         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4790         Some random fixes, to fullfill the desires of thomas.
4791
4792 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4793
4794         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4795         (gst_base_rtp_depayload_add_to_queue),
4796         (gst_base_rtp_depayload_push):
4797         Fixed the queueing algorithm.
4798
4799 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
4800
4801         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4802         (gst_base_rtp_depayload_push):
4803         A small fix
4804
4805 2005-10-31  Wim Taymans  <wim@fluendo.com>
4806
4807         * gst-libs/gst/audio/gstringbuffer.h:
4808         Don't break ABI.
4809
4810         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4811         (gst_ffmpeg_caps_to_pixfmt):
4812         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4813         (gst_ffmpegcsp_set_caps):
4814         Some more comments.
4815         Handle missing required caps fields better.
4816
4817 2005-10-31  Wim Taymans  <wim@fluendo.com>
4818
4819         * gst-libs/gst/audio/gstbaseaudiosink.c:
4820         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
4821         (gst_base_audio_sink_render):
4822         * gst-libs/gst/audio/gstringbuffer.c:
4823         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4824         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
4825         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
4826         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
4827         (gst_ring_buffer_read):
4828         * gst-libs/gst/audio/gstringbuffer.h:
4829         Add flushing mode to the ringbuffer so that it in all cases does
4830         not try to handle more audio. This makes sure it does not try to
4831         block anymore when flushing and fixes a livelock.
4832
4833 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
4834
4835         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
4836         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
4837         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
4838           Explicitly check for -1 values before doing a conversion
4839           and always map them to -1. (#315545)
4840
4841 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4842
4843         * gst/playback/gstplaybin.c: (gen_video_element):
4844           first try autovideosink, then xvimagesink, then error out
4845         * po/POTFILES.in:
4846           add translatable file
4847         * po/af.po:
4848         * po/az.po:
4849         * po/cs.po:
4850         * po/en_GB.po:
4851         * po/hu.po:
4852         * po/it.po:
4853         * po/nb.po:
4854         * po/nl.po:
4855         * po/or.po:
4856         * po/sq.po:
4857         * po/sr.po:
4858         * po/sv.po:
4859         * po/uk.po:
4860         * po/vi.po:
4861           update translations
4862
4863 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
4864
4865         * gst-libs/gst/rtp/gstbasedepayload.c:
4866         * gst-libs/gst/rtp/gstbasedepayload.h:
4867           Minor cleanups
4868
4869 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
4870
4871         * gst/playback/.cvsignore:
4872         * gst/playback/decodetest.c:
4873         * gst/playback/test3.c:
4874           Port these two tests as well.
4875
4876 2005-10-27  Wim Taymans  <wim@fluendo.com>
4877
4878         * ext/theora/theoradec.c: (theora_dec_src_query),
4879         (theora_dec_sink_event):
4880         * ext/theora/theoraenc.c: (theora_enc_sink_event),
4881         (theora_enc_change_state):
4882         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
4883         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
4884         Take proper locks when handling events.
4885
4886 2005-10-27  Wim Taymans  <wim@fluendo.com>
4887
4888         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
4889         (gst_adder_change_state):
4890         Fix timestamps and fix deadlock when stopping the collectpads.
4891
4892 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
4893
4894         * gst-libs/gst/rtp/gstrtpbuffer.h:
4895         Declaring the payload types as strings too so that they can be used
4896         in the padtemplate inialization.
4897
4898 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
4899
4900         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
4901
4902         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4903         (gst_base_rtp_depayload_class_init):
4904         Fixes a small but nasty bug. The derived elements no longer segfaults
4905         on finalization.
4906
4907 2005-10-26  Michael Smith <msmith@fluendo.com>
4908
4909         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
4910           When clearing an audioconvert context, set tmpbufsize to zero, so
4911           we'll allocate it again later if required.
4912           This fixes audioconvert re-negotiating formats, which previously
4913           segfaulted with a NULL destination buffer.
4914
4915 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
4916
4917         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4918         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
4919         (gst_base_rtp_depayload_set_gst_timestamp),
4920         (gst_base_rtp_depayload_queue_release):
4921         Fixed a smalll memleak.
4922
4923 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
4924         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4925         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
4926         (gst_base_rtp_depayload_finalize),
4927         (gst_base_rtp_depayload_setcaps),
4928         (gst_base_rtp_depayload_add_to_queue),
4929         (gst_base_rtp_depayload_push),
4930         (gst_base_rtp_depayload_set_gst_timestamp),
4931         (gst_base_rtp_depayload_queue_release),
4932         (gst_base_rtp_depayload_thread),
4933         (gst_base_rtp_depayload_change_state):
4934         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4935         Changed the C++ comments to C comments
4936
4937 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
4938
4939         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
4940         * gst/tcp/gsttcpclientsrc.h:
4941         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
4942         * gst/tcp/gsttcpserversrc.h:
4943           Remove unused 'curoffset' structure member.
4944
4945 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
4946
4947         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4948         (gst_base_rtp_depayload_base_init),
4949         (gst_base_rtp_depayload_finalize):
4950         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4951         * gst-libs/gst/rtp/gstbasertppayload.h:
4952           The pad-template on the sinkpad should be set by the derived classes.
4953           Also added some useful macros.
4954
4955 2005-10-24  Wim Taymans  <wim@fluendo.com>
4956
4957         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4958         Correctly flush decoder samples even if we could not
4959         copy them to an output buffer. Fixes #319618.
4960
4961 2005-10-24  Julien MOUTTE  <julien@moutte.net>
4962
4963         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
4964         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
4965         the caps against our xcontext caps.
4966
4967 2005-10-24  Wim Taymans  <wim@fluendo.com>
4968
4969         * gst-libs/gst/audio/gstbaseaudiosink.c:
4970         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4971         Remove g_print
4972         Use sync property from baseclass to disable sync.
4973
4974 2005-10-24  Wim Taymans  <wim@fluendo.com>
4975
4976         * gst-libs/gst/audio/gstbaseaudiosink.c:
4977         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4978         Buffers with no timestamps get aligned with previous buffers or
4979         on underrun, played ASAP.
4980
4981 2005-10-24  Julien MOUTTE  <julien@moutte.net>
4982
4983         * gst-libs/gst/video/video.h:
4984         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4985         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
4986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
4987         here comes my change on caps for framerate and geometry range.
4988         We are now accepting 1 to MAXINT for width and height, and from
4989         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
4990         to be blended correctly in videomixer.
4991
4992 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4993
4994         * configure.ac:
4995           back to HEAD
4996
4997 === release 0.9.4 ===
4998
4999 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
5000
5001         * NEWS:
5002         * RELEASE:
5003         * configure.ac:
5004           releasing 0.9.4, "Velociraptor"
5005
5006 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
5007
5008         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
5009         * po/POTFILES.in:
5010           STOPPED -> FAILED
5011
5012 2005-10-21  Wim Taymans  <wim@fluendo.com>
5013
5014         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
5015         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
5016         (pad_blocked), (close_pad_link), (new_pad):
5017         Don't try to remove elements twice.
5018
5019 2005-10-21  Wim Taymans  <wim@fluendo.com>
5020
5021         * ext/theora/theoradec.c: (theora_dec_src_query),
5022         (theora_dec_sink_event):
5023         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5024         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5025         (vorbis_handle_data_packet):
5026         * ext/vorbis/vorbisdec.h:
5027         Fix old naming.
5028
5029         * gst-libs/gst/audio/gstbaseaudiosink.c:
5030         (gst_base_audio_sink_render):
5031         Don't try to sync on buffers without a timestamp.
5032
5033 2005-10-21  Wim Taymans  <wim@fluendo.com>
5034
5035         * ext/theora/theoradec.c: (theora_dec_src_query),
5036         (theora_dec_sink_event):
5037         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5038         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5039         (vorbis_handle_data_packet):
5040         * ext/vorbis/vorbisdec.h:
5041         Fix old naming.
5042
5043 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
5044
5045         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
5046         (gst_vorbisenc_src_query):
5047           Implement position and duration queries.
5048
5049         * gst/playback/test3.c: (update_scale), (main):
5050           Fix for async state changes and print nicer output.
5051
5052 2005-10-20  Wim Taymans  <wim@fluendo.com>
5053
5054         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5055         (dump_element_stats), (main):
5056         * gst/playback/test6.c: (main):
5057         Fix tests again
5058
5059 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
5060
5061         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
5062         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
5063           Don't use functions for position queries when handling
5064           duration queries.
5065
5066 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
5067
5068         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5069         (vorbis_handle_data_packet), (vorbis_dec_chain),
5070         (vorbis_dec_change_state):
5071         * ext/vorbis/vorbisdec.h:
5072           Vorbis streams can be embedded in other container formats
5073           than ogg, container formats where the demuxer might set 
5074           timestamps on encoded vorbis buffers instead of those silly 
5075           granulepos thingies. In short: make vorbisdec handle 
5076           timestamps on incoming buffers as well.
5077
5078 2005-10-20  Wim Taymans  <wim@fluendo.com>
5079
5080         * gst/playback/gstplaybasebin.c: (group_destroy),
5081         (gst_play_base_bin_change_state):
5082         Fix leak.
5083         Handle case where playbasebin is now ASYNC because
5084         decodebin is.
5085
5086 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
5087
5088         * gst/audioconvert/Makefile.am:
5089         * gst/audioconvert/bufferframesconvert.c:
5090         * gst/audioconvert/plugin.c: (plugin_init):
5091         * gst/audioconvert/plugin.h:
5092           And bye bye buffer-frames-convert
5093
5094 2005-10-19  Wim Taymans  <wim@fluendo.com>
5095
5096         * check/elements/audioconvert.c:
5097         * docs/libs/tmpl/gstaudio.sgml:
5098         * docs/libs/tmpl/gstcolorbalance.sgml:
5099         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5100         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
5101         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
5102         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
5103         * gst-libs/gst/audio/audio.h:
5104         * gst/audioconvert/audioconvert.h:
5105         * gst/audioconvert/gstaudioconvert.c:
5106         (gst_audio_convert_parse_caps):
5107         * gst/volume/gstvolume.c:
5108         Bye bye buffer-frames.
5109
5110 2005-10-19  Wim Taymans  <wim@fluendo.com>
5111
5112         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
5113         (query_positions_elems), (query_positions_pads), (update_scale),
5114         (do_seek), (set_update_scale), (message_received), (main):
5115         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5116         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
5117         (gst_ogg_demux_loop):
5118         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
5119         * ext/theora/theoradec.c: (theora_dec_src_query),
5120         (theora_dec_sink_event):
5121         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5122         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
5123         * gst/adder/gstadder.c: (gst_adder_query):
5124         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
5125         * gst/playback/test3.c: (update_scale):
5126         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5127         (dump_element_stats), (main):
5128         * gst/playback/test6.c: (main):
5129         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
5130         Query API update.
5131
5132 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
5133
5134         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
5135         (xml_check_first_element), (xml_type_find), (smil_type_find),
5136         (plugin_init):
5137           Add typefinding for SMIL and for generic XML. Based on patch by
5138           Akos Maroy (#308663).
5139
5140 2005-10-18  Wim Taymans  <wim@fluendo.com>
5141
5142         * gst/playback/Makefile.am:
5143         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
5144         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
5145         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
5146         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
5147         (gst_decode_bin_change_state):
5148         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5149         (gst_play_bin_send_event_to_sink):
5150         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5151         (dump_element_stats), (main):
5152         * gst/playback/test6.c: (main):
5153         Make playbin async, it'll commit state to paused when all streams
5154         are detected.
5155         Remove ugly hack.
5156         Added test6.c to show async behaviour.
5157
5158 2005-10-18  Wim Taymans  <wim@fluendo.com>
5159
5160         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5161         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
5162         Fix for segment-start/stop API change.
5163
5164 2005-10-18  Wim Taymans  <wim@fluendo.com>
5165
5166         * check/Makefile.am:
5167         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
5168         (main):
5169         Add future test for clock selection.
5170
5171 2005-10-18  Wim Taymans  <wim@fluendo.com>
5172
5173         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
5174         (gst_alsasink_close):
5175         Set handle to NULL.
5176
5177         * gst-libs/gst/audio/gstringbuffer.c:
5178         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
5179         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
5180         (gst_ring_buffer_start), (gst_ring_buffer_pause),
5181         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
5182         (gst_ring_buffer_read):
5183         More debug info.
5184
5185 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
5186
5187         * gst/audiotestsrc/Makefile.am:
5188         * gst/sine/Makefile.am:
5189         * gst/volume/Makefile.am:
5190           fix broken build of controllerized plugins
5191
5192 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
5193
5194         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
5195
5196         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
5197         (gst_riff_create_video_template_caps):
5198           Add support for Indeo-3 (IV32).
5199
5200 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5201
5202         * configure.ac:
5203           rewrite
5204
5205 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5206
5207         * gst-libs/gst/video/video.c: (gst_video_get_size):
5208         * gst/audiotestsrc/gstaudiotestsrc.c:
5209           doc updates
5210
5211 2005-10-17  Andy Wingo  <wingo@pobox.com>
5212
5213         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
5214         with the collectpads change.
5215         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
5216
5217         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
5218
5219         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
5220
5221         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
5222         alloc_buffer flow return to callers.
5223         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
5224         change. Fix some memleaks in theoraenc.
5225
5226         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
5227         in strange circumstance.
5228
5229 2005-10-17  Julien MOUTTE  <julien@moutte.net>
5230
5231         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5232         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
5233         from caps, let's use the caps...
5234
5235 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5236
5237         * configure.ac:
5238           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
5239
5240 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5241
5242         * gst-libs/gst/interfaces/Makefile.am:
5243           fix silly typo
5244
5245 2005-10-16  Andy Wingo  <wingo@pobox.com>
5246
5247         * gst/playback/gstdecodebin.c
5248         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
5249         function!
5250         (try_to_link_1): Increase kraziness level.
5251
5252 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5253
5254         * configure.ac:
5255           restructure like the core one
5256         * gst-libs/gst/audio/Makefile.am:
5257         * gst-libs/gst/interfaces/Makefile.am:
5258         * gst-libs/gst/net/Makefile.am:
5259         * gst-libs/gst/riff/Makefile.am:
5260         * gst-libs/gst/rtp/Makefile.am:
5261         * gst-libs/gst/tag/Makefile.am:
5262         * gst-libs/gst/video/Makefile.am:
5263           use correct linker flags, now the libs are properly versioned
5264         * check/elements/audioconvert.c: (verify_convert):
5265         * ext/alsa/gstalsaplugin.c:
5266         * ext/cdparanoia/gstcdparanoia.c:
5267         * ext/gnomevfs/gstgnomevfs.c:
5268         * ext/libvisual/visual.c:
5269         * ext/ogg/gstogg.c:
5270         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
5271         * ext/theora/theora.c:
5272         * ext/vorbis/vorbis.c:
5273         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
5274         * gst-libs/gst/tag/gsttagediting.c:
5275         * gst-libs/gst/video/video.c:
5276         * gst/adder/gstadder.c:
5277         * gst/audioconvert/plugin.c:
5278         * gst/audiorate/gstaudiorate.c:
5279         * gst/audioresample/gstaudioresample.c:
5280         * gst/audioresample/resample_ref.c: (resample_scale_ref):
5281         * gst/audioscale/gstaudioscale.c:
5282         * gst/audioscale/resample.c:
5283         * gst/audiotestsrc/gstaudiotestsrc.c:
5284         * gst/ffmpegcolorspace/gstffmpeg.c:
5285         * gst/playback/gstdecodebin.c: (close_pad_link):
5286         * gst/playback/gstplaybin.c: (gen_video_element),
5287         (gen_audio_element):
5288         * gst/sine/gstsinesrc.c:
5289         * gst/subparse/gstsubparse.c:
5290         * gst/tags/gsttagediting.c:
5291         * gst/tcp/gsttcpplugin.c:
5292         * gst/typefind/gsttypefindfunctions.c:
5293         * gst/videorate/gstvideorate.c:
5294         * gst/videoscale/gstvideoscale.c:
5295         * gst/videotestsrc/gstvideotestsrc.c:
5296         * gst/volume/gstvolume.c:
5297         * sys/v4l/gstv4l.c:
5298         * sys/ximage/ximage.c:
5299         * sys/xvimage/xvimagesink.c:
5300           fix up defines
5301
5302 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
5303
5304         * ext/vorbis/vorbisenc.c:
5305         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
5306         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
5307         (gst_tag_to_vorbis_comments):
5308           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
5309
5310 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
5311
5312         * examples/stats/mp2ogg.c:
5313         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5314           typo fixes
5315
5316 2005-10-13  Michael Smith <msmith@fluendo.com>
5317
5318         * ext/ogg/gstoggmux.c:
5319           Use magic glib macros to define constants as 64 bit, to ensure
5320           appropriate vararg passing.
5321
5322 2005-10-13  Michael Smith <msmith@fluendo.com>
5323
5324         * ext/ogg/gstoggmux.c:
5325         * gst/audioconvert/audioconvert.c: (float):
5326           Don't use LL suffix, as it's not portable, and neither of these
5327           uses required it anyway.
5328
5329 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
5330
5331         * examples/indexing/indexmpeg.c: (main):
5332         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
5333         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
5334         (cdparanoia_convert), (cdparanoia_query):
5335         * ext/cdparanoia/gstcdparanoia.h:
5336         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
5337         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
5338         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
5339         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
5340         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
5341         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
5342         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
5343         (gst_multifdsink_render), (gst_multifdsink_start),
5344         (gst_multifdsink_stop):
5345         * gst/tcp/gstmultifdsink.h:
5346         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
5347         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
5348         (gst_tcpclientsink_stop):
5349         * gst/tcp/gsttcpclientsink.h:
5350         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
5351         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
5352         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
5353         * gst/tcp/gsttcpclientsrc.h:
5354         * gst/tcp/gsttcpserversink.h:
5355         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
5356         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
5357         (gst_tcpserversrc_stop):
5358         * gst/tcp/gsttcpserversrc.h:
5359         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
5360         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
5361         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
5362           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
5363           moved bitshift from macro to enum definition
5364
5365 2005-10-12  Wim Taymans  <wim@fluendo.com>
5366
5367         * examples/seeking/Makefile.am:
5368         Oops.
5369
5370 2005-10-12  Wim Taymans  <wim@fluendo.com>
5371
5372         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
5373         (gst_ring_buffer_read), (gst_ring_buffer_clear):
5374         Don't assert on normal stuff.
5375
5376         * gst/playback/gstplaybin.c: (do_playbin_seek):
5377         API fix.
5378
5379 2005-10-12  Wim Taymans  <wim@fluendo.com>
5380
5381         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5382         * examples/seeking/Makefile.am:
5383         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
5384         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
5385         (do_seek), (set_update_scale), (message_received), (main):
5386         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
5387         (gst_ring_buffer_read), (gst_ring_buffer_clear):
5388         Update for _get_state() API change.
5389
5390 2005-10-11  Wim Taymans  <wim@fluendo.com>
5391
5392         * gst-libs/gst/audio/gstbaseaudiosink.c:
5393         (gst_base_audio_sink_render):
5394         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5395         (gst_base_audio_src_create):
5396         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
5397         (gst_ring_buffer_read):
5398         Cleanups.
5399         Commit and read from ringbuffer in samples rather than bytes.
5400
5401 2005-10-11  Wim Taymans  <wim@fluendo.com>
5402
5403         * gst-libs/gst/audio/gstbaseaudiosink.c:
5404         (gst_base_audio_sink_render):
5405         Respect segment rate and accum when scheduling samples.
5406
5407 2005-10-11  Julien MOUTTE  <julien@moutte.net>
5408
5409         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
5410         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
5411         EOS correctly, that needs more work.
5412
5413 2005-10-11  Wim Taymans  <wim@fluendo.com>
5414
5415         * check/generic/states.c: (GST_START_TEST):
5416         remove old property.
5417
5418         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5419         (gst_ogg_demux_perform_seek):
5420         * ext/theora/theoradec.c: (theora_dec_sink_event):
5421         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5422         (vorbis_handle_data_packet):
5423         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5424         (gst_base_rtp_depayload_set_gst_timestamp):
5425         * gst/videorate/gstvideorate.c: (gst_videorate_event):
5426         Update for newsegment API change.
5427
5428 2005-10-11  Michael Smith <msmith@fluendo.com>
5429
5430         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
5431         (do_playbin_seek), (gst_play_bin_send_event):
5432           Override send_event differently, so that we can takes bits of
5433           functionality from GstPipeline (special handling for seeks,
5434           including pausing/resuming, and resetting stream time) and still get
5435           the appropriate behaviour of only forwarding event to a single sink,
5436           rather than all of them.
5437           Unfortunately requires a lot of code duplication, but the
5438           alternatives are equally ugly in the end.
5439
5440 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5441
5442         * check/elements/audioconvert.c: (setup_audioconvert),
5443         (cleanup_audioconvert), (get_int_caps), (verify_convert),
5444         (GST_START_TEST), (audioconvert_suite):
5445           clean up tests a little, fix some leaks.
5446
5447 2005-10-10  Wim Taymans  <wim@fluendo.com>
5448
5449         * ext/alsa/gstalsasink.c:
5450         Also allow unsigned int.
5451
5452         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5453         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5454         Small cleanup
5455
5456 2005-10-10  Wim Taymans  <wim@fluendo.com>
5457
5458         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5459         Small update, use API as stated in design docs.
5460
5461         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
5462         (update_scale), (do_seek), (seek_cb), (set_update_scale),
5463         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
5464         (message_received), (main):
5465         Updated seek example for GOption. Some usability improvements.
5466
5467 2005-10-10  Wim Taymans  <wim@fluendo.com>
5468
5469         * gst/audioconvert/audioconvert.h:
5470         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
5471         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
5472         Alloc temp storage somewhere else where we can do it more
5473         portable.
5474
5475 2005-10-10  Wim Taymans  <wim@fluendo.com>
5476
5477         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
5478         (gst_tcpserversrc_start):
5479         Don't block in accept while doing the state change, move
5480         to poll and make cancellable.
5481
5482 2005-10-09  Philippe Khalaf <burger@speedy.org>
5483
5484         * gst-libs/gst/rtp/rtpbasedepayload.c:
5485         Set timestamp and add queue delay to timestamp
5486         * gst-libs/gst/rtp/rtpbuffer.h:
5487         Set correct payload type for h263
5488
5489 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
5490
5491         * gst/audiotestsrc/gstaudiotestsrc.c:
5492         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
5493         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
5494         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
5495         (gst_audiotestsrc_create_triangle),
5496         (gst_audiotestsrc_create_silence),
5497         (gst_audiotestsrc_create_white_noise),
5498         (gst_audiotestsrc_init_pink_noise),
5499         (gst_audiotestsrc_generate_pink_noise_value),
5500         (gst_audiotestsrc_create_pink_noise),
5501         (gst_audiotestsrc_change_wave):
5502         * gst/audiotestsrc/gstaudiotestsrc.h:
5503           fixed typo, added pink noise
5504
5505 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5506
5507         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
5508         (plugin_init):
5509           Add wavpack and spc typefind functions from 0.8 branch.
5510
5511 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5512
5513         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
5514         (ar_type_find), (msdos_type_find), (plugin_init):
5515           Add typefind functions for tar archives, ar archives,
5516           RAR archives, and msdos-executables (dlls, exe, etc.).
5517           Some of those would be wrongly identified as mpeg
5518           streams of some sort before (#315550).
5519
5520 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
5521
5522         * configure.ac:
5523         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5524         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5525         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
5526         * gst/audiotestsrc/Makefile.am:
5527         * gst/audiotestsrc/gstaudiotestsrc.c:
5528         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
5529         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
5530         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
5531         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
5532         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
5533         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
5534         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
5535         (gst_audiotestsrc_create_silence),
5536         (gst_audiotestsrc_create_white_noise),
5537         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
5538         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
5539         (gst_audiotestsrc_start), (plugin_init):
5540         * gst/audiotestsrc/gstaudiotestsrc.h:
5541           add new plugin and element
5542         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
5543           use gobject_class
5544
5545 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5546
5547         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
5548         (gst_adder_init), (gst_adder_request_new_pad),
5549         (gst_adder_change_state):
5550           Add query function to source pad, so adder reports the correct
5551           time/sample position when queried (#315457); fix state change
5552           function; use GST_DEBUG_FUNCPTR() for pad functions.
5553
5554 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
5555
5556         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
5557           Fix leaks in typefind registration
5558           Clean up the gratuitous commenting and whitespacing a little
5559
5560 2005-10-08  Wim Taymans  <wim@fluendo.com>
5561
5562         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
5563         Only actually wait for the thread to be stopped if it's 
5564         running.
5565
5566 2005-10-08  Wim Taymans  <wim@fluendo.com>
5567
5568         * gst-libs/gst/audio/gstbaseaudiosink.c:
5569         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
5570         If we receive EOS we can start playback of what we had.
5571
5572 2005-10-08  Wim Taymans  <wim@fluendo.com>
5573
5574         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
5575         (gst_multifdsink_finalize), (multifdsink_hash_remove),
5576         (gst_multifdsink_stop):
5577         Fix crasher when going to NULL multiple times.
5578
5579 2005-10-06  Wim Taymans  <wim@fluendo.com>
5580
5581         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
5582         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5583         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5584         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
5585         patch from Edgard Lima <edgard.lima@indt.org.br>
5586         Fixed gstbaseaudiosrc adding ring buffer sync to it.
5587
5588 2005-10-06  Wim Taymans  <wim@fluendo.com>
5589
5590         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
5591         Report the FLOW_RETURN as string in the error message.
5592
5593         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
5594         Don't assert when clearing an unnegotiated buffer.
5595
5596 2005-10-04  Michael Smith <msmith@fluendo.com>
5597
5598         * gst/playback/gstplaybasebin.c: (group_destroy),
5599         (gen_preroll_element), (remove_groups), (setup_source):
5600         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
5601         (setup_sinks), (gst_play_bin_send_event),
5602         (gst_play_bin_change_state):
5603           Set state to NULL before removing from bin. Fix refcounting.
5604
5605 2005-10-04  Michael Smith <msmith@fluendo.com>
5606
5607         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
5608           Correct refcounting in send_event() function. Previously was wrong
5609           if the first sink was unable to handle the event.
5610
5611 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5612
5613         * configure.ac:
5614           back to development
5615
5616 === release 0.9.3 ===
5617
5618 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5619
5620         * configure.ac:
5621           Releasing 0.9.3, "De Facto"
5622
5623 2005-10-03  Andy Wingo  <wingo@pobox.com>
5624
5625         * gst/playback/gstdecodebin.c (try_to_link_1)
5626         (remove_element_chain): set element to NULL before removing it.
5627
5628 2005-10-02  Johan Dahlin  <johan@gnome.org>
5629
5630         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
5631         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
5632         MT safe.
5633
5634 2005-10-02  Andy Wingo  <wingo@pobox.com>
5635
5636         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
5637         (gst_ring_buffer_prepare_read): 
5638         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
5639         Demote to LOG.
5640
5641 2005-09-29  Wim Taymans  <wim@fluendo.com>
5642
5643         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
5644         * ext/theora/theoradec.c: (theora_handle_data_packet):
5645         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
5646         Propagate error codes from alloc_buffer too.
5647
5648 2005-09-29  Wim Taymans  <wim@fluendo.com>
5649
5650         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
5651         We use fixed caps.
5652
5653         * gst/playback/Makefile.am:
5654         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5655         (dump_element_stats), (main):
5656         Added example stream introspection code.
5657
5658 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
5659
5660         * gst/adder/gstadder.c: (gst_adder_collected):
5661           fix adder for float elements
5662
5663 2005-09-28  Wim Taymans  <wim@fluendo.com>
5664
5665         * gst-libs/gst/audio/gstbaseaudiosink.c:
5666         (gst_base_audio_sink_class_init),
5667         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
5668         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5669         (gst_base_audio_src_class_init),
5670         (gst_base_audio_src_provide_clock):
5671         get_clock -> provide_clock
5672
5673 2005-09-28  Andy Wingo  <wingo@pobox.com>
5674
5675         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
5676         and unlocking.
5677
5678         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
5679         unlocking.
5680
5681         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
5682         Actually add the pad template.
5683         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
5684
5685         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
5686         I'm at it...
5687
5688         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
5689         from fdsrc. Get caps in create() instead of start() so it can be
5690         interrupted. Interruption somewhat untested.
5691
5692         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
5693         Proper EOS handling.
5694
5695 2005-09-27  Andy Wingo  <wingo@pobox.com>
5696
5697         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
5698
5699         * gst/tcp/gsttcpserversrc.c: Cleaned up.
5700
5701         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
5702
5703         * gst/tcp/gsttcp.h: 
5704         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
5705         out of tcpclientsrc.c. Cancellable.
5706         (gst_tcp_socket_read): Made private, cancellable, with better
5707         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
5708         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
5709         whole buffer, and better diagnostics.
5710         (gst_tcp_gdp_read_caps): Same.
5711
5712         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
5713
5714 2005-09-26  Andy Wingo  <wingo@pobox.com>
5715
5716         * gst/sine/gstsinesrc.h:
5717         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
5718         change the 'sync' property to 'is-live' and implement it halfway,
5719         update for controller api change.
5720
5721         * gst/volume/gstvolume.c (volume_transform_ip): Update for
5722         controller api change.
5723
5724 2005-09-24  Wim Taymans  <wim@fluendo.com>
5725
5726         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
5727         * gst-libs/gst/audio/gstaudiosink.c:
5728         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
5729         (gst_audioringbuffer_stop):
5730         * gst-libs/gst/audio/gstbaseaudiosink.c:
5731         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
5732         (gst_base_audio_sink_change_state):
5733         * gst-libs/gst/audio/gstbaseaudiosink.h:
5734         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
5735         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
5736         (gst_ring_buffer_commit), (gst_ring_buffer_read):
5737         * gst-libs/gst/audio/gstringbuffer.h:
5738         Fix sync again. Moved sample alignment to basesink.
5739
5740 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
5741
5742         * docs/plugins/Makefile.am:
5743         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5744         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5745         * gst/volume/gstvolume.c:
5746           add/fix docs
5747         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
5748         * gst-libs/gst/audio/audio.h:
5749           add conversion macros for frames <-> clocktime
5750
5751 2005-09-23  David Schleef  <ds@schleef.org>
5752
5753         * gst/audioresample/Makefile.am:
5754         * gst/audioresample/debug.h:
5755         * gst/audioresample/gstaudioresample.c:
5756         * gst/audioresample/resample.c: Convert to using gst debugging
5757
5758 2005-09-22  Wim Taymans  <wim@fluendo.com>
5759
5760         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5761         (gst_play_bin_send_event):
5762         Only seek on one sink, the first one that succeeds.
5763
5764 2005-09-22  Michael Smith <msmith@fluendo.com>
5765
5766         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
5767         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
5768         Don't flush encoder state unless we have an initialised encoder.
5769         Clear out encoder state on PAUSED_TO_READY.
5770
5771 2005-09-22  Wim Taymans  <wim@fluendo.com>
5772
5773         * gst-libs/gst/rtp/gstbasertppayload.c:
5774         (gst_basertppayload_class_init), (gst_basertppayload_init),
5775         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5776         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5777         (gst_basertppayload_is_filled), (gst_basertppayload_push),
5778         (gst_basertppayload_set_property),
5779         (gst_basertppayload_get_property),
5780         (gst_basertppayload_change_state):
5781         * gst-libs/gst/rtp/gstbasertppayload.h:
5782         Added max-ptime to control amount of data in the rtp packets.
5783
5784 2005-09-21  Andy Wingo  <wingo@pobox.com>
5785
5786         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
5787         thingies.
5788
5789         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
5790         can be called multiple times, dogs.
5791
5792 2005-09-21  Wim Taymans  <wim@fluendo.com>
5793
5794         * gst-libs/gst/rtp/gstbasertppayload.c:
5795         (gst_basertppayload_class_init), (gst_basertppayload_init),
5796         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5797         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5798         (gst_basertppayload_push), (gst_basertppayload_get_property),
5799         (gst_basertppayload_change_state):
5800         Allow 0 ssrc too.
5801
5802 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
5803
5804         * docs/libs/compiling.sgml:
5805           fixing typos
5806
5807 2005-09-20  Wim Taymans  <wim@fluendo.com>
5808
5809         * gst-libs/gst/rtp/gstbasertppayload.c:
5810         (gst_basertppayload_class_init), (gst_basertppayload_init),
5811         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5812         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5813         (gst_basertppayload_push), (gst_basertppayload_set_property),
5814         (gst_basertppayload_get_property),
5815         (gst_basertppayload_change_state):
5816         * gst-libs/gst/rtp/gstbasertppayload.h:
5817         Added property to configure sequence number offsets.
5818
5819 2005-09-20  Wim Taymans  <wim@fluendo.com>
5820
5821         * gst-libs/gst/rtp/gstbasertppayload.c:
5822         (gst_basertppayload_class_init), (gst_basertppayload_init),
5823         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5824         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5825         (gst_basertppayload_push), (gst_basertppayload_set_property),
5826         (gst_basertppayload_get_property),
5827         (gst_basertppayload_change_state):
5828         * gst-libs/gst/rtp/gstbasertppayload.h:
5829         Make timestamp offset configurable.
5830
5831 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5832
5833         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5834           fix wrong pop/unref
5835
5836 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
5837
5838         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
5839
5840         * gst-libs/gst/interfaces/propertyprobe.c:
5841         (gst_property_probe_probe_property_name),
5842         (gst_property_probe_needs_probe_name),
5843         (gst_property_probe_get_values_name),
5844         (gst_property_probe_probe_and_get_values_name):
5845           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
5846           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
5847
5848 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
5849
5850         * check/Makefile.am:
5851           have some tests be disabled for valgrinding
5852         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
5853         (GST_START_TEST):
5854         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
5855           Fix A Leak.  Chain To Parent Finalize.
5856
5857 2005-09-19  Wim Taymans  <wim@fluendo.com>
5858
5859         * examples/seeking/seek.c: (make_wav_pipeline), (main):
5860         Fixed wav pipeline.
5861
5862 2005-09-19  Wim Taymans  <wim@fluendo.com>
5863
5864         * gst-libs/gst/rtp/gstbasertppayload.c:
5865         (gst_basertppayload_class_init), (gst_basertppayload_init),
5866         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5867         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5868         (gst_basertppayload_push), (gst_basertppayload_get_property),
5869         (gst_basertppayload_change_state):
5870         Posting ERROR and WARNING messages is good.
5871
5872 2005-09-19  Wim Taymans  <wim@fluendo.com>
5873
5874         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5875         (gst_base_rtp_depayload_add_to_queue),
5876         (gst_base_rtp_depayload_push),
5877         (gst_base_rtp_depayload_set_gst_timestamp),
5878         (gst_base_rtp_depayload_queue_release):
5879         This one was not supposed to go in.
5880
5881 2005-09-19  Wim Taymans  <wim@fluendo.com>
5882
5883         * check/pipelines/simple_launch_lines.c: (run_pipeline):
5884         Fix for bus API.
5885
5886         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5887         (gst_base_rtp_depayload_chain),
5888         (gst_base_rtp_depayload_add_to_queue),
5889         (gst_base_rtp_depayload_push),
5890         (gst_base_rtp_depayload_set_gst_timestamp),
5891         (gst_base_rtp_depayload_queue_release):
5892         Some cleanups.
5893
5894         * gst-libs/gst/rtp/gstbasertppayload.c:
5895         (gst_basertppayload_class_init), (gst_basertppayload_init),
5896         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
5897         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5898         (gst_basertppayload_get_property),
5899         (gst_basertppayload_change_state):
5900         Added debugging category.
5901
5902 2005-09-18  David Schleef  <ds@schleef.org>
5903
5904         * gst/playback/gstdecodebin.c: free plugin list correctly
5905         * gst/playback/gstplaybin.c: emit warning if autovideosink
5906           and autoaudiosink can't be found (instead of segfaulting)
5907
5908 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
5909
5910         * check/elements/audioconvert.c: (GST_START_TEST):
5911           try out 24 bit conversion
5912
5913 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5914
5915         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5916         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
5917         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
5918         * ext/vorbis/vorbisenc.h:
5919           Fix EOS handling.  Still needs a fix in the ogg muxer to
5920           mark the last page as eos.
5921
5922 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5923
5924         * common/gtk-doc-plugins.mak:
5925         * docs/plugins/Makefile.am:
5926         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5927         * gst/ffmpegcolorspace/Makefile.am:
5928         * gst/ffmpegcolorspace/avcodec.h:
5929         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5930         * gst/tcp/gstmultifdsink.c:
5931           fix up ffmpegcolorspace docs; extract header
5932
5933 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5934
5935         * common/gtk-doc-plugins.mak:
5936         * docs/plugins/Makefile.am:
5937         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5938         * ext/theora/Makefile.am:
5939         * ext/theora/gsttheoraenc.h:
5940         * ext/theora/theoraenc.c:
5941         * ext/vorbis/vorbisenc.c:
5942           pick up signals and args for vorbis; add some docs for vorbis
5943
5944 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5945
5946         * common/gstdoc-scangobj:
5947         * common/gtk-doc-plugins.mak:
5948         * docs/libs/Makefile.am:
5949         * docs/plugins/gst-plugins-base-plugins.args:
5950         * docs/plugins/gst-plugins-base-plugins.hierarchy:
5951         * docs/plugins/gst-plugins-base-plugins.interfaces:
5952         * docs/plugins/gst-plugins-base-plugins.prerequisites:
5953         * docs/plugins/gst-plugins-base-plugins.signals:
5954           only scanobj stuff from our source module.  Not sure yet
5955           if that's correct, given the hierarchy stuff :)
5956
5957 2005-09-15  Wim Taymans  <wim@fluendo.com>
5958
5959         * gst/audioconvert/gstaudioconvert.c:
5960         And enable 24 bits mode as well..
5961
5962 2005-09-15  Wim Taymans  <wim@fluendo.com>
5963
5964         * gst-libs/gst/rtp/Makefile.am:
5965         * gst-libs/gst/rtp/gstbasertppayload.c:
5966         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
5967         (gst_basertppayload_class_init), (gst_basertppayload_init),
5968         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
5969         (gst_basertppayload_chain), (gst_basertppayload_set_options),
5970         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5971         (gst_basertppayload_set_property),
5972         (gst_basertppayload_get_property),
5973         (gst_basertppayload_change_state):
5974         * gst-libs/gst/rtp/gstbasertppayload.h:
5975         Added rtp payloader base class.
5976
5977 2005-09-15  Andy Wingo  <wingo@pobox.com>
5978
5979         * configure.ac (plugindir): Remove the EOL matcher from the
5980         regexp, as it causes me problems. Libtool? Make? Who knows?
5981
5982 2005-09-14  David Schleef  <ds@schleef.org>
5983
5984         * check/generic/states.c: 
5985         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5986         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
5987           Fixes for changes in registry API.
5988
5989         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
5990           to GST_PLUGIN_LDFLAGS.
5991         * ext/libvisual/visual.c: Make the library shut up.
5992         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
5993         * gst-libs/gst/audio/gstaudiofilter.c: same
5994
5995 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5996
5997         * docs/plugins/Makefile.am:
5998         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5999         * docs/plugins/inspect/plugin-libvisual.xml:
6000         * docs/plugins/tmpl/element-tcpserversink.sgml:
6001         * ext/theora/theoraenc.c:
6002           add libvisual plugin and theoraenc element to docs
6003
6004 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6005
6006         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6007         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6008         * ext/theora/theoraenc.c:
6009           add theoraenc
6010
6011 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
6012
6013         * gst/audioconvert/Makefile.am:
6014           Audioconvert derives from GstBaseTransform and should
6015           link to the library with our base elements to avoid
6016           unresolved symbols. Makes things work with MinGW (#316160)
6017
6018         * gst/playback/test4.c: (main):
6019           Fix MinGW build problem and use g_usleep() instead of 
6020           sleep() (#316162)
6021
6022 2005-09-12  Wim Taymans  <wim@fluendo.com>
6023
6024         * gst/audioconvert/audioconvert.c: (float),
6025         (audio_convert_prepare_context), (audio_convert_convert):
6026         * gst/audioconvert/audioconvert.h:
6027         Cleanups, speedups, simplifications, added back support
6028         for 24 bits.
6029
6030 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6031
6032         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6033         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6034         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
6035         * docs/plugins/tmpl/element-tcpserversink.sgml:
6036         * gst/ffmpegcolorspace/gstffmpeg.c:
6037         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6038         * gst/videotestsrc/gstvideotestsrc.c:
6039         * gst/volume/gstvolume.c:
6040           add more elements to the docs
6041
6042 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
6043
6044         * check/Makefile.am:
6045         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
6046         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
6047           Add extra tests for basetransform based components. 
6048           Comment out the test_element_negotiation test until we decide
6049           if it's testing correct behaviour.
6050         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
6051         (gst_visual_chain), (gst_visual_change_state):
6052           Slightly more correct but still bogus timestamping.
6053           Fix state change function.
6054         * gst/audioconvert/gstaudioconvert.c:
6055         (gst_audio_convert_class_init):
6056         * gst/audioresample/gstaudioresample.c:
6057         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6058         (gst_ffmpegcsp_class_init):
6059         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
6060         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
6061         (gst_videoscale_prepare_image):
6062         * gst/volume/gstvolume.c: (gst_volume_class_init),
6063         (volume_transform_ip):
6064           Basetransform updates. Enable passthrough modes.
6065         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
6066         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
6067         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
6068           Negotiation fix that allows the window to return to the original
6069           size and renegotiate passthrough upstream. Extra debug output.
6070
6071 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6072
6073         * gst/sine/gstsinesrc.c:
6074         * gst/volume/gstvolume.c:
6075           fix up header include
6076
6077 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
6078
6079         * gst-libs/gst/audio/gstbaseaudiosink.c:
6080         (gst_base_audio_sink_render):
6081         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
6082         * gst/volume/gstvolume.c: (gst_volume_class_init),
6083         (volume_transform):
6084           fixing lost sync, some more debugging
6085
6086 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
6087
6088         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
6089         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
6090         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
6091         (gst_xvimagesink_check_xshm_calls):
6092           Fix compilation when XShm is not available.
6093
6094 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
6095
6096         * ext/libvisual/visual.c: (gst_visual_dispose),
6097         (gst_visual_getcaps), (gst_visual_src_setcaps),
6098         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
6099         (gst_visual_change_state):
6100           Finish fixing up libvisual plugin so that it runs. 
6101
6102 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
6103
6104         * ext/vorbis/vorbisenc.c:
6105         * gst-libs/gst/tag/gstvorbistag.c:
6106           gsttaginterface.h -> gsttagsetter.h
6107
6108 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
6109
6110         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
6111           added another test that failes for me (test is not active by default)
6112
6113 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6114
6115         * configure.ac:
6116           v4l2 is no longer in gst-plugins-base
6117
6118 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
6119
6120         * configure.ac:
6121           In the output at the end, don't show the first plugin on the same
6122           line as "Core plug-ins, always built:".
6123           Indent the output as for other plugin categories
6124         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
6125           #define that can be used to not use peer buffer_alloc functions for
6126           test purposes.
6127         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
6128         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
6129         (gst_ximagesink_show_frame):
6130         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
6131         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
6132         (gst_xvimagesink_show_frame):
6133           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
6134           fails gracefully instead of XError aborting or deadlocking.
6135
6136 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
6137
6138         * ext/libvisual/Makefile.am:
6139           link against gst-base-libs
6140
6141 2005-09-06  David Schleef  <ds@schleef.org>
6142
6143         * configure.ac: Enable libvisual plugin.
6144         * ext/libvisual/Makefile.am:
6145         * ext/libvisual/visual.c: Fixes to make it compile.
6146
6147 === release 0.9.2 ===
6148
6149 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
6150
6151         * NEWS:
6152         * RELEASE:
6153         * configure.ac:
6154         * docs/random/ChangeLog-0.8:
6155           releasing 0.9.2, "Spoon"
6156
6157 2005-09-05  Michael Smith <msmith@fluendo.com>
6158
6159         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
6160           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
6161           that in the vorbisenc element.
6162
6163 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6164
6165         * common/gtk-doc-plugins.mak:
6166         * docs/plugins/Makefile.am:
6167           fix distcheck
6168         * gst/audioresample/resample.c:
6169           fix wrong docstring
6170
6171 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6172
6173         * common/gst-xmlinspect.py:
6174         * common/gtk-doc-plugins.mak:
6175           only inspect plugins for this given package
6176           require gst-python 0.9
6177
6178 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6179
6180         * Makefile.am:
6181         * autogen.sh:
6182         * common/gst-xmlinspect.py:
6183         * configure.ac:
6184         * docs/Makefile.am:
6185         * docs/plugins/inspect/plugin-alsa.xml:
6186         * docs/plugins/inspect/plugin-audioresample.xml:
6187         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
6188         * docs/plugins/inspect/plugin-ogg.xml:
6189         * docs/plugins/tmpl/element-gnomevfssink.sgml:
6190         * docs/plugins/tmpl/element-multifdsink.sgml:
6191         * docs/plugins/tmpl/element-tcpserversink.sgml:
6192         * docs/plugins/tmpl/element-vorbisenc.sgml:
6193         * gst-plugins-base.spec.in:
6194           various doc-related updates
6195
6196 2005-08-31  Wim Taymans  <wim@fluendo.com>
6197
6198         * gst-libs/gst/audio/gstbaseaudiosink.c:
6199         (gst_base_audio_sink_render):
6200         Resync if the buffer timestamps drift more than a 10th 
6201         of a second.
6202
6203 2005-08-31  Tim-Philipp M??ller  <tim at centricular dot net>
6204
6205         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
6206         (gst_v4lsrc_get_property):
6207           The 'timestamp-offset' property is registered as an int64, so
6208           let's use g_value_{set|get}_int64() in our setter and getter
6209           functions (makes it work and fixes warnings with gst-inspect).
6210
6211 2005-08-30  Wim Taymans  <wim@fluendo.com>
6212
6213         * check/elements/audioconvert.c: (setup_audioconvert):
6214         * check/elements/audioresample.c: (setup_audioresample):
6215         * check/elements/volume.c: (setup_volume):
6216         Fix checks.
6217
6218 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
6219
6220         * common/gtk-doc-plugins.mak:
6221         * common/plugins.xsl:
6222         * docs/plugins/Makefile.am:
6223           make module a param
6224
6225 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
6226
6227         * examples/seeking/seek.c: (make_mp3_pipeline),
6228         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
6229         (play_cb), (pause_cb), (stop_cb):
6230           update the example
6231
6232 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
6233
6234         * gst/volume/gstvolume.c: (gst_volume_class_init),
6235         (volume_transform):
6236           do not update controlled params, if buffer has no timestamp
6237
6238 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
6239
6240         * configure.ac:
6241         * gst/sine/Makefile.am:
6242         * gst/volume/Makefile.am:
6243           controllerized elements also need to link against controller-libs ;)
6244
6245 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
6246
6247         * docs/libs/tmpl/gstcolorbalance.sgml:
6248         * docs/libs/tmpl/gstgconf.sgml:
6249         * docs/libs/tmpl/gstmixer.sgml:
6250         * docs/libs/tmpl/gstringbuffer.sgml:
6251         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
6252         (gst_sinesrc_create):
6253         * gst/volume/gstvolume.c: (gst_volume_class_init),
6254         (volume_transform):
6255           controllerized two audio plugins
6256
6257 2005-08-29  Andy Wingo  <wingo@pobox.com>
6258
6259         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
6260         (vorbis_handle_data_packet): Fix some int overflow errors.
6261
6262         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
6263         -1.
6264         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
6265         valid.
6266         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
6267         if it's valid. Fixed streaming-mode playback.
6268
6269         * check/elements/volume.c (cleanup_volume): Fix for running
6270         CK_FORK=no.
6271
6272         * check/elements/audioconvert.c: Convert from native endian, not
6273         little endian.
6274
6275 2005-08-29  Michael Smith <msmith@fluendo.com>
6276
6277         * ext/ogg/Makefile.am:
6278         * ext/ogg/gstogg.c: (plugin_init):
6279         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
6280         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
6281         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
6282         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
6283         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
6284         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
6285         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
6286         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
6287         Add an ogg parser element.
6288
6289 2005-08-28  Andy Wingo  <wingo@pobox.com>
6290
6291         * Updates for two-arg init from GST_BOILERPLATE_FULL.
6292
6293 2005-08-26  Wim Taymans  <wim@fluendo.com>
6294
6295         * gst/audioconvert/audioconvert.c: (if), (float),
6296         (audio_convert_get_func_index), (check_default),
6297         (audio_convert_clean_fmt), (audio_convert_prepare_context),
6298         (audio_convert_clean_context), (audio_convert_get_sizes),
6299         (audio_convert_convert):
6300         Cleanups.
6301
6302 2005-08-26  Wim Taymans  <wim@fluendo.com>
6303
6304         * gst/audioconvert/audioconvert.c: (if), (float),
6305         (audio_convert_get_func_index), (check_default),
6306         (audio_convert_clean_fmt), (audio_convert_prepare_context),
6307         (audio_convert_clean_context), (audio_convert_get_sizes),
6308         (audio_convert_convert):
6309         More elegant and working temp buffer selection algo.
6310
6311 2005-08-26  Wim Taymans  <wim@fluendo.com>
6312
6313         * gst/audioconvert/audioconvert.c: (if), (float),
6314         (audio_convert_get_func_index), (check_default),
6315         (audio_convert_clean_fmt), (audio_convert_prepare_context),
6316         (audio_convert_clean_context), (audio_convert_get_sizes),
6317         (get_temp_buffer), (audio_convert_convert):
6318         Use realloc else we lose our original data.
6319
6320 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
6321
6322         * gst/audioresample/gstaudioresample.c:
6323           use base class' newsegment to properly timestamp
6324
6325 2005-08-26  Wim Taymans  <wim@fluendo.com>
6326
6327         * gst/audioconvert/audioconvert.c: (if), (float),
6328         (audio_convert_get_func_index), (check_default),
6329         (audio_convert_clean_fmt), (audio_convert_prepare_context),
6330         (audio_convert_clean_context), (audio_convert_get_sizes),
6331         (get_temp_buffer), (audio_convert_convert):
6332         * gst/audioconvert/gstaudioconvert.c:
6333         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
6334         (gst_audio_convert_transform_caps),
6335         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
6336         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
6337         Oops, allocate enough space to perform the channel mix.
6338
6339 2005-08-26  Wim Taymans  <wim@fluendo.com>
6340
6341         * gst/audioconvert/Makefile.am:
6342         * gst/audioconvert/audioconvert.c: (if), (float),
6343         (audio_convert_get_func_index), (check_default),
6344         (audio_convert_clean_fmt), (audio_convert_prepare_context),
6345         (audio_convert_clean_context), (audio_convert_get_sizes),
6346         (get_temp_buffer), (audio_convert_convert):
6347         * gst/audioconvert/audioconvert.h:
6348         * gst/audioconvert/gstaudioconvert.c:
6349         (gst_audio_convert_class_init), (gst_audio_convert_init),
6350         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
6351         (gst_audio_convert_get_unit_size),
6352         (gst_audio_convert_transform_caps),
6353         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
6354         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
6355         * gst/audioconvert/gstaudioconvert.h:
6356         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
6357         (gst_channel_mix_fill_identical),
6358         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
6359         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
6360         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
6361         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
6362         (gst_channel_mix_mix):
6363         * gst/audioconvert/gstchannelmix.h:
6364         Cleanups, librarify a bit, optimize, better negotiation and more.
6365
6366 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
6367
6368         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
6369         Another from MikeS:
6370         During typefinding, don't support negative offsets
6371         (offsets from the end of the stream) in our typefind->peek() function
6372         - nothing embedded in ogg ever needs them. However, we need to recognise
6373         those requests and reject them, otherwise we return invalid pointers.
6374
6375 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
6376
6377         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6378         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6379         (vorbisdec_finalize), (vorbis_handle_type_packet):
6380           Big shout-out to MikeS for fixing this giant memory leak.
6381           Huzzah!
6382
6383 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
6384
6385         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
6386         (audio_convert_get_unit_size):
6387           plug some leaks
6388
6389 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
6390
6391         * check/Makefile.am:
6392         * check/elements/audioconvert.c: (setup_audioconvert),
6393         (cleanup_audioconvert), (get_int_caps), (verify_convert),
6394         (GST_START_TEST), (audioconvert_suite), (main):
6395           add a test for audioconvert
6396         * gst/audioresample/gstaudioresample.c:
6397         * gst/audioresample/gstaudioresample.h:
6398           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
6399           note that for buffers of 1/3 sec this means DURATION(c) is 
6400           one nanosecond more than for a and b
6401
6402 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
6403
6404         * check/Makefile.am:
6405         * check/elements/audioresample.c: (setup_audioresample),
6406         (cleanup_audioresample), (fail_unless_perfect_stream),
6407         (test_perfect_stream_instance), (GST_START_TEST),
6408           add a check for audioresample
6409         (audioresample_suite), (main):
6410         * check/elements/volume.c: (GST_START_TEST):
6411           remove unused method
6412         * gst/audioresample/gstaudioresample.c:
6413           set correct buffer parameters since we're changing them
6414         * gst/audioresample/resample_ref.c: (resample_scale_ref):
6415           add some debug
6416
6417 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
6418
6419         * gst/audioresample/debug.c:
6420         * gst/audioresample/gstaudioresample.c:
6421           add room for extra overlap samples when asked to transform size
6422           protect against possible mem corruption and check for discrepancies
6423           between written size and outbuffer's size so we can warn for
6424           potential problems
6425         * gst/audioresample/resample.c: (resample_init),
6426         (resample_get_output_size_for_input), (resample_get_output_size),
6427         (resample_set_n_channels), (resample_set_format):
6428           set debug level based on RESAMPLE_DEBUG env var
6429           make sure that get_output_size* returns a whole number of
6430           sample_size
6431           set sample_size each time either channel or format is set
6432         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
6433         * gst/audioresample/resample_functable.c:
6434         (resample_scale_functable):
6435         * gst/audioresample/resample_ref.c: (resample_scale_ref):
6436           remove r->sample_size, it's done in resample.c now
6437           add some debugging to the ref implementation
6438           make sure we only give back bytes that are wholes of the sample
6439           size
6440
6441 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
6442         * gst/playback/gstplaybasebin.c: (fill_buffer):
6443         Revert unpopular change for GST_MESSAGE_SRC to GObject.
6444
6445 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
6446
6447         * gst/volume/gstvolume.c:
6448           made set_caps function static
6449
6450 2005-08-24  Wim Taymans  <wim@fluendo.com>
6451
6452         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
6453         (gst_vorbisenc_change_state):
6454         Stop leaking taglists.
6455
6456 2005-08-24  Wim Taymans  <wim@fluendo.com>
6457
6458         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6459         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
6460         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
6461         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
6462         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
6463         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
6464         Parse seeking events better.
6465         Unref static caps.
6466         Generate correct newsegment events, fixes seeking in live oggs.
6467
6468         * ext/theora/theoradec.c: (theora_dec_src_query),
6469         (theora_dec_src_event), (theora_dec_src_getcaps),
6470         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
6471         Use newsegment values to report correct play time.
6472
6473         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6474         (vorbis_dec_src_event), (vorbis_dec_sink_event):
6475         * ext/vorbis/vorbisdec.h:
6476         Parse and use newsegment values to report correct play time.
6477
6478         * gst-libs/gst/audio/gstbaseaudiosink.c:
6479         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
6480         Clear ringbuffer on flush.
6481         Use newsegment values to calculate playback time.
6482
6483         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
6484         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
6485         Basesink does newsegment calculations for us now.
6486
6487 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6488
6489         * check/Makefile.am:
6490         * configure.ac:
6491           add core's plugins to the mix so that playbin works
6492         * check/generic/states.c: (GST_START_TEST):
6493           set a 0 timeout on pipelines, so they don't force the next
6494           state change
6495         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
6496         (gst_play_base_bin_change_state):
6497           remove the crappy error handling and do GST error handling
6498
6499 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6500
6501         * check/Makefile.am:
6502         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
6503           add same test as to core, it bitches out on playbin atm.
6504
6505 2005-08-24  Wim Taymans  <wim@fluendo.com>
6506
6507         * configure.ac:
6508         Remove audioscale.
6509
6510 2005-08-24  Wim Taymans  <wim@fluendo.com>
6511
6512         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
6513         (gst_videoscale_prepare_size), (parse_caps),
6514         (gst_videoscale_set_caps), (gst_videoscale_get_size),
6515         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
6516         (gst_videoscale_transform):
6517         * gst/videoscale/gstvideoscale.h:
6518         Refactor, make use of BaseTranform really well.
6519
6520 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6521
6522         * configure.ac:
6523           compile audioresample
6524         * gst/audioresample/Makefile.am:
6525         * gst/audioresample/buffer.c:
6526         * gst/audioresample/functable.c:
6527         * gst/audioresample/gstaudioresample.c:
6528         * gst/audioresample/gstaudioresample.h:
6529         * gst/audioresample/resample.c:
6530         (resample_get_output_size_for_input):
6531         * gst/audioresample/resample.h:
6532         * gst/audioresample/resample_chunk.c:
6533         * gst/audioresample/resample_functable.c:
6534         * gst/audioresample/resample_ref.c:
6535           port to use basetransform; doesn't work in all cases yet
6536
6537 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6538
6539         * gst/audioconvert/gstaudioconvert.c:
6540         (gst_audio_convert_class_init), (gst_audio_convert_init),
6541         (audio_convert_get_unit_size), (audio_convert_transform_caps),
6542         (audio_convert_fixate_caps), (audio_convert_set_caps),
6543         (audio_convert_transform),
6544         (gst_audio_convert_buffer_to_default_format),
6545         (gst_audio_convert_buffer_from_default_format),
6546         (gst_audio_convert_channels):
6547         * gst/audioconvert/gstchannelmix.c:
6548         * gst/audioconvert/gstchannelmix.h:
6549           port to basetransform
6550         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6551         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
6552         (gst_ffmpegcsp_get_unit_size):
6553         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
6554         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
6555           fix for basetransform changes
6556
6557 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
6558
6559         * check/Makefile.am:
6560           Add CHECK_CFLAGS and LDFLAGS
6561
6562         * gst/playback/gstplaybasebin.c: (fill_buffer):
6563           GST_MESSAGE_SRC became a GObject
6564
6565 2005-08-24  Wim Taymans  <wim@fluendo.com>
6566
6567         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
6568         (gst_ring_buffer_clear_all):
6569         * gst-libs/gst/audio/gstringbuffer.h:
6570         Added function to clear the ringbuffer.
6571
6572 2005-08-24  Andy Wingo  <wingo@pobox.com>
6573
6574         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
6575         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
6576         of _open and _close.
6577
6578         * sys/v4l/gstv4lxoverlay.h:
6579         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
6580         an Xv connection here, instead of all the time. Make Xv only be
6581         loaded if you axe for it. Kindof a workaround for buggy behaviour
6582         of Xv when using remote xservers (XvQueryExtension would block).
6583         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
6584         replace the _open and _close public API. Only start the xv
6585         connection if necessary.
6586         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
6587
6588 2005-08-23  David Schleef  <ds@schleef.org>
6589
6590         * gst/audioresample/Makefile.am: Leet audioresampling code
6591         * gst/audioresample/buffer.c:
6592         * gst/audioresample/buffer.h:
6593         * gst/audioresample/debug.c:
6594         * gst/audioresample/debug.h:
6595         * gst/audioresample/functable.c:
6596         * gst/audioresample/functable.h:
6597         * gst/audioresample/gstaudioresample.c:
6598         * gst/audioresample/gstaudioresample.h:
6599         * gst/audioresample/resample.c:
6600         * gst/audioresample/resample.h:
6601         * gst/audioresample/resample_chunk.c:
6602         * gst/audioresample/resample_functable.c:
6603         * gst/audioresample/resample_ref.c:
6604
6605 2005-08-23  Wim Taymans  <wim@fluendo.com>
6606
6607         * examples/seeking/seek.c: (make_vorbis_pipeline),
6608         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
6609         Small seek updates.
6610
6611 2005-08-23  Andy Wingo  <wingo@pobox.com>
6612
6613         * gst-libs/gst/audio/gstbaseaudiosrc.c
6614         (gst_base_audio_src_fixate): Only fixate endianness if it is
6615         present in the caps.
6616
6617 2005-08-22  Andy Wingo  <wingo@pobox.com>
6618
6619         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
6620         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
6621         device-name property.
6622
6623         * gst-libs/gst/audio/gstaudiosrc.h:
6624         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
6625         close_device in the ring buffer, like gstaudiosink.
6626
6627         * ext/alsa/gstalsamixer.h:
6628         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
6629         macro to implement the interface without much code. Cleanups. 
6630
6631         * ext/alsa/gstalsasrc.h:
6632         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
6633         READY.
6634
6635         * ext/alsa/Makefile.am: Add new files.
6636         * ext/alsa/gstalsamixerelement.c: 
6637         * ext/alsa/gstalsamixerelement.c: Split element code out from
6638         mixer code so that alsasrc can be a mixer too.
6639
6640 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
6641
6642         * check/elements/volume.c: (setup_volume), (cleanup_volume),
6643         (GST_START_TEST):
6644         * check/elements/vorbisdec.c: (setup_vorbisdec),
6645         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
6646         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6647         (vorbis_handle_identification_packet),
6648         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
6649         (vorbis_handle_header_packet), (vorbis_dec_push),
6650         (vorbis_dec_chain):
6651           use the setup/teardown methods to save code.  save code is good.
6652
6653 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6654
6655         * check/Makefile.am:
6656           add ext dir for plugins
6657           add vorbisdec test conditionally
6658         * check/elements/volume.c: (setup_volume), (cleanup_volume),
6659         (GST_START_TEST), (volume_suite):
6660           add a test with wrong caps
6661         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
6662         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
6663           add a vorbisdec test
6664         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
6665         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
6666           clean up debug output
6667         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
6668           yay, fix a segfault/security issue in vorbisdec
6669           gst-launch fakesrc ! vorbisdec wasn't happy
6670         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
6671         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
6672         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
6673         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
6674         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
6675         (gst_vorbisenc_set_metadata), (get_constraints_string),
6676         (update_start_message), (gst_vorbisenc_setup),
6677         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
6678         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
6679         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
6680         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
6681         * ext/vorbis/vorbisenc.h:
6682           march in line
6683         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6684         (gst_ffmpegcsp_transform):
6685           have the kow come home
6686         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6687           debug my func ptr
6688         * gst/volume/gstvolume.c: (volume_set_caps):
6689           add a debug
6690
6691 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6692
6693         * Makefile.am:
6694         * check/.cvsignore:
6695         * check/Makefile.am:
6696         * check/elements/.cvsignore:
6697         * check/elements/volume.c: (chain_func), (event_func),
6698         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
6699         (main):
6700         * configure.ac:
6701           add unit test structure for gst-plugins-base
6702           add a test for volume
6703         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
6704         (gst_volume_set_volume), (gst_volume_get_volume),
6705         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
6706         (volume_funcfind), (volume_process_float), (volume_process_int16),
6707         (volume_set_caps), (volume_transform), (volume_update_mute),
6708         (volume_update_volume), (volume_set_property),
6709         (volume_get_property):
6710           document a little; use basetransform vmethod _set_caps
6711
6712 2005-08-19  Andy Wingo  <wingo@pobox.com>
6713
6714         * ext/alsa/gstalsamixertrack.h:
6715         * ext/alsa/gstalsamixertrack.c:
6716         * ext/alsa/gstalsamixeroptions.h:
6717         * ext/alsa/gstalsamixeroptions.c:
6718         * ext/alsa/gstalsamixer.h:
6719         * ext/alsa/gstalsamixer.c: Port to 0.9.
6720
6721         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
6722         Remove gstalsa.c and alsaclock. No more cruft here.
6723         
6724 2005-08-18  Wim Taymans  <wim@fluendo.com>
6725
6726         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6727         (gst_base_rtp_depayload_chain),
6728         (gst_base_rtp_depayload_add_to_queue),
6729         (gst_base_rtp_depayload_push),
6730         (gst_base_rtp_depayload_queue_release):
6731         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6732         Fix for RTPBuffer changes.
6733
6734         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
6735         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
6736         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
6737         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
6738         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
6739         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
6740         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
6741         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
6742         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
6743         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
6744         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
6745         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
6746         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
6747         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
6748         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
6749         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
6750         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
6751         (gst_rtpbuffer_get_payload):
6752         * gst-libs/gst/rtp/gstrtpbuffer.h:
6753         Don't subclass GstBuffer but add methods and helper functions
6754         to construct and manipulate RTP packets in regular GstBuffers.
6755
6756 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
6757
6758         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
6759           moved statement below switch
6760         * gst/volume/gstvolume.c: (gst_volume_class_init):
6761           added debug ptr
6762
6763 2005-08-16  Wim Taymans  <wim@fluendo.com>
6764
6765         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6766         (gst_base_audio_src_change_state):
6767         Open and close device in READY<->NULL state change.
6768
6769 2005-08-16  Andy Wingo  <wingo@pobox.com>
6770
6771         * examples/seeking/Makefile.am: Don't compile non-compiling
6772         compiled objects with the compiler.
6773
6774         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
6775         elements.
6776
6777 2005-08-12  Philippe Khalaf <burger@speedy.org>
6778         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6779         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6780           Made a thread to release the queue.
6781           Removed timestamp conversion for now.
6782
6783 2005-08-10  Philippe Khalaf <burger@speedy.org>
6784         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6785         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6786           Added rtp timestamp -> gst timestamp conversion.
6787           Fixed several problems with queue.
6788
6789 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
6790
6791         * gst-libs/gst/audio/gstaudioclock.h:
6792         * gst-libs/gst/audio/gstaudiofilter.h:
6793         * gst-libs/gst/audio/gstaudiosink.h:
6794         * gst-libs/gst/audio/gstaudiosrc.h:
6795         * gst-libs/gst/audio/gstbaseaudiosink.h:
6796         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6797         * gst-libs/gst/audio/gstringbuffer.h:
6798         * gst-libs/gst/net/gstnetbuffer.h:
6799         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6800         * gst-libs/gst/rtp/gstrtpbuffer.h:
6801           Add padding (you will need to rebuild gst-plugins-base,
6802           gst-plugins and all applications afterwards!)
6803
6804 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
6805
6806         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
6807         (gst_riff_parse_chunk):
6808           Fix bug in debug message and add some more debug messages.
6809
6810 2005-08-08  Edward Hervey  <edward@fluendo.com>
6811
6812         * gst-libs/gst/riff/riff-media.c:
6813         backported updates since branch
6814
6815 2005-08-08  Andy Wingo  <wingo@pobox.com>
6816
6817         * gst-libs/gst/audio/gstbaseaudiosink.c
6818         (gst_base_audio_sink_change_state): Open the device in NULL->READY
6819         like good elements should. Close on READY->NULL too.
6820
6821         * gst-libs/gst/audio/gstaudiosink.c
6822         (gst_audioringbuffer_open_device,
6823         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
6824         (gst_audioringbuffer_release): Updates for new ring buffer API,
6825         hook into the new audio sink api.
6826
6827         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
6828         (GstAudioSinkClass.close): Just open and close the device -- no
6829         resource allocation or configuration.
6830         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
6831         vmethods, handle device setup and resource allocation.
6832
6833         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
6834         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
6835         base class API.
6836
6837         * gst-libs/gst/audio/gstringbuffer.h
6838         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
6839         New vmethods.
6840
6841         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
6842         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
6843         New API functions. The device should be opened before acquiring
6844         and closed after releasing.
6845
6846 2005-08-08  Tim-Philipp M??ller  <tim at centricular dot net>
6847
6848         * gst-libs/gst/interfaces/mixer.h:
6849           Reset padding to GST_PADDING.
6850
6851 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6852
6853         * gst/playback/gstplaybin.c: (remove_sinks):
6854           Remove visualization from parent explicitely; works around some
6855           apparent refcount issue that I haven't tracked down yet.
6856
6857 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6858
6859         * ext/alsa/gstalsasink.c: (set_hwparams):
6860           Assign debug category, add negotiation debug msgs.
6861
6862 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6863
6864         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
6865           Fix error code for file-not-found to NOT_FOUND.
6866
6867 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6868
6869         * common/gtk-doc-plugins.mak:
6870         * docs/plugins/Makefile.am:
6871         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6872         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6873           renamed to actual element names, so much nicer to look at
6874         * docs/plugins/tmpl/gstmultifdsink.sgml:
6875           remove
6876         * docs/plugins/tmpl/multifdsink.sgml:
6877         * docs/plugins/tmpl/tcpserversink.sgml:
6878           add
6879         * ext/alsa/gstalsa.c:
6880         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
6881         * ext/ogg/gstoggmux.c:
6882         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
6883         * gst/playback/gstdecodebin.c:
6884         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6885         * gst/tcp/gsttcpserversink.c:
6886           various fixes and documentation additions
6887
6888 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6889
6890         * common/Makefile.am:
6891         * common/gstdoc-scangobj:
6892         * common/gtk-doc-plugins.mak:
6893         * common/gtk-doc.mak:
6894           add a custom scangobj that uses the registry
6895           add a custom gtk-doc-plugins.mak that uses it
6896           some doc build fixes
6897         * configure.ac:
6898         * docs/Makefile.am:
6899         * docs/plugins/Makefile.am:
6900         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6901         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6902         * docs/plugins/gst-plugins-base-plugins.types:
6903         * docs/plugins/tmpl/gstmultifdsink.sgml:
6904           add docs for one element, multifdsink
6905         * gst/adder/gstadder.h:
6906         * gst/volume/gstvolume.h:
6907           don't privatize enum
6908         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6909         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6910         (gst_sync_method_get_type), (gst_client_status_get_type),
6911         (gst_multifdsink_class_init),
6912         (gst_multifdsink_client_queue_buffer),
6913         (gst_multifdsink_handle_client_write):
6914         * gst/tcp/gstmultifdsink.h:
6915         * gst/tcp/gsttcp.h:
6916         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
6917         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
6918         (gst_tcpclientsink_render):
6919         * gst/tcp/gsttcpclientsink.h:
6920         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
6921         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
6922         (gst_tcpclientsrc_start):
6923         * gst/tcp/gsttcpclientsrc.h:
6924         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
6925         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
6926         * gst/tcp/gsttcpserversrc.h:
6927         * gst/typefind/gsttypefindfunctions.c:
6928           remove superfluous Type stuff
6929
6930 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6931
6932         * gst/playback/gstplaybin.c: (gen_video_element):
6933           Enable videoscale.
6934
6935 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6936
6937         * gst-libs/gst/gconf/gconf.c:
6938         * gst-libs/gst/gconf/gconf.h:
6939           Fix some Andy Problem [tm].
6940
6941 2005-08-04  Andy Wingo  <wingo@pobox.com>
6942
6943         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
6944         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
6945         (gst_ffmpegcsp_get_size): Adapt to API changes.
6946
6947         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
6948         Implement an in-place do-nothing transform.
6949
6950 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6951
6952         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
6953         (gst_ximagesink_renegotiate_size):
6954           Do not set new window sizes yet if we prepare a new buffer size
6955           for upstream renegotiation (software scaling) at some point in the
6956           future, because this new size waqs not actually accepted yet. Once
6957           accepted, renegotiation later on will set the new sizes just fine.
6958           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
6959           embedding testcase.
6960
6961 2005-08-03  Andy Wingo  <wingo@pobox.com>
6962
6963         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
6964         (gst_ximagesink_buffer_alloc): 
6965         Protect the height, width, and desired_caps with the pool_lock.
6966         Fixes videotestsrc ! queue ! ximagesink.
6967
6968 2005-08-02  Edward Hervey  <edward@fluendo.com>
6969
6970         * gst/volume/gstvolume.c:
6971         include left from controller cleanup
6972
6973 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
6974         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
6975           Stop collectpads before calling the parent state
6976           change function on PAUSED->READY.
6977
6978 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
6979         * configure.ac:
6980           When testing for X libs, use the X CFlags 
6981         * gst/adder/gstadder.c: (gst_adder_change_state):
6982           Stop the collectpads before calling parent state change function
6983           on PAUSED->READY, otherwise we deadlock deactivating pads.
6984
6985 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
6986
6987         * configure.ac:
6988         * docs/libs/tmpl/gstcolorbalance.sgml:
6989         * docs/libs/tmpl/gstmixer.sgml:
6990         * examples/Makefile.am:
6991         * gst/sine/Makefile.am:
6992         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
6993         (gst_sinesrc_set_property), (plugin_init):
6994         * gst/sine/gstsinesrc.h:
6995         * gst/volume/Makefile.am:
6996         * gst/volume/gstvolume.c: (gst_volume_set_volume),
6997         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
6998         (volume_process_float), (volume_process_int16),
6999         (volume_set_property), (plugin_init):
7000         * gst/volume/gstvolume.h:
7001           deactivate and remove dparams (libgstcontrol)
7002
7003 2005-07-29  Wim Taymans  <wim@fluendo.com>
7004
7005         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
7006         Convert me to BaseTransform!! help..
7007
7008 2005-07-29  Andy Wingo  <wingo@pobox.com>
7009
7010         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
7011         sinks.
7012
7013         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
7014         support of both endiannesses.
7015
7016 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
7017
7018         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
7019           Fix confusing debug message (s/event/query/)
7020
7021 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
7022
7023         * gst/videotestsrc/videotestsrc.h:
7024           Use "_stdint.h" instead of <stdint.h>
7025
7026 2005-07-27  Wim Taymans  <wim@fluendo.com>
7027
7028         * ext/vorbis/Makefile.am:
7029         Revert wrong commit.
7030
7031 2005-07-27  Wim Taymans  <wim@fluendo.com>
7032
7033         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
7034         More compilation fixen.
7035
7036 2005-07-27  Wim Taymans  <wim@fluendo.com>
7037
7038         * gst-libs/gst/audio/gstbaseaudiosink.c:
7039         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
7040         (gst_base_audio_sink_create_ringbuffer),
7041         (gst_base_audio_sink_change_state):
7042         Fix compilation.
7043
7044 2005-07-27  Wim Taymans  <wim@fluendo.com>
7045
7046         * examples/seeking/seek.c: (setup_dynamic_link),
7047         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
7048         (query_positions_elems), (query_positions_pads), (do_seek):
7049         Update seek example.
7050
7051         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
7052         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
7053         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
7054         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
7055         (gst_ogg_demux_handle_event),
7056         (gst_ogg_demux_deactivate_current_chain),
7057         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
7058         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
7059         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
7060         (gst_ogg_demux_loop):
7061         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
7062         * ext/theora/theoradec.c: (theora_dec_src_event),
7063         (theora_dec_src_getcaps), (theora_dec_sink_event),
7064         (theora_dec_push), (theora_dec_chain):
7065         * ext/vorbis/Makefile.am:
7066         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
7067         (vorbis_dec_sink_event), (vorbis_dec_push),
7068         (vorbis_handle_data_packet):
7069         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
7070         (gst_vorbisenc_chain):
7071         * gst/playback/gststreaminfo.c: (cb_probe):
7072         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
7073         * gst/videorate/gstvideorate.c: (gst_videorate_event):
7074         * gst/videoscale/gstvideoscale.c:
7075         (gst_videoscale_handle_src_event):
7076         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
7077         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
7078         (gst_ximagesink_navigation_send_event):
7079         * sys/xvimage/xvimagesink.c:
7080         (gst_xvimagesink_navigation_send_event):
7081         Various event updates and cleanups
7082
7083 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7084
7085         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
7086           Fix segfault for I420/YV12.
7087
7088 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7089
7090         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
7091           Report bitrate.
7092
7093 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7094
7095         * gst/playback/gstplaybin.c: (gen_video_element),
7096         (gen_audio_element):
7097           Switch to auto*sink elements as default sinks; add volume element
7098           so that volume control in totem works.
7099
7100 2005-07-21  Wim Taymans  <wim@fluendo.com>
7101
7102         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
7103         * gst/playback/gstplaybin.c: (setup_sinks),
7104         (gst_play_bin_change_state):
7105         Refcount fix and more comments.
7106
7107 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7108
7109         * sys/ximage/Makefile.am:
7110         * sys/ximage/ximage.c: (plugin_init):
7111         * sys/ximage/ximagesink.c:
7112         Prepare for adding ximagesrc, rename of plugin to ximage etc.
7113         
7114
7115 2005-07-21  Wim Taymans  <wim@fluendo.com>
7116
7117         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
7118         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
7119         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
7120         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7121         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
7122         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
7123         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
7124         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
7125         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
7126         Generate correct disconts for live chained oggs.
7127
7128         * gst-libs/gst/audio/gstbaseaudiosink.c:
7129         (gst_base_audio_sink_render),
7130         (gst_base_audio_sink_create_ringbuffer),
7131         (gst_base_audio_sink_change_state):
7132         Handle discont math correctly.
7133
7134         * gst/playback/gstplaybin.c: (add_sink):
7135         Some small debug cleanup.
7136
7137 2005-07-21  Wim Taymans  <wim@fluendo.com>
7138
7139         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
7140         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
7141         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
7142         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7143         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
7144         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
7145         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
7146         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
7147         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
7148         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7149         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
7150         (gst_ogg_demux_change_state), (gst_ogg_print):
7151         Reorganize code to send the right disconts when in streaming
7152         mode.
7153
7154 2005-07-20  Andy Wingo  <wingo@pobox.com>
7155
7156         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
7157         fix (?), fixes a seggie mcfalterson (#310894).
7158
7159 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7160
7161         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
7162         (gst_ogg_mux_set_header_on_caps):
7163         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7164         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
7165         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
7166         * gst-libs/gst/audio/multichannel.c:
7167         (gst_audio_set_channel_positions),
7168         (gst_audio_set_structure_channel_positions_list):
7169         * gst/playback/gstdecodebin.c: (dynamic_create):
7170         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
7171         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
7172           Fixes for API changes in core.
7173
7174 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7175
7176         * gst/playback/gstplaybasebin.c: (fill_buffer):
7177           Use _new_custom() so we can set custom message types for buffering
7178           messages.
7179
7180 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7181
7182         * configure.ac:
7183         * gst-libs/gst/Makefile.am:
7184         * gst-libs/gst/gconf/.cvsignore:
7185         * gst-libs/gst/gconf/Makefile.am:
7186         * gst-libs/gst/gconf/test-gconf.c:
7187         * pkgconfig/Makefile.am:
7188         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
7189         * pkgconfig/gstreamer-gconf.pc.in:
7190           Remove gconf stuff, use gconf elements instead from now on.
7191
7192 2005-07-20  Wim Taymans  <wim@fluendo.com>
7193
7194         * gst-libs/gst/audio/TODO:
7195         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
7196         (gst_audio_clock_get_internal_time):
7197         * gst-libs/gst/audio/gstaudioclock.h:
7198         * gst-libs/gst/audio/gstbaseaudiosink.c:
7199         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
7200         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
7201         (gst_base_audio_sink_render),
7202         (gst_base_audio_sink_create_ringbuffer),
7203         (gst_base_audio_sink_change_state):
7204         Make sure the audio clock always returns an increasing value.
7205
7206 2005-07-19  Andy Wingo  <wingo@pobox.com>
7207
7208         * gst/videotestsrc/: Cleanups.
7209
7210 2005-07-19  Wim Taymans  <wim@fluendo.com>
7211
7212         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
7213         Better debugging.
7214
7215 2005-07-19  Wim Taymans  <wim@fluendo.com>
7216
7217         * examples/seeking/seek.c: (make_dv_pipeline),
7218         (make_vorbis_theora_pipeline), (query_rates),
7219         (query_positions_elems), (query_positions_pads), (do_seek):
7220         Make correct DV pipeline.
7221
7222 2005-07-18  Andy Wingo  <wingo@pobox.com>
7223
7224         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
7225         default. Also because it's the only thing that really works. (This
7226         is used in the GConf elements).
7227         Use AS_LIBTOOL_TAGS.
7228
7229 2005-07-18  Wim Taymans  <wim@fluendo.com>
7230
7231         * gst/playback/gstdecodebin.c: (remove_element_chain):
7232         * gst/playback/gstplaybin.c: (add_sink):
7233         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
7234         (gst_stream_info_set_mute):
7235         * gst/playback/gststreamselector.c:
7236         (gst_stream_selector_get_linked_pad),
7237         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
7238         More leak and compile fixes.
7239
7240 2005-07-18  Wim Taymans  <wim@fluendo.com>
7241
7242         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
7243         (query_rates), (query_positions_elems), (query_positions_pads),
7244         (do_seek), (seek_cb), (stop_seek):
7245         Updated seek example. 
7246
7247         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
7248         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
7249         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
7250         * gst/playback/gstplaybin.c: (add_sink):
7251         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
7252         (gst_stream_info_set_mute):
7253         Some refcount leak fixes.
7254
7255 2005-07-16  Wim Taymans  <wim@fluendo.com>
7256
7257         * gst-libs/gst/audio/gstbaseaudiosink.c:
7258         (gst_base_audio_sink_render):
7259         Align samples even if we have roundoff errors in the 
7260         timestamp conversion.
7261
7262 2005-07-16  Wim Taymans  <wim@fluendo.com>
7263
7264         * docs/libs/tmpl/gstringbuffer.sgml:
7265         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
7266         (query_rates), (query_positions_elems), (query_positions_pads),
7267         (update_scale), (do_seek):
7268         Updated seek example.
7269
7270         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7271         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
7272         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
7273         (gst_ogg_demux_loop):
7274         Push out correct discont values.
7275
7276         * ext/theora/theoradec.c: (theora_dec_src_convert),
7277         (theora_dec_sink_convert), (theora_dec_src_getcaps),
7278         (theora_dec_sink_event), (theora_handle_type_packet),
7279         (theora_handle_header_packet), (theora_dec_push),
7280         (theora_handle_data_packet), (theora_dec_chain),
7281         (theora_dec_change_state):
7282         Better timestamping.
7283
7284         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
7285         (vorbis_dec_sink_event), (vorbis_dec_push),
7286         (vorbis_handle_data_packet), (vorbis_dec_chain):
7287         * ext/vorbis/vorbisdec.h:
7288         Better timestamping.
7289
7290         * gst-libs/gst/audio/gstbaseaudiosink.c:
7291         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
7292         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
7293         Handle syncing on timestamps instead of sample offsets. Make
7294         use of DISCONT values as described in design docs.
7295
7296         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7297         (gst_base_audio_src_get_time):
7298         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
7299         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
7300         (gst_ring_buffer_read):
7301         * gst-libs/gst/audio/gstringbuffer.h:
7302         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
7303         (gst_ximagesink_show_frame):
7304         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
7305         Correcly convert buffer timestamp to stream time.
7306
7307 2005-07-16  Wim Taymans  <wim@fluendo.com>
7308
7309         * gst/audioconvert/gstaudioconvert.c:
7310         (gst_audio_convert_get_buffer):
7311         Timestamp buffers correctly.
7312
7313         * gst/playback/gstplaybin.c: (gen_video_element):
7314         Make internal fakesink silent.
7315
7316 2005-07-15  Wim Taymans  <wim@fluendo.com>
7317
7318         * gst/ffmpegcolorspace/Makefile.am:
7319         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7320         (gst_ffmpegcsp_caps_remove_format_info),
7321         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7322         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
7323         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
7324         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
7325         Ported ffmpegcolorspace to basetransform.
7326
7327         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
7328         * gst/volume/gstvolume.c: (volume_transform):
7329         Ported to new API.
7330
7331 2005-07-14  Wim Taymans  <wim@fluendo.com>
7332
7333         * gst/videotestsrc/Makefile.am:
7334         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
7335         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
7336         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
7337         (gst_videotestsrc_init), (gst_videotestsrc_event),
7338         (gst_videotestsrc_create), (gst_videotestsrc_start),
7339         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
7340         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
7341         (gst_videotestsrc_get_property):
7342         * gst/videotestsrc/gstvideotestsrc.h:
7343         Make videotestsrc a pushsrc.
7344
7345 2005-07-14  Wim Taymans  <wim@fluendo.com>
7346
7347         * gst/tcp/gstfdset.c: (gst_fdset_free):
7348         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
7349         (gst_multifdsink_add), (gst_multifdsink_remove),
7350         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
7351         (gst_multifdsink_remove_client_link),
7352         (gst_multifdsink_client_queue_data),
7353         (gst_multifdsink_client_queue_caps),
7354         (gst_multifdsink_client_queue_buffer),
7355         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
7356         (gst_multifdsink_stop):
7357         * gst/tcp/gstmultifdsink.h:
7358         0.8 backporting.
7359
7360         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
7361         Also draw image when not from a pool.
7362
7363 2005-07-14  Wim Taymans  <wim@fluendo.com>
7364
7365         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
7366         (mute_stream), (silence_stream):
7367         Small debug additions.
7368
7369 2005-07-14  Wim Taymans  <wim@fluendo.com>
7370
7371         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
7372         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
7373         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
7374         Better error recovery, ignore unconnected pads and
7375         non-fatal errors.
7376
7377 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7378
7379         * docs/libs/tmpl/gstaudio.sgml:
7380         * docs/libs/tmpl/gstcolorbalance.sgml:
7381         * docs/libs/tmpl/gstgconf.sgml:
7382         * docs/libs/tmpl/gstmixer.sgml:
7383         * docs/libs/tmpl/gstringbuffer.sgml:
7384         * docs/libs/tmpl/gsttuner.sgml:
7385         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7386         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
7387         (gst_tcpclientsrc_class_init):
7388         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
7389         (gst_tcpserversrc_class_init):
7390         * sys/v4l/gstv4lelement.c:
7391           more autistic cleanliness in functions/names/defines
7392
7393 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
7394
7395         * configure.ac:
7396           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
7397           added manually to each Makefile.am so we are sure it goes
7398           *last* and doesn't add -L flags before linking in libs of our
7399           own, like, say, internal .la libs, that then accidentally pick
7400           up the installed copy.
7401         * docs/libs/Makefile.am:
7402         * ext/alsa/Makefile.am:
7403         * ext/cdparanoia/Makefile.am:
7404         * ext/gnomevfs/Makefile.am:
7405         * ext/libvisual/Makefile.am:
7406         * ext/ogg/Makefile.am:
7407         * ext/theora/Makefile.am:
7408         * ext/vorbis/Makefile.am:
7409         * gst-libs/gst/video/Makefile.am:
7410         * gst/adder/Makefile.am:
7411         * gst/audioconvert/Makefile.am:
7412         * gst/audiorate/Makefile.am:
7413         * gst/audioscale/Makefile.am:
7414         * gst/ffmpegcolorspace/Makefile.am:
7415         * gst/playback/Makefile.am:
7416         * gst/sine/Makefile.am:
7417         * gst/subparse/Makefile.am:
7418         * gst/tags/Makefile.am:
7419         * gst/tcp/Makefile.am:
7420         * gst/typefind/Makefile.am:
7421         * gst/videorate/Makefile.am:
7422         * gst/videoscale/Makefile.am:
7423         * gst/videotestsrc/Makefile.am:
7424         * gst/volume/Makefile.am:
7425         * sys/v4l/Makefile.am:
7426         * sys/ximage/Makefile.am:
7427         * sys/xvimage/Makefile.am:
7428           adapt properly to this change. This should make sure that
7429           plugins and libs properly link to the as-yet-uninstalled
7430           copies of stuff like libgstinterfaces and libgstvideo
7431
7432 2005-07-13  Andy Wingo  <wingo@pobox.com>
7433
7434         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
7435         (gst_v4lsrc_fixate): Fixate on format as well.
7436
7437         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
7438         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
7439         buffer points to it.
7440         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
7441         rather just doing X calls ourselves. Also fixes a memleak.
7442
7443 2005-07-12  Andy Wingo  <wingo@pobox.com>
7444
7445         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
7446         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
7447         (gst_v4lsrc_create): Re-add the copy-mode property, default to
7448         TRUE to avoid deadlocks if an element holds on to our buffers.
7449
7450 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
7451
7452         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7453         (gst_sinesrc_init), (gst_sinesrc_create),
7454         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
7455         (gst_sinesrc_start):
7456         * gst/sine/gstsinesrc.h:
7457           removing num-buffers property before moving it
7458
7459 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7460
7461         * configure.ac:
7462           use overridable ERROR_CFLAGS
7463         * docs/libs/gst-plugins-base-libs.types:
7464         * docs/libs/tmpl/gstringbuffer.sgml:
7465         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
7466         (gst_alsasink_class_init):
7467         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
7468         (gst_alsasrc_class_init):
7469         * gst-libs/gst/audio/audio.h:
7470         * gst-libs/gst/audio/gstaudioclock.h:
7471         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
7472         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
7473         (gst_audio_filter_link), (gst_audio_filter_init),
7474         (gst_audio_filter_chain), (gst_audio_filter_set_property),
7475         (gst_audio_filter_get_property),
7476         (gst_audio_filter_class_add_pad_templates):
7477         * gst-libs/gst/audio/gstaudiofilter.h:
7478         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7479         (gst_audio_filter_template_get_type),
7480         (gst_audio_filter_template_base_init),
7481         (gst_audio_filter_template_class_init),
7482         (gst_audio_filter_template_init),
7483         (gst_audio_filter_template_set_property),
7484         (gst_audio_filter_template_get_property), (plugin_init),
7485         (gst_audio_filter_template_setup),
7486         (gst_audio_filter_template_filter),
7487         (gst_audio_filter_template_filter_inplace):
7488         * gst-libs/gst/audio/gstaudiosink.c:
7489         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7490         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
7491         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
7492         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
7493         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
7494         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
7495         * gst-libs/gst/audio/gstaudiosink.h:
7496         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
7497         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
7498         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7499         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
7500         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
7501         (gst_audio_src_class_init), (gst_audio_src_init),
7502         (gst_audio_src_create_ringbuffer):
7503         * gst-libs/gst/audio/gstaudiosrc.h:
7504         * gst-libs/gst/audio/gstbaseaudiosink.c:
7505         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
7506         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
7507         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
7508         (gst_base_audio_sink_set_property),
7509         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
7510         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
7511         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
7512         (gst_base_audio_sink_create_ringbuffer),
7513         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
7514         * gst-libs/gst/audio/gstbaseaudiosink.h:
7515         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7516         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
7517         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
7518         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
7519         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
7520         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
7521         (gst_base_audio_src_event), (gst_base_audio_src_create),
7522         (gst_base_audio_src_create_ringbuffer),
7523         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
7524         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7525         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
7526         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
7527         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
7528         (gst_ring_buffer_debug_spec_caps),
7529         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
7530         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
7531         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
7532         (gst_ring_buffer_start), (gst_ring_buffer_pause),
7533         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
7534         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
7535         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
7536         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
7537         (gst_ring_buffer_clear):
7538         * gst-libs/gst/audio/gstringbuffer.h:
7539         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7540         (gst_video_sink_class_init), (gst_video_sink_get_type):
7541         * gst-libs/gst/video/videosink.h:
7542         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
7543         (gst_multifdsink_class_init),
7544         (gst_multifdsink_handle_client_write),
7545         (gst_multifdsink_change_state):
7546         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
7547         (gst_tcpclientsink_setcaps):
7548         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
7549         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
7550         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
7551         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
7552         (gst_ximagesink_send_pending_navigation),
7553         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
7554         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
7555         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
7556         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
7557         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
7558         (gst_xvimagesink_send_pending_navigation),
7559         (gst_xvimagesink_navigation_send_event),
7560         (gst_xvimagesink_set_xwindow_id),
7561         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
7562         (gst_xvimagesink_get_type):
7563         more macro splitting
7564
7565 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7566
7567         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7568           plug a memleak, allows me to import 1479 albums in one go
7569           in jamboree
7570         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7571         (vorbis_handle_type_packet), (vorbis_dec_chain),
7572         (vorbis_dec_change_state):
7573           fix some format strings
7574
7575 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7576
7577         * docs/libs/tmpl/gstcolorbalance.sgml:
7578         * docs/libs/tmpl/gstmixer.sgml:
7579         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
7580         (gst_alsasink_set_property), (gst_alsasink_get_property):
7581         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7582         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
7583           add device property
7584
7585 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7586
7587         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
7588         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7589         (audiocast_register_listener), (audiocast_thread_run),
7590         (gst_gnomevfssrc_send_additional_headers_callback),
7591         (gst_gnomevfssrc_received_headers_callback),
7592         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
7593         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
7594         (gst_gnomevfssrc_get_size):
7595           add/clean up debugging
7596         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
7597           cleanups
7598
7599 2005-07-07  Andy Wingo  <wingo@pobox.com>
7600
7601         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
7602         framerate. Need to get a handle on when exactly this function is
7603         called, tho.
7604
7605         * sys/v4l/v4lsrc_calls.h:
7606         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
7607         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
7608         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
7609
7610         * sys/v4l/v4l_calls.h: Cast to V4lElement.
7611         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
7612         v4lelements are sources.
7613
7614         * sys/v4l/gstv4lxoverlay.h:
7615         * sys/v4l/gstv4lxoverlay.c:
7616         * sys/v4l/gstv4ltuner.h:
7617         * sys/v4l/gstv4ltuner.c: Header loc fixen.
7618         
7619         * sys/v4l/gstv4lsrc.h:
7620         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
7621         PushSrc/BaseSrc. Removed most sync-related properties, videorate
7622         or something should handle that. Made a live source.
7623
7624         * sys/v4l/gstv4lelement.h:
7625         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
7626         signals. Some cleanups.
7627
7628         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
7629
7630         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
7631         stuff.
7632
7633         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
7634         stuff.
7635
7636         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
7637
7638 2005-07-07  Wim Taymans  <wim@fluendo.com>
7639
7640         * ext/theora/theoradec.c: (theora_get_query_types),
7641         (theora_dec_src_getcaps), (theora_dec_push):
7642         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
7643         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
7644         Remove deprecated/unused query types.
7645
7646 2005-07-06  Wim Taymans  <wim@fluendo.com>
7647
7648         * ext/alsa/Makefile.am:
7649         * ext/alsa/gstalsaplugin.c: (plugin_init):
7650         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7651         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
7652         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
7653         (gst_alsasrc_class_init), (gst_alsasrc_init),
7654         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
7655         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
7656         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
7657         (gst_alsasrc_reset):
7658         * ext/alsa/gstalsasrc.h:
7659         * gst-libs/gst/audio/Makefile.am:
7660         * gst-libs/gst/audio/gstaudiosink.c:
7661         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7662         (gst_audioringbuffer_start):
7663         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
7664         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
7665         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
7666         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
7667         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
7668         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
7669         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
7670         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
7671         * gst-libs/gst/audio/gstaudiosrc.h:
7672         * gst-libs/gst/audio/gstbaseaudiosink.c:
7673         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7674         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
7675         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
7676         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7677         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
7678         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
7679         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
7680         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
7681         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
7682         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
7683         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
7684         (gst_baseaudiosrc_change_state):
7685         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7686         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
7687         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
7688         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
7689         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
7690         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
7691         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
7692         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
7693         * gst-libs/gst/audio/gstringbuffer.h:
7694         Added audiosource base classes.
7695         Ported alsasrc, still very basic.
7696
7697 2005-07-06  Wim Taymans  <wim@fluendo.com>
7698
7699         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
7700         (theora_dec_push), (theora_handle_data_packet):
7701         Prepare for better timestamp fix later.
7702
7703         * gst/audioconvert/gstaudioconvert.c:
7704         List most accurate caps first
7705
7706         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
7707         Use proper pad task function.
7708
7709         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7710         (gst_xvimagesink_show_frame):
7711         Fix deadlock when alloc failed.
7712
7713 2005-07-05  Andy Wingo  <wingo@pobox.com>
7714
7715         * ext/gnomevfs/gstgnomevfssrc.c:
7716         * gst/sine/gstsinesrc.c:
7717         * gst/tcp/gsttcpserversrc.c:
7718         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
7719
7720         * sys/v4l/: Port from 0.8.
7721
7722         * Many files: Null if we got it....
7723
7724 2005-07-05  Andy Wingo  <wingo@pobox.com>
7725
7726         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
7727         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
7728         Signedness fixes.
7729
7730 2005-07-05  Wim Taymans  <wim@fluendo.com>
7731
7732         * configure.ac:
7733         * gst/tcp/Makefile.am:
7734         * gst/tcp/README:
7735         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
7736         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
7737         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
7738         (is_sync_frame), (gst_multifdsink_handle_client_write),
7739         (gst_multifdsink_render), (gst_multifdsink_start),
7740         (gst_multifdsink_stop), (gst_multifdsink_change_state):
7741         * gst/tcp/gstmultifdsink.h:
7742         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
7743         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
7744         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
7745         * gst/tcp/gsttcp.h:
7746         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
7747         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
7748         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
7749         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
7750         * gst/tcp/gsttcpclientsink.h:
7751         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
7752         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
7753         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
7754         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
7755         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
7756         * gst/tcp/gsttcpclientsrc.h:
7757         * gst/tcp/gsttcpplugin.c: (plugin_init):
7758         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
7759         * gst/tcp/gsttcpserversink.h:
7760         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
7761         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
7762         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
7763         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
7764         (gst_tcpserversrc_stop):
7765         * gst/tcp/gsttcpserversrc.h:
7766         * gst/tcp/gsttcpsink.c:
7767         * gst/tcp/gsttcpsink.h:
7768         * gst/tcp/gsttcpsrc.c:
7769         * gst/tcp/gsttcpsrc.h:
7770         Ported tcp plugins to 0.9. 
7771         
7772
7773 2005-07-05  Andy Wingo  <wingo@pobox.com>
7774
7775         * gst/playback/gstplaybasebin.c (fill_buffer):
7776         message_new_application fixen.
7777
7778         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
7779         Style fix.
7780
7781 2005-07-04  Wim Taymans  <wim@fluendo.com>
7782
7783         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
7784         Set caps on output buffer.
7785
7786 2005-07-04  Andy Wingo  <wingo@pobox.com>
7787
7788         * ext/gnomevfs/gstgnomevfssrc.c
7789         (gst_gnomevfssrc_received_headers_callback) 
7790         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
7791         hopefully.
7792
7793         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
7794         No refcount leakage.
7795
7796         * configure.ac: Enable -Werror.
7797         
7798         * ext/theora/theoradec.c (theora_dec_src_getcaps):
7799         * gst/audioconvert/bufferframesconvert.c
7800         (buffer_frames_convert_fixate):
7801         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
7802         (gst_audio_convert_fixate):
7803         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
7804         (gst_sinesrc_create): Fixate func changes.
7805         
7806         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
7807         (gst_ximagesink_buffer_alloc): Unused var.
7808
7809 2005-07-01  Andy Wingo  <wingo@pobox.com>
7810
7811         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
7812         getcaps to do explicit caps. Needs to be done in all decoders,
7813         possibly via a base class.
7814
7815         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
7816
7817         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
7818         caps on the sink pad, just rely on the pad template. Also, setting
7819         ANY caps on a pad is not valid because the caps are not fixed.
7820
7821         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
7822         caps on the buffer, and get the width from the desired_caps if
7823         they're set.
7824         (gst_ximagesink_renegotiate_size): Implement via setting the
7825         desired_caps on the ximagesink.
7826         (gst_ximagesink_setcaps): Only reset the width of the player if it
7827         wasn't already set. Not sure if this is right.
7828         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
7829
7830         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
7831         that the user wants. NULL unless the window has been resized.
7832
7833         * gst/volume/gstvolume.c (volume_transform): Adapt to
7834         basetransform refcount changes.
7835         
7836 2005-07-01  Andy Wingo  <wingo@pobox.com>
7837
7838         * gst/videoscale/gstvideoscale.c:
7839         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
7840         from BaseTransform, implements a transform_caps. Removed dead code
7841         including some PAR stuff that was never reached -- should probably
7842         be added back somehow.
7843
7844 2005-07-01  Andy Wingo  <wingo@pobox.com>
7845
7846         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
7847         come later.
7848
7849 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
7850
7851         * configure.ac:
7852         * docs/libs/Makefile.am:
7853         * docs/libs/gst-plugins-libs.types:
7854         * ext/alsa/Makefile.am:
7855         * ext/alsa/gstalsamixer.h:
7856         * ext/alsa/gstalsamixeroptions.h:
7857         * ext/alsa/gstalsamixertrack.h:
7858         * gst-libs/gst/Makefile.am:
7859         * gst-libs/gst/colorbalance/.cvsignore:
7860         * gst-libs/gst/colorbalance/Makefile.am:
7861         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
7862         * gst-libs/gst/colorbalance/colorbalance.c:
7863         * gst-libs/gst/colorbalance/colorbalance.h:
7864         * gst-libs/gst/colorbalance/colorbalance.vcproj:
7865         * gst-libs/gst/colorbalance/colorbalancechannel.c:
7866         * gst-libs/gst/colorbalance/colorbalancechannel.h:
7867         * gst-libs/gst/interfaces/Makefile.am:
7868         * gst-libs/gst/interfaces/colorbalance.c:
7869         (gst_color_balance_class_init):
7870         * gst-libs/gst/interfaces/colorbalance.h:
7871         * gst-libs/gst/interfaces/interfaces-marshal.list:
7872         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
7873         * gst-libs/gst/interfaces/mixer.h:
7874         * gst-libs/gst/interfaces/mixeroptions.h:
7875         * gst-libs/gst/interfaces/navigation.c:
7876         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
7877         * gst-libs/gst/interfaces/tuner.h:
7878         * gst/volume/Makefile.am:
7879         * gst/volume/gstvolume.c:
7880         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
7881         * sys/ximage/Makefile.am:
7882         * sys/ximage/ximagesink.c:
7883         * sys/xvimage/Makefile.am:
7884         * sys/xvimage/xvimagesink.c:
7885           fold in all interfaces into an interfaces dir, preserving CVS
7886           history
7887
7888 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7889
7890         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7891           Fix build after riff changes.
7892
7893 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7894
7895         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7896         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
7897         (gst_riff_create_video_template_caps),
7898         (gst_riff_create_audio_template_caps),
7899         (gst_riff_create_iavs_template_caps):
7900         * gst-libs/gst/riff/riff-media.h:
7901         * gst-libs/gst/riff/riff-read.h:
7902         * gst-libs/gst/riff/riff.c: (gst_riff_init):
7903           Add gst_riff_init() to initialize the debug category, instead
7904           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
7905
7906 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7907
7908         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
7909           Oops, I shouldn't apply hacks.
7910
7911 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7912
7913         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
7914           Remove pad_loop function which doesn't work.
7915
7916 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7917
7918         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
7919           Send EOS when deactivating.
7920         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
7921         (check_queue), (queue_threshold_reached), (queue_out_of_data),
7922         (gen_preroll_element), (probe_triggered), (mute_stream),
7923         (silence_stream), (new_decoded_pad), (setup_substreams),
7924         (set_active_source):
7925         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
7926         (remove_sinks), (add_sink):
7927         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
7928           Change for new probe API.
7929
7930 2005-06-29  Wim Taymans  <wim@fluendo.com>
7931
7932         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
7933         * gst-libs/gst/audio/gstbaseaudiosink.c:
7934         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7935         (gst_baseaudiosink_change_state):
7936         * gst-libs/gst/audio/gstbaseaudiosink.h:
7937         * gst-libs/gst/audio/gstringbuffer.c:
7938         (gst_ringbuffer_set_callback):
7939         Fix compilation error.
7940         Ringbuffer starts out as not running.
7941         Free our clock in dispose.
7942         When releasing the ringbuffer we need to renegotiate so
7943         clear the pad caps.
7944
7945 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
7946
7947         * autogen.sh:
7948         * configure.ac:
7949         * docs/Makefile.am:
7950         * docs/libs/Makefile.am:
7951         * docs/libs/gst-plugins-libs-docs.sgml:
7952         * docs/libs/gst-plugins-libs-sections.txt:
7953         * docs/libs/gst-plugins-libs.types:
7954         * docs/libs/tmpl/gstaudio.sgml:
7955         * docs/libs/tmpl/gstcolorbalance.sgml:
7956         * docs/libs/tmpl/gstringbuffer.sgml:
7957         * gst-libs/gst/audio/gstringbuffer.c:
7958         (gst_ringbuffer_set_callback):
7959           reinstate gtk-doc docs for plugin libs
7960
7961 2005-06-28  Wim Taymans  <wim@fluendo.com>
7962
7963         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7964         (gst_ogg_demux_init):
7965         Removed pad loop function.
7966
7967 2005-06-28  Wim Taymans  <wim@fluendo.com>
7968
7969         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
7970         If we're building a chain we are not in an error case
7971         when we queue a buffer.
7972
7973 2005-06-28  Andy Wingo  <wingo@pobox.com>
7974
7975         * *.c: Don't cast to GstObject before reffing/unreffing.
7976
7977 2005-06-27  Andy Wingo  <wingo@pobox.com>
7978
7979         * gst/videotestsrc/gstvideotestsrc.c
7980         (gst_videotestsrc_activate_push): Activation API changes.
7981
7982         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
7983         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
7984         they have refs on the decodebin.
7985
7986         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
7987         parent class.
7988         (gst_ogg_pad_typefind): Don't leak a pad ref.
7989         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
7990         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
7991         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
7992
7993 2005-06-27  Edward Hervey  <edward@fluendo.com>
7994
7995         * ext/theora/theoradec.c: (theora_dec_change_state): 
7996         re-arranged call to parent's state change in order to avoid locks (or
7997         worse).
7998
7999 2005-06-26  Edward Hervey  <edward@fluendo.com>
8000
8001         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
8002         2nd argument of 'unknow-type' signal is a GstCaps and not a
8003         GstMiniObject
8004
8005 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
8006         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
8007           Set the worker thread's running flag to TRUE before starting the
8008           thread.
8009         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
8010           Catch a failure to add typefind to the bin.
8011
8012 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
8013
8014         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
8015         (gst_sinesrc_init), (gst_sinesrc_create),
8016         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
8017         (gst_sinesrc_start):
8018         * gst/sine/gstsinesrc.h:
8019           add num-buffers and timestamp-offset properties
8020         * gst/videotestsrc/gstvideotestsrc.c:
8021         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
8022         (gst_videotestsrc_get_property):
8023           add timestamp-offset property
8024
8025 2005-06-23  Christian Schaller  <uraeus@gnome.org>
8026
8027         * configure.ac: add videorate
8028         * gst-plugins-base.spec.in: add videorate
8029
8030 2005-06-23  Wim Taymans  <wim@fluendo.com>
8031
8032         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
8033         (gst_videorate_getcaps), (gst_videorate_setcaps),
8034         (gst_videorate_event), (gst_videorate_chain):
8035         Fixed videorate, fixating an already fixated caps is not
8036         an error.
8037
8038 2005-06-23  Wim Taymans  <wim@fluendo.com>
8039
8040         * ext/ogg/README:
8041         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
8042         Buffer on caps is not boxed anymore.
8043
8044 2005-06-22  Wim Taymans  <wim@fluendo.com>
8045
8046         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
8047         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
8048         Set buffers on caps as miniobjects and not as boxed.
8049
8050 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
8051
8052         * configure.ac:
8053           back to HEAD
8054
8055 === release 0.9.1 ===
8056
8057 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
8058
8059         * .cvsignore:
8060         * NEWS:
8061         * README:
8062         * RELEASE:
8063         * configure.ac:
8064         * po/af.po:
8065         * po/az.po:
8066         * po/cs.po:
8067         * po/en_GB.po:
8068         * po/hu.po:
8069         * po/it.po:
8070         * po/nb.po:
8071         * po/nl.po:
8072         * po/or.po:
8073         * po/sq.po:
8074         * po/sr.po:
8075         * po/sv.po:
8076         * po/uk.po:
8077         * po/vi.po:
8078           updates for release
8079
8080 2005-06-09  Andy Wingo  <wingo@pobox.com>
8081
8082         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
8083         
8084 2005-06-09  Andy Wingo  <wingo@pobox.com>
8085
8086         * configure.ac:
8087         * gst-libs/gst/Makefile.am:
8088         * gst-libs/gst/net/Makefile.am:
8089         Add gstnet to build.
8090
8091 2005-06-09  Andy Wingo  <wingo@pobox.com>
8092
8093         * gst-libs/gst/gconf/gconf.c:
8094         * gst/playback/test.c:
8095         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
8096         fixes.
8097
8098         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
8099
8100         * ext/theora/theoraenc.c (theora_enc_chain): 
8101         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
8102
8103         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
8104         RealPad.
8105
8106 2005-06-02  Wim Taymans  <wim@fluendo.com>
8107
8108         * gst-libs/gst/net/Makefile.am:
8109         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
8110         * pkgconfig/gstreamer-libs.pc.in:
8111         Added net stuff, version net lib.
8112
8113 2005-06-02  Wim Taymans  <wim@fluendo.com>
8114
8115         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
8116         (query_rates), (query_positions_elems), (query_positions_pads),
8117         (do_seek):
8118         Updated seek example.
8119
8120 2005-06-02  Andy Wingo  <wingo@pobox.com>
8121
8122         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
8123         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
8124         list.
8125
8126         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
8127         remove the typefind, the bin dispose will do it for us. When it's
8128         removed and unreffed, the signal handler will be disconnected,
8129         too.
8130         (unlinked): It's too difficult to disconnect from unlinked
8131         handlers, as they are on pads not elements. Just punt if the pads
8132         aren't grandkids of the bin.
8133
8134 2005-06-02  Wim Taymans  <wim@fluendo.com>
8135
8136         * ext/ogg/README:
8137         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8138         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
8139         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
8140         * ext/theora/theoradec.c: (theora_dec_src_query),
8141         (theora_handle_data_packet):
8142         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
8143         (theora_enc_chain):
8144         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8145         (vorbis_handle_data_packet):
8146         * gst/audioconvert/bufferframesconvert.c:
8147         (buffer_frames_convert_chain):
8148         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8149         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8150         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
8151         (gst_ffmpegcsp_chain):
8152         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
8153         (gst_videorate_getcaps), (gst_videorate_setcaps),
8154         (gst_videorate_event), (gst_videorate_chain):
8155         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
8156         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
8157         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
8158         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
8159         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8160         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
8161         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
8162         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
8163         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
8164         Cleanups and buffer alloc.
8165
8166 2005-05-31  Wim Taymans  <wim@fluendo.com>
8167
8168         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
8169         Don't try to call the delay method when the device is not
8170         opened.
8171
8172 2005-05-31  Wim Taymans  <wim@fluendo.com>
8173
8174         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
8175         Get actual segment size and buffer size after opening
8176         the device.
8177
8178 2005-05-30  Wim Taymans  <wim@fluendo.com>
8179
8180         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
8181         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
8182         Also FLUSH upstream, makes the loop function exit faster.
8183         
8184         * ext/theora/theoradec.c: (theora_dec_src_query):
8185         Some more debug info in the query.
8186         
8187         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
8188         (gst_ximagesink_setcaps):
8189         Release lock on par error, better error reporting.
8190
8191 2005-05-26  Wim Taymans  <wim@fluendo.com>
8192
8193         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8194         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
8195         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
8196         Clear chains in READY
8197         Queue packets until the chain is activated.
8198
8199 2005-05-25  Wim Taymans  <wim@fluendo.com>
8200
8201         * gst-libs/gst/audio/gstaudiosink.c:
8202         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8203         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8204         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8205         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8206         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8207         (gst_audiosink_create_ringbuffer):
8208         * gst-libs/gst/audio/gstbaseaudiosink.c:
8209         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8210         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8211         (gst_baseaudiosink_set_property), (build_linear_format),
8212         (debug_spec_caps), (debug_spec_buffer),
8213         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8214         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8215         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8216         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8217         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8218         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8219         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
8220         (gst_ringbuffer_play), (gst_ringbuffer_pause),
8221         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
8222         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
8223         (wait_segment), (gst_ringbuffer_commit),
8224         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
8225         (gst_ringbuffer_clear):
8226         Various small cleanups.
8227
8228         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8229         (gst_audio_convert_change_state):
8230         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
8231         No need to take the locks anymore.
8232
8233 2005-05-25  Wim Taymans  <wim@fluendo.com>
8234
8235         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8236         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
8237         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
8238         (type_found):
8239         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
8240         (group_destroy), (group_commit), (queue_overrun),
8241         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
8242         (mute_stream), (new_decoded_pad), (setup_substreams),
8243         (setup_source), (mute_group_type), (set_active_source),
8244         (gst_play_base_bin_change_state):
8245         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8246         (gen_video_element), (gen_text_element), (gen_audio_element),
8247         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
8248         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
8249         (gst_stream_info_dispose), (gst_stream_info_set_mute):
8250         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
8251         Some playbin cleanups mostly refcounting sloppyness.
8252
8253 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8254
8255         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
8256           Work with streaming input.
8257
8258 2005-05-25  Wim Taymans  <wim@fluendo.com>
8259
8260         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8261         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8262         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
8263         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
8264         No need to take the STREAM lock anymore.
8265
8266 2005-05-25  Wim Taymans  <wim@fluendo.com>
8267
8268         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
8269         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
8270         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
8271         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
8272         (gst_ogg_demux_sink_activate):
8273         * ext/theora/theoradec.c: (theora_dec_src_event),
8274         (theora_handle_comment_packet), (theora_dec_chain),
8275         (theora_dec_change_state):
8276         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8277         (vorbis_handle_data_packet), (vorbis_dec_chain),
8278         (vorbis_dec_change_state):
8279         Remove STREAM locks as they are taken in core now.
8280         Never set bogus granulepos on vorbis/theora.
8281         Fix leaks in theoradec tag parsing.
8282
8283 2005-05-25  Wim Taymans  <wim@fluendo.com>
8284
8285         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
8286         Fix memleaks, GST_BUFFER_DATA() is not freed.
8287
8288 2005-05-25  Wim Taymans  <wim@fluendo.com>
8289
8290         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
8291         Open non-blocking, set to blocking mode afterwards to avoid
8292         lockups when audio device is busy.
8293
8294 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8295
8296         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
8297           This can't be good.
8298
8299 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8300
8301         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
8302         (gst_audio_convert_chain), (gst_audio_convert_link_src),
8303         (gst_audio_convert_setcaps):
8304           Implement instant setup switching.
8305
8306 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8307
8308         * gst/playback/gstplaybasebin.c: (probe_triggered):
8309           Fix missing unlock.
8310         * gst/playback/gstplaybin.c: (add_sink):
8311           First add, then link (otherwise pad link fails).
8312
8313 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8314
8315         * examples/Makefile.am:
8316         fix buildbot (make distcheck)
8317
8318 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8319
8320         * gst/playback/gstplaybin.c: (gen_vis_element):
8321           Remove some wrong code. Doesn't work yet.
8322
8323 2005-05-19  Wim Taymans  <wim@fluendo.com>
8324
8325         * gst-libs/gst/net/Makefile.am:
8326         * gst-libs/gst/net/README:
8327         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
8328         (gst_netbuffer_class_init), (gst_netbuffer_init),
8329         (gst_netbuffer_finalize), (gst_netbuffer_copy),
8330         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
8331         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
8332         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
8333         * gst-libs/gst/net/gstnetbuffer.h:
8334         Added buffer subclass to store extra to/from addresses for
8335         network sources/sinks.
8336
8337 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8338
8339         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
8340           Don't lock an unassigned variable.
8341
8342 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8343
8344         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
8345           Increase buffer for video, decrease buffer for other media types.
8346         * gst/playback/gstplaybin.c: (gen_video_element),
8347         (gen_audio_element):
8348           Change names for debugging purposes.
8349
8350 2005-05-18  Wim Taymans  <wim@fluendo.com>
8351
8352         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8353         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8354         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
8355         (gst_ffmpegcsp_chain):
8356         Enable buffer alloc passthrough if the source and dest
8357         formats are the same.
8358
8359 2005-05-17  Wim Taymans  <wim@fluendo.com>
8360
8361         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
8362         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
8363         (gst_ogg_demux_chain_unlocked):
8364         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8365         (gst_audio_convert_caps_remove_format_info),
8366         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8367         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
8368         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8369         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8370         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
8371         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
8372         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
8373         (gst_ffmpegcsp_get_property):
8374         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8375         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
8376         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
8377         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
8378         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
8379         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
8380         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
8381         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
8382         Leak fixes in oggdemux.
8383         Some cleanups in audioconvert.
8384         Make passthrough work along with buffer_alloc etc.
8385         Make buffer_alloc and buffer recycling actually work in
8386         xvimagesink.
8387
8388 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8389
8390         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
8391           make the compiler happy
8392
8393 2005-05-17  Wim Taymans  <wim@fluendo.com>
8394
8395         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
8396         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
8397         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
8398         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
8399         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
8400         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
8401         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
8402         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
8403         (gst_xvimagesink_set_xwindow_id):
8404         * sys/xvimage/xvimagesink.h:
8405         Port xvimagesink to new MiniObject.
8406
8407 2005-05-17  Wim Taymans  <wim@fluendo.com>
8408
8409         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
8410         (gst_audiofilter_chain):
8411         * gst-libs/gst/audio/gstaudiosink.c:
8412         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8413         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8414         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8415         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8416         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8417         (gst_audiosink_create_ringbuffer):
8418         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8419         (gst_audio_convert_caps_remove_format_info),
8420         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8421         (gst_audio_convert_fixate), (gst_audio_convert_channels):
8422         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8423         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8424         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8425         Fix passthrough in ffmpegcolorspace.
8426         Fix memset in audiosink on wrong memory.
8427
8428 2005-05-16  David Schleef  <ds@schleef.org>
8429
8430         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
8431         to GstMiniObject.
8432
8433 2005-05-16  David Schleef  <ds@schleef.org>
8434
8435         Port from GstData to GstMiniObject.
8436         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
8437         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
8438         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
8439         (gst_ogg_mux_collected):
8440         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
8441         * ext/theora/theoradec.c: (theora_handle_comment_packet),
8442         (theora_handle_data_packet):
8443         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
8444         (theora_set_header_on_caps), (theora_enc_chain):
8445         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8446         (vorbis_handle_comment_packet):
8447         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
8448         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
8449         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
8450         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
8451         * gst/audioconvert/gstaudioconvert.c:
8452         (gst_audio_convert_get_buffer):
8453         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
8454         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
8455         (mute_stream), (silence_stream):
8456         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
8457         * gst/volume/gstvolume.c: (volume_transform):
8458         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
8459         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
8460         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
8461         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
8462         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
8463         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
8464         (gst_ximagesink_buffer_alloc):
8465         * sys/ximage/ximagesink.h:
8466
8467 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8468
8469         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8470         (fill_buffer), (check_queue), (queue_threshold_reached),
8471         (queue_out_of_data):
8472         * gst/playback/gstplaybasebin.h:
8473           Post buffer-fullness on the bus.
8474
8475 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8476
8477         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
8478         (try_to_link_1):
8479         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8480         (group_commit), (probe_triggered), (setup_source),
8481         (gst_play_base_bin_change_state):
8482         * gst/playback/gstplaybasebin.h:
8483         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8484         (gst_play_bin_init), (remove_sinks), (setup_sinks),
8485         (gst_play_bin_change_state):
8486           Move setup_output_pads into a virtual function, remove
8487           group-switch (no longer needed) and redirect (handled by bus
8488           now) signals.
8489
8490 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8491
8492         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
8493         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
8494         (get_active_group), (get_building_group), (group_destroy),
8495         (group_commit), (check_queue), (queue_overrun),
8496         (queue_threshold_reached), (queue_out_of_data),
8497         (gen_preroll_element), (remove_groups), (unknown_type),
8498         (add_element_stream), (no_more_pads), (probe_triggered),
8499         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
8500         (setup_substreams), (setup_source), (finish_source),
8501         (prepare_output), (muted_group_change_state),
8502         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
8503         (gst_play_base_bin_change_state):
8504         * gst/playback/gstplaybasebin.h:
8505         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8506         (gst_play_bin_init), (gst_play_bin_set_property),
8507         (gen_video_element), (gen_text_element), (gen_audio_element),
8508         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
8509         (gst_play_bin_change_state):
8510         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
8511         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
8512         (stream_info_change_state), (gst_stream_info_set_mute),
8513         (gst_stream_info_get_property):
8514         * gst/playback/gststreaminfo.h:
8515         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
8516         (gst_stream_selector_get_linked_pad),
8517         (gst_stream_selector_getcaps),
8518         (gst_stream_selector_get_linked_pads),
8519         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
8520         * gst/playback/gststreamselector.h:
8521           Rough port of playbin. Needs some more work, but is mostly done,
8522           and uses a few locks in important places, which should make stuff
8523           like chain-switches clean. Still uses GST_STATE() in a few places,
8524           which isn't all that good an idea, subtitles/elements disabled
8525           because no elements to test with and thus probably broken, query
8526           and event handling moved to GstBin, internal thread removed
8527           alltogether because the pipeline does that for us now. Can play
8528           Ogg/Vorbis files. Haven't tested anything else yet.
8529
8530 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8531
8532         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
8533           Do no-more-pads (needed for autoplugging).
8534
8535 2005-05-10  Andy Wingo  <wingo@pobox.com>
8536
8537         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
8538         message to the bus with the tags. Still not sent downstream tho.
8539
8540         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
8541         get_parent.
8542         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
8543         avoid refcounting hassles.
8544
8545 2005-05-09  Andy Wingo  <wingo@pobox.com>
8546
8547         * gst/volume/Makefile.am:
8548         * gst/volume/demo.c
8549         * gst/volume/gstvolume.h
8550         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
8551         basetransform. Probably need an audio filter base class.
8552
8553 2005-05-09  Wim Taymans  <wim@fluendo.com>
8554
8555         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
8556         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
8557         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
8558         (gst_vorbisenc_chain):
8559         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8560         (gst_audio_convert_caps_remove_format_info),
8561         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8562         (gst_audio_convert_fixate), (gst_audio_convert_channels):
8563         Make caps writable before writing to it.
8564         Fix negotiation in audioconvert some more.
8565
8566 2005-05-09  Wim Taymans  <wim@fluendo.com>
8567
8568         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
8569         (gst_videorate_getcaps), (gst_videorate_setcaps),
8570         (gst_videorate_event), (gst_videorate_chain):
8571         Better negotiation.
8572
8573 2005-05-09  Wim Taymans  <wim@fluendo.com>
8574
8575         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
8576         (gst_videorate_getcaps), (gst_videorate_setcaps),
8577         (gst_videorate_blank_data), (gst_videorate_init),
8578         (gst_videorate_event), (gst_videorate_chain),
8579         (gst_videorate_change_state):
8580         Port videorate, do a better job at negotiation while we're at
8581         it.
8582
8583 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
8584
8585         * configure.ac:
8586           Disable libvisual
8587
8588         * examples/Makefile.am:
8589         * gst-libs/gst/audio/Makefile.am:
8590         * gst-libs/gst/riff/Makefile.am:
8591         * gst-libs/gst/tag/Makefile.am:
8592         * gst-libs/gst/video/Makefile.am:
8593           Fixups for missing variables.
8594
8595 2005-05-09  Wim Taymans  <wim@fluendo.com>
8596
8597         * examples/seeking/seek.c: (make_theora_pipeline),
8598         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
8599         (query_rates), (query_positions_elems), (query_positions_pads),
8600         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
8601         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
8602         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
8603         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
8604         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
8605         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
8606         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
8607         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
8608         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
8609         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
8610         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
8611         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
8612         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
8613         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
8614         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
8615         (theora_dec_src_convert), (theora_dec_sink_convert),
8616         (theora_dec_src_query), (theora_dec_sink_query),
8617         (theora_dec_src_event), (theora_dec_sink_event),
8618         (theora_handle_comment_packet), (theora_handle_type_packet),
8619         (theora_handle_header_packet), (theora_handle_data_packet),
8620         (theora_dec_chain):
8621         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
8622         (vorbis_dec_convert), (vorbis_dec_src_query),
8623         (vorbis_dec_sink_query), (vorbis_dec_src_event),
8624         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8625         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8626         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
8627         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8628         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
8629         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
8630         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8631         (gst_play_bin_query):
8632         * gst/playback/test3.c: (update_scale):
8633         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
8634         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
8635         * gst/subparse/gstsubparse.c: (gst_subparse_init):
8636         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
8637         (gst_videotestsrc_src_query):
8638         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
8639         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
8640         (paint_hline_YUV9):
8641         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
8642         Port to new query API.
8643         Updated seek.
8644         Cleanups in x[v]imagesink
8645
8646 2005-05-09  Andy Wingo  <wingo@pobox.com>
8647
8648         * ext/alsa/gstalsasink.h:
8649         * ext/gnomevfs/gstgnomevfssrc.c:
8650         (gst_gnomevfssrc_get_icy_metadata):
8651         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
8652         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
8653         * ext/theora/theoradec.c (theora_dec_src_query)
8654         (theora_dec_src_event, theora_dec_sink_event)
8655         (theora_handle_comment_packet, theora_handle_data_packet):
8656         * ext/theora/theoraenc.c (theora_enc_chain):
8657         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
8658         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
8659         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
8660         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
8661         (qt_type_find):
8662         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
8663         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
8664         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
8665         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
8666         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
8667         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
8668         (paint_setup_xBGR8888, paint_setup_RGBx8888)
8669         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
8670         (paint_setup_RGB565, paint_setup_xRGB1555):
8671         * gst/videotestsrc/videotestsrc.h:
8672         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
8673         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
8674         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
8675         GCC4 fixes.
8676         
8677         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
8678         gst_pad_query_position. Fixes oggdemux.
8679
8680 2005-05-08  David Schleef  <ds@schleef.org>
8681
8682         * configure.ac: Require liboil.
8683         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
8684         a few more.
8685         * gst/videotestsrc/videotestsrc.c:
8686         * gst/videotestsrc/videotestsrc.h:
8687
8688 2005-05-06  Wim Taymans  <wim@fluendo.com>
8689
8690         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8691         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8692         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8693         Well, unreffing a buffer right before pushing it is asking
8694         for trouble..
8695
8696 2005-05-06  Christian Schaller  <uraeus@gnome.org>
8697
8698         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
8699
8700 2005-05-06  Wim Taymans  <wim@fluendo.com>
8701
8702         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8703         (gst_audio_convert_caps_remove_format_info),
8704         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8705         (gst_audio_convert_fixate), (gst_audio_convert_channels):
8706         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8707         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8708         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8709         * gst/sine/Makefile.am:
8710         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
8711         (gst_sinesrc_class_init), (gst_sinesrc_init),
8712         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
8713         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
8714         (gst_sinesrc_update_freq):
8715         * gst/sine/gstsinesrc.h:
8716         * gst/tcp/gstmultifdsink.c:
8717         * sys/xvimage/xvimagesink.c:
8718         Fixed negotiation wrt _peer_get_caps()
8719         Some cleanups.
8720
8721
8722 2005-05-06  Wim Taymans  <wim@fluendo.com>
8723
8724         * gst-libs/gst/audio/gstaudiosink.c:
8725         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8726         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8727         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8728         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8729         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8730         (gst_audiosink_create_ringbuffer):
8731         * gst-libs/gst/audio/gstbaseaudiosink.c:
8732         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8733         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8734         (gst_baseaudiosink_set_property), (build_linear_format),
8735         (debug_spec_caps), (debug_spec_buffer),
8736         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8737         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8738         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8739         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8740         * gst-libs/gst/audio/gstbaseaudiosink.h:
8741         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8742         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8743         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
8744         (gst_ringbuffer_play), (gst_ringbuffer_pause),
8745         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
8746         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
8747         (wait_segment), (gst_ringbuffer_commit),
8748         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
8749         (gst_ringbuffer_clear):
8750         * gst-libs/gst/audio/gstringbuffer.h:
8751         Make the base audiosink return an error when there is no
8752         audiobuffer negotiated.
8753
8754 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8755
8756         * ext/Makefile.am:
8757         Disable cdparanoia until someone ports it!
8758
8759 2005-05-06  Wim Taymans  <wim@fluendo.com>
8760
8761         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8762         (gst_ogg_demux_sink_activate):
8763         And revert after wingo's revert.. sigh..
8764
8765 2005-05-05  Andy Wingo  <wingo@pobox.com>
8766
8767         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
8768         GObject.
8769         * configure.ac: Return audiorate and subparse from the ghetto.
8770         Re-enable -Wall -Werror.
8771         * gst/subparse/gstsubparse.c:
8772         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
8773         or chain-based. Cleaned up a bit. Not tested.
8774         
8775 2005-05-05  Christian Schaller <christian@fluendo.com> 
8776
8777         * Makefile.am: remove stuff that is not building
8778         * configure.ac: remove stuff that is not building
8779         * examples/Makefile.am: remove stuff that is not building
8780         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
8781         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
8782         * sys/Makefile.am: remove stuff that is not building
8783         * testsuite/Makefile.am: remove stuff that is not building
8784
8785 2005-05-05  Andy Wingo  <wingo@pobox.com>
8786
8787         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
8788         * gst-libs/gst/tag/gstvorbistag.c:
8789         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
8790         * gst/adder/gstadder.h:
8791         * gst/audioconvert/gstchannelmix.c:
8792         (gst_audio_convert_fill_one_other):
8793         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
8794         (gst_audiorate_init), (gst_audiorate_chain):
8795         * gst/playback/gstplaybasebin.c: (setup_source):
8796         * gst/playback/test3.c: (update_scale):
8797         Some GCC4 fixes
8798         
8799         * po/af.po:
8800         * po/az.po:
8801         * po/cs.po:
8802         * po/en_GB.po:
8803         * po/hu.po:
8804         * po/it.po:
8805         * po/nb.po:
8806         * po/nl.po:
8807         * po/or.po:
8808         * po/sq.po:
8809         * po/sr.po:
8810         * po/sv.po:
8811         * po/uk.po:
8812         * po/vi.po: Foo
8813
8814 2005-05-05  Wim Taymans  <wim@fluendo.com>
8815
8816         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8817         (gst_audio_convert_caps_remove_format_info),
8818         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
8819         (gst_audio_convert_change_state), (gst_audio_convert_channels):
8820         * gst/videotestsrc/gstvideotestsrc.c:
8821         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
8822         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
8823         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
8824         (gst_videotestsrc_init), (gst_videotestsrc_loop):
8825         Don't ignore _push() return values.
8826         Make sure no processing is done when shutting down.
8827         Videotestsrc pad activation fix.
8828
8829 2005-05-05  Wim Taymans  <wim@fluendo.com>
8830
8831         * gst/adder/Makefile.am:
8832         * gst/adder/gstadder.c: (gst_adder_setcaps),
8833         (gst_adder_class_init), (gst_adder_init),
8834         (gst_adder_request_new_pad), (gst_adder_collected),
8835         (gst_adder_change_state):
8836         * gst/adder/gstadder.h:
8837         Ported adder as an example of a mixer element using
8838         collect pads. Needs more negotiation work.
8839
8840 2005-05-05  Wim Taymans  <wim@fluendo.com>
8841
8842         * ext/theora/theoradec.c: (_inc_granulepos),
8843         (theora_dec_src_event), (theora_dec_sink_event),
8844         (theora_handle_comment_packet), (theora_handle_type_packet),
8845         (theora_handle_header_packet), (theora_handle_data_packet),
8846         (theora_dec_chain):
8847         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8848         (gst_theora_enc_init), (theora_enc_sink_setcaps),
8849         (theora_push_buffer), (theora_push_packet),
8850         (theora_enc_sink_event), (theora_enc_chain),
8851         (theora_enc_change_state), (theora_enc_set_property),
8852         (theora_enc_get_property):
8853         Added stream lock to decoder so that we can serialize
8854         the discont event.
8855         More theoraenc porting, recover from errors, do clean
8856         shutdown.
8857
8858 2005-05-05  Wim Taymans  <wim@fluendo.com>
8859
8860         * ext/ogg/Makefile.am:
8861         * ext/ogg/README:
8862         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8863         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
8864         (gst_ogg_print):
8865         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
8866         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
8867         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
8868         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
8869         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
8870         (gst_ogg_mux_change_state):
8871         Ported ogg muxer.
8872
8873 2005-05-05  Wim Taymans  <wim@fluendo.com>
8874
8875         * docs/design-audiosinks.txt:
8876         * gst-libs/gst/audio/TODO:
8877         * gst-libs/gst/audio/gstaudiosink.c:
8878         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8879         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8880         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8881         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8882         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8883         (gst_audiosink_create_ringbuffer):
8884         * gst-libs/gst/audio/gstbaseaudiosink.c:
8885         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8886         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8887         (gst_baseaudiosink_set_property), (build_linear_format),
8888         (debug_spec_caps), (debug_spec_buffer),
8889         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8890         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8891         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8892         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8893         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8894         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8895         (gst_ringbuffer_release), (gst_ringbuffer_play),
8896         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8897         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8898         (gst_ringbuffer_set_sample), (wait_segment),
8899         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8900         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8901         More work on the audiosink, mostly debugging and a race in
8902         shutdown.
8903
8904 2005-04-28  Wim Taymans  <wim@fluendo.com>
8905
8906         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8907         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
8908         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8909         (vorbis_dec_src_query), (vorbis_dec_src_event),
8910         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8911         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8912         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
8913         Don't crap out when seeking back to position 0.
8914
8915 2005-04-28  Wim Taymans  <wim@fluendo.com>
8916
8917         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
8918         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
8919         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
8920         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
8921         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
8922         Make audio sink configurable, use alsasink as default.
8923
8924 2005-04-28  Wim Taymans  <wim@fluendo.com>
8925
8926         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8927         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8928         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8929         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
8930         (vorbis_dec_change_state):
8931         * ext/vorbis/vorbisdec.h:
8932         Refactor, use STREAM_LOCK.
8933
8934 2005-04-28  Wim Taymans  <wim@fluendo.com>
8935
8936         * ext/theora/theoradec.c: (_inc_granulepos),
8937         (theora_dec_sink_event), (theora_handle_comment_packet),
8938         (theora_handle_type_packet), (theora_handle_header_packet),
8939         (theora_handle_data_packet), (theora_dec_chain),
8940         (theora_dec_change_state):
8941         Refactor a bit, use STREAM_LOCK.
8942
8943 2005-04-28  Wim Taymans  <wim@fluendo.com>
8944
8945         * ext/alsa/Makefile.am:
8946         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
8947         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
8948         (gst_alsa_link), (gst_alsa_close_audio):
8949         * ext/alsa/gstalsaplugin.c: (plugin_init):
8950         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
8951         (gst_alsasink_dispose), (gst_alsasink_base_init),
8952         (gst_alsasink_class_init), (gst_alsasink_init),
8953         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
8954         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
8955         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
8956         (gst_alsasink_reset):
8957         * ext/alsa/gstalsasink.h:
8958         Implement alsasink with simple open/write/close API. 
8959         Make alsa dir build by disabling compilation of code.
8960
8961 2005-04-28  Wim Taymans  <wim@fluendo.com>
8962
8963         * gst-libs/gst/audio/Makefile.am:
8964         * gst-libs/gst/audio/audio.h:
8965         * gst-libs/gst/audio/audioclock.c:
8966         * gst-libs/gst/audio/audioclock.h:
8967         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
8968         (gst_audio_clock_class_init), (gst_audio_clock_init),
8969         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
8970         * gst-libs/gst/audio/gstaudioclock.h:
8971         * gst-libs/gst/audio/gstaudiosink.c:
8972         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8973         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8974         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8975         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8976         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8977         (gst_audiosink_create_ringbuffer):
8978         * gst-libs/gst/audio/gstbaseaudiosink.c:
8979         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8980         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8981         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
8982         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
8983         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8984         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8985         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8986         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8987         * gst-libs/gst/audio/gstbaseaudiosink.h:
8988         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8989         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
8990         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8991         (gst_ringbuffer_release), (gst_ringbuffer_play),
8992         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8993         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8994         (gst_ringbuffer_set_sample), (wait_segment),
8995         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8996         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8997         * gst-libs/gst/audio/gstringbuffer.h:
8998         Make ringbuffer faster and more simple by removing the locks
8999         in the playback thread.
9000         Add sample accurate playback based on buffer sample offsets.
9001         Make the baseaudiosink provide a clock.
9002         Parse caps in the base class.
9003         Correctly handle seeking, flushing and state changes.
9004
9005 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
9006
9007         * configure.ac:
9008         * gst/audioconvert/Makefile.am:
9009         * gst/audioscale/Makefile.am:
9010           Fix part of the build.  Come on guys, autogen didn't even work :)
9011
9012 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9013
9014         * configure.ac:
9015         * gst-libs/gst/Makefile.am:
9016         * gst-libs/gst/media-info/.cvsignore:
9017         * gst-libs/gst/media-info/Makefile.am:
9018         * gst-libs/gst/media-info/README:
9019         * gst-libs/gst/media-info/media-info-priv.c:
9020         * gst-libs/gst/media-info/media-info-priv.h:
9021         * gst-libs/gst/media-info/media-info-test.c:
9022         * gst-libs/gst/media-info/media-info.c:
9023         * gst-libs/gst/media-info/media-info.h:
9024         * gst-libs/gst/media-info/media-info.vcproj:
9025         * pkgconfig/Makefile.am:
9026         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
9027         * pkgconfig/gstreamer-media-info.pc.in:
9028           Remove media-info, which is also successed by playbin (see Totem
9029           implementation).
9030
9031 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9032
9033         * configure.ac:
9034         * examples/Makefile.am:
9035         * examples/gstplay/.cvsignore:
9036         * examples/gstplay/Makefile.am:
9037         * examples/gstplay/player.c:
9038         * gst-libs/gst/Makefile.am:
9039         * gst-libs/gst/play/.cvsignore:
9040         * gst-libs/gst/play/Makefile.am:
9041         * gst-libs/gst/play/play.c:
9042         * gst-libs/gst/play/play.h:
9043         * gst-libs/gst/play/play.vcproj:
9044         * pkgconfig/Makefile.am:
9045         * pkgconfig/gstreamer-play-uninstalled.pc.in:
9046         * pkgconfig/gstreamer-play.pc.in:
9047           Remove libgstplay, playbin is now the official successor.
9048
9049 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9050
9051         * configure.ac:
9052         * gst-libs/gst/Makefile.am:
9053         * gst-libs/gst/xwindowlistener/Makefile.am:
9054         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
9055         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
9056           Remove deprecated xwindowlistener (I've moved xwindowlistening
9057           in the v4l/v4l2 plugins over to serverside).
9058
9059 2005-04-25  David Schleef  <ds@schleef.org>
9060
9061         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
9062         to examples/dynparams.  Examples do not belong interspersed with
9063         source code.
9064         * examples/dynparams/demo-dparams.c:
9065         * gst/sine/Makefile.am:
9066         * gst/sine/demo-dparams.c:
9067
9068 2005-04-25  David Schleef  <ds@schleef.org>
9069
9070         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
9071         * gst-libs/gst/audio/Makefile.am:
9072         * gst-libs/gst/riff/Makefile.am:
9073         * gst-libs/gst/tag/Makefile.am:
9074         * gst-libs/gst/video/Makefile.am:
9075         * gst-libs/gst/xwindowlistener/Makefile.am:
9076
9077         Convert to 0.9 API, seems to work:
9078         * sys/ximage/Makefile.am:
9079         * sys/ximage/ximagesink.c:
9080
9081 2005-04-24  David Schleef  <ds@schleef.org>
9082
9083         Link plugins against libraries:
9084         * ext/alsa/Makefile.am:
9085         * gst/tcp/Makefile.am:
9086
9087         Remove asm code that should be in liboil
9088         * gst/videoscale/Makefile.am:
9089         * gst/videoscale/videoscale_x86_asm.s:
9090
9091         gettext wants these checked in:
9092         * po/af.po:
9093         * po/az.po:
9094         * po/cs.po:
9095         * po/en_GB.po:
9096         * po/hu.po:
9097         * po/it.po:
9098         * po/nb.po:
9099         * po/nl.po:
9100         * po/or.po:
9101         * po/sq.po:
9102         * po/sr.po:
9103         * po/sv.po:
9104         * po/uk.po:
9105         * po/vi.po:
9106
9107 2005-04-24  David Schleef  <ds@schleef.org>
9108
9109         Convert gst_main() to g_main_loop_run()
9110         * gst/playback/decodetest.c: (main):
9111         * gst/playback/test2.c: (main):
9112         * gst/playback/test3.c: (main):
9113         * gst/playback/test4.c: (main):
9114
9115         Link plugins against libraries:
9116         * ext/libvisual/Makefile.am:
9117         * sys/xvimage/Makefile.am:
9118
9119 2005-04-24  David Schleef  <ds@schleef.org>
9120
9121         * configure.ac: Remove idct and resample libs
9122         * gst-libs/gst/Makefile.am: same
9123
9124         Remove usage of gst_library_load():
9125         * ext/alsa/gstalsaplugin.c: (plugin_init):
9126         * ext/libvisual/visual.c: (plugin_init):
9127         * ext/ogg/gstogg.c: (plugin_init):
9128         * ext/theora/theora.c: (plugin_init):
9129         * ext/vorbis/vorbis.c: (plugin_init):
9130         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
9131         * gst/audioscale/gstaudioscale.c:
9132         * gst/adder/gstadder.c: (plugin_init):
9133         * gst/audioconvert/plugin.c: (plugin_init):
9134         * sys/ximage/ximagesink.c: (plugin_init):
9135         * sys/xvimage/xvimagesink.c: (plugin_init):
9136         * gst/tcp/gsttcpplugin.c: (plugin_init):
9137
9138         Link plugins against libraries:
9139         * ext/ogg/Makefile.am:
9140         * ext/theora/Makefile.am:
9141         * ext/vorbis/Makefile.am:
9142         * gst/audioconvert/Makefile.am:
9143
9144         Create proper libraries:
9145         * gst-libs/gst/riff/Makefile.am:
9146         * gst-libs/gst/audio/Makefile.am:
9147         * gst-libs/gst/video/Makefile.am:
9148
9149         Move resample library to audioscale plugin directory:
9150         * gst-libs/gst/resample/Makefile.am:
9151         * gst-libs/gst/resample/README:
9152         * gst-libs/gst/resample/dtof.c:
9153         * gst-libs/gst/resample/dtos.c:
9154         * gst-libs/gst/resample/functable.c:
9155         * gst-libs/gst/resample/private.h:
9156         * gst-libs/gst/resample/resample.c:
9157         * gst-libs/gst/resample/resample.h:
9158         * gst-libs/gst/resample/resample.vcproj:
9159         * gst-libs/gst/resample/test.c:
9160         * gst/audioscale/Makefile.am:
9161         * gst/audioscale/README:
9162         * gst/audioscale/dtof.c:
9163         * gst/audioscale/dtos.c:
9164         * gst/audioscale/functable.c:
9165         * gst/audioscale/private.h:
9166         * gst/audioscale/resample.c:
9167         * gst/audioscale/resample.h:
9168         * gst/audioscale/test.c:
9169
9170         Move tagedit library to gst-libs:
9171         * gst-libs/gst/tag/Makefile.am:
9172         * gst-libs/gst/tag/gstid3tag.c:
9173         * gst-libs/gst/tag/gsttagediting.c:
9174         * gst-libs/gst/tag/gsttageditingprivate.h:
9175         * gst-libs/gst/tag/gstvorbistag.c:
9176         * gst/tags/Makefile.am:
9177         * gst/tags/gstid3tag.c:
9178         * gst/tags/gstvorbistag.c:
9179
9180         Fix for core changes:
9181         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
9182         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
9183         (gst_sinesrc_getrange):
9184
9185 2005-04-23  David Schleef  <ds@schleef.org>
9186
9187         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
9188         in gst-plugins in a long time, and properly belongs in liboil.
9189         * gst-libs/gst/idct/Makefile.am:
9190         * gst-libs/gst/idct/README:
9191         * gst-libs/gst/idct/dct.h:
9192         * gst-libs/gst/idct/doieee:
9193         * gst-libs/gst/idct/fastintidct.c:
9194         * gst-libs/gst/idct/floatidct.c:
9195         * gst-libs/gst/idct/idct.c:
9196         * gst-libs/gst/idct/idct.h:
9197         * gst-libs/gst/idct/idtc.vcproj:
9198         * gst-libs/gst/idct/ieeetest.c:
9199         * gst-libs/gst/idct/intidct.c:
9200
9201 2005-04-20  Wim Taymans  <wim@fluendo.com>
9202
9203         * docs/design-audiosinks.txt:
9204         * gst-libs/gst/audio/Makefile.am:
9205         * gst-libs/gst/audio/TODO:
9206         * gst-libs/gst/audio/gstaudiosink.c:
9207         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9208         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9209         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
9210         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9211         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9212         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
9213         (gst_audiosink_class_init), (gst_audiosink_init),
9214         (gst_audiosink_create_ringbuffer):
9215         * gst-libs/gst/audio/gstaudiosink.h:
9216         * gst-libs/gst/audio/gstbaseaudiosink.c:
9217         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
9218         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
9219         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
9220         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
9221         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
9222         (gst_baseaudiosink_create_ringbuffer),
9223         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
9224         * gst-libs/gst/audio/gstbaseaudiosink.h:
9225         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
9226         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
9227         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
9228         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
9229         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
9230         (gst_ringbuffer_play), (gst_ringbuffer_pause),
9231         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
9232         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
9233         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
9234         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
9235         * gst-libs/gst/audio/gstringbuffer.h:
9236         An attempt at a set of audio base classes together with some
9237         design docs.
9238
9239 2005-04-20  Wim Taymans  <wim@fluendo.com>
9240
9241         * gst/audioconvert/Makefile.am:
9242         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9243         (gst_audio_convert_caps_remove_format_info),
9244         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
9245         (gst_audio_convert_channels):
9246         Link against audio libs.
9247         Fix audio convert plugin.
9248
9249 2005-04-20  Wim Taymans  <wim@fluendo.com>
9250
9251         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
9252         (gst_ogg_demux_sink_activate):
9253         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
9254         (theora_set_header_on_caps), (theora_enc_sink_event),
9255         (theora_enc_chain):
9256         Fix theora encoder.
9257
9258 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9259
9260         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
9261         * gst/playback/gstdecodebin.c: (find_compatibles):
9262           Work with staticpadtemplates in elementfactories.
9263
9264 2005-04-12  Wim Taymans  <wim@fluendo.com>
9265
9266         * gst/playback/README:
9267         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
9268         (compare_ranks), (print_feature), (gst_decode_bin_init),
9269         (dynamic_create), (dynamic_free), (find_compatibles),
9270         (mimetype_is_raw), (close_pad_link), (got_redirect),
9271         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
9272         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
9273         (gst_decode_bin_change_state):
9274         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
9275         (gst_play_base_bin_init), (group_destroy), (group_commit),
9276         (check_queue), (queue_overrun), (queue_threshold_reached),
9277         (queue_out_of_data), (gen_preroll_element), (unknown_type),
9278         (new_decoded_pad), (setup_subtitle), (gen_source_element),
9279         (got_redirect), (setup_source), (play_base_eos),
9280         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
9281         (gst_play_base_bin_remove_element):
9282         * gst/playback/gstplaybasebin.h:
9283         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
9284         (gst_play_bin_init), (gst_play_bin_dispose),
9285         (gst_play_bin_set_property), (gen_video_element),
9286         (gen_text_element), (gen_audio_element), (remove_sinks),
9287         (gst_play_bin_send_event):
9288         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
9289         (stream_info_change_state), (gst_stream_info_set_mute):
9290         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
9291         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
9292         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
9293         (gst_stream_selector_chain):
9294         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
9295         (main):
9296         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
9297         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
9298         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
9299         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
9300         Raw and crude port of decodebin. 
9301         Make playbin compile.
9302
9303 2005-04-06  Wim Taymans  <wim@fluendo.com>
9304
9305         * ext/gnomevfs/Makefile.am:
9306         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
9307         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
9308         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
9309         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
9310         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
9311         (gst_gnomevfssrc_stop):
9312         * ext/ogg/Makefile.am:
9313         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
9314         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
9315         * ext/theora/Makefile.am:
9316         * ext/theora/theoradec.c: (_inc_granulepos),
9317         (theora_dec_sink_event), (theora_dec_chain):
9318         * ext/vorbis/Makefile.am:
9319         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
9320         (vorbis_dec_sink_event), (vorbis_dec_chain):
9321         * gst-libs/gst/audio/Makefile.am:
9322         * sys/xvimage/Makefile.am:
9323         Make gnomevfssrc extend the source base class.
9324         Fix linking against libs in various plugins.
9325
9326 2005-04-06  Andy Wingo  <wingo@pobox.com>
9327
9328         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
9329         GST_BASE_LIBS.
9330
9331         * configure.ac: Add check and AC_SUBST for libgstbase.
9332
9333 2005-03-31  Wim Taymans  <wim@fluendo.com>
9334
9335         * examples/seeking/Makefile.am:
9336         * examples/seeking/cdparanoia.c: (main):
9337         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
9338         (play_cb), (pause_cb), (stop_cb), (main):
9339         * examples/seeking/playbin.c:
9340         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
9341         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
9342         (make_sid_pipeline), (make_vorbis_pipeline),
9343         (make_theora_pipeline), (make_vorbis_theora_pipeline),
9344         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
9345         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
9346         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
9347         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
9348         (stop_cb), (main):
9349         * examples/seeking/spider_seek.c:
9350         * examples/seeking/vorbisfile.c:
9351         * ext/gnomevfs/Makefile.am:
9352         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
9353         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
9354         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
9355         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
9356         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
9357         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
9358         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
9359         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
9360         * ext/ogg/README:
9361         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
9362         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
9363         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
9364         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
9365         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
9366         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
9367         (gst_ogg_pad_event), (gst_ogg_pad_reset),
9368         (gst_ogg_demux_factory_filter), (compare_ranks),
9369         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
9370         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
9371         (gst_ogg_chain_new), (gst_ogg_chain_free),
9372         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
9373         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
9374         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
9375         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
9376         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
9377         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
9378         (gst_ogg_demux_get_prev_page),
9379         (gst_ogg_demux_deactivate_current_chain),
9380         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
9381         (gst_ogg_demux_bisect_forward_serialno),
9382         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
9383         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
9384         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
9385         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
9386         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
9387         (gst_ogg_demux_change_state), (gst_ogg_print):
9388         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
9389         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
9390         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
9391         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
9392         (gst_ogg_mux_loop):
9393         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9394         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
9395         (theora_dec_src_convert), (theora_dec_sink_convert),
9396         (theora_dec_src_query), (theora_dec_src_event),
9397         (theora_dec_sink_event), (theora_dec_chain),
9398         (theora_dec_change_state):
9399         * ext/theora/theoraenc.c: (gst_theora_enc_init),
9400         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
9401         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
9402         (theora_enc_change_state):
9403         * ext/vorbis/Makefile.am:
9404         * ext/vorbis/oggvorbisenc.c:
9405         * ext/vorbis/oggvorbisenc.h:
9406         * ext/vorbis/vorbis.c: (plugin_init):
9407         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
9408         (vorbis_dec_src_query), (vorbis_dec_src_event),
9409         (vorbis_dec_sink_event), (vorbis_dec_chain),
9410         (vorbis_dec_change_state):
9411         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
9412         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
9413         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
9414         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
9415         (gst_vorbisenc_change_state):
9416         * ext/vorbis/vorbisenc.h:
9417         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
9418         * gst-libs/gst/audio/audioclock.c:
9419         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
9420         (gst_audiofilter_init), (gst_audiofilter_chain):
9421         * gst-libs/gst/audio/testchannels.c: (main):
9422         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
9423         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
9424         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
9425         (gmip_find_track_streaminfo), (gmip_find_track_format):
9426         * gst-libs/gst/media-info/media-info.c:
9427         (gst_media_info_read_idler):
9428         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
9429         (gst_play_get_all_by_interface):
9430         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
9431         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
9432         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
9433         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
9434         (gst_riff_parse_info):
9435         * gst-libs/gst/riff/riff-read.h:
9436         * gst-libs/gst/riff/riff.c: (plugin_init):
9437         * gst-libs/gst/video/Makefile.am:
9438         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
9439         (gst_videosink_class_init), (gst_videosink_get_type):
9440         * gst-libs/gst/video/videosink.h:
9441         * gst/audioconvert/bufferframesconvert.c:
9442         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
9443         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
9444         * gst/audioconvert/channelmixtest.c: (main):
9445         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
9446         (gst_audio_convert_chain),
9447         (gst_audio_convert_caps_remove_format_info),
9448         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
9449         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
9450         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
9451         (gst_audio_convert_buffer_to_default_format),
9452         (gst_audio_convert_buffer_from_default_format),
9453         (gst_audio_convert_channels):
9454         * gst/audioconvert/gstchannelmix.h:
9455         * gst/ffmpegcolorspace/avcodec.h:
9456         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9457         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
9458         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
9459         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
9460         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
9461         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
9462         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
9463         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
9464         (mpeg_video_type_find), (mpeg_video_stream_type_find),
9465         (dv_type_find):
9466         * gst/videotestsrc/gstvideotestsrc.c:
9467         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
9468         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
9469         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
9470         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
9471         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
9472         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
9473         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
9474         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
9475         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
9476         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
9477         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
9478         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
9479         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
9480         (gst_xvimagesink_navigation_send_event),
9481         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
9482         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
9483         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
9484         * sys/xvimage/xvimagesink.h:
9485         Plugin port to 0.9, ogg/theora playback should work in the seek
9486         example now.
9487         Removed old examples.
9488         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
9489         explained in 0.9 TODO doc.
9490
9491
9492 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9493
9494         * autogen.sh:
9495         * configure.ac:
9496         * ext/Makefile.am:
9497         * gst/Makefile.am:
9498         * po/POTFILES.in:
9499         * po/af.po:
9500         * po/az.po:
9501         * po/cs.po:
9502         * po/en_GB.po:
9503         * po/hu.po:
9504         * po/it.po:
9505         * po/nb.po:
9506         * po/nl.po:
9507         * po/or.po:
9508         * po/sq.po:
9509         * po/sr.po:
9510         * po/sv.po:
9511         * po/uk.po:
9512         * po/vi.po:
9513         * sys/Makefile.am:
9514         * testsuite/Makefile.am:
9515           remove a whole bunch of plugins.  This module now contains a set
9516           of free reference plugins/elements as agreed.
9517
9518 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9519
9520         * configure.ac:
9521           hunting season on 0.9 is now OPEN
9522
9523 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9524
9525         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
9526           Kick the hell out of gcc for not warning me about a symbol conflict.
9527
9528 2005-02-22  Luca Ognibene  <luogni@tin.it>
9529
9530         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
9531
9532         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
9533           Don't leak caps string (fixes #168134)
9534
9535         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
9536         (gst_jpegenc_init), (gst_jpegenc_finalize),
9537         (gst_jpegenc_change_state):
9538           Don't leak line buffers and context struct (fixes #168133).
9539
9540 2005-02-21  Tim-Philipp M??ller  <tim at centricular dot net>
9541
9542         * configure.ac:
9543         * ext/dirac/gstdiracdec.cc:
9544         (gst_diracdec_chain):
9545           Since dirac 0.5.0 the framerate in dirac is expressed as a
9546           rational number. Fix build and up requirement to 0.5.0, and
9547           also pass parameters to gst_diracdec_link in the right order
9548           (fixes #167959).
9549
9550 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
9551
9552         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
9553         * ext/faad/gstfaad.h:
9554         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
9555         certain invalid muxed streams, where some packets will contain 
9556         junk after decoder data. Partially fixes #149158.
9557
9558 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
9559         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
9560           Make sure we only write to writable buffers
9561
9562 2005-02-20  Tim-Philipp M??ller  <tim at centricular dot net>
9563
9564         * gst-libs/gst/riff/riff-media.c:
9565         (gst_riff_create_audio_caps_with_data):
9566           Do actually fix invalid RIFF fmt header values for alaw
9567           and mulaw audio instead of just saying so.
9568
9569         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
9570           Give gst_riff_create_audio_caps_with_data() a chance to
9571           fix up broken format header fields before extracting any
9572           parameters from the header. (fixes #167633)
9573
9574 2005-02-19  Martin Holters  <martin.holters@gmx.de>
9575
9576         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
9577
9578         * gst/audioconvert/bufferframesconvert.c:
9579         (buffer_frames_convert_link):
9580           Don't leak othercaps. (fixes #167878)
9581
9582 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
9583
9584         * configure.ac:
9585         * ext/libvisual/visual.c: (gst_visual_srclink),
9586         (gst_visual_change_state):
9587           Support libvisual 0.2.0.
9588
9589 2005-02-18  Tim-Philipp M??ller  <tim at centricular dot net>
9590
9591         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
9592         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
9593           Use same rowstrides for I420 as used everywhere else.
9594
9595 2005-02-17  Tim-Philipp M??ller  <tim at centricular dot net>
9596
9597         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
9598           Declare variables at beginning of block and make gcc-2.95 happy
9599           (fixes # 167482, patch by Gergely Nagy).
9600           
9601         * gst/tcp/gsttcpclientsrc.c:
9602         * gst/tcp/gsttcpclientsrc.h:
9603           Move some includes into the header, so that struct sockaddr_in is
9604           defined when it should be defined on FreeBSD as well (fixes
9605           #167483).
9606           
9607         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
9608           Don't pass uninitialised values to setsockopt() here either.
9609
9610 2005-02-17  Luca Ognibene  <luogni at tin dot it>
9611
9612         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
9613
9614         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
9615           Don't pass uninitialised values to setsockopt(). (fixes #167704)
9616
9617 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9618
9619         * gst/playback/gstplaybin.c: (add_sink):
9620           Invert bin_add/link order to workaround deadlock in opt.
9621
9622 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9623
9624         * gst/modplug/gstmodplug.cc:
9625           Add missing break causing position queries to fail.
9626
9627 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9628
9629         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
9630           Granpos can apparently be -1, which screws up calculations...
9631
9632 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
9633
9634         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
9635         (gst_ximagesink_send_pending_navigation),
9636         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
9637         (gst_ximagesink_init):
9638         * sys/ximage/ximagesink.h:
9639         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
9640         (gst_xvimagesink_send_pending_navigation),
9641         (gst_xvimagesink_navigation_send_event),
9642         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
9643         * sys/xvimage/xvimagesink.h:
9644           Use a mutex protected list to marshal navigation
9645           events into the stream thread from whichever thread
9646           sends them.
9647
9648 2005-02-15  Tim-Philipp M??ller  <tim at centricular dot net>
9649
9650         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
9651           Display current position and track length; misc. clean-ups.
9652           
9653         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
9654         (speed_init), (speed_chain):
9655           Add query function, so that the stream length and current position
9656           get adjusted when queried (note that current position queries may
9657           still be wrong if the audio sink returns values based on buffer
9658           timestamps instead of passing on the query).
9659
9660 2005-02-13  Benjamin Otte  <otte@gnome.org>
9661
9662         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
9663         (gst_audio_convert_channels):
9664           create channel conversion matrix when linking
9665         * gst/audioconvert/.cvsignore:
9666         * gst/audioconvert/Makefile.am:
9667         * gst/audioconvert/channelmixtest.c: (main):
9668           add (ugly) test that ensures stereo <=> mono conversion works
9669           correctly
9670
9671 2005-02-13  Benjamin Otte  <otte@gnome.org>
9672
9673         * gst/audioconvert/gstchannelmix.h:
9674           include missing header file
9675         * gst/audioconvert/gstchannelmix.c:
9676         (gst_audio_convert_fill_compatible):
9677           use same sign for both channels when converting to/from compatible
9678           channel. Previously used different signs made the signals cancel
9679           each other out and appear like silence. (fixes #167269)
9680
9681 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
9682
9683         * gst/ffmpegcolorspace/avcodec.h:
9684         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9685         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
9686         (gst_ffmpegcsp_avpicture_fill):
9687         * gst/ffmpegcolorspace/imgconvert.c:
9688           Convert to and from YV12 (fixes #156379).
9689
9690 2005-02-12  Julien MOUTTE  <julien@moutte.net>
9691
9692         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
9693         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
9694         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
9695         (gst_ximagesink_expose), (gst_ximagesink_set_property),
9696         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
9697         methods from chain and negotiation and vice versa (Fixes #166142).
9698         * sys/ximage/ximagesink.h: Add stream_lock.
9699         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
9700         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9701         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9702         (gst_xvimagesink_expose): Check for xcontext before trying to link.
9703
9704 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
9705
9706         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
9707           Don't send "Hey! You gave me a NULL pointer you naughty person" as
9708           error message when we can't open the DVD device (when dvdnav_open()
9709           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
9710           the above). Send something more useful instead (fixes #167117).
9711
9712 2005-02-11  Julien MOUTTE  <julien@moutte.net>
9713
9714         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9715         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
9716         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9717         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9718         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
9719         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
9720         methods from chain and negotiation and vice versa (Fixes #166142).
9721         Fix a possible bug of images in the buffer pool being discarded because
9722         we are looking at the wrong geometry.
9723         * sys/xvimage/xvimagesink.h: Add stream_lock.
9724
9725 2005-02-11  David Schleef  <ds@schleef.org>
9726
9727         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
9728         unsigned int. (fixes #167128)
9729
9730 2005-02-11  David Schleef  <ds@schleef.org>
9731
9732         * gst/librfb/Makefile.am: Testing stuff before committing is
9733           for wimps... and people with fast machines.  Fix stupid
9734           mistake.
9735
9736 2005-02-11  David Schleef  <ds@schleef.org>
9737
9738         * configure.ac: Pull in librfb from my CVS tree, because it is
9739           too small and annoying to be separate.  Move rfbsrc plugin
9740           to gst/.
9741         * ext/Makefile.am:
9742         * ext/librfb/Makefile.am:
9743         * ext/librfb/gstrfbsrc.c:
9744         * gst/librfb/Makefile.am:
9745         * gst/librfb/gstrfbsrc.c:
9746         * gst/librfb/rfb.c:
9747         * gst/librfb/rfb.h:
9748         * gst/librfb/rfbbuffer.c:
9749         * gst/librfb/rfbbuffer.h:
9750         * gst/librfb/rfbbytestream.c:
9751         * gst/librfb/rfbbytestream.h:
9752         * gst/librfb/rfbcontext.h:
9753         * gst/librfb/rfbdecoder.c:
9754         * gst/librfb/rfbdecoder.h:
9755         * gst/librfb/rfbutil.h:
9756
9757 2005-02-10  Tim-Philipp M??ller  <tim at centricular dot net>
9758
9759         * gst/speed/Makefile.am:
9760         * gst/speed/demo-mp3.c: (main):
9761         * gst/speed/filter.func:
9762         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
9763         (speed_class_init), (speed_init), (speed_chain_int16),
9764         (speed_chain_float32), (speed_chain), (speed_set_property),
9765         (speed_get_property), (speed_change_state):
9766         * gst/speed/gstspeed.h:
9767           Fix speed element and make it chain-based (fixes #156467),
9768           and make it handle more than one channel.
9769
9770 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
9771
9772         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
9773         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
9774         (gst_dtsdec_chain), (gst_dtsdec_change_state):
9775         * ext/dts/gstdtsdec.h:
9776           Don't clobber the stack constructing the channels array.
9777           Make the element chain-based. DTS tracks can now be played.
9778           
9779 2005-02-09  Tim-Philipp M??ller  <tim at centricular dot net>
9780
9781         * gst-libs/gst/audio/multichannel.h:
9782         * gst-libs/gst/gconf/gconf.h:
9783         * gst-libs/gst/idct/idct.h:
9784         * gst-libs/gst/media-info/media-info-priv.h:
9785         * gst-libs/gst/play/play.h:
9786         * gst-libs/gst/resample/private.h:
9787         * gst-libs/gst/resample/resample.h:
9788         * gst-libs/gst/riff/riff-ids.h:
9789         * gst-libs/gst/video/video.h:
9790         * gst-libs/gst/video/videosink.h:
9791           Add G_BEGIN_DECLS and G_END_DECLS around headers where
9792           missing, so that they work when included from C++ code.
9793
9794 2005-02-09  David Schleef  <ds@schleef.org>
9795
9796         * testsuite/gst-lint: Check for non-statically scoped
9797           parent_class variables.  This won't be a problem once
9798           plugins are loaded with RTLD_LOCAL.
9799
9800 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9801
9802         * ext/mplex/gstmplexibitstream.cc:
9803           gcc madness.
9804
9805 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9806
9807         * ext/ogg/gstogmparse.c:
9808         * gst/debug/gstnavigationtest.c:
9809           Die, thou faulty symbol pollutors (non-static parent_class).
9810
9811 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9812
9813         * ext/mplex/gstmplexibitstream.cc:
9814           Fix event handling (#165525).
9815
9816 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9817
9818         * ext/mikmod/gstmikmod.c:
9819         * gst/modplug/gstmodplug.cc:
9820           Add missing endianness to template (fixes #165509).
9821
9822 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9823
9824         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
9825           Fix wrong order of reading of optional bytes (#165290).
9826
9827 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9828
9829         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
9830           Implement FILLER event awareness.
9831
9832 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9833
9834         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
9835           Fix track calculations (#166208).
9836
9837 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
9838
9839         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9840
9841         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
9842         * ext/libpng/gstpngenc.c:
9843           Fix byte-order, use proper fixed caps. Fixes #164197.
9844
9845 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
9846
9847         * configure.ac:
9848           Add dvdlpcmdec 
9849
9850         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
9851         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
9852           Don't push buffers if the src pad isn't negotiated yet.
9853           
9854         * gst/audioconvert/gstaudioconvert.c:
9855         (gst_audio_convert_buffer_to_default_format),
9856         (gst_audio_convert_buffer_from_default_format):
9857           Add support for 24-bit width.
9858
9859         * gst/dvdlpcmdec/.cvsignore:
9860         * gst/dvdlpcmdec/Makefile.am:
9861         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
9862         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
9863         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
9864         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
9865         (plugin_init):
9866         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
9867           New decoder for rearranging DVD LPCM into our audio/x-raw-int
9868           format. Needs support for the channels maps if someone can find 
9869           a DVD LPCM track with > 2 channels.
9870
9871         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
9872         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
9873         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
9874         * gst/mpegstream/gstdvddemux.h:
9875         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
9876         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
9877         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
9878         * gst/mpegstream/gstmpegdemux.h:
9879         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
9880         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
9881         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
9882         (gst_mpeg_parse_handle_src_query),
9883         (gst_mpeg_parse_handle_src_event):
9884           Use audio/x-dvd-lpcm for LPCM output.
9885           Add DTS output.
9886
9887 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
9888
9889         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9890
9891         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
9892         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
9893           Add BGRA handling (#165736).
9894
9895 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
9896
9897         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9898
9899         * gst/law/alaw-decode.c: (alawdec_link):
9900         * gst/law/alaw-encode.c: (alawenc_link):
9901         * gst/law/mulaw-decode.c: (mulawdec_link):
9902         * gst/law/mulaw-encode.c: (mulawenc_link):
9903           Fix caps memleaks (#166600).
9904
9905 2005-02-08  Tim-Philipp M??ller  <tim at centricular dot net>
9906
9907         * ext/tarkin/mem.h:
9908         * ext/tarkin/wavelet.h:
9909         * ext/tarkin/yuv.h:
9910         * gst/ffmpegcolorspace/avcodec.h:
9911           Include "_stdint.h" instead of <stdint.h>. Fixes build on
9912           systems that don't have stdint.h, like Solaris9 (fixes #166631).
9913
9914 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9915
9916         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
9917         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
9918         (gst_xvimagesink_change_state):
9919           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
9920           Xv video (and thereby regenerate Xv colourkey) in clear() so
9921           that PLAY -> READY -> PLAY works (fixes #162504).
9922
9923 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9924
9925         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
9926           Switch to list instead of range, since MJPEG-devices really just
9927           support decimations, not any size.
9928
9929 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
9930         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
9931         (gst_mpeg2dec_reset), (free_all_buffers),
9932         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
9933         * ext/mpeg2dec/gstmpeg2dec.h:
9934           The libmpeg2 user-allocated buffer management is awkward, 
9935           to say the least. Hopefully this fixes things.
9936
9937 2005-02-04  Andy Wingo  <wingo@pobox.com>
9938
9939         * gst/audioconvert/bufferframesconvert.c
9940         (buffer_frames_convert_fixate): New function, fixates to 256
9941         frames per buffer by default. (Much better than 1.)
9942         (buffer_frames_convert_init): Set the fixate function for both src
9943         and sink pad.
9944         (buffer_frames_convert_link): After success setting nonfixed caps,
9945         get the negotiated caps so we can know how many buffer-frames it
9946         will be. No idea how this worked at all before.
9947
9948 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
9949
9950         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
9951         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
9952         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
9953         (handle_sequence), (handle_picture):
9954         * ext/mpeg2dec/gstmpeg2dec.h:
9955           Rearrange buffer tracking and refcounting and refactor
9956           a little for readability. 
9957
9958 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
9959         * sys/v4l/gstv4l.c: (plugin_init):
9960         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
9961         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
9962         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
9963         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
9964         * sys/v4l/gstv4ljpegsrc.h:
9965         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
9966         * sys/v4l/v4l_calls.h:
9967         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
9968         (gst_v4lsrc_get_fps):
9969         * sys/v4l/v4lsrc_calls.h:
9970           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
9971           you jpeg inside rgb frames" driver.
9972           Don't error in the v4lsrc link function, just return 
9973           REFUSED.
9974
9975 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9976
9977         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
9978         (gst_qcamsrc_open):
9979           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
9980
9981 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9982
9983         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
9984           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
9985
9986 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9987
9988         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
9989           Reset negotiated state on PAUSED->READY.
9990
9991 2005-02-02  David Schleef  <ds@schleef.org>
9992
9993         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
9994         whereever possible.  (Fixes #165997)
9995         * examples/capsfilter/capsfilter1.c: (main):
9996         * examples/dynparams/filter.c: (create_ui):
9997         * examples/seeking/cdparanoia.c: (get_track_info), (main):
9998         * examples/seeking/chained.c: (main):
9999         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
10000         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
10001         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
10002         (make_mpeg_pipeline), (make_mpegnt_pipeline):
10003         * examples/seeking/spider_seek.c: (make_spider_pipeline):
10004         * examples/switch/switcher.c: (main):
10005         * ext/dv/demo-play.c: (main):
10006         * ext/faad/gstfaad.c: (gst_faad_change_state):
10007         * ext/mad/gstmad.c: (gst_mad_chain):
10008         * ext/smoothwave/demo-osssrc.c: (main):
10009         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
10010         (gst_gconf_render_bin_from_description),
10011         (gst_gconf_get_default_audio_sink),
10012         (gst_gconf_get_default_video_sink),
10013         (gst_gconf_get_default_audio_src),
10014         (gst_gconf_get_default_video_src),
10015         (gst_gconf_get_default_visualization_element):
10016         * gst/level/demo.c: (main):
10017         * gst/level/plot.c: (main):
10018         * gst/playback/gstplaybin.c: (gen_video_element),
10019         (gen_audio_element):
10020         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
10021         * gst/playondemand/demo-mp3.c: (setup_pipeline):
10022         * gst/sine/demo-dparams.c: (main):
10023         * gst/spectrum/demo-osssrc.c: (main):
10024         * gst/speed/demo-mp3.c: (main):
10025         * gst/volume/demo.c: (main):
10026         * testsuite/embed/embed.c: (main):
10027
10028 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
10029
10030         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
10031         (gst_tcpclientsink_finalize):
10032         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
10033         (gst_tcpclientsrc_finalize):
10034         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
10035         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
10036         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
10037         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
10038           Don't leak the hostname when shutting down.
10039           In tcpserversrc, take a copy of the default hostname.
10040
10041 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10042
10043         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
10044           Set caps to systemstream=TRUE.
10045
10046 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10047
10048         * testsuite/Makefile.am:
10049           Fix more OSX buildbots.
10050
10051 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
10052
10053         * ext/mpeg2dec/gstmpeg2dec.c:
10054           Don't send things to NULL PAD_PEERs
10055
10056         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
10057           Copy-on-write the incoming buffer.
10058
10059         * gst/mpegstream/gstdvddemux.h:
10060         * gst/mpegstream/gstmpegclock.h:
10061         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
10062         (normal_seek), (gst_mpeg_demux_handle_src_event):
10063         * gst/mpegstream/gstmpegdemux.h:
10064         * gst/mpegstream/gstmpegpacketize.h:
10065         * gst/mpegstream/gstmpegparse.c:
10066         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
10067         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
10068         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
10069         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
10070         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
10071         * gst/mpegstream/gstmpegparse.h:
10072         * gst/mpegstream/gstrfc2250enc.h:
10073           Various changes to the way time is computed that make seeking and
10074           total time estimation much better here.
10075           Use G_BEGIN/END_DECLS instead of __cplusplus
10076
10077         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
10078           Use gst_buffer_stamp instead of only copying the TIMESTAMP
10079
10080 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10081
10082         * gst/subparse/gstsubparse.c:
10083           Fix OSX buildbot.
10084
10085 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
10086
10087         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
10088         (theora_enc_chain), (theora_enc_change_state):
10089         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
10090         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
10091         (gst_vorbisenc_change_state):
10092         * ext/vorbis/vorbisenc.h:
10093           Set granulepos and timestamp correctly for streams not
10094           starting at 0, taking into account the initial delay.
10095
10096 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
10097
10098         * gst/mpegstream/gstdvddemux.c:
10099           Add audio/x-dts to audio pad template caps
10100
10101 2005-01-30  David Schleef  <ds@schleef.org>
10102
10103         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
10104         (create_context), (gst_polypsink_link): Fix silly endianness
10105         bug.  Add some debugging.  Remove float from caps; it doesn't
10106         work.  Attempt to get remote audio working.
10107
10108 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10109
10110         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
10111           Add 3IV2 fourcc.
10112
10113 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10114
10115         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
10116         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
10117         (gst_avi_demux_stream_data):
10118         * gst/avi/gstavidemux.h:
10119           Invert DIB images. Fixes #132341.
10120
10121 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10122
10123         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10124         (gst_ffmpegcsp_chain):
10125           D'oh, reference the palette data, not the palette structure.
10126           Fixes color distortion in #132341.
10127
10128 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10129
10130         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
10131           PAR can be non-fixed when not provided as argument (#162626).
10132
10133 2005-01-29  David Moore  <dcm@acm.org>
10134
10135         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10136
10137         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
10138         (gst_qtdemux_loop_header):
10139           Re-apply patch from #142272 that allows non-seekable sources,
10140           re-proposed by Daniel Drake <dsd@gentoo.org>.
10141
10142 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10143
10144         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
10145           Use the src template for creating the src pad (#162330).
10146
10147 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10148
10149         * configure.ac:
10150         * ext/musepack/Makefile.am:
10151         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
10152         (gst_musepackdec_init), (gst_musepackdec_dispose),
10153         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
10154         (gst_musepack_stream_init), (gst_musepackdec_loop),
10155         (gst_musepackdec_change_state):
10156         * ext/musepack/gstmusepackdec.cpp:
10157         * ext/musepack/gstmusepackdec.h:
10158         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
10159         (gst_musepack_reader_read), (gst_musepack_reader_seek),
10160         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
10161         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
10162         * ext/musepack/gstmusepackreader.cpp:
10163         * ext/musepack/gstmusepackreader.h:
10164           Update to 1.1 API (#165446).
10165
10166 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10167
10168         * ext/Makefile.am:
10169           Unbreak buildbot.
10170
10171 2005-01-28  Andy Wingo  <wingo@pobox.com>
10172
10173         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
10174         to reflect a different dubious internet source. Add a reference
10175         and some commentary.
10176
10177 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10178
10179         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
10180         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
10181         * gst/playback/gststreamselector.h:
10182           Be more selective when we're redoing caps negotiation from
10183           within the chain function on a stream change.
10184
10185 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10186
10187         * configure.ac:
10188         * ext/Makefile.am:
10189         * ext/amrnb/Makefile.am:
10190         * ext/amrnb/amrnb.c: (plugin_init):
10191         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
10192         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
10193         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
10194         (gst_amrnbdec_state_change):
10195         * ext/amrnb/amrnbdec.h:
10196         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
10197         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
10198         (gst_amrnbparse_init), (gst_amrnbparse_formats),
10199         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
10200         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
10201         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
10202         * ext/amrnb/amrnbparse.h:
10203           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
10204         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10205           Add AMR-NB/-WB raw formats.
10206         * ext/alsa/gstalsa.c: (gst_alsa_link):
10207           Keep valid time when changing format.
10208         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
10209         (qtdemux_parse_trak):
10210           Add some more format-specific options (#140141, #143555, #155163).
10211
10212 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10213
10214         * gst/matroska/matroska-demux.c:
10215         (gst_matroska_demux_parse_blockgroup):
10216           Fix logic error in timing of subtitle stream synchronization.
10217         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
10218           Add skip-chunk, which is found in kodak-camera streams.
10219
10220 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
10221
10222         * po/LINGUAS:
10223         * po/vi.po:
10224           Adding Vietnamese translation (submitted by Clytie Siddall)
10225
10226 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10227
10228         * gst/playback/gstdecodebin.c: (try_to_link_1):
10229           Use realpad for signal.
10230
10231 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10232
10233         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
10234           Fix category so decodebin picks it up.
10235
10236 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10237
10238         * ext/mad/Makefile.am:
10239         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
10240         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
10241         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
10242         (found_type), (gst_id3demux_bin_change_state):
10243         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
10244         (gst_id3_tag_init), (gst_id3_tag_handle_event),
10245         (gst_id3_tag_src_link), (gst_id3_tag_chain),
10246         (gst_id3_tag_change_state), (plugin_init):
10247         * ext/mad/gstmad.h:
10248           Add id3demuxbin (which is a simple bin consisting of id3demux
10249           and typefind), take over rank from id3demux, remove typefind
10250           code from id3demux. Makes all broken mp3s that I know of work,
10251           and thereby fixes #152688.
10252
10253 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
10254
10255         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10256
10257         * ext/mad/gstmad.c: (gst_mad_src_event):
10258         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
10259           Allow seeks on audio pad, make mad forward those (#164826).
10260         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10261           Set duration (#165335).
10262
10263 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10264
10265         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
10266         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
10267         (gst_asf_demux_process_ext_content_desc),
10268         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
10269         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
10270         * gst/asfdemux/gstasfdemux.h:
10271           Improve metadata display, e.g. if the metadata comes before the
10272           streams are loaded (which is perfectly valid).
10273
10274 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10275
10276         * tools/gst-launch-ext-m.m:
10277           Fix AVI/ASF pipelines (#165340).
10278
10279 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
10280         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
10281         build failure on amd64
10282
10283 2005-01-26  Tim-Philipp M??ller  <tim at centricular dot net>
10284
10285         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
10286         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
10287           Check environment variables GST_ID3V2_TAG_ENCODING,
10288           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
10289           list of character encodings to force interpretation of non-unicode
10290           strings stored in an ID3v2 tag to a particular encoding. If none
10291           is specified, try to use current locale's encoding, then fall back
10292           to ISO-8859-1 (which will always succeed). (Resolves #149274)
10293         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
10294         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
10295           Check environment variables GST_ID3V1_TAG_ENCODING,
10296           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
10297           list of character encodings to use in case a string encountered
10298           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
10299           specified, try to use the current locale's encoding, then fall
10300           back to ISO-8859-1 (which will always succeed).
10301
10302 2005-01-25  Benjamin Otte  <otte@gnome.org>
10303
10304         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
10305           - on half framerate, compute the rate in advance so the comparisons
10306             don't compare wrong values
10307           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
10308             behaviour
10309           - don't use mad_header_decode anymore, mad_frame_decode does that
10310             automatically
10311           - when getting rid of consumed bytes, reset the stream's skiplen
10312           (fixes #163867)
10313
10314 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
10315
10316         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
10317           Use 1/2 a second for default max_discont, as PES streams from DVB
10318           seem to have larger spacings in the SCR. 
10319           Fix a typo.
10320
10321 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10322
10323         * gst/playback/gstplaybasebin.c: (group_commit):
10324           Notify delayed stream-info availability.
10325
10326 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
10327         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
10328         (gst_a52dec_handle_event), (gst_a52dec_chain):
10329         Add some debug output. Check that a discont has a valid
10330         time associated.
10331         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
10332         (gst_alsa_sink_loop):
10333         Ignore TAG events. A little extra debug for broken timestamps.
10334         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
10335         (dvdnavsrc_change_state):
10336         Ensure we send a discont to engage the link before we send any
10337         other events.
10338         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
10339         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
10340         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
10341         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
10342         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
10343         dvd://title works in totem because typefinding sends a seek that ends
10344         up going back to chapter 1 regardless.
10345         * ext/mpeg2dec/gstmpeg2dec.c:
10346         * ext/mpeg2dec/gstmpeg2dec.h:
10347         Output correct timestamps and handle disconts.
10348         * ext/ogg/gstoggdemux.c: (get_relative):
10349         Small guard against a null dereference.
10350         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
10351         (gst_textoverlay_set_property):
10352         Free memory when done. Don't call gst_event_filler_get_duration on
10353         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
10354         g_warning.
10355         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
10356         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
10357         (gst_sw_srclink), (gst_smoothwave_chain):
10358         Draw solid lines, prettier colours.
10359         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
10360         Add a default palette that'll work for some movies.
10361         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
10362         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
10363         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
10364         * gst/mpegstream/gstdvddemux.h:
10365         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
10366         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
10367         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
10368         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
10369         * gst/mpegstream/gstmpegparse.h:
10370         Use PTM/NAV events when for timestamp adjustment when connected to 
10371         dvdnavsrc. Don't use many discont events where one suffices.
10372         * gst/playback/gstplaybasebin.c: (group_destroy),
10373         (gen_preroll_element), (gst_play_base_bin_add_element):
10374         * gst/playback/gstplaybasebin.h:
10375         Make sure we remove subtitles from the same bin we put them in.
10376         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
10377         (gst_subparse_buffer_format_autodetect),
10378         (gst_subparse_change_state):
10379         Fix some memleaks and invalid accesses.
10380         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
10381         (oggskel_type_find), (cmml_type_find), (plugin_init):
10382         Some typefind functions for Annodex v3.0 files
10383         * gst/wavparse/gstwavparse.h:
10384         GstRiffReadClass is the correct parent class.
10385
10386 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10387
10388         * gst-libs/gst/riff/riff-media.c:
10389         (gst_riff_create_video_caps_with_data):
10390           Add extradata to huffyuv (fixes #165013).
10391         * gst-libs/gst/riff/riff-read.c:
10392         (gst_riff_read_strf_vids_with_data):
10393           Fix extradata extraction if it is in the chunk size.
10394
10395 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
10396
10397         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10398
10399         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
10400         (gst_quarktv_change_state), (gst_quarktv_dispose):
10401           Memory free'ing location fix (#164708).
10402
10403 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10404
10405         * gst/playback/gstplaybasebin.c: (group_commit),
10406         (gen_preroll_element), (probe_triggered), (gen_source_element),
10407         (setup_source), (gst_play_base_bin_change_state),
10408         (gst_play_base_bin_add_element):
10409           Don't block for streams.
10410         * gst/playback/gststreaminfo.c: (stream_info_change_state),
10411         (gst_stream_info_set_mute):
10412           Use gst_pad_set_active_recursive.
10413
10414 2005-01-25  Andy Wingo  <wingo@pobox.com>
10415
10416         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
10417         for #ifndef HAVE_XVIDEO.
10418
10419 2005-01-24  Jeffrey C. Ollie
10420
10421         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
10422
10423         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
10424         * ext/gsm/gstgsmdec.h:
10425         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
10426         * ext/gsm/gstgsmenc.h:
10427         Fix rate to 8kHz as per spec, removes obscure errors when no rate
10428         was given by property. Add proper buffer timestamps and offsets.
10429
10430 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10431
10432         * gst-libs/gst/riff/riff-media.c:
10433         (gst_riff_create_audio_caps_with_data):
10434           Audio can be <8000Hz.
10435
10436 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10437
10438         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
10439           Explicit state change to workaround refcount bugs.
10440
10441 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10442
10443         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
10444         (gst_avimux_riff_get_avi_header):
10445           Fix...
10446
10447 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10448
10449         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
10450         (gst_riff_read_element_data):
10451         * gst-libs/gst/riff/riff-read.h:
10452           Add _peek version (req'ed in CDXA).
10453         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
10454         (gst_cdxaparse_loop):
10455           Fix parsing in playbin.
10456         * gst/playback/gstdecodebin.c: (close_pad_link):
10457           Ignore current_ pads, they cause major annoyance.
10458
10459 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10460
10461         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
10462           Safety guard.
10463
10464 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10465
10466         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
10467           Fix padding...
10468
10469 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10470
10471         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
10472           Allow for 0-sized buffers. Fixes length query problems in
10473           starwars.mkv from the testsuite.
10474
10475 2005-01-19  Tim-Philipp M??ller  <tim at centricular dot net>
10476
10477         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
10478         (gst_video_box_i420), (gst_video_box_chain):
10479           Fix row strides for I420 (fixes #163159)
10480           
10481 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10482
10483         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
10484           MPEG2 has a useful rate property, so we can actually use that.
10485           For MPEG-1, continue using the bytes/time properties.
10486
10487 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10488
10489         * gst-libs/gst/riff/riff-media.c:
10490         (gst_riff_create_video_caps_with_data),
10491         (gst_riff_create_video_template_caps):
10492           Add intel-h263.
10493
10494 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10495
10496         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
10497           Fail if caps negotiation fails. Should fix #162184, and should
10498           definately be in there regardless of it fixing the actual bug.
10499         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
10500         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
10501         (gst_avimux_riff_get_avix_header),
10502         (gst_avimux_riff_get_video_header),
10503         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
10504         (gst_avimux_start_file), (gst_avimux_handle_event),
10505         (gst_avimux_change_state):
10506         * gst/avi/gstavimux.h:
10507           Refactor structure writing to use GST_WRITE_UINT macros, add
10508           metadata writing support.
10509
10510 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10511
10512         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
10513           Elements may already be destroyed when this function is called.
10514
10515 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10516
10517         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
10518         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
10519           More memory leak fixes (#149162).
10520
10521 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10522
10523         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
10524         (gst_qtdemux_add_stream):
10525           Fix two memleaks.
10526
10527 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10528
10529         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
10530           Argh...
10531
10532 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10533
10534         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
10535           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
10536           when fixating to six channels in Totem.
10537
10538 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
10539
10540         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
10541           Fix compile warnings on Solaris 10 buildbot
10542
10543 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
10544
10545         * ext/dvdread/dvdreadsrc.c: (_read):
10546           Don't read beyond the last cell in a chapter (fixes 
10547           invalid memory access)
10548
10549 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
10550
10551         * ext/dvdread/stream_labels.c:
10552         (dvdreadsrc_get_audio_stream_labels):
10553           Use NULL for an empty GList instead of g_list_alloc(); fix 
10554           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
10555           of GString (easier to bulk free later)
10556
10557 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
10558
10559         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10560
10561         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10562         (gst_ffmpeg_pixfmt_to_caps):
10563           Fix BGRA32 caps (#164209).
10564
10565 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
10566
10567         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10568
10569         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10570         (gst_ffmpeg_caps_to_pixfmt):
10571           alpha_mask can be RGBA/ABGR. Fixes #164265.
10572
10573 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
10574
10575         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10576
10577         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
10578         (gst_mpeg2dec_alloc_buffer):
10579         * ext/mpeg2dec/gstmpeg2dec.h:
10580           Crop if decoding size is not the actual image size (#163676).
10581
10582 2005-01-17  Steve Baker  <steve@stevebaker.org>
10583
10584         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10585
10586         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
10587         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
10588           Add libsndfile typefind functions (#163309).
10589
10590 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10591
10592         * tools/gst-launch-ext-m.m:
10593           Add .aac, fix .m1v/.m2v (#163891).
10594
10595 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10596
10597         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
10598           Sanity check, don't wait endlessly since the clock might not
10599           actually run at this point (which is a deadlock). Fixes #164069.
10600
10601 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10602
10603         * gst/playback/gstplaybasebin.c: (probe_triggered):
10604           Of course, only pause if group is done...
10605
10606 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10607
10608         * gst/playback/gstplaybasebin.c: (probe_triggered):
10609           Thread safety.
10610
10611 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
10612
10613         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
10614           Don't return state change success when the parent
10615           failed.
10616
10617 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10618
10619         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
10620           Free events (fix memleak in #162905).
10621
10622 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
10623
10624         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10625
10626         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10627         (gst_ffmpeg_caps_to_pixfmt):
10628           Fix for depth = 15. Fixes #161675.
10629
10630 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10631
10632         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
10633           Set FPS correctly, even for webcams and the like.
10634         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
10635           Don error on setting while capturing.
10636
10637 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10638
10639         * ext/dv/gstdvdec.c:
10640         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10641         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10642           I'm a bad boy. using /1001. to force C to do float division
10643           and not integer division (as it did in my last commit)
10644           Thanks to David I. Lehn for pointing this mistake.
10645
10646 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10647
10648         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10649           Revert Johan??s 1.35->1.36 since it breaks compat.
10650
10651 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10652
10653         * ext/dv/gstdvdec.c:
10654         * ext/libfame/gstlibfame.c:
10655         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10656         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10657           replace framerate aproximations by their real value
10658           (24000/1001, 30000/1001, 60000/1001)
10659           Finish fixing bug #164049
10660
10661 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10662
10663         * ext/ogg/gstoggmux.c:
10664           eos/bos debugging
10665         * gst/tcp/gstmultifdsink.c:
10666         * gst/tcp/gstmultifdsink.h:
10667         * gst/tcp/gsttcp.c:
10668         * gst/tcp/gsttcp.h:
10669         * gst/tcp/gsttcpclientsink.c:
10670         * gst/tcp/gsttcpclientsrc.c:
10671         * gst/tcp/gsttcpserversink.c:
10672         * gst/tcp/gsttcpserversrc.c:
10673           improve reusability of elements after state changes and errors
10674           make multifdsink throw away streamheaders when receiving new ones
10675
10676 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10677
10678         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10679           Fix for if items are already in list...
10680
10681 2005-01-12  Benjamin Otte  <otte@gnome.org>
10682
10683         * gst/adder/gstadder.c: (gst_adder_loop):
10684           fix adder a bit so it doesn't screw up with events as much anymore
10685
10686 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
10687
10688         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
10689         (pixbufscale_scale), (gst_pixbufscale_chain):
10690         * ext/gdk_pixbuf/pixbufscale.h:
10691           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
10692           to ensure rowstrides are calculated the same way as 
10693           ffmpegcolorspace
10694           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
10695           that we pick up duration and offset also.
10696
10697 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10698
10699         * gst/avi/gstavimux.c: (gst_avimux_class_init),
10700         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
10701           Reusability fixes.
10702
10703 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10704
10705         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
10706         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
10707         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
10708         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
10709           Update flags when requested.
10710
10711 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10712
10713         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10714           Fix dmix.
10715
10716 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10717
10718         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10719         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
10720         (probe_triggered), (new_decoded_pad), (gen_source_element),
10721         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
10722         * gst/playback/gstplaybasebin.h:
10723         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
10724         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
10725         (gst_play_bin_change_state):
10726           Implement group-switch signal for use in apps to clear metadata
10727           cache, clean up subtitle, add suburi property instead of # hack,
10728           some error-out fixes.
10729
10730 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10731
10732         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
10733           Debug.
10734         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
10735           If we got a state change in the _get handler, don't return success.
10736
10737 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10738
10739         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
10740         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
10741           Make jpegdec quiet on MJPEG decoding
10742         * gst/asfdemux/README:
10743           Fix mimetypes for MJPEG and H263
10744
10745 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10746
10747         * ext/theora/theoradec.c: (theora_dec_chain):
10748           Fix broken code generation by gcc by swapping arguments.
10749         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10750           Fix \n in debug.
10751
10752 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10753
10754         * TODO:
10755           delete this file, it is by far outdated
10756         * ext/alsa/gstalsa.1: remove
10757         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
10758         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
10759         (gst_alsa_get_caps):
10760           Add HW probing for supported sample rates. Fixes #161704
10761
10762 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10763
10764         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10765           Don't crash, biatch! :).
10766
10767 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10768
10769         * ext/musepack/gstmusepackreader.cpp:
10770         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
10771           Some work on tags - still doesn't work in playbin...
10772         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10773           Handle events...
10774
10775 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10776
10777         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
10778           Also shove tags on kid pads.
10779
10780 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10781
10782         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
10783           Don't bail on unknown events.
10784         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10785           Don't crash on events before negotiation.
10786         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
10787           Send tags on pads, too.
10788         * gst/playback/gststreamselector.c:
10789         (gst_stream_selector_request_new_pad):
10790           Forward events on first pad if no input was selected yet.
10791
10792 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10793
10794         * gst/playback/gstplaybasebin.c: (setup_substreams):
10795           Don't disable streamtype if the stream doesn't exist, since
10796           then playing a video after audio will disable both and nothing
10797           will happen. Fixes the testsuite.
10798
10799 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10800
10801         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
10802         (gst_v4l_xoverlay_set_xwindow_id):
10803         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
10804         (gst_v4l2_xoverlay_set_xwindow_id):
10805           Add debug categories, fix overlay disabling.
10806
10807 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10808
10809         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
10810         * ext/alsa/gstalsa.h:
10811           Add HW probing for period_count/size and buffer_size MIX/MAX
10812           Adjust default/user defined value if out of bounds
10813           Should fix bug #162024
10814
10815 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10816
10817         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
10818           Fix warning (#161191).
10819
10820 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10821
10822         * ext/dvdread/stream_labels.c:
10823         (dvdreadsrc_get_audio_stream_labels):
10824           Fix warning (init the good variable in switch default)
10825
10826 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
10827
10828         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10829
10830         * gst/tta/gstttaparse.c: (gst_tta_src_event):
10831           Fix gcc-2.95 compile (#163485).
10832
10833 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10834
10835         * configure.ac:
10836         * ext/flac/gstflacenc.c: (gst_flacenc_init),
10837         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
10838         (gst_flacenc_tell_callback), (gst_flacenc_chain),
10839         (gst_flacenc_change_state):
10840         * ext/flac/gstflacenc.h:
10841           Update for API change in flac-1.1.1. Update requirement in
10842           configure.ac. Fixes #162974.
10843
10844 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10845
10846         * gst/playback/gstplaybasebin.c: (group_destroy):
10847           Remove hack to get rid of assert and get rid of unlinked
10848           signals properly.
10849
10850 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10851
10852         * gst/playback/gstplaybasebin.c: (setup_source):
10853           Set source to NULL so that resources are free'ed. Fixes issues
10854           with playback of CDDA and similar device-accessing things.
10855
10856 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10857
10858         * testsuite/embed/Makefile.am:
10859           test->noinst, fix make test in buildbot.
10860
10861 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
10862
10863         * ext/dvdread/stream_labels.c: new file
10864         * ext/dvdread/stream_labels.h: new file
10865         * ext/dvdread/Makefile.am:
10866         * ext/dvdread/dvdreadsrc.c: (_seek_title):
10867           Extract audio stream label from DVD IFO files.
10868           It only dump them on the console for now, still have to
10869           make playbin aware of them.
10870
10871 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10872
10873         * gst/playback/gstplaybasebin.c: (setup_source):
10874           Fix hanging subs.
10875
10876 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10877
10878         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10879         (gen_preroll_element), (remove_groups), (setup_subtitle),
10880         (gen_source_element), (setup_source):
10881         * gst/playback/gstplaybasebin.h:
10882           Multiple .sub files is just a stupid idea... Fix some threading
10883           mistakes. Interestingly, external .sub files cause playbin to
10884           hang, I don't know why... Parsing fixes contributed by Fran??ois
10885           Kooman <fkooman@tuxed.net>.
10886
10887 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10888
10889         * testsuite/embed/Makefile.am:
10890           Fix buildbot.
10891
10892 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
10893
10894         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10895
10896         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
10897         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
10898         (gst_pngenc_set_property):
10899         * ext/libpng/gstpngenc.h:
10900           Add compression level property (#163323).
10901
10902 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10903
10904         * configure.ac:
10905         * examples/capsfilter/capsfilter1.c: (main):
10906         * examples/seeking/spider_seek.c: (make_spider_pipeline):
10907         * ext/dvdread/Makefile.am:
10908         * ext/dvdread/demo-play:
10909         * ext/dvdread/demo-play.c:
10910         * gconf/gstreamer.schemas.in:
10911         * gst-libs/gst/gconf/gconf.c:
10912         * sys/v4l/TODO:
10913         * testsuite/Makefile.am:
10914         * testsuite/embed/Makefile.am:
10915         * testsuite/embed/embed.c: (cb_expose), (main):
10916           Remove all references to xvideosink, fix examples (#140845).
10917         * gst/playback/gstplaybasebin.c: (group_destroy):
10918           Apparently, disposal does not unlink - so do explicitely.
10919         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
10920           Add debug.
10921
10922 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
10923
10924         * README: fix PKG_CONFIG_PATH instructions, what was there
10925         previously was breaking default search path, not nice. 
10926         Fixes #163358
10927
10928 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10929
10930         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
10931         (gst_audioscale_chain):
10932           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
10933           when resampling - how the ^@$^!@^! is this possible?!?
10934
10935 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10936
10937         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
10938           Reset variables on READY.
10939         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
10940         (gst_matroska_mux_loop):
10941           Require data before writing header.
10942
10943 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
10944
10945         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10946
10947         * ext/mad/gstmad.c: (gst_mad_chain):
10948           Don't call mad_stream_sync() directly after recovering sync.
10949           Fixes #151661.
10950
10951 2005-01-09  Martin Eikermann  <meiker@upb.de>
10952
10953         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10954
10955         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
10956         (snapshot_handler), (gst_snapshot_sinkconnect),
10957         (gst_snapshot_chain):
10958           Allocate resources when required, fix recursive signal emission
10959           and fix caps. Fixes #161667.
10960
10961 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
10962
10963         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10964
10965         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
10966         (gst_pngdec_chain):
10967           Handle only 8-bppc (bits-per-pixel-component) images, better
10968           error handling and correct strides. Fixes #163177.
10969         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
10970         (gst_pngenc_chain):
10971           Better error handling. Fixes #163348.
10972
10973 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10974
10975         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
10976         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
10977         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
10978         (dvdnavsrc_uri_handler_init):
10979           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
10980         * gst/playback/gstplaybasebin.c: (gen_source_element):
10981           Add MMS to streaming URIs.
10982
10983 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10984
10985         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
10986         * sys/xvimage/xvimagesink.c:
10987         (gst_xvimagesink_navigation_send_event):
10988           Check for pad availability before sending event.
10989
10990 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10991
10992         * gst-plugins.spec.in:
10993           Add subparse.
10994
10995 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10996
10997         * configure.ac:
10998           Since we use functions from CVS, up requirement.
10999
11000 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11001
11002         * gst/playback/Makefile.am:
11003         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11004         (group_destroy), (group_commit), (group_is_muted),
11005         (gen_preroll_element), (add_stream), (unknown_type),
11006         (probe_triggered), (preroll_unlinked), (mute_stream),
11007         (silence_stream), (new_decoded_pad), (setup_substreams),
11008         (setup_source), (get_active_source), (mute_group_type),
11009         (muted_group_change_state), (set_active_source),
11010         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
11011         (play_base_eos), (gst_play_base_bin_change_state):
11012         * gst/playback/gstplaybasebin.h:
11013         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
11014         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
11015         (gst_stream_info_dispose), (stream_info_mute_pad),
11016         (stream_info_change_state), (gst_stream_info_set_mute):
11017         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
11018         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
11019         (gst_stream_selector_init), (gst_stream_selector_dispose),
11020         (gst_stream_selector_get_linked_pad),
11021         (gst_stream_selector_get_caps), (gst_stream_selector_link),
11022         (gst_stream_selector_get_linked_pads),
11023         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
11024         * gst/playback/gststreamselector.h:
11025           Adding stream selection support plus required properties for
11026           applications to use this. Fully fixes #100931.
11027
11028 2005-01-08  Benjamin Otte  <otte@gnome.org>
11029
11030         * gst/games/gstpuzzle.c: (nav_event_handler):
11031           - handle nav events differently: forward every event no matter if it
11032             was handled or not.
11033           - translate events
11034           You can now cheat by using navigationtest ! puzzle and moving the
11035           mouse close to the edge of a tile. ;)
11036
11037 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11038
11039         * configure.ac:
11040         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
11041         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
11042         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
11043         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
11044         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
11045         (gst_ogm_parse_plugin_init):
11046         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
11047         (gst_textoverlay_link), (gst_textoverlay_getcaps),
11048         (gst_textoverlay_event), (gst_textoverlay_video_chain),
11049         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
11050         * ext/pango/gsttextoverlay.h:
11051         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
11052         (gst_matroska_demux_handle_seek_event),
11053         (gst_matroska_demux_sync_streams),
11054         (gst_matroska_demux_parse_blockgroup),
11055         (gst_matroska_demux_subtitle_caps),
11056         (gst_matroska_demux_plugin_init):
11057         * gst/matroska/matroska-ids.h:
11058         * gst/playback/gstdecodebin.c: (close_pad_link):
11059         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
11060         (gen_preroll_element), (remove_groups), (add_stream),
11061         (new_decoded_pad), (setup_subtitles), (gen_source_element),
11062         (setup_source):
11063         * gst/playback/gstplaybasebin.h:
11064         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
11065         * gst/subparse/Makefile.am:
11066         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
11067         (gst_subparse_base_init), (gst_subparse_class_init),
11068         (gst_subparse_init), (gst_subparse_formats),
11069         (gst_subparse_eventmask), (gst_subparse_event),
11070         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
11071         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
11072         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
11073         (parse_mpsub_deinit), (parse_mpsub_init),
11074         (gst_subparse_buffer_format_autodetect),
11075         (gst_subparse_format_autodetect), (gst_subparse_loop),
11076         (gst_subparse_change_state), (gst_subparse_type_find),
11077         (plugin_init):
11078         * gst/subparse/gstsubparse.h:
11079         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
11080         (plugin_init):
11081           Add subtitle support, .sub parser (supports SRT and MPsub),
11082           OGM text support, Matroska UTF-8 text support, deadlock fixes
11083           all over the place, subtitle awareness in decodebin/playbin
11084           and some fixes to textoverlay to handle subtitles in a stream
11085           correctly. Fixes #100931.
11086
11087 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11088
11089         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
11090           Check for pad availability before doing a query on it.
11091
11092 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11093
11094         * ext/dv/gstdvdec.c:
11095           really fix bpp24/32 dvdec caps (classic rgba indeed)
11096         * gst/asfdemux/gstasfdemux.c:
11097         (gst_asf_demux_process_ext_content_desc):
11098           don't send text tags if they are empty (bis repetita)
11099
11100 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11101
11102         * ext/dv/gstdvdec.c:
11103          remove unneeded comment from dvdec
11104           (related to DV 4CC codes in AVI files)
11105           moved them in gstreamer/docs/random/mimetypes
11106         * gst/asfdemux/gstasfdemux.c:
11107         (gst_asf_demux_process_ext_content_desc):
11108          don't send text tags if they are empty
11109          fix mem leak on error path
11110         * gst/ffmpegcolorspace/avcodec.h:
11111         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11112         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
11113         (gst_ffmpegcsp_avpicture_fill):
11114         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
11115         * gst/ffmpegcolorspace/imgconvert_template.h:
11116          adds BGR32 and BGRA32 to ffmpegcolorspace
11117           (still bad colors, fixing it on next commit)
11118           helps with dvdec outputing BGR32
11119
11120 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11121
11122         * ext/dv/gstdvdec.c:
11123          Fix audio caps i just broke (missing ',')
11124         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
11125         (gst_matroska_mux_reset):
11126          Fix typo + add FIXME about old "x-gst-metadata" crap
11127
11128 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11129
11130         * ext/dv/demo-play.c: (main):
11131          xvideosink -> xvimagesink
11132         * ext/dv/gstdvdec.c:
11133          change rgb 32/32 caps to 24/32 (no alpha)
11134          change nb of channels to be a list (2 or 4, not 2)
11135          change sample rate to be a list (32, 44.1, 48 kHz) not a range
11136         * gst/asfdemux/gstasfdemux.c:
11137         (gst_asf_demux_process_ext_content_desc):
11138          Add 'date/year' to extracted metadata list
11139
11140 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11141
11142         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
11143           The return value of fixate_to does not imply that the requested
11144           value was set, so don't assume.
11145
11146 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
11147
11148         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11149
11150         * ext/libpng/gstpngdec.c:
11151         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
11152         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
11153         * ext/libpng/gstpngenc.h:
11154           Alpha support (encoder; #163161), mime fixage.
11155
11156 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
11157
11158         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11159
11160         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
11161         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
11162         (gst_faac_set_property), (gst_faac_get_property):
11163         * ext/faac/gstfaac.h:
11164           Allow for ADTS output (#153434).
11165
11166 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11167
11168         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
11169           Fix against template (#150576).
11170
11171 2005-01-06  Benjamin Otte  <otte@gnome.org>
11172
11173         * gst/games/gstpuzzle.c: (draw_puzzle):
11174           don't draw a puzzle if either width or height of tiles would be 0.
11175
11176 2005-01-06  Benjamin Otte  <otte@gnome.org>
11177
11178         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
11179         (gst_puzzle_class_init), (gst_puzzle_finalize):
11180           no memleaks, please
11181         (gst_puzzle_create), (gst_puzzle_init),
11182         (gst_puzzle_set_property), (gst_puzzle_setup):
11183           change initialization code around so we don't reshuffle on resize
11184         (draw_puzzle):
11185           fix another stupid typo
11186
11187 2005-01-06  Benjamin Otte  <otte@gnome.org>
11188
11189         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
11190           fix stupid typo that borked copying on YUY2
11191
11192 2005-01-06  Benjamin Otte  <otte@gnome.org>
11193
11194         * gst/games/gstpuzzle.c: (draw_puzzle):
11195           fix edges when image sizes aren't multiples of tile sizes
11196
11197 2005-01-06  Benjamin Otte  <otte@gnome.org>
11198
11199         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
11200           make RGB endianness work correctly
11201         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
11202           refactor and fix race with initial shuffling
11203         (nav_event_handler):
11204           allow using the mouse to puzzle
11205         (draw_puzzle):
11206           insist on tiles having width and height as multiples of 4 to get
11207           clean YUV image handling
11208         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
11209         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
11210           s/DEBUG/LOG/ for common messages
11211         (gst_xvimagesink_navigation_send_event):
11212           fix mouse event translation to not include screen PAR
11213         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
11214           fix mouse event translation to actually work
11215
11216 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11217
11218         * gst/asfdemux/gstasfdemux.c:
11219         (gst_asf_demux_process_ext_content_desc):
11220          Extract TrackNumber metadata + clean up code
11221         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
11222          Hope this is the good fix (var used unitialised)
11223
11224 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11225
11226         * ext/faad/gstfaad.c: (gst_faad_chain):
11227           Only increment timestamp if it's valid. Fixes raw AAC streams.
11228
11229 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11230
11231         * configure.ac:
11232         * gst/games/Makefile.am:
11233         * gst/games/gstpuzzle.c:
11234           add a puzzle game with...
11235         * gst/games/gstvideoimage.c:
11236         * gst/games/gstvideoimage.h:
11237           ... full colorspace support (that includes YUV9 and RGB16)) stolen
11238           from videotestsrc and made into something that would be a nice
11239           library for a lot of other plugins.
11240
11241 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11242
11243         * configure.ac:
11244          don't compile faad plugin if a RC of 2.0 is found
11245          Fixes #155346 (and FC1 buildbot)
11246         * gst/asfdemux/gstasfdemux.c:
11247         (gst_asf_demux_process_ext_content_desc):
11248          try to make Solaris compiler happier
11249
11250 2005-01-06  Paul Jack  <pjack@sfaf.org>
11251
11252         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11253
11254         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
11255           Fix segfault (#161667).
11256
11257 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11258
11259         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
11260           Fix framerate reporting.
11261
11262 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11263
11264         * gst-libs/gst/riff/riff-ids.h:
11265         * gst/wavenc/riff.h:
11266          Add AMR (VBR and CBR) ids to riff.h audio codec list
11267         * gst/asfdemux/gstasfdemux.c:
11268         (gst_asf_demux_process_ext_content_desc),
11269         (gst_asf_demux_process_object):
11270           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
11271
11272 2005-01-05  Martin Eikermann  <meiker@upb.de>
11273
11274         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11275
11276         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
11277         (gst_dvd_demux_handle_discont):
11278         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
11279         (gst_mpeg_demux_handle_discont):
11280           Recreate pads on new-media (#160730).
11281         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
11282           Send discont even if manager changes timestamps (#161929).
11283
11284 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
11285
11286         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11287
11288         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
11289           Fix invalid memory access (#159211).
11290
11291 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11292
11293         * examples/gstplay/player.c: (main):
11294           Don't iterate.
11295         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
11296           Add visualizations.
11297         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
11298         (gst_a52dec_handle_frame):
11299           Set duration.
11300         * ext/dvdnav/gst-dvd:
11301           Add audioconvert. Fixes #161325.
11302         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
11303           Explicitely case to gint64. Possible valgrind error.
11304         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
11305         (gst_play_tick_callback), (gst_play_change_state),
11306         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
11307         (gst_play_set_location), (gst_play_get_location),
11308         (gst_play_seek_to_time), (gst_play_set_data_src),
11309         (gst_play_set_video_sink), (gst_play_set_audio_sink),
11310         (gst_play_set_visualization), (gst_play_connect_visualization),
11311         (gst_play_get_framerate), (gst_play_get_all_by_interface),
11312         (gst_play_new):
11313           Use playbin. Fixes #139749 and #147744.
11314         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
11315           Add genre tag.
11316         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
11317         (audioscale_get_type), (gst_audioscale_base_init),
11318         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
11319         (gst_audioscale_getcaps), (gst_audioscale_fixate),
11320         (gst_audioscale_link), (gst_audioscale_get_buffer),
11321         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
11322         (gst_audioscale_init), (gst_audioscale_dispose),
11323         (gst_audioscale_chain), (gst_audioscale_set_property),
11324         (gst_audioscale_get_property), (plugin_init):
11325           Indent properly.
11326         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
11327           Fix LPCM.
11328         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
11329         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
11330         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
11331           Add more metadata (fixes #162656).
11332
11333 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11334
11335         * configure.ac:
11336           back to cvs
11337
11338 === release 0.8.7 ===
11339
11340 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11341
11342         * NEWS:
11343         * RELEASE:
11344         * configure.ac:
11345           releasing 0.8.7, "Hyperspace"
11346
11347 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11348
11349         patch by: Tim-Philipp M??ller  <t.i.m@zen.co.uk>
11350
11351         * gst/playback/gstplaybasebin.c:
11352          Fix for #162924 - free caps after use, not before
11353
11354 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11355
11356         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11357
11358         * gst/playback/gstplaybasebin.c:
11359         * gst/wavparse/gstwavparse.c:
11360           Fix for #154773 - fixes playback of small .wav files
11361
11362 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
11363
11364         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11365
11366         * gst/audioscale/gstaudioscale.c:
11367           Fix for #162819 - make audioscale reusable
11368           Fixes playback of more than one file with playbin/totem
11369
11370 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
11371
11372         * gst/ffmpegcolorspace/avcodec.h:
11373         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11374         * gst/ffmpegcolorspace/imgconvert.c:
11375           clean up the mess that made me cry and avoid needless duplication
11376
11377 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
11378
11379         * gst/ffmpegcolorspace/imgconvert.c:
11380           give some indication of why we're segfaulting
11381
11382 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11383
11384         * configure.ac:
11385           Fix indentation, fix v4l2 plugin detection.
11386         * ext/Makefile.am:
11387           Fix libmms location (Maciej, use diff -u!).
11388         * ext/alsa/gstalsa.c: (gst_alsa_init):
11389           Initialize caps cache to NULL.
11390         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
11391           Only change state on audiosink if it exists.
11392
11393 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
11394
11395         * gst/matroska/matroska-demux.c:
11396         * gst/matroska/matroska-ids.h:
11397         * gst/matroska/matroska-demux.h:
11398         Fix Vorbis streams failing to decode in some files, where cluster_time
11399         isn't 0, because then it doesn't send codec_priv before actual data.
11400         Remove time-based test and replace it with marker set on beginning of
11401         new stream
11402
11403 2004-12-28  David Schleef  <ds@schleef.org>
11404
11405         Merge patch from Ronald fixing problems with streaming
11406         text.
11407         * ext/cairo/gstcairo.c: (plugin_init):
11408         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
11409         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
11410         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
11411         (gst_textoverlay_font_init), (gst_textoverlay_init),
11412         (gst_textoverlay_set_property):
11413         * ext/cairo/gsttextoverlay.h:
11414
11415 2004-12-27  David Schleef  <ds@schleef.org>
11416
11417         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
11418         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
11419         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
11420         (gst_textoverlay_font_init), (gst_textoverlay_init),
11421         (gst_textoverlay_set_property): Improvements to actually
11422         render text as white on black outline on video, including
11423         font selection and horizontal/vertical alignment.  (Ronald's
11424         christmas present)
11425         * ext/cairo/gsttextoverlay.h:
11426
11427 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11428
11429         * ext/ogg/gstogg.c:
11430         * ext/ogg/gstogmparse.c:
11431           fix ogm[audio/video]parse plugin registration
11432           (riff won't load if bytestream is already loaded)
11433
11434 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11435
11436         * gst/audioconvert/gstchannelmix.c:
11437           fix for GLIB < 2.4
11438
11439 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11440
11441         * Makefile.am:
11442         * configure.ac:
11443           disable docs again until it actually passes make distcheck.
11444
11445 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11446
11447         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
11448         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
11449         (plugin_init):
11450           Add 3GP (variables name Q3GP because they can't start with a
11451           number). Add samr audio fourcc (used in .3gp files), decoder
11452           is work in progress. Also do a GST_WARNING instead of ERROR
11453           in case of unknown nodes, to decrease output.
11454
11455 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11456
11457         * Makefile.am:
11458           really fix dist
11459
11460 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11461
11462         * configure.ac:
11463         * ext/speex/gstspeexdec.h:
11464         * ext/speex/gstspeexenc.h:
11465           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
11466           Fix detection code in configure.ac
11467
11468 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11469
11470         * gst/matroska/matroska-demux.c:
11471         (gst_matroska_demux_parse_blockgroup):
11472           Save position, so that queries give proper return values. Don't
11473           know how this could ever have worked before...
11474
11475 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11476
11477         * configure.ac:
11478           Put additional LAME check inside the conditional.  Fixes #152339
11479
11480 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11481
11482         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
11483         (gst_avi_demux_stream_scan):
11484           Add some more debug. Fix logic error when setting movi offset
11485           while reading index.
11486
11487 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11488
11489         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
11490         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
11491         (gst_avi_demux_process_next_entry):
11492           Add some debugging. Better detection of broken indexes and the
11493           accompanying index recovery. No infinite loops on state changes
11494           when we're still in our loopfunction.
11495
11496 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11497
11498         * configure.ac:
11499           Fix up.
11500
11501 2004-12-22  Archana Shah  <archana.shah@wipro.com>
11502
11503         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11504
11505         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
11506           Normalizing the value before setting
11507         (gst_sunaudiomixer_get_volume):
11508           Normalizing the value after getting. Fixes bug# 161980
11509
11510 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11511
11512         * Makefile.am: Make sure docs gets disted
11513         * docs/Makefile.am: Make sure all needed files get disted
11514         * gst-plugins.spec.in: latest updates
11515
11516 2004-12-22  Wim Taymans  <wim@fluendo.com>
11517
11518         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
11519         Revert patch 1.38 as clock distribution over schedulers does
11520         not work correcly in the core yet.
11521
11522 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11523
11524         * sys/oss/README: remove this file, which predates my birth
11525           (and which content is by far outdated)
11526
11527 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
11528
11529         * Makefile.am:
11530         * configure.ac:
11531         * docs/Makefile.am:
11532         * docs/libs/Makefile.am:
11533         * docs/libs/gst-plugins-libs-docs.sgml:
11534         * docs/libs/gst-plugins-libs-sections.txt:
11535         * docs/libs/tmpl/gstgconf.sgml:
11536         * docs/upload.mak:
11537         * docs/version.entities.in:
11538           Added boilerplate gtk-doc files for plugin-libs documentation.
11539
11540 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11541
11542         * gst/auparse/gstauparse.c: fix int and float audio caps
11543
11544 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11545
11546         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
11547         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
11548           g_assert() can be a macro, don't use #ifdef inside it.
11549
11550 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
11551
11552         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11553
11554         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11555         (gst_videorate_init), (gst_videorate_chain),
11556         (gst_videorate_change_state):
11557           Event handling (fixes #159986).
11558
11559 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11560
11561         * gst-libs/gst/riff/riff-media.c:
11562         (gst_riff_create_video_caps_with_data):
11563           Add BLZ0 (Blizzard's version of DivX) fourcc.
11564
11565 2004-12-18  David Schleef  <ds@schleef.org>
11566
11567         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
11568         portability fix.
11569
11570 2004-12-18  David Schleef  <ds@schleef.org>
11571
11572         * gst/tta/ttadec.h: Disable some header code that isn't used
11573         and clearly isn't portable.
11574
11575 2004-12-18  David Schleef  <ds@schleef.org>
11576
11577         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
11578         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
11579         (avcodec_get_pix_fmt), (avpicture_layout),
11580         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
11581         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
11582         Fix code to not use GCC extensions (and c99 extensions that
11583         Forte does not like.)
11584
11585 2004-12-19  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
11586
11587         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11588
11589         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
11590         (gst_deinterlace_chain):
11591           Rowstride fixes. Fixes #161039.
11592         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
11593         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
11594         (gst_video_crop_getcaps), (gst_video_crop_link),
11595         (gst_video_crop_i420), (gst_video_crop_chain),
11596         (gst_video_crop_change_state):
11597           Rework of negotiation. Actually works now. Fixes #158650.
11598
11599 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11600
11601         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
11602           That was very stupid.
11603
11604 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11605
11606         * gst/matroska/matroska-demux.c:
11607         (gst_matroska_demux_parse_blockgroup):
11608           Fix possible crasher.
11609
11610 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11611
11612         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
11613         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
11614           Lace sizes can be zero.
11615
11616 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11617
11618         * ext/musepack/gstmusepackdec.cpp:
11619           Fetch error return values. Fixes #161624.
11620         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
11621           Really EOS.
11622
11623 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11624
11625         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
11626           Work for truncated (unfinished download etc.) files. Fixes #160514.
11627
11628 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11629
11630         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11631           Fix for integer overflow. Makes #156001 not crash. Probably masks
11632           the real bug.
11633
11634 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11635
11636         * gst/ac3parse/gstac3parse.c: (plugin_init):
11637           Parsers never have ranks. Fixes #159651.
11638
11639 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11640
11641         * gst/playback/gstdecodebin.c: (compare_ranks):
11642           make sure the facotries are ordered the same every time even if they
11643           have the same rank by using the name
11644         * gst/playback/gstdecodebin.c: (find_compatibles):
11645           make sure we don't add factories to the list twice
11646
11647 2004-12-16  David Schleef  <ds@schleef.org>
11648
11649         * configure.ac: look for musepack headers as musepack/*.h
11650         (fixes #159847)
11651         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
11652         * ext/musepack/gstmusepackreader.h: same
11653
11654 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11655
11656         * gst-libs/gst/riff/riff-read.c:
11657         (gst_riff_read_strf_auds_with_data):
11658           Read extradata correctly (fixes #155879).
11659
11660 2004-12-16  David Schleef  <ds@schleef.org>
11661
11662         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
11663         audio.  does _not_ attempt or allow conversion unless channels
11664         is 1 or 2.
11665
11666 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11667
11668         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
11669
11670 2004-12-16  David Schleef  <ds@schleef.org>
11671
11672         * gst/audioscale/gstaudioscale.c: the resample library only
11673         handles 1 or 2 channels.  Change caps to compensate.
11674
11675 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11676
11677         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
11678         (gst_matroska_demux_audio_caps):
11679           Some MPEG-AAC hacks, because else it doesn't work...
11680
11681 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11682
11683         * gst-libs/gst/riff/riff-media.c:
11684         (gst_riff_create_video_caps_with_data),
11685         (gst_riff_create_video_template_caps):
11686           Add h264.
11687
11688 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11689
11690         * gst-libs/gst/audio/Makefile.am:
11691           Try to fix buildbot.
11692
11693 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11694
11695         * gst/tcp/gstmultifdsink.c:
11696           Clean up and uniformize debugging.
11697
11698 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
11699
11700         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11701
11702         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
11703         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
11704         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
11705         (gst_mpeg_demux_change_state):
11706           Reset on ready. Fixes 160276.
11707
11708 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
11709
11710         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11711
11712         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11713         (gst_ffmpegcsp_pad_link):
11714           Fix memleak (#154815).
11715
11716 2004-12-16  James Bowes  <bowes@cs.dal.ca>
11717
11718         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11719
11720         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
11721         (gst_musicbrainz_init), (gst_musicbrainz_chain),
11722         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
11723         * ext/musicbrainz/gsttrm.h:
11724           Add support for using a proxy server when getting a trm id from
11725           the MusicBrainz database (#149613).
11726
11727 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
11728
11729         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11730
11731         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
11732         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
11733           Fix memleaks (#157233).
11734
11735 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
11736
11737         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11738
11739         * gst-libs/gst/resample/resample.c: (gst_resample_close):
11740         * gst-libs/gst/resample/resample.h:
11741         * gst/audioscale/gstaudioscale.c:
11742           Fix memleak (#159215).
11743
11744 2004-12-16  Toni Willberg  <toniw@iki.fi>
11745
11746         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11747
11748         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
11749         * sys/oss/oss_probe.c: (main):
11750           Check for mono/stereo support (similar to samplerate probing),
11751           fixes #159433. Also add missing copyright header to oss_probe.c.
11752
11753 2004-12-15  David Schleef  <ds@schleef.org>
11754
11755         * configure.ac: add audioresample and cairo plugins.  Remove
11756         HAVE_MMX stuff, because it's not used.
11757         * ext/Makefile.am: same
11758         * ext/audioresample/Makefile.am: You are not ready for an
11759         audio resampling element based on audioresample.
11760         * ext/audioresample/gstaudioresample.c:
11761         * ext/audioresample/gstaudioresample.h:
11762         * ext/cairo/Makefile.am: You are not ready for overlay elements
11763         based on cairo.  Don't look too closely, these elements kinda
11764         suck right now.
11765         * ext/cairo/gstcairo.c: new
11766         * ext/cairo/gsttextoverlay.c: new
11767         * ext/cairo/gsttextoverlay.h: new
11768         * ext/cairo/gsttimeoverlay.c: new
11769         * ext/cairo/gsttimeoverlay.h: new
11770         * gst-libs/gst/media-info/media-info-priv.h: fix compile
11771         problem with compilers that don't support variadic macros.
11772
11773 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
11774
11775         Reviewed by:  David Schleef  <ds@schleef.org>
11776
11777         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
11778         Bala, registering sunaudiosrc (oops!), and cleaning up code a
11779         bit.  Also ran indent-gst.
11780         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
11781         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
11782         (gst_sunaudiosrc_setparams):
11783
11784 2004-12-14  David Schleef  <ds@schleef.org>
11785
11786         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
11787         output rate to 16000.  Should fix #160235.
11788
11789 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11790
11791         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11792         Add typefinding for mpeg2 pes streams
11793
11794 2004-12-13  David Schleef  <ds@schleef.org>
11795
11796         * configure.ac:  Applied patch from bug #143659, making default
11797         sources and sinks OS-dependent (for Solaris), and added code
11798         for OS/X.
11799         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
11800
11801 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11802
11803         * gst-libs/gst/riff/riff-media.c:
11804           forgot to add h2.64 to avidemux template caps
11805
11806 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11807
11808         * gst/wavenc/riff.h:
11809         * gst-libs/gst/riff/riff-media.c:
11810         * gst-libs/gst/riff/riff-ids.h:
11811         * gst/avi/gstavimux.c
11812         add 4CC code for VideoSoft h264 in AVI (VSSH)
11813           fixes bug #160655
11814         remove s323 from riff, it's quicktime specific :(
11815
11816 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11817
11818         * gst/asfdemux/README
11819         * gst/wavenc/riff.h
11820         * gst-libs/gst/riff/riff-ids.h
11821         * gst-libs/gst/riff/riff-media.c
11822         * gst/qtdemux/qtdemux.c:
11823           add new 4CC codes for h263 related codecs
11824           fixes partially bug #155163
11825
11826 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
11827
11828         * configure.ac: Update polyaudio requirement to 0.7
11829         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
11830
11831 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11832
11833         * gst/interleave/deinterleave.c:
11834         fix my name's spelling! :)
11835
11836 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
11837
11838         * AUTHORS ChangeLog
11839         * gst/auparse/gstauparse.c
11840         * gst/interleave/deinterleave.c
11841         * gst/law/:
11842                 alaw-decode.c alaw-encode.c
11843                 mulaw-decode.c mulaw-encode.c
11844         * gst/oneton/gstoneton.c
11845         * sys/osxaudio/:
11846                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
11847         * sys/osxvideo/:
11848                 cocoawindow.h cocoawindow.m
11849                 osxvideosink.h osxvideosink.m
11850
11851         put the same mail address for Zaheer Abbas Merali everywhere
11852
11853 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11854
11855         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
11856           Align by packetsize, and assert that we a packet available before
11857           playing. The first makes webstreams work (they often include
11858           trailing padding data in a packet), the second allows pausing a
11859           ASF stream in totem without getting demux errors afterwards.
11860
11861 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11862
11863         * ext/ogg/gstoggdemux.c: (get_relative):
11864           Check for non-NULL before accessing member (end-of-chain).
11865
11866 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11867
11868         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
11869         (cdparanoia_set_property), (cdparanoia_get_property):
11870         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
11871         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
11872         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
11873         (dvdreadsrc_init), (dvdreadsrc_set_property),
11874         (dvdreadsrc_get_property):
11875         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
11876         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
11877           Synchronize property names where not yet the case. Devices are
11878           now device=X, other versions are deprecated (but still exist).
11879           Also use g_free() unconditionally.
11880         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11881         (setup_source), (gst_play_base_bin_get_property):
11882           Expose source.
11883
11884 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11885
11886         * configure.ac: move GCONF macro outside conditional for the am
11887           conditional. Fixes #160439
11888
11889 2004-12-08  David Schleef  <ds@schleef.org>
11890
11891         * tools/gst-visualise-m.m: Switch to elements that currently
11892         exist.
11893
11894 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11895
11896         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
11897           We love wrong commas.
11898
11899 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11900
11901         * gst/matroska/matroska-demux.c:
11902         (gst_matroska_demux_handle_src_query):
11903           Don't set DEFAULT, unsupported - makes length display incorrectly
11904           in some cases.
11905
11906 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11907
11908         * gst/monoscope/README: remove blurb about files being GPL
11909         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
11910         * gst/monoscope/monoscope.c: Change license to BSD with explanation
11911           monoscope is now effectively LGPL licensed
11912
11913 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
11914
11915         * gst/monoscope/README: Update information to be more correct
11916         * gst/monoscope/convolve.c: Relicense to LGPL
11917         * gst/monoscope/convolve.h: Relicense to LGPL
11918
11919 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
11920
11921         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
11922           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
11923         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
11924           set default_duration for mpeg1 audio
11925
11926 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11927
11928         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
11929         * ext/alsa/gstalsa.h:
11930           refactor big chunks of the core caps negotiation code to make it
11931           a lot faster, because people claim it's really slow
11932           (actually, just cache the getcaps when the device is opened)
11933
11934 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11935
11936         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
11937         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
11938         (gst_a52dec_handle_frame), (gst_a52dec_chain),
11939         (gst_a52dec_change_state), (plugin_init):
11940         * ext/a52dec/gsta52dec.h:
11941           Do something useful with timestamps. Make chain-based (since
11942           there's really no reason to be loopbased).
11943         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
11944           Update current_byte/frame correctly.
11945
11946 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11947
11948         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
11949         (gst_ape_demux_stream_init):
11950           Forward tags, too.
11951
11952 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11953
11954         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
11955           Let's make sure we're done typefinding when detecting tags.
11956
11957 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11958
11959         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
11960         (gst_ebml_read_init), (gst_ebml_read_use_event),
11961         (gst_ebml_read_element_id), (gst_ebml_peek_id),
11962         (gst_ebml_read_seek), (gst_ebml_read_skip),
11963         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
11964         (gst_ebml_read_master):
11965         * gst/matroska/ebml-read.h:
11966         * gst/matroska/matroska-demux.c:
11967         (gst_matroska_demux_parse_contents),
11968         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
11969           Disgustingly evil hack for working around INTERRUPT events and
11970           their extremely annoying habit of being a pain in the ass. We
11971           simply peek a cluster before reading any of it.
11972
11973 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11974
11975         * ext/musepack/gstmusepackdec.cpp:
11976           There's also floating point libmusepacks.
11977
11978 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11979
11980         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
11981         (gst_faad_chanpos_to_gst), (gst_faad_chain):
11982           Set DURATION even if source buffer didn't. Also use increasing
11983           timestamps.
11984         * gst-libs/gst/riff/riff-media.c:
11985         (gst_riff_create_audio_caps_with_data):
11986           Block_align can have larger values than 8192.
11987
11988 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11989
11990         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
11991         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
11992         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
11993         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
11994           Fix caps.
11995
11996 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11997
11998         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
11999           Fix logic bug.
12000
12001 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12002
12003         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
12004           Yay, another one.
12005
12006 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12007
12008         * ext/esd/esdsink.c: (gst_esdsink_chain):
12009           Make error actually say something useful (fixes #156798).
12010         * gst-libs/gst/riff/riff-media.c:
12011         (gst_riff_create_video_caps_with_data),
12012         (gst_riff_create_video_template_caps):
12013           Add Intel Video 5.0 fourcc (IV50).
12014
12015 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
12016
12017         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
12018         detection on mono and stereo mp3 files.
12019
12020 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12021
12022         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
12023           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
12024           the contained stream).
12025
12026 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12027
12028         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
12029           Oops, remove debug.
12030
12031 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
12032
12033         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12034
12035         * gst/law/alaw-decode.c: (alawdec_getcaps):
12036         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
12037           Prevent warnings when negotiating caps (fixes #159338).
12038
12039 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12040
12041         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12042         (gst_ffmpegcsp_chain):
12043           Remove old leftover that shouldn't be there...
12044
12045 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
12046
12047         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12048
12049         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
12050           Don't forward DISCONT events (fixes #159684).
12051
12052 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12053
12054         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
12055           Unlink manually since sometimes bin disposal (and therefore
12056           pad unlinking) is delayed, which will cause a new media file
12057           to not be able to start playing instantly.
12058
12059 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12060
12061         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
12062           On mute of an unlinked stream, check for pad availability so
12063           we don't crash on unlinked pad.
12064
12065 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12066
12067         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
12068         (gst_avi_demux_massage_index):
12069           Fix quite humiliating bug in omitting 0-sized index chunks but
12070           forgetting to count them for timestamps.
12071
12072 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12073
12074         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
12075           Actually leave the loop if we failed to sync. Don't crash.
12076
12077 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12078
12079         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
12080         (gst_dvd_demux_process_private):
12081         * gst/mpegstream/gstdvddemux.h:
12082           Fix crash (#159759). Doesn't work, though. :-(.
12083
12084 2004-11-28  Benjamin Otte  <otte@gnome.org>
12085
12086         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
12087           more overwriting protection due to modifying channels one by one
12088           instead of all at once
12089
12090 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12091
12092         * gst/audioconvert/gstchannelmix.c:
12093         (gst_audio_convert_fill_normalize):
12094           Normalize using absolute values.
12095
12096 2004-11-28  Julien MOUTTE  <julien@moutte.net>
12097
12098         * configure.ac:
12099         * ext/Makefile.am:
12100         * ext/directfb/Makefile.am:
12101         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
12102         (gst_directfbvideosink_get_pixel_format),
12103         (gst_directfbvideosink_get_format_from_fourcc),
12104         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
12105         (gst_directfbvideosink_sink_link),
12106         (gst_directfbvideosink_change_state),
12107         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
12108         (gst_directfbvideosink_buffer_alloc),
12109         (gst_directfbvideosink_interface_supported),
12110         (gst_directfbvideosink_interface_init),
12111         (gst_directfbvideosink_navigation_send_event),
12112         (gst_directfbvideosink_navigation_init),
12113         (gst_directfbvideosink_set_property),
12114         (gst_directfbvideosink_get_property),
12115         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
12116         (gst_directfbvideosink_base_init),
12117         (gst_directfbvideosink_class_init),
12118         (gst_directfbvideosink_get_type), (plugin_init):
12119         * ext/directfb/directfbvideosink.h: Adding a first version of
12120         directfbvideosink.
12121         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
12122         more.
12123
12124 2004-11-28  Benjamin Otte  <otte@gnome.org>
12125
12126         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
12127           walk the samples backwards if out_channels > in_channels so we don't
12128           overwrite data
12129
12130 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12131
12132         * gst/audioconvert/Makefile.am:
12133         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
12134         (gst_audio_convert_link), (gst_audio_convert_change_state),
12135         (gst_audio_convert_channels):
12136         * gst/audioconvert/gstchannelmix.c:
12137         (gst_audio_convert_unset_matrix),
12138         (gst_audio_convert_fill_identical),
12139         (gst_audio_convert_fill_compatible),
12140         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
12141         (gst_audio_convert_fill_others),
12142         (gst_audio_convert_fill_normalize),
12143         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
12144         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
12145         * gst/audioconvert/gstchannelmix.h:
12146           Implement a channel mixer.
12147
12148 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
12149
12150         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
12151         * ext/alsa/gstalsa.h:
12152         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
12153         Make alsasink actually honor gst_element_set_clock and use that
12154         clock instead of its internal one.
12155
12156 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
12157
12158         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
12159         (gst_play_base_bin_change_state): nullify source and decoder when
12160         going from READY to NULL so that we don't try to do weird stuff with
12161         them when going from NULL to READY
12162         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
12163         instead of g_object_unref
12164         (gen_video_element), (gen_audio_element): more refcounting fixes, now
12165         it should be correct
12166         (gst_play_bin_change_state): don't call remove_sinks if we are
12167         currently disposing the object
12168
12169 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12170
12171         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
12172           Don't forget bass if it's there. Else left channel is silent...
12173
12174 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12175
12176         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
12177         (gst_a52dec_change_state):
12178           Don't do sample adjusting anymore, we use float audio now.
12179         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
12180           Don't fixate to non-existing properties.
12181
12182 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12183
12184         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
12185         (gst_a52dec_change_state):
12186           Advertise that we can do surround sound.
12187
12188 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12189
12190         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
12191           Add buffer-frames=0.
12192         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
12193         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
12194         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
12195         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
12196         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
12197         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
12198         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
12199         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
12200         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
12201         * ext/dvdread/dvdreadsrc.h:
12202           Add seeking, querying for bytes, sectors, title, angle and
12203           chapter. Handle multiple chapters. Relicense to LGPL because
12204           Billy agreed on that (thanks Billy!).
12205
12206 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
12207
12208         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
12209         call parent dispose method
12210
12211 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
12212
12213         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
12214         (gst_audio_clock_get_internal_time):
12215         Fix active <-> inactive transitions: ensure time value always
12216         grows and avoid abrupt value changes.
12217
12218 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
12219
12220         * configure.ac:
12221         * gst/tta/Makefile.am:
12222         * gst/tta/crc32.h:
12223         * gst/tta/filters.h:
12224         * gst/tta/gsttta.c:
12225         * gst/tta/gstttadec.c:
12226         * gst/tta/gstttadec.h:
12227         * gst/tta/gstttaparse.c:
12228         * gst/tta/gstttaparse.h:
12229         * gst/tta/ttadec.h:
12230           added TTA parser and decoder
12231
12232 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12233
12234         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12235         (probe_triggered), (check_queue), (buffer_underrun),
12236         (buffer_running), (buffer_overrun), (gen_source_element),
12237         (setup_source):
12238         * gst/playback/gstplaybasebin.h:
12239           Implement buffering. Needs some more work.
12240
12241 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12242
12243         * ext/theora/theoradec.c: (theora_dec_chain):
12244           Fix ilog mask range overflow.
12245
12246 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12247
12248         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
12249           Don't omit the last (which in case of dmix is the only :) )
12250           channel count. Don't set channels if <= 2.
12251
12252 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
12253
12254         * gst/playback/gstplaybin.c: (gen_video_element),
12255         (gen_audio_element): Removed 2 obsolete comments
12256
12257 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
12258
12259         * ext/vorbis/oggvorbisenc.c
12260         * ext/vorbis/vorbisenc.c :
12261           change description fields of those plugins to differentiate them
12262           (pitivi show Encoders by description, they had the same one)
12263
12264 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
12265
12266         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12267
12268         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
12269         (gst_play_bin_set_property), (gen_video_element),
12270         (gen_audio_element):
12271           Refcounting fixes for provided audio-/videosinks.
12272
12273 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12274
12275         * gst/playback/gstplaybin.c: (gen_video_element),
12276         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
12277           Don't reference all sinks, but only the video- and audiosinks.
12278           The vis. element should be disposed when we're done with it.
12279           We don't have any reason to keep it around. This fixes warnings
12280           when reusing playbin for playing multiple audio files with
12281           vis. enabled. Also release audio device on pause - idea stolen
12282           from Rhythmbox.
12283
12284 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12285
12286         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
12287         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
12288         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
12289         * ext/alsa/gstalsaplugin.c: (plugin_init):
12290         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
12291         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
12292         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
12293         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
12294         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
12295         (gst_faad_change_state), (plugin_init):
12296         * ext/faad/gstfaad.h:
12297         * ext/vorbis/vorbis.c: (plugin_init):
12298         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12299         * gst-libs/gst/audio/Makefile.am:
12300         * gst-libs/gst/audio/audio.c: (plugin_init):
12301         * gst-libs/gst/audio/multichannel.c:
12302         (gst_audio_check_channel_positions),
12303         (gst_audio_get_channel_positions),
12304         (gst_audio_set_channel_positions),
12305         (gst_audio_set_structure_channel_positions_list),
12306         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
12307         (gst_audio_fixate_channel_positions):
12308         * gst-libs/gst/audio/multichannel.h:
12309         * gst-libs/gst/audio/testchannels.c: (main):
12310         * gst/audioconvert/gstaudioconvert.c:
12311         (gst_audio_convert_class_init), (gst_audio_convert_init),
12312         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
12313         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
12314         (gst_audio_convert_fixate), (gst_audio_convert_channels):
12315         * gst/audioconvert/plugin.c: (plugin_init):
12316           Surround sound support.
12317
12318 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12319
12320         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
12321           Fix position for discont if we're close as well. Nitpicking, but
12322           saves a few milliseconds of extra waiting or skipping.
12323
12324 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12325
12326         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
12327           We sometimes need parsers for playback, so add those too.
12328
12329 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12330
12331         * configure.ac:
12332         * gst/apetag/Makefile.am:
12333         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
12334         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
12335         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
12336         (gst_ape_demux_get_src_query_types),
12337         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
12338         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
12339         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
12340         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
12341         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
12342         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
12343         (gst_ape_demux_change_state):
12344         * gst/apetag/apedemux.h:
12345         * gst/apetag/apetag.c: (plugin_init):
12346         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
12347         (plugin_init):
12348           APE v1/2 tag reader plus typefind function.
12349
12350 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12351
12352         * configure.ac:
12353         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12354         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
12355           Remove hacks for older core. Require newer core version
12356           accordingly.
12357
12358 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12359
12360         * gst/cdxaparse/Makefile.am:
12361         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
12362         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
12363         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
12364         * gst/cdxaparse/gstcdxaparse.h:
12365         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
12366         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
12367         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
12368         (gst_cdxastrip_get_src_query_types),
12369         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
12370         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
12371         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
12372         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
12373         * gst/cdxaparse/gstcdxastrip.h:
12374           SVCD/VCD header stripping separated from CDXA image parsing.
12375         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
12376         (plugin_init):
12377           Add VCD/SVCD header typefinding for VCD/SVCD.
12378         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
12379         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
12380         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
12381         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
12382         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
12383         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
12384         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
12385         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
12386         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
12387         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
12388         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
12389         * sys/vcd/vcdsrc.h:
12390           Fix up, add seeking, querying, URI interface. Works in totem now.
12391
12392 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12393
12394         * configure.ac:
12395           back to CVS
12396
12397 === release 0.8.6 ===
12398
12399 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12400
12401         * NEWS:
12402         * RELEASE:
12403         * configure.ac:
12404         * po/af.po:
12405         * po/az.po:
12406         * po/cs.po:
12407         * po/en_GB.po:
12408         * po/hu.po:
12409         * po/it.po:
12410         * po/nb.po:
12411         * po/nl.po:
12412         * po/or.po:
12413         * po/sq.po:
12414         * po/sr.po:
12415         * po/sv.po:
12416         * po/uk.po:
12417           releasing 0.8.6, "IOU Love"
12418
12419 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12420
12421         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
12422
12423         * gst/playback/gstplaybasebin.c:
12424           Fix unplayable files error handling.  Fixes #158365
12425
12426 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12427
12428         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
12429
12430         * gst/typefind/gsttypefindfunctions.c:
12431           Fix broken mp3 typefinding.  Fixes #158375
12432
12433 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12434
12435         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
12436
12437         * ext/ogg/gstoggdemux.c:
12438           Fix sync on broken files.  Fixes #158976
12439
12440 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12441
12442         patch by: Edward Hervey <bilboed@bilboed.com>
12443
12444         * ext/libpng/gstpngenc.c:
12445           Copy over buffer properties.  Fixes #158832
12446
12447 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12448
12449         patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
12450
12451         * ext/dvdread/dvdreadsrc.c:
12452           Fixes invalid reads (#158462)
12453
12454 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12455
12456         * sys/v4l/gstv4lsrc.c:
12457         * sys/v4l/gstv4lsrc.h:
12458         * sys/v4l/v4lsrc_calls.c:
12459           Probe less and cache it.  Fixes #159187.
12460
12461 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12462
12463         * gst/videorate/gstvideorate.c:
12464           Handle all video formats. Fixes #159186.
12465
12466 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
12467         * gst/synaesthesia/gstsynaesthesia.c:
12468         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
12469         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
12470         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
12471         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
12472         (gst_synaesthesia_change_state), (plugin_init):
12473         Fix up synaesthesia to work under different samplerates/ buffer sizes.
12474         Force 320x200 output, as that's the only thing the underlying
12475         synaesthesia implementation supports. Still needs to be made
12476         re-entrant.
12477
12478 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12479
12480         * configure.ac:
12481           Fix mpeg2enc configure check (similar to mplex check below).
12482
12483 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
12484
12485         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12486
12487         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12488           Fix for gcc-2.95 (fixes #158221).
12489
12490 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12491
12492         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12493           Re-add clock distribution hack (until new core is released).
12494           Fixes #158125.
12495
12496 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
12497         * configure.ac:
12498           fix mplex configure check segfaulting on some systems (bug #140994)
12499
12500 2004-11-13  Benjamin Otte  <otte@gnome.org>
12501
12502         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
12503           add debugging
12504         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
12505           do a wait when we enter the loop func with no data available to
12506           write instead of getting into an 100% CPU loop by just returning and
12507           being called again by the scheduler
12508
12509 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
12510
12511         * configure.ac:
12512         * ext/libvisual/visual.c: (gst_visual_get_type),
12513         (libvisual_log_handler), (gst_visual_getcaps),
12514         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
12515         (plugin_init):
12516           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
12517         * ext/smoothwave/Makefile.am:
12518         * ext/smoothwave/demo-osssrc.c: (main):
12519         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
12520         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
12521         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
12522         (plugin_init):
12523         * ext/smoothwave/gstsmoothwave.h:
12524           Make gstsmoothwave a working element in the 20th century.
12525
12526         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
12527           Fix incorrect link function
12528
12529 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12530
12531         * gst/volume/gstvolume.c:
12532           Allow buffer-frames=0.
12533
12534 2004-11-12 Iain <iaingnome@gmail.com>
12535
12536         * configure.ac: Check for polypaudio
12537
12538         * ext/Makefile.am: Build the polyp dir
12539
12540         * ext/polyp: The polypsink sources.
12541
12542 2004-10-30 Iain <iaingnome@gmail.com>
12543
12544         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
12545         caps to reflect the new number of channels.
12546
12547 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12548
12549         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
12550           Fix for negotiation order problem. This would show when the
12551           ALSA loopfuction was called before any other function. ALSA
12552           wouldn't do anything because we're not negotiated yet, leading
12553           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
12554
12555 2004-11-11  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12556
12557         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12558
12559         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
12560           No warnings (#157986).
12561
12562 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12563
12564         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12565           Prefer apev1/2 and id3v1 (at end of file) over musepack.
12566
12567 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12568
12569         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
12570           Signal no-more-pads (so it works in playbin).
12571
12572 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12573
12574         * ext/musepack/gstmusepackreader.cpp:
12575           Workaround for older core.
12576
12577 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12578
12579         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
12580           Actually test for odd width/height rather than testing whether
12581           a temporary variable that was 0 before we subtracted 1 is now
12582           not equal to zero (which it always is).
12583
12584 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12585
12586         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
12587         Fix compilation if HAVE_XVIDEO is not defined
12588
12589 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12590
12591         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
12592         Fix compilation if HAVE_XVIDEO is not defined
12593
12594 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
12595
12596         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
12597         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
12598         (gst_goom_change_state), (plugin_init):
12599         Use the bytestream adapter so goom doesn't depend on the input
12600         buffer size.
12601         Add a debug category
12602
12603 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12604
12605         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
12606           Only set hardware parameters *after* negotiation. Before
12607           negotiation, it will set ANY and that seems to cause crashes
12608           (see e.g. #151288, #153227).
12609
12610 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12611
12612         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
12613           This seems to be antique leftover. It needs to pass error
12614           checking.
12615         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
12616         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
12617         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
12618         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
12619           Fix GstXOverlay implementation (#151059).
12620
12621 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12622
12623         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
12624           Don't assert (#157853).
12625
12626 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12627
12628         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
12629           Fix bytes/samples confustion.
12630         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
12631           Fix for underrun (#144389).
12632
12633 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12634
12635         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
12636           Disable halfway-seek for pending release (since it needs a new
12637           core release).
12638
12639 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12640
12641         * sys/v4l/gstv4lsrc.c:
12642         * sys/v4l/gstv4lsrc.h:
12643         * sys/v4l/v4lsrc_calls.c:
12644           add autoprobe-fps property so we can separate autoprobing parts
12645
12646 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12647
12648         * sys/v4l/gstv4lsrc.c:
12649         * sys/v4l/v4lsrc_calls.c:
12650         initialise fourcc to catch unset fourcc's, and debug
12651
12652 2004-11-09  Wim Taymans  <wim@fluendo.com>
12653
12654         * gst/playback/README:
12655         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12656         * gst/playback/gstplaybin.c: (gst_play_bin_init),
12657         (gst_play_bin_dispose), (gst_play_bin_set_property),
12658         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
12659         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
12660         (gst_play_bin_get_formats), (gst_play_bin_convert),
12661         (gst_play_bin_get_query_types), (gst_play_bin_query):
12662         Cleanups and some more documentation.
12663
12664 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
12665
12666         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
12667         (gst_cacasink_init), (gst_cacasink_chain):
12668         * ext/libcaca/gstcacasink.h:
12669         Cacasink inherits from VideoSink, so let that store the clock.
12670
12671 2004-11-09  Wim Taymans  <wim@fluendo.com>
12672
12673         * gst/playback/README:
12674         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
12675         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
12676         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
12677         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
12678         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
12679         (setup_sinks):
12680         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
12681         (gst_stream_info_is_mute), (gst_stream_info_set_property):
12682         * gst/playback/gststreaminfo.h:
12683         Updated README.
12684         Only switch groups if all streams have muted (EOSed).
12685         Send Tags in sync with the stream playback instead of in
12686         the playback/preroll phase.
12687         Some cleanups, free the fakesrc elements.
12688
12689 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12690
12691         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
12692           buffer-frames property was missing
12693         * ext/arts/gst_arts.c:
12694           rate missing from sinkcaps
12695         * ext/audiofile/gstafparse.c:
12696         * ext/audiofile/gstafsink.c:
12697         * ext/audiofile/gstafsrc.c:
12698         * ext/swfdec/gstswfdec.c:
12699           int audio doesn't know buffer-frames
12700         * ext/cdparanoia/gstcdparanoia.c:
12701           int audio doesn't know chunksize either
12702         * ext/nas/nassink.c:
12703           it's endianness, not endianess
12704         * gst-libs/gst/audio/audio.h:
12705           make float standard pad template caps really describe float
12706         * gst/law/mulaw.c: (linear_factory):
12707           signed only, please
12708         * gst/mpegstream/gstdvddemux.c:
12709           widths of 20 are not valid
12710
12711 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
12712
12713         Submitted by: Luca Ferretti <elle.uca@infinito.it>
12714
12715         * po/LINGUAS:
12716         * po/it.po:
12717           Add Italian
12718
12719 2004-11-08  Wim Taymans  <wim@fluendo.com>
12720
12721         * gst/playback/README:
12722         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12723         * gst/playback/gstplaybasebin.c: (probe_triggered),
12724         (gst_play_base_bin_change_state):
12725         Updated README, added more comments for fixmes etc..
12726
12727 2004-11-08  Wim Taymans  <wim@fluendo.com>
12728
12729         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12730         We can remove this hack now.
12731
12732 2004-11-08  Wim Taymans  <wim@fluendo.com>
12733
12734         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
12735         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12736         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12737         Only mix AYUV for maximum quality.
12738
12739 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12740
12741         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
12742         (gst_ogg_demux_push), (gst_ogg_pad_push):
12743           Let's act as if we're synchronized now! :).
12744         * ext/theora/theoradec.c: (theora_dec_chain):
12745           Add some debug.
12746
12747 2004-11-08  Wim Taymans  <wim@fluendo.com>
12748
12749         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12750         (gst_alpha_set_property), (gst_alpha_sink_link),
12751         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
12752         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
12753         (gst_alpha_init_params), (gst_alpha_chain):
12754         Implement alpha functions for AYUV too, this increases
12755         accuracy quite a bit.
12756
12757 2004-11-08  Wim Taymans  <wim@fluendo.com>
12758
12759         * gst/ffmpegcolorspace/avcodec.h:
12760         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12761         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
12762         (gst_ffmpegcsp_avpicture_fill):
12763         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12764         (gst_ffmpegcsp_caps_remove_format_info):
12765         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12766         (shrink12), (img_get_alpha_info), (deinterlace_line),
12767         (deinterlace_line_inplace):
12768         * gst/ffmpegcolorspace/imgconvert_template.h:
12769         Added AYUV colorspace and handle RGBA a bit more respectful.
12770
12771 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12772
12773         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12774           Actually always send a discont (cornercase when resending the
12775           same serial-tagged chain twice).
12776
12777 2004-11-08  Julien MOUTTE  <julien@moutte.net>
12778
12779         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
12780         (gst_ximagesink_finalize):
12781         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
12782         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
12783
12784 2004-11-08  Wim Taymans  <wim@fluendo.com>
12785
12786         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
12787         Don't segfault on NULL data.
12788
12789 2004-11-08  Wim Taymans  <wim@fluendo.com>
12790
12791         * gst/playback/gstdecodebin.c: (unlinked):
12792         * gst/playback/gstplay-marshal.list:
12793         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12794         (gst_play_base_bin_init), (group_create), (get_active_group),
12795         (get_building_group), (group_destroy), (group_commit),
12796         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
12797         (add_element_stream), (no_more_pads), (probe_triggered),
12798         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
12799         (state_change), (setup_source), (gst_play_base_bin_get_property),
12800         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
12801         (gst_play_base_bin_link_stream),
12802         (gst_play_base_bin_get_streaminfo):
12803         * gst/playback/gstplaybasebin.h:
12804         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12805         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
12806         Add support for chained ogg files. Prepare for playlist
12807         support. This patch introduces the concept of pad groups, which
12808         together compose one playable media file.
12809
12810 2004-11-07  David Schleef  <ds@schleef.org>
12811
12812         * testsuite/gst-lint: Check for pad templates that aren't statically
12813         scoped.
12814
12815 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12816
12817         * configure.ac:
12818         * ext/Makefile.am:
12819         * ext/musepack/Makefile.am:
12820         * ext/musepack/gstmusepackdec.cpp:
12821         * ext/musepack/gstmusepackdec.h:
12822         * ext/musepack/gstmusepackreader.cpp:
12823         * ext/musepack/gstmusepackreader.h:
12824           Add musepack decoder.
12825         * ext/faad/gstfaad.c: (gst_faad_base_init):
12826           Make pad templates static.
12827         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
12828         (plugin_init):
12829           Add musepack typefinder, make mp3 typefinding work halfway stream,
12830           which doesn't actually work yet because id3demux doesn't implement
12831           _get_length().
12832
12833 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12834
12835         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
12836         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
12837           Fix interrupt event handling (#144436).
12838
12839 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12840
12841         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
12842           Hide unused glory.
12843
12844 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12845
12846         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12847
12848         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
12849           Fix weird caps (#157548).
12850
12851 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12852
12853         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12854
12855         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
12856           Add missing NULL terminator (#157543).
12857
12858 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12859
12860         * gst/tcp/gsttcp.h:
12861         * gst/tcp/gsttcpclientsink.c:
12862         * gst/tcp/gsttcpclientsrc.c:
12863         * gst/tcp/gsttcpserversink.c:
12864         * gst/tcp/gsttcpserversrc.c:
12865           ports can go up to 65535.  Move common defines to gsttcp.h
12866
12867 2004-11-05  Wim Taymans  <wim@fluendo.com>
12868
12869         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
12870         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
12871         Added two more colorspaces.
12872
12873 2004-11-05  Wim Taymans  <wim@fluendo.com>
12874
12875         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12876         (gst_ffmpegcsp_avpicture_fill):
12877         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12878         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
12879         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
12880         More stride fixes.
12881
12882 2004-11-05  Wim Taymans  <wim@fluendo.com>
12883
12884         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
12885         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
12886         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12887         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
12888         (gst_videomixer_loop):
12889         More stride fixes.
12890
12891 2004-11-05  Benjamin Otte  <otte@gnome.org>
12892
12893         * ext/mad/gstmad.c: (gst_mad_chain):
12894           don't overflow data buffer. Flush not needed sync data when syncing
12895           failed.
12896
12897 2004-11-04  Wim Taymans  <wim@fluendo.com>
12898
12899         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12900         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
12901         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
12902         (gst_alpha_init_params), (gst_alpha_chain),
12903         (gst_alpha_change_state):
12904         Updated the chroma keying algorithm with something more
12905         sophisticated.
12906
12907 2004-11-03  Wim Taymans  <wim@fluendo.com>
12908
12909         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12910         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12911         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12912         Fix stride issues. Does not completely work for odd
12913         heights.
12914
12915 2004-11-03  Wim Taymans  <wim@fluendo.com>
12916
12917         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12918         (gst_alpha_chroma_key), (gst_alpha_chain):
12919         Fix stride issues. Does not completely work for odd
12920         heights.
12921
12922 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
12923
12924         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
12925         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
12926         leak fixes
12927
12928 2004-11-03  Wim Taymans  <wim@fluendo.com>
12929
12930         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12931         (gst_ffmpegcsp_avpicture_fill):
12932         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12933         (avpicture_alloc):
12934         * gst/ffmpegcolorspace/imgconvert_template.h:
12935         Use correct _fill function to get correct strides.
12936
12937 2004-11-02  David Schleef  <ds@schleef.org>
12938
12939         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
12940         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
12941         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
12942         Change all g_print()s to debugging.  Add a bunch of consistency
12943         checks.
12944
12945 2004-11-02  Wim Taymans  <wim@fluendo.com>
12946
12947         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12948         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
12949         (unlinked), (no_more_pads), (close_link):
12950         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12951         (unknown_type), (add_element_stream), (new_decoded_pad),
12952         (removed_decoded_pad), (setup_source):
12953         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
12954         (gst_stream_info_class_init), (gst_stream_info_init),
12955         (gst_stream_info_new), (gst_stream_info_dispose),
12956         (stream_info_mute_pad), (gst_stream_info_set_property),
12957         (gst_stream_info_get_property):
12958         * gst/playback/gststreaminfo.h:
12959         Fix playback of multiple files.
12960         a slightly different approach to handling dynamic pad removals.
12961         This one only looks at pads that we have linked.
12962
12963 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
12964
12965         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
12966         free" warning from libc.
12967
12968 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12969
12970         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12971         (get_unconnected_element), (remove_starting_from), (pad_removed),
12972         (close_link):
12973           Implement support for dynamic pad changing. We listen to "live"
12974           pad removals (i.e. while playing) and re-setup autoplugging
12975           after that. Playbasebin/playbin need some more work for this
12976           to finally work, but decodebin supports (and replugs) chained
12977           ogg now.
12978
12979 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
12980
12981         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
12982         (gst_alsa_finalize):
12983         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
12984         (gst_cdaudio_finalize):
12985         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
12986         (cdparanoia_finalize):
12987         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
12988         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
12989         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
12990         (dvdreadsrc_finalize):
12991         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
12992         (gst_flacdec_finalize):
12993         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
12994         (gst_flacenc_finalize):
12995         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
12996         (gst_gnomevfssink_finalize):
12997         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
12998         (gst_gnomevfssrc_finalize):
12999         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
13000         (gst_fameenc_finalize):
13001         * ext/nas/nassink.c: (gst_nassink_class_init),
13002         (gst_nassink_finalize):
13003         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
13004         (gst_sdlvideosink_class_init):
13005         * ext/sndfile/gstsf.c: (gst_sf_dispose):
13006         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
13007         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
13008         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
13009         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
13010         (gst_x_window_listener_dispose):
13011         * gst/audioscale/gstaudioscale.c:
13012         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
13013         (play_on_demand_finalize):
13014         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
13015         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
13016         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
13017         (cdplayer_finalize):
13018         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
13019         (gst_glimagesink_class_init):
13020         * sys/oss/gstosselement.c: (gst_osselement_class_init),
13021         (gst_osselement_finalize):
13022         * sys/oss/gstosssink.c: (gst_osssink_dispose):
13023         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
13024         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
13025           Fixes a bunch of problems with finalize and dispose functions,
13026           either assumptions that dispose is only called once, or not calling
13027           the parent class dispose/finalize function
13028
13029 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
13030
13031         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
13032           added two api precondition guards
13033           use g_strdup with getenv to fix crash when using ENVVAR
13034
13035 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
13036         * ext/esd/esdsink.c: (gst_esdsink_class_init),
13037         (gst_esdsink_finalize):
13038         Use a finalize function, not dispose, and more importantly,
13039         call the parent class finalize function too
13040
13041 2004-11-01  Johan Dahlin  <johan@gnome.org>
13042
13043         * ext/ogg/gstoggdemux.c:
13044         * gst/tags/gstvorbistag.c:
13045         Plug leaks.
13046
13047 2004-10-31  Benjamin Otte  <otte@gnome.org>
13048
13049         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
13050           lotsa memleaks today. But they're all small...
13051
13052 2004-10-31  Benjamin Otte  <otte@gnome.org>
13053
13054         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
13055           another memleak crushed
13056
13057 2004-10-31  Benjamin Otte  <otte@gnome.org>
13058
13059         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
13060           fix memleak
13061
13062 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13063
13064         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
13065           Hack to prevent crash when going to READY inside signal handler
13066           while this function is active.
13067
13068 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13069
13070         * gst/ffmpegcolorspace/Makefile.am:
13071         * gst/ffmpegcolorspace/avcodec.h:
13072         * gst/ffmpegcolorspace/common.h:
13073         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
13074         * gst/ffmpegcolorspace/dsputil.h:
13075         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
13076         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13077         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
13078         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
13079         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
13080         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
13081         (gst_ffmpegcsp_avpicture_fill):
13082         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
13083         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13084         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
13085         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
13086         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
13087         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
13088         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
13089         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
13090         * gst/ffmpegcolorspace/imgconvert.c:
13091         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
13092         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
13093         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
13094         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
13095         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
13096         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
13097         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
13098         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
13099         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
13100         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
13101         (grow21), (grow22), (grow41), (grow44), (conv411),
13102         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
13103         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
13104         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
13105         (avpicture_free), (is_yuv_planar), (img_convert),
13106         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
13107         (deinterlace_line_inplace), (deinterlace_bottom_field),
13108         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
13109         * gst/ffmpegcolorspace/imgconvert_template.h:
13110         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
13111         * gst/ffmpegcolorspace/mmx.h:
13112         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
13113         (av_fast_realloc), (av_mallocz_static), (av_free_static),
13114         (av_freep), (avcodec_get_context_defaults),
13115         (avcodec_alloc_context), (avcodec_init):
13116           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
13117           handling plus update from ffmpeg CVS. Large clean-up.
13118
13119 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13120
13121         * gst/playback/Makefile.am:
13122           We need the marshallers for decodebin, too.
13123
13124 2004-10-30  David Schleef  <ds@schleef.org>
13125
13126         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
13127           quicktime typefinding work with 64-bit offsets.
13128
13129 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
13130
13131         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
13132           Set EOS on the element when processing an EOS event.
13133         * ext/speex/gstspeexdec.h:
13134         * ext/speex/gstspeexenc.h:
13135           Only keep a const ptr to the mode
13136         * gst-libs/gst/riff/riff-media.c:
13137         (gst_riff_create_audio_caps_with_data),
13138         (gst_riff_create_audio_template_caps):
13139           Allow WMAV3, with up to 6 channels.
13140         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
13141           Don't call gst_pad_set_event_function on a sink pad.
13142         * gst/mpegstream/gstdvddemux.c:
13143         (gst_dvd_demux_get_subpicture_stream),
13144         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
13145           Copy the explicit caps that were set across to the cur_* pads,
13146           instead of trying to use a possibly non-existent negotiated caps.
13147           Reset the type of subpicture pads to UNKNOWN after calling
13148           init_stream, so that the caps get set.
13149
13150 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
13151
13152         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13153
13154         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
13155           Don't touch buffer if it is of size 0 (fixes #151064).
13156
13157 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13158
13159         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
13160           Synchronized discont handling.
13161
13162 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13163
13164         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
13165         (gst_ogg_demux_push):
13166           Make seeking sort-of exact again (fixes #156387).
13167
13168 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13169
13170         * gst/playback/gstplaybasebin.c: (unknown_type),
13171         (add_element_stream), (new_decoded_pad),
13172         (gst_play_base_bin_change_state):
13173         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
13174         (gst_stream_info_init), (gst_stream_info_new),
13175         (gst_stream_info_dispose), (gst_stream_info_get_property):
13176         * gst/playback/gststreaminfo.h:
13177           Make caps explicitely available. Makes testing for unsupported
13178           types possible. Improves error reporting.
13179
13180 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13181
13182         * gst/audioconvert/gstaudioconvert.c:
13183         (gst_audio_convert_buffer_to_default_format):
13184           Really don't touch read-only buffers (#156563).
13185
13186 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
13187
13188         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13189
13190         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
13191           Fix memleak (#155223).
13192
13193 2004-10-29  Wim Taymans  <wim@fluendo.com>
13194
13195         * gst/tcp/.cvsignore:
13196         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13197         (gst_multifdsink_class_init), (gst_multifdsink_init),
13198         (gst_multifdsink_add), (gst_multifdsink_remove),
13199         (gst_multifdsink_remove_client_link), (is_sync_frame),
13200         (gst_multifdsink_new_client),
13201         (gst_multifdsink_handle_client_write),
13202         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13203         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
13204         (gst_multifdsink_get_property):
13205         * gst/tcp/gstmultifdsink.h:
13206         Added burst on connect sync_method, deprecated sync_clients,
13207         streamlined the sync code some more.
13208
13209 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13210
13211         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
13212         (gst_play_base_bin_change_state):
13213           Improve error reporting.
13214
13215 2004-10-28  Wim Taymans  <wim@fluendo.com>
13216
13217         * gst/tcp/Makefile.am:
13218         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
13219         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
13220         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
13221         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
13222         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
13223         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
13224         (gst_fdset_wait):
13225         Added more locks around fdset structures. Fixed/reworked
13226         the poll array resizing code.
13227         Added stress test for fdset.
13228
13229 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13230
13231         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
13232         fix build
13233
13234 2004-10-28  Benjamin Otte  <otte@gnome.org>
13235
13236         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
13237           fix link function to always query channels and query width for
13238           floats
13239         * configure.ac:
13240           add equalizer dir
13241         * gst/equalizer/Makefile.am:
13242         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
13243         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
13244         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
13245         (arg_to_scale), (setup_filter),
13246         (gst_iir_equalizer_compute_frequencies),
13247         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
13248         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
13249         (plugin_init):
13250           add an equalizer
13251
13252 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
13253
13254         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
13255
13256         * po/LINGUAS:
13257         * po/nb.po:
13258           Added Norwegian Bokmaal translation
13259
13260 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13261
13262         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
13263           Don't break on options (fixes #156488).
13264
13265 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
13266
13267         * configure.ac:
13268         * ext/cdaudio/Makefile.am:
13269         * sys/Makefile.am:
13270           fix build on older automake
13271
13272 2004-10-26  Wim Taymans  <wim@fluendo.com>
13273
13274         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
13275         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
13276         Allow a little margin when negotiating the framerate.
13277
13278 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
13279
13280         * gst/level/gstlevel.c:
13281           synchonised naming of pads and pad-templates
13282
13283 2004-10-26  Wim Taymans  <wim@fluendo.com>
13284
13285         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
13286         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
13287         (_find_streams_check), (gst_ogg_demux_push):
13288         Fix EOS again. Needs to be done in a better way. We should not
13289         remove the pad if there is no new chained stream.
13290
13291 2004-10-26 Iain <iaingnome@gmail.com>
13292
13293         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
13294         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
13295         of the caps.
13296         * gst/interleave/interleave.c (interleave_class_init): Hook up release
13297         pad.
13298         (interleave_release_pad): Remove the pad.
13299         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
13300         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
13301         the set device.
13302         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
13303         attrs
13304         (gst_xvimagesink_xcontext_clear): Free the xcontext.
13305         (gst_xvimagesink_finalize): Free the par.
13306
13307 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13308
13309         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
13310         (gst_avimux_stop_file):
13311           First calculate the rate, and only then use it. Hdr.rate is a
13312           multiple and not a derivative of hdr.scale. Scale is not the
13313           same as blockalign but is solely related to rate.
13314
13315 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13316
13317         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
13318         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
13319           Implement seeking.
13320
13321 2004-10-25  James Henstridge  <james@jamesh.id.au>
13322
13323         Reviewed by:  David Schleef  <ds@schleef.org>
13324
13325         * examples/gstplay/player.c: (got_stream_length), (main):
13326         * examples/seeking/cdplayer.c: (update_scale):
13327         * examples/seeking/seek.c: (format_value), (update_scale):
13328         * examples/seeking/spider_seek.c: (format_value), (update_scale),
13329         (stop_seek):
13330         Build fixes on AMD64.
13331
13332 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13333
13334         reviewed by: Ronald Bultje <rbultje at gnome dot org>
13335
13336         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
13337         Fix for some v4l cards which hang in v4lsrc
13338
13339 2004-10-25  Wim Taymans  <wim@fluendo.com>
13340
13341         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
13342         (gst_ogg_demux_push), (gst_ogg_chains_clear):
13343         Make sure to remove the pad when a new chain is
13344         encountered. Set some vars to NULL so we don't try
13345         to reference freed memory.
13346
13347 2004-10-25  Wim Taymans  <wim@fluendo.com>
13348
13349         * examples/seeking/Makefile.am:
13350         * examples/seeking/cdplayer.c: (update_scale):
13351         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
13352         * examples/seeking/playbin.c: (make_playerbin_pipeline),
13353         (format_value), (update_scale), (iterate), (start_seek),
13354         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
13355         (print_usage), (main):
13356         Added some more examples, update others.
13357
13358 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13359
13360         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
13361         * ext/speex/gstspeexdec.c: (speex_dec_chain):
13362         * ext/theora/theoradec.c: (theora_dec_chain):
13363         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13364           Add codec-name metadata.
13365
13366 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
13367
13368         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13369
13370         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
13371         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
13372         * ext/alsa/gstalsamixertrack.h:
13373         * po/POTFILES.in:
13374           ALSA mixer track label internationalization (#154054).
13375
13376 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13377
13378         * ext/theora/theoradec.c: (theora_dec_chain):
13379           Export bitrate as metadata.
13380
13381 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13382
13383         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
13384         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
13385         * ext/alsa/gstalsamixertrack.h:
13386           Fix names, fix loop.
13387
13388 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13389
13390         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
13391         (speex_dec_convert):
13392           sinkconvert function so oggdemux can get the file length (totem).
13393
13394 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
13395
13396         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13397
13398         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
13399           Don't push incomplete packets.
13400         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
13401           Fix MPEG-4 audio typefinding.
13402
13403 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13404
13405         * sys/v4l/Makefile.am:
13406         * sys/v4l/gstv4l.c: (plugin_init):
13407         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
13408         (gst_v4lelement_init), (gst_v4lelement_dispose),
13409         (gst_v4lelement_change_state):
13410         * sys/v4l/gstv4lelement.h:
13411         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
13412         (gst_v4l_xoverlay_close), (idle_refresh),
13413         (gst_v4l_xoverlay_set_xwindow_id):
13414         * sys/v4l/gstv4lxoverlay.h:
13415         * sys/v4l/v4l-overlay_calls.c:
13416         * sys/v4l/v4l_calls.h:
13417         * sys/v4l2/Makefile.am:
13418         * sys/v4l2/gstv4l2.c: (plugin_init):
13419         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
13420         (gst_v4l2element_init), (gst_v4l2element_dispose),
13421         (gst_v4l2element_change_state):
13422         * sys/v4l2/gstv4l2element.h:
13423         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
13424         (gst_v4l2_xoverlay_close), (idle_refresh),
13425         (gst_v4l2_xoverlay_set_xwindow_id):
13426         * sys/v4l2/gstv4l2xoverlay.h:
13427         * sys/v4l2/v4l2-overlay_calls.c:
13428         * sys/v4l2/v4l2_calls.h:
13429           Remove client-side overlay handling, use the X-server v4l plugin
13430           for that. Nicer overlay, less code. Also make the plugin
13431           compileable without X (but then without overlay, obviously).
13432           Makes xwindowlistener obsolete, should we remove that?
13433
13434 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13435
13436         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
13437         (gst_osssrc_src_query):
13438         * sys/oss/gstosssrc.h:
13439           OK, so people want offset in DEFAULT. This time, actually fix all
13440           cases.
13441         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
13442           Add FPS properly.
13443
13444 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13445
13446         * gst/asfdemux/gstasfmux.c:
13447         * gst/avi/gstavimux.c:
13448           Framerate.
13449
13450 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13451
13452         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
13453           Fix properties (channel, norm, frequency).
13454
13455 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13456
13457         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
13458           Flag typo.
13459         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
13460           No warnings.
13461
13462 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13463
13464         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
13465           Fix hang.
13466
13467 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13468
13469         * sys/v4l2/gstv4l2element.h:
13470           Yet Another Hack (tm) for kernel header borkedness.
13471         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
13472         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
13473         (gst_v4l2src_link), (gst_v4l2src_getcaps),
13474         (gst_v4l2src_change_state):
13475         * sys/v4l2/gstv4l2src.h:
13476         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
13477         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
13478           Fix caps, keep track of state, work.
13479
13480 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13481
13482         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
13483           Quiet.
13484
13485 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13486
13487         * sys/oss/gstosssrc.c: (gst_osssrc_get):
13488           Don't mix bytes and samples.
13489
13490 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13491
13492         * ext/ogg/gstoggmux.c:
13493           Basic pad template which accepts OGM tracks, speex, flac, vorbis
13494           and theora. Any is incorrect.
13495         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
13496           Fix caps.
13497         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
13498         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
13499         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
13500         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
13501         * sys/v4l/gstv4lmjpegsrc.h:
13502         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
13503         (gst_v4lsrc_change_state):
13504         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
13505         (gst_v4lmjpegsrc_capture_stop):
13506           Fix caps. Keep track of internal state. Work.
13507
13508 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13509
13510         * ext/Makefile.am:
13511           Fix the build fixes.
13512
13513 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13514
13515         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13516         (gst_ogg_demux_src_event), (_find_chain_seek),
13517         (gst_ogg_pad_push):
13518           Check for pad availability before using it.
13519         * ext/ogg/gstoggdemux.c: (_find_chain_process):
13520           Fix parsing of chained ogg. Needs more work on the decoder side.
13521
13522 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
13523
13524         * gst/spectrum/Makefile.am:
13525         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
13526         (idle_func):
13527           Fix demo and reenable it. Yes, I'm currently playing with audio
13528           analysis tools
13529
13530 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13531
13532         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
13533           We love it if files that start at zero work too...
13534
13535 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13536
13537         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
13538           Handle files with missing EOS headers.
13539
13540 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13541
13542         * gst/tcp/gsttcpserversink.c:
13543         (gst_tcpserversink_handle_server_read),
13544         (gst_tcpserversink_init_send):
13545         Zero some variables first (need for accept not to return EINVAL)
13546
13547 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13548
13549         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13550         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
13551         * ext/theora/theoradec.c: (theora_dec_sink_convert),
13552         (theora_dec_chain):
13553         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
13554         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
13555           Seeking and querying finetune.
13556
13557 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
13558
13559         * configure.ac:
13560         * ext/Makefile.am:
13561         * ext/raw1394/Makefile.am:
13562           fix the build
13563
13564 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13565
13566         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
13567           Wrong return.
13568         * gst/playback/Makefile.am:
13569         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
13570         * gst/playback/gstplay-marshal.list:
13571         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
13572           Fix marshallers.
13573
13574 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13575
13576         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
13577           Silence.
13578
13579 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13580
13581         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13582         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
13583         (gst_ogg_pad_push):
13584           Yay for non-lineair granulepos in theora.
13585
13586 2004-10-18  Wim Taymans  <wim@fluendo.com>
13587
13588         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
13589         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
13590         * ext/dv/gstdvdec.h:
13591         Make sure we renegotiate aspect ratio when the camera switches.
13592
13593 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13594
13595         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13596         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
13597           Start at zero.
13598         * ext/theora/theoradec.c: (theora_dec_chain):
13599           Skip headers. Bad idea for chained ogg, but fixes seeking.
13600
13601 2004-10-18  Wim Taymans  <wim@fluendo.com>
13602
13603         * configure.ac:
13604         I swear, this is the last time I touch this.
13605
13606 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13607
13608         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
13609         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
13610         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
13611           Faster seeking.
13612         * ext/theora/theoradec.c: (theora_dec_sink_convert):
13613           Time-to-default conversion.
13614         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13615           Don't error on unknown packets, just skip. We should probably
13616           read them if we want to support chained ogg.
13617
13618 2004-10-18  Wim Taymans  <wim@fluendo.com>
13619
13620         * configure.ac:
13621         Added cdaudio to wrong list.
13622
13623 2004-10-18  Wim Taymans  <wim@fluendo.com>
13624
13625         * configure.ac:
13626         Revive cdaudio.
13627
13628 2004-10-18  Wim Taymans  <wim@fluendo.com>
13629
13630         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
13631         (gst_dvdec_video_link), (gst_dvdec_push):
13632         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13633         (gst_smokeenc_resync), (gst_smokeenc_chain):
13634         Fix mimetype on smoke encoder.
13635         Add aspect ratio to dvdec. Not sure if these
13636         values are correct though....
13637
13638 2004-10-18  Wim Taymans  <wim@fluendo.com>
13639
13640         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
13641         Fix vorbis property descriptions and ranges.
13642
13643 2004-10-18  Wim Taymans  <wim@fluendo.com>
13644
13645         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
13646         Really do nothing when no data is available.
13647         Go to the playing state when the stream is not seekable
13648         instead of failing.
13649
13650 2004-10-18  Wim Taymans  <wim@fluendo.com>
13651
13652         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
13653         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
13654         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
13655         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
13656         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
13657         Added uri handler for cd://
13658         Port to new API.
13659
13660 2004-10-18  Wim Taymans  <wim@fluendo.com>
13661
13662         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13663         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13664         (try_to_link_1), (no_more_pads), (close_link), (type_found):
13665         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13666         (remove_prerolls), (unknown_type), (add_element_stream),
13667         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
13668         (gst_play_base_bin_remove_element),
13669         (gst_play_base_bin_link_stream):
13670         * gst/playback/gstplaybin.c: (gen_video_element),
13671         (gen_vis_element), (remove_sinks), (setup_sinks):
13672         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13673         (gst_stream_info_get_type), (gst_stream_info_class_init),
13674         (gst_stream_info_init), (gst_stream_info_new),
13675         (gst_stream_info_dispose), (stream_info_mute_pad),
13676         (gst_stream_info_set_property), (gst_stream_info_get_property):
13677         * gst/playback/gststreaminfo.h:
13678         Add sink padtemplate to decodebin.
13679         Added some more comments.
13680         Make queue size configurable in playbasebin.
13681         Added possibility to use elements as sinks (ex cdaudio).
13682
13683 2004-10-15  Wim Taymans  <wim@fluendo.com>
13684
13685         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
13686         (gst_speexenc_chain):
13687         Fix speex timestamps so that it gets muxed properly.
13688
13689 2004-10-15  Wim Taymans  <wim@fluendo.com>
13690
13691         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
13692         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
13693         (gst_dv1394src_init), (gst_dv1394src_dispose),
13694         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
13695         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
13696         (gst_dv1394src_event), (gst_dv1394src_get_formats),
13697         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
13698         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
13699         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
13700         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
13701         * ext/raw1394/gstdv1394src.h:
13702         Added conversion/query functions.
13703         Update buffer timestamps,
13704         Added signals.
13705         Added uri dv:// so it might play from the firewire in playbin.
13706         Fix a possible leak.
13707         Added debugging.
13708
13709 2004-10-15  Wim Taymans  <wim@fluendo.com>
13710
13711         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
13712         (gst_dv1394src_init), (gst_dv1394src_set_property),
13713         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
13714         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
13715         * ext/raw1394/gstdv1394src.h:
13716         Added AV/C VTR control support needed for some cameras.
13717         Added automatic port detection.
13718         Added properties for selecting the channel.
13719         The configure.ac script is not yet updated to reflect the
13720         new libavc1394 and librom1394 dependencies.
13721
13722 2004-10-15  Wim Taymans  <wim@fluendo.com>
13723
13724         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
13725         (qtdemux_parse), (gst_qtdemux_handle_esds):
13726         An esds box is not a container.
13727         Fix parsing of mp4v boxes.
13728         Do not try to renegotiate fps for each frame. Need to
13729         find a better method. This should fix mp4 playback.
13730
13731 2004-10-14  David Schleef  <ds@schleef.org>
13732
13733         * configure.ac: update for swfdec-0.3 and liboil-0.2
13734         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
13735         * ext/swfdec/gstswfdec.h: same
13736         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
13737         * gst/videotestsrc/videotestsrc.c: same
13738
13739 2004-10-14  Wim Taymans  <wim@fluendo.com>
13740
13741         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13742         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
13743         (is_sync_frame), (gst_multifdsink_new_client),
13744         (gst_multifdsink_handle_client_write),
13745         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13746         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
13747         Turn warnings into info.
13748         Don't allow a state change in the streaming thread.
13749
13750 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13751
13752         * ext/vorbis/oggvorbisenc.c:
13753         * ext/vorbis/vorbisdec.c:
13754           fix template sample rate
13755
13756 2004-10-13  Wim Taymans  <wim@fluendo.com>
13757
13758         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
13759         Decoding the header first fixes some problems in resyncing
13760         in more mp3s.
13761
13762 2004-10-12  Wim Taymans  <wim@fluendo.com>
13763
13764         * gst/playback/gstplaybin.c: (gen_video_element),
13765         (gen_vis_element), (remove_sinks), (setup_sinks):
13766         Added vis plugin support, need to configure the vis
13767         element to activate it.
13768
13769 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13770
13771         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
13772         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
13773           Some debug.
13774         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13775         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
13776         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
13777         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
13778         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
13779         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
13780         * gst/avi/gstavidemux.h:
13781           Support for openDML-2.0 indx/ix## chunks. Support for broken index
13782           recovery (where, if part of the index is broken, we will still read
13783           the rest of the index and recover the broken part by stream
13784           scanning). More broken media support. EOS workarounds. General AVI
13785           braindamage headache recovery. Aspirin included.
13786
13787 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13788
13789         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
13790         (cdparanoia_event), (cdparanoia_query):
13791           Get rid of hideous lead-in.
13792
13793 2004-10-11  Wim Taymans  <wim@fluendo.com>
13794
13795         * gst/playback/gstplaybasebin.c: (setup_source):
13796         Wrong var used to get g_list_next.
13797
13798 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13799
13800         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
13801         (cdparanoia_get), (cdparanoia_open):
13802           Report discid as metadata, add duration.
13803
13804 2004-10-11  Wim Taymans  <wim@fluendo.com>
13805
13806         * gst/playback/gstplaybasebin.c: (setup_source):
13807         Cleanup the previous pipeline a little earlier for the
13808         case that a source element provides raw data.
13809
13810 2004-10-11  Benjamin Otte  <otte@gnome.org>
13811
13812         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
13813           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
13814           consuming the last 128 bytes, even though it was valid mp3 data.
13815
13816 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13817
13818         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
13819         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
13820         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
13821         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
13822
13823 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13824
13825         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
13826         Fix for webcams that support only specific width or height
13827
13828 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13829
13830         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13831
13832         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
13833           Fix wrong discont event setup (fixes #154967).
13834
13835 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
13836
13837         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13838
13839         * gst/auparse/gstauparse.c: (gst_auparse_chain):
13840           Error out on invalid data (fixes #154807).
13841
13842 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13843
13844         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13845
13846         * ext/dvdread/dvdreadsrc.c: (_read):
13847           Make titles > 0 work again (fixes #154834).
13848
13849 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13850
13851         * gst-libs/gst/riff/riff-media.c:
13852         (gst_riff_create_video_template_caps):
13853           WMV3 missing in template caps.
13854
13855 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13856
13857         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13858           OK, so the original code was too strict. It makes random AVI files
13859           hang for seconds upon opening, which is unacceptable and is far
13860           beyond the original goal of getting multiple chunks for one-chunk
13861           sounc stream files. So now do just that.
13862
13863 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13864
13865         * gst/playback/gstplaybasebin.c: (setup_source),
13866         (gst_play_base_bin_change_state):
13867           Actually clean up streaminfo if output fails. This would trigger
13868           if, for example, there was no CD in the drive. No preroll, so
13869           a streaminfo structure is created, but the subsequent state change
13870           of the thread fails.
13871         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
13872           Don't change state if parent failed.
13873
13874 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13875
13876         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13877         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
13878         (gen_video_element), (remove_sinks):
13879           Add small bits of code for screenshot handling.
13880
13881 2004-10-08  Wim Taymans  <wim@fluendo.com>
13882
13883         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
13884         (gen_video_element), (gen_audio_element), (setup_sinks):
13885         Don't assume the user provided sinks are named "sink"...
13886
13887 2004-10-08  Wim Taymans  <wim@fluendo.com>
13888
13889         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13890         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
13891         (gst_play_base_bin_link_stream):
13892         Do not try to autoplug sources that generate raw streams like
13893         cdparanoia.
13894         disconnect the preroll overrun signal when we don't need it anymore.
13895
13896 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
13897
13898         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13899         Added reworked patch from #154903 from milosz derezynski (deadchip).
13900
13901 2004-10-08  Wim Taymans  <wim@fluendo.com>
13902
13903         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13904         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
13905         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
13906         (cdparanoia_convert), (cdparanoia_uri_get_type),
13907         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
13908         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
13909         * ext/cdparanoia/gstcdparanoia.h:
13910         This adds the cdda://<tracknum> uri.
13911
13912 2004-10-08  Wim Taymans  <wim@fluendo.com>
13913
13914         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13915         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13916         (try_to_link_1), (no_more_pads), (close_link), (type_found):
13917         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13918         (unknown_type), (gst_play_base_bin_remove_element),
13919         (gst_play_base_bin_link_stream):
13920         * gst/playback/gstplaybasebin.h:
13921         * gst/playback/gstplaybin.c: (gst_play_bin_init),
13922         (gst_play_bin_set_property), (gen_video_element),
13923         (gen_audio_element), (setup_sinks):
13924         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13925         (gst_stream_info_get_type), (gst_stream_info_class_init),
13926         (gst_stream_info_init), (gst_stream_info_new),
13927         (gst_stream_info_dispose), (stream_info_mute_pad),
13928         (gst_stream_info_set_property), (gst_stream_info_get_property):
13929         * gst/playback/gststreaminfo.h:
13930         Reuse the audio and video bins.
13931         Some internal cleanups in the stream selection code.
13932
13933 2004-10-08  Julien MOUTTE  <julien@moutte.net>
13934
13935         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13936         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13937         * sys/ximage/ximagesink.h:
13938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13939         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13940         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
13941         not coming from those elements. Moreover these elements should not keep
13942         the xid they have been given when in NULL state.
13943
13944 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13945
13946         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13947         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13948         * sys/ximage/ximagesink.h:
13949         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13950         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13951         * sys/xvimage/xvimagesink.h:
13952           Actually only create a new toplevel window if we're not gonna
13953           embed it right after.
13954
13955 2004-10-07  Wim Taymans  <wim@fluendo.com>
13956
13957         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
13958         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
13959         * gst/playback/gstplaybin.c: (setup_sinks):
13960         Implement muting/unmuting of streams, mute streams that are not
13961         used.
13962
13963 2004-10-07  Wim Taymans  <wim@fluendo.com>
13964
13965         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
13966         (plugin_init):
13967         Added lame audio/x-ac3 typefind function.
13968
13969 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13970
13971         * configure.ac:
13972           bump nano to cvs
13973
13974 === release 0.8.5 ===
13975
13976 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13977
13978         * NEWS:
13979         * RELEASE:
13980         * configure.ac:
13981           releasing 0.8.5, "Take You On"
13982
13983 2004-10-06  Wim Taymans  <wim@fluendo.com>
13984
13985         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13986         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
13987         (no_more_pads), (close_link), (type_found):
13988         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13989         * gst/playback/gstplaybin.c: (gen_video_element):
13990         Do not signal the no_more_pads after the first pad when
13991         we are plugging a non dynamic element with multiple
13992         output pads (like swfdec, dvdec, ...).
13993
13994 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13995
13996         * configure.ac:
13997           bump for prerelease
13998
13999 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14000
14001         * gst/wavparse/gstwavparse.c:
14002           add ATRAC3 to STATIC CAPS to fix a warning
14003
14004         * gst/matroska/ebml-read.c:
14005         * gst-libs/gst/riff/riff-read.c:
14006           fix typos
14007
14008 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14009
14010         * gst-libs/gst/riff/riff-media.c:
14011           generate caps for ATRAC3 audio streams
14012
14013         * gst/realmedia/rmdemux.c:
14014           generate caps for ATRAC3 audio streams
14015
14016 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14017
14018         * gst/wavparse/Makefile.am
14019         * gst/wavparse/riff.h
14020         * gst/wavparse/wavparse.vcproj
14021           riff.h removal (unused and duplication with riff-ids.h)
14022
14023 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14024
14025         * gst/wavparse/gstwavparse.h
14026           remove duplicated defines for audio codec codes
14027
14028         * gst-libs/gst/riff/riff-ids.h
14029         * gst/wavenc/riff.h:
14030           add "4CC" code for ATRAC3 audio streams
14031           add "4CC" code for ITU_G721_ADPCM (unused for now)
14032
14033 2004-10-06  Wim Taymans  <wim@fluendo.com>
14034
14035         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
14036         Actually _do_ negotiation. Pass gdouble as arg instead
14037         of guint64 for the framerate.
14038
14039 2004-10-06  Wim Taymans  <wim@fluendo.com>
14040
14041         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14042         (find_compatibles), (close_pad_link), (try_to_link_1),
14043         (no_more_pads), (close_link), (type_found):
14044         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
14045         * gst/playback/gstplaybin.c: (gen_video_element),
14046         (gen_audio_element):
14047         Set state on newly added element to READY so that negotiation
14048         can happen ASAP.
14049         Addes some more debug info.
14050         Do not try to plug pads with multiple caps structures or ANY
14051         because it is too dangerous since we do not do dynamic
14052         replugging.
14053
14054 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
14055
14056         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
14057
14058         * po/LINGUAS:
14059         * po/or.po:
14060           add Oriya translation
14061
14062 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14063
14064         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
14065           Prevent overwrite of size member. Makes audio sound crappy.
14066
14067 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14068
14069         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14070         Add rmvb to the list of known RealMedia extensions
14071
14072 2004-10-05  Wim Taymans  <wim@fluendo.com>
14073
14074         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
14075         (mngdec_openstream), (mngdec_closestream),
14076         (mngdec_handle_sink_event), (mngdec_readdata),
14077         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
14078         (mngdec_getcanvasline), (mngdec_refresh),
14079         (gst_mngdec_change_state):
14080         Set the framerate correctly.
14081
14082 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14083
14084         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
14085           There was something wrong with the index massaging.
14086
14087 2004-10-04  Wim Taymans  <wim@fluendo.com>
14088
14089         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
14090         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
14091         (gst_smokedec_chain):
14092         * ext/jpeg/gstsmokedec.h:
14093         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
14094         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
14095         * ext/jpeg/gstsmokeenc.h:
14096         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
14097         (smokecodec_decode_new), (smokecodec_info_free),
14098         (smokecodec_set_quality), (smokecodec_get_quality),
14099         (smokecodec_set_threshold), (smokecodec_get_threshold),
14100         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
14101         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
14102         (smokecodec_encode), (smokecodec_parse_id),
14103         (smokecodec_parse_header), (smokecodec_decode):
14104         * ext/jpeg/smokecodec.h:
14105         * ext/jpeg/smokeformat.h:
14106         Updated smoke, new bitstream, allows embedding in ogg.
14107
14108 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14109
14110         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
14111           Fix seeking in some files. All this code is no longer needed (and
14112           actually breaks stuff) because we now synchronize the full index
14113           right when reading the header.
14114
14115 2004-10-04  Wim Taymans  <wim@fluendo.com>
14116
14117         * configure.ac:
14118         configure update for libmng.
14119
14120 2004-10-04  Wim Taymans  <wim@fluendo.com>
14121
14122         * ext/libmng/Makefile.am:
14123         * ext/libmng/gstmng.c: (plugin_init):
14124         * ext/libmng/gstmng.h:
14125         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
14126         (gst_mngdec_base_init), (gst_mngdec_class_init),
14127         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
14128         (gst_mngdec_loop), (gst_mngdec_get_property),
14129         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
14130         (mngdec_closestream), (mngdec_handle_sink_event),
14131         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
14132         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
14133         (gst_mngdec_change_state):
14134         * ext/libmng/gstmngdec.h:
14135         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
14136         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
14137         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
14138         (gst_mngenc_chain), (gst_mngenc_get_property),
14139         (gst_mngenc_set_property):
14140         * ext/libmng/gstmngenc.h:
14141         Added basic MNG decoder. Needs more work. The encoder does
14142         not work yet.
14143
14144 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14145
14146         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
14147         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
14148         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
14149           Don't hang on length=0 chunks. Some negotiation fixes. Signal
14150           no-more-pads.
14151
14152 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
14153
14154         * configure.ac:
14155           you need at least 1.0.4 of speex
14156
14157 2004-10-04 Iain <iaingnome@gmail.com>
14158
14159         * ext/speex/gstspeexdec.h: Revert the includes changes.
14160
14161         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
14162
14163 2004-09-30 Iain <iaingnome@gmail.com>
14164
14165         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
14166         found during init or set as a property instead of hardcoding /dev/audio
14167
14168 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14169
14170         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
14171         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
14172         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
14173         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
14174         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
14175         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
14176         (gst_rmdemux_dump_data):
14177           Use debug category, fix EOS handling. filesrc ! rmdemux now
14178           works.
14179
14180 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14181
14182         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
14183         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
14184         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
14185           Improve allocation, cutting and sorting of the index. How takes a
14186           few seconds instead of minutes.
14187
14188 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
14189
14190         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
14191           fixed compilation
14192
14193 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14194
14195         * gst-libs/gst/riff/riff-media.c:
14196         (gst_riff_create_video_caps_with_data),
14197         (gst_riff_create_video_template_caps):
14198           Add wing commander format mimetype/fourccs.
14199         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
14200           Don't crash if some value is 0.
14201
14202 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14203
14204         * gst-libs/gst/riff/riff-media.c:
14205         (gst_riff_create_video_caps_with_data),
14206         (gst_riff_create_video_template_caps):
14207           Add DIB fourcc (raw, palettized 8-bit RGB).
14208         * gst-libs/gst/riff/riff-read.c:
14209         (gst_riff_read_strf_vids_with_data):
14210           Oops, fix strf_data reading bug.
14211         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
14212           Use a non-NULL tag.
14213         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
14214           Time for hacks. Sorry Dave. At least one quicktime movie (a
14215           trailer) that I've encountered contains multiple video tracks.
14216           One of those is the actual video track, the other are one-frame
14217           tracks (images). Unfortunately, the number of frames according
14218           to the trak header is 1 for each, so that doesn't help. So
14219           instead, I look at the duration and discard tracks with a
14220           duration shorter than 20% of the length of the stream. Better
14221           than nothing.
14222
14223 2004-10-01  Christian Schaller <christian@fluendo.com>
14224
14225         * ext/ivorbis/vorbis.c:
14226           Patch from Phil Blundell (Bug 152341)
14227
14228 2004-10-01  Wim Taymans  <wim@fluendo.com>
14229
14230         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
14231         (speex_dec_get_formats), (speex_dec_convert),
14232         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
14233         (speex_dec_chain), (gst_speexdec_get_property),
14234         (gst_speexdec_set_property):
14235         Small cleanups.
14236
14237 2004-10-01  Wim Taymans  <wim@fluendo.com>
14238
14239         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
14240         (gst_wavparse_stream_init), (gst_wavparse_fmt),
14241         (gst_wavparse_other), (gst_wavparse_loop),
14242         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
14243         (gst_wavparse_srcpad_event):
14244         * gst/wavparse/gstwavparse.h:
14245         Added some more debugging info.
14246         Fix the case where the length of the file is 0.
14247         Make sure we seek to sample borders.
14248
14249 2004-10-01  Wim Taymans  <wim@fluendo.com>
14250
14251         * gst/playback/README:
14252         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
14253         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
14254         (try_to_link_1), (no_more_pads), (close_link), (type_found):
14255         Add some debug info to decodebin, update README
14256
14257 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14258
14259         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
14260           Don't use g_print(); use GST_DEBUG().
14261
14262 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14263
14264         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14265         (gst_ogg_mux_queue_pads):
14266           Handle EOS properly.
14267
14268 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
14269
14270         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14271
14272         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
14273         (gst_faad_chain), (gst_faad_change_state):
14274         * ext/faad/gstfaad.h:
14275           Allow playback of raw (unframed) MPEG AAC files (#148993).
14276
14277 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
14278
14279         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14280
14281         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
14282           Throw error if we didn't recognize the stream. Fixes #152289.
14283
14284 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14285
14286         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
14287           Fix negotiation.
14288
14289 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
14290
14291         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14292
14293         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
14294           Fix memleak.
14295
14296 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
14297
14298         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14299
14300         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
14301           Solve #152805.
14302         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
14303           Solve 152806.
14304
14305 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14306
14307         * gst-libs/gst/riff/riff-media.c:
14308         (gst_riff_create_video_caps_with_data),
14309         (gst_riff_create_audio_caps_with_data):
14310           Add codec_data handling (like asfdemux used to do).
14311         * gst/asfdemux/gstasf.c: (plugin_init):
14312         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
14313         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
14314           Use riff-media for caps creation instead of our own (mostly
14315           broken) copy of its functions.
14316
14317 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14318
14319         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
14320           Don't actually error out if we get another return value than
14321           -EINVAL. Opposite to what I first thought, drivers have random
14322           return values for this, although -EINVAL is the expected return
14323           value. Since this is not fatal, we shouldn't use
14324           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
14325
14326 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14327
14328         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
14329         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
14330         (dvdreadsrc_get_property), (_open), (_seek), (_read),
14331         (dvdreadsrc_get), (dvdreadsrc_open_file),
14332         (dvdreadsrc_change_state):
14333           Fix. Don't do one big huge loop around the whole DVD, that will
14334           cache all data and thus eat sizeof(dvd) (several GB) before we
14335           see something.
14336         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
14337           Actually NULL'ify event after using it.
14338         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
14339         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
14340         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
14341         (gst_ebml_read_seek), (gst_ebml_read_skip):
14342           Handle events.
14343         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
14344         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
14345         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
14346           Fix timing (this will probably break if I seek using menus, but
14347           I didn't get there yet). VOBs and normal DVDs should now work.
14348           Add a mpeg2-only pad with high rank so this get autoplugged for
14349           MPEG-2 movies.
14350         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
14351         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
14352         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
14353         (gst_mpeg_demux_get_audio_stream),
14354         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
14355         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
14356           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
14357           MPEG-1 but use dvddemux for MPEG-2.
14358         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
14359         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
14360         (gst_mpeg_parse_parse_packhead):
14361           Timing. Only add pad template if it exists. Add sink template from
14362           class and not from ourselves. This means we will always use the
14363           correct sink template even if it is not the one defined in this
14364           file.
14365
14366 2004-09-29  Wim Taymans  <wim@fluendo.com>
14367
14368         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
14369         (gst_mpeg_demux_parse_pes):
14370         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
14371         Fix playback of mpeg again, timestamps where screwed up by
14372         patch 1.61.
14373
14374 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14375
14376         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
14377           Only return true if we actually filled something in. Prevents
14378           player applications from showing a random length for flac files.
14379         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
14380         (gst_riff_read_use_event), (gst_riff_read_handle_event),
14381         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
14382         (gst_riff_read_strf_vids_with_data),
14383         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
14384           OK, ok, so I implemented event handling. Apparently it's normal
14385           that we receive random events at random points without asking
14386           for it.
14387         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14388         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
14389         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
14390         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
14391         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
14392         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
14393         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
14394         * gst/avi/gstavidemux.h:
14395           Implement non-lineair chunk handling and subchunk processing.
14396           The first solves playback of AVI files where the audio and video
14397           data of individual buffers that we read are not synchronized.
14398           This should not happen according to the wonderful AVI specs, but
14399           of course it does happen in reality. It is also a prerequisite for
14400           the second. Subchunk processing allows us to cut chunks in small
14401           pieces and process each of these pieces separately. This is
14402           required because I've seen several AVI files with incredibly large
14403           audio chunks, even some files with only one audio chunk for the
14404           whole file. This allows for proper playback including seeking.
14405           This patch is supposed to fix all AVI A/V sync issues.
14406         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
14407         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
14408           Work.
14409         * gst/modplug/gstmodplug.cc:
14410           Proper return value setting for the query() function.
14411         * gst/playback/gstplaybasebin.c: (setup_source):
14412           Being in non-playing state (after, e.g., EOS) is not necessarily
14413           a bad thing. Allow for that. This fixes playback of short files.
14414           They don't actually playback fully now, because the clock already
14415           runs. This means that small files (<500kB) with a small length
14416           (<2sec) will still not or barely play. Other files, such as mod
14417           or flx, will work correctly, however.
14418
14419 2004-09-28  Wim Taymans  <wim@fluendo.com>
14420
14421         * ext/speex/gstspeex.c: (plugin_init):
14422         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
14423         (gst_speex_dec_class_init), (speex_dec_get_formats),
14424         (speex_get_event_masks), (speex_get_query_types),
14425         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
14426         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
14427         (gst_speexdec_get_property), (gst_speexdec_set_property),
14428         (speex_dec_change_state):
14429         * ext/speex/gstspeexdec.h:
14430         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
14431         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
14432         (gst_speexenc_base_init), (gst_speexenc_class_init),
14433         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
14434         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
14435         (gst_speexenc_src_query), (gst_speexenc_init),
14436         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
14437         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
14438         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
14439         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
14440         (gst_speexenc_chain), (gst_speexenc_get_property),
14441         (gst_speexenc_set_property), (gst_speexenc_change_state):
14442         * ext/speex/gstspeexenc.h:
14443         Rewrote speex encoder, make sure it can be embedded in ogg.
14444         Implemented speex decoder.
14445
14446 2004-09-28  Christian Schaller <christian@fluendo.com>
14447
14448         * configure.ac:
14449         Remove kioslave plugin. Markey is brewing a new working one
14450         * ext/Makefile.am: Remove kioslave plugin
14451         * ext/kio: remove
14452         * gst-plugins.spec.in: remove kio plugin from spec
14453
14454 2004-09-27  Wim Taymans  <wim@fluendo.com>
14455
14456         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14457         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
14458         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
14459         (gst_multifdsink_new_client),
14460         (gst_multifdsink_handle_client_write),
14461         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14462         (gst_multifdsink_handle_clients):
14463         * gst/tcp/gstmultifdsink.h:
14464         Make syncing to keyframes actually work for new clients and lagging
14465         clients.
14466
14467 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
14468
14469         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
14470         (gst_navigationtest_handle_src_event), (draw_box_planar411),
14471         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
14472         * gst/debug/gstnavigationtest.h:
14473           make navigationtest display button-press and button-release events
14474
14475 2004-09-26 Iain <iaingnome@gmail.com>
14476
14477         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
14478         the channels have received a new media event.
14479         (interleave_buffered_loop): Compresses a new media event on all
14480         channels into one.
14481
14482 2004-09-26 Iain <iaingnome@gmail.com>
14483
14484         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
14485         call the sinkpad's default event handler and not the srcpads. He also
14486         says this is confusing :)
14487         (gst_wavenc_stop_file): Company says that seek events only go upstream
14488         we should send a discontinuous downstream instead.
14489
14490 2004-09-25  Christian Schaller <christian@fluendo.com>
14491
14492         * Update SPEC file to be usable in conjunction with Fedora Core,
14493           Fedora.us and freshrpms packages
14494         * Fix typo in multifilesrc test Makefile
14495
14496 2004-09-24  Wim Taymans  <wim@fluendo.com>
14497
14498         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
14499         Only signal the no_more_pads signal when we have
14500         added the stream to our list.
14501
14502 2004-09-24  Wim Taymans  <wim@fluendo.com>
14503
14504         * gst/playback/gstplaybasebin.c: (remove_prerolls),
14505         (new_decoded_pad):
14506         * gst/playback/gstplaybasebin.h:
14507         * gst/playback/gstplaybin.c: (setup_sinks):
14508         Don't try to preroll or decode more than one audio/video
14509         track.
14510
14511 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14512
14513         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
14514           Throw error if we failed to find a suitable output. This should
14515           throw an error if we successfully set up a pipeline (e.g. because
14516           we recognized a media file) but found no decodable streams in it
14517           (e.g. because it contains only media stream types for which we
14518           have no decoders, or because it's not a media type).
14519
14520 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14521
14522         * ext/dirac/Makefile.am:
14523         * ext/dirac/gstdirac.cc:
14524         * ext/dirac/gstdiracdec.cc:
14525         * ext/dirac/gstdiracdec.h:
14526           Do something. Don't actually know if this works because I don't
14527           have a demuxer yet.
14528         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
14529           Add channels=1 to caps returned from _getcaps().
14530         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
14531         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
14532         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
14533         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
14534         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
14535         (gst_ogm_parse_change_state):
14536           Separate between audio/video so ogmaudioparse actually uses the
14537           audio pad templates. Both audio and video work now, including
14538           autoplugging. Also use sometimes-srcpad hack.
14539         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
14540           Handle events better. Don't hang on infinite loops.
14541         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14542         (gst_avi_demux_init), (gst_avi_demux_reset),
14543         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
14544         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
14545         (gst_avi_demux_change_state):
14546         * gst/avi/gstavidemux.h:
14547           Improve A/V sync. Still not perfect.
14548         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
14549         (gst_ebml_read_skip):
14550           Handle events better.
14551         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
14552         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
14553         (qtdemux_audio_caps):
14554           Add IMA4. Improve event handling. Save offset after a seek when
14555           the headers are at the end of the file so that we don't end up in
14556           an infinite loop.
14557         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
14558           Add low-priority typefind support for files with no length.
14559
14560 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14561
14562         * testsuite/multifilesink/Makefile.am:
14563         fix typo
14564
14565 2004-09-22  Julien MOUTTE  <julien@moutte.net>
14566
14567         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
14568         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
14569         mistakes from thaytan's patches.
14570
14571 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
14572
14573         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
14574           For completeness, XSync in the destroy function as xvimage does.
14575
14576 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
14577
14578         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
14579            Correct caps negotiation
14580         * gst/volume/gstvolume.c: (volume_chain_float),
14581         (volume_chain_int16):
14582            Modify debug output to be little more informative
14583         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
14584         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14585         (gst_xvimagesink_xvimage_destroy):
14586           Add XSync calls after detaching from the shared memory segment to
14587           avoid a crash.
14588
14589 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14590
14591         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14592         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
14593         * ext/vorbis/vorbis.c: (plugin_init):
14594         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
14595         (gst_vorbisenc_chain):
14596         * ext/vorbis/vorbisenc.h:
14597         remove explicit newmedia support from oggmux and vorbisenc
14598         add debug category to vorbisenc
14599         * gst/multifilesink/gstmultifilesink.c:
14600         (gst_multifilesink_class_init), (gst_multifilesink_init),
14601         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
14602         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
14603         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
14604         (plugin_init):
14605         * gst/multifilesink/gstmultifilesink.h:
14606         add support for streamheader in multifilesink
14607
14608 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14609
14610         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
14611         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
14612         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
14613           Prevent infinite loops. More correct error reporting.
14614         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14615           Error out if negotiation fails.
14616         * gst/playback/gstplaybasebin.c: (setup_source),
14617         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
14618         (gst_play_base_bin_found_tag):
14619           Error/tag forwarding. Pre-roll fixes for source errors on state
14620           changes (e.g. "file does not exist") to prevent hangs.
14621
14622 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14623
14624         * testsuite/multifilesink/Makefile.am:
14625         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
14626         (gst_newmedia_class_init), (gst_newmedia_init),
14627         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14628         (newfile_signal), (test_signal), (main):
14629         * testsuite/multifilesink/multifilesrc_test.c: (main):
14630         * testsuite/multifilesink/oggtheora_test.c:
14631         (gst_newmedia_base_init), (gst_newmedia_class_init),
14632         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
14633         (test_format), (newfile_signal), (test_signal), (main):
14634         * testsuite/multifilesink/oggvorbis_test.c:
14635         (gst_newmedia_base_init), (gst_newmedia_class_init),
14636         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
14637         (test_format), (newfile_signal), (test_signal), (main):
14638         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
14639         (gst_newmedia_class_init), (gst_newmedia_init),
14640         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14641         (newfile_signal), (test_signal), (main):
14642         New media tests
14643
14644 2004-09-20  Christian Schaller <christian@fluendo.com>
14645
14646         * Fix mikmod license to LGPL as they have relicensed
14647         * Move Dirac and Effectv into LGPL section of README_license
14648
14649 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14650
14651         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
14652         (gst_mad_change_state):
14653           Allow for mp3 rate/channels changes. However, only very
14654           conservatively. Reason that we *have* to enable this is smiply
14655           because the mad find_sync() function is not good enough, it will
14656           regularly sync on random data as valid frames and therefore make
14657           us provide random caps as *final* caps of the stream. The best fix
14658           I could think of is to simply require several of the same stream
14659           changes in a row before we change caps.
14660           The actual testcase that works now is #
14661         * ext/ogg/Makefile.am:
14662         * ext/ogg/gstogg.c: (plugin_init):
14663         * ext/ogg/gstogmparse.c:
14664           OGM support (video only for now; I need an audio sample file).
14665         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
14666         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
14667         (gst_asf_demux_add_video_stream):
14668           WMV extradata.
14669         * gst/playback/gstplaybasebin.c: (unknown_type):
14670           Don't error out on single unknown-types after all. It's wrong.
14671           If we found type of video and audio but not of a subtitle stream,
14672           it will still error out (which is unwanted). Will find a better fix
14673           later on.
14674         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
14675         (ogmaudio_type_find), (plugin_init):
14676           OGM support.
14677
14678 2004-09-20  Johan Dahlin  <johan@gnome.org>
14679
14680         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
14681         after setting caps.
14682
14683 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14684
14685         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
14686         * gst/wavenc/gstwavenc.h:
14687         Added newmedia support to wavenc
14688
14689 2004-09-17  Wim Taymans  <wim@fluendo.com>
14690
14691         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
14692         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
14693         (gst_fdset_fd_can_write), (gst_fdset_wait):
14694         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
14695         (gst_multifdsink_init), (gst_multifdsink_add),
14696         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
14697         (gst_multifdsink_remove_client_link),
14698         (gst_multifdsink_client_queue_buffer),
14699         (gst_multifdsink_handle_client_write),
14700         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
14701         (gst_multifdsink_close), (gst_multifdsink_change_state):
14702         * gst/tcp/gstmultifdsink.h:
14703         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
14704         (gst_tcpserversink_removed):
14705         Small cleanups in fdset.c
14706         Use a hastable to map fd to the client structure for faster
14707         lookup in _remove and get_stats.
14708         Added virtual function to close the fds.
14709         Handle clients even when the select/poll call was unblocked because
14710         of a command.
14711         Implement syncing to keyframe in the recovery procedure.
14712
14713 2004-09-16 Iain <iaingnome@gmail.com>
14714
14715         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
14716         try caps.
14717
14718 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14719
14720         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
14721           Caps are only set if the type of the stream is unknown, but this
14722           is initialized in ->init_stream(), so set to UNKNOWN after calling
14723           ->init_stream() so that capsnego starts.
14724
14725 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14726
14727         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14728         (gst_avi_demux_stream_data):
14729           Just hardcode for raw audio then. AVI audio sucks.
14730
14731 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
14732
14733         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
14734         * gst/matroska/matroska-mux.c: (audiosink_templ),
14735         (gst_matroska_mux_audio_pad_link):
14736         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
14737         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
14738
14739 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14740
14741         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14742         (gst_avi_demux_stream_data):
14743           Try to fix a/v sync issues.
14744
14745 2004-09-15  David Schleef  <ds@schleef.org>
14746
14747         * configure.ac: remove NASM check, since we don't use it.  Update
14748         dirac check to 0.4
14749         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
14750         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
14751         Initialized variables.
14752         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
14753         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
14754         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
14755         SVQ3 format
14756
14757 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14758
14759         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14760         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
14761         * gst/avi/gstavidemux.h:
14762           Fix for compressed audio (mp3) timestamp generation. How did this
14763           ever work?
14764
14765 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14766
14767         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14768           Volume is a double not a float.
14769
14770 2004-09-15  Wim Taymans  <wim@fluendo.com>
14771
14772         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
14773         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
14774         Don't close the fd in multifdsink as we didn't open it in the
14775         first place. Some cleanups.
14776
14777 2004-09-15  Wim Taymans  <wim@fluendo.com>
14778
14779         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14780         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14781         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14782         Fix the case where the muxer would mark pages as delta
14783         frames when they are not (vorbis only ogg).
14784
14785 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14786
14787         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
14788         (gst_play_base_bin_change_state):
14789           Handle the case where we failed to setup a clear pipeline. This
14790           will throw an error (or EOS, another nice case) and if you don't
14791           catch that, the app will wait for the signal forever (and thus
14792           hang).
14793
14794 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14795
14796         * ext/gnomevfs/gstgnomevfssink.c:
14797         (gst_gnomevfssink_uri_get_protocols):
14798         * ext/gnomevfs/gstgnomevfssrc.c:
14799         (gst_gnomevfssrc_uri_get_protocols):
14800         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14801         * ext/gnomevfs/gstgnomevfsuri.h:
14802           Use _uri_new() instead of _open(), so it doesn't take as long and
14803           Christophe's computer won't hang.
14804         * gst/playback/gstplaybasebin.c: (unknown_type):
14805           Throw error on unknown media type, so apps actually display it.
14806
14807 2004-09-14  Brian Cameron  <brian.cameron@sun.com
14808
14809         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
14810           this script to work on Solaris since bash shell handles echo
14811           differenly than bash.
14812
14813 2004-09-17  Wim Taymans  <wim@fluendo.com>
14814
14815         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
14816         (setup_source), (gst_play_base_bin_set_property),
14817         (gst_play_base_bin_add_element):
14818         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
14819         Some more work on making sure seeking pauses the pipeline and
14820         that changing the uri actually does something.
14821
14822 2004-09-17  Wim Taymans  <wim@fluendo.com>
14823
14824         * gst/tcp/gstfdset.c: (gst_fdset_wait):
14825         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
14826         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
14827         (gst_tcpserversink_close):
14828         Be a bit more paranoid when freeing memory.
14829
14830 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14831
14832         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
14833         (qtdemux_parse_trak):
14834           Don't crash by dividing by zero (see sample movie in #126922).
14835
14836 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14837
14838         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
14839           Don't touch non-existing data (fixes crash on file in #140147).
14840
14841 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14842
14843         * gst/playback/gstplaybasebin.c:
14844         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
14845           Handle double disposals, and proper change of URIs.
14846
14847 2004-09-13  Martin Eikermann <meiker@upb.de>
14848
14849         * gst/mpegstream/gstmpegparse.c:
14850           fix synchronistation for streams recorded from digital PCR
14851           fixes bug #119376
14852
14853 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14854
14855         * ext/gnomevfs/Makefile.am:
14856         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14857         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
14858         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
14859         (gst_gnomevfssink_uri_get_type),
14860         (gst_gnomevfssink_uri_get_protocols),
14861         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
14862         (gst_gnomevfssink_uri_handler_init),
14863         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
14864         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
14865         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
14866         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
14867         (gst_gnomevfssrc_uri_get_type),
14868         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
14869         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
14870         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
14871         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
14872         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14873         * ext/gnomevfs/gstgnomevfsuri.h:
14874           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
14875           of fake URIs to see which this version of Gnome-VFS likes, and
14876           uses that for the Gst-URI interface. Makes playbin support http://
14877           streams. Also fix up some stupid behaviour in gnomevfssrc.
14878
14879 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14880
14881         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
14882         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
14883         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
14884         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
14885           Update mixer (to sync with other sessions) if we try to obtain
14886           a new value. This makes alsamixer work accross applications.
14887         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
14888           Only call sync functions if we're running, else alsalib asserts.
14889         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
14890           Sometimes fails to compile. Possibly a gcc bug.
14891         * gst/playback/gstplaybin.c: (gen_video_element),
14892         (gen_audio_element):
14893           Add a reference to an application-provided object, because we lose
14894           this same reference if we add it to the bin. If we don't do this,
14895           we can only use this object once and thus crash if we go from
14896           ready to playing, back to ready and back to playing again.
14897           Also add an audioscale element because several cheap soundcards -
14898           like mine - don't support all samplerates.
14899         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
14900         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
14901           Fix wrong order or PAR calls. Makes automatically obtained PAR
14902           from the X server atually being used.
14903
14904 2004-09-12  David Schleef  <ds@schleef.org>
14905
14906         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
14907         #151887, #152102, #152247.
14908         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
14909         * examples/seeking/cdparanoia.c: same
14910         * examples/seeking/cdplayer.c: same
14911         * examples/seeking/seek.c: same
14912         * examples/seeking/spider_seek.c: same
14913         * examples/seeking/vorbisfile.c: same
14914         * examples/stats/mp2ogg.c: same
14915         * ext/esd/esdsink.c: (gst_esdsink_class_init),
14916         (gst_esdsink_dispose): Dispose of element properly.
14917         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
14918         fixes.
14919         * ext/nas/nassink.c: (gst_nassink_class_init),
14920         (gst_nassink_dispose): Dispose of element correctly.
14921         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
14922         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14923         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
14924         Fix 64-bit warning.
14925         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14926         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
14927         Fix 64-bit warning.
14928
14929 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
14930
14931         * configure.ac : change speex detection as 1.1.6 now uses
14932           .pc/pkg-config and they changed their headers location.
14933
14934 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
14935
14936         * gst/matroska/matroska-mux.h:
14937         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
14938         (gst_matroska_mux_start), (gst_matroska_mux_finish),
14939         (gst_matroska_mux_write_data):
14940           Write multiple blocks/frames per cluster.
14941                 Write meta-seek information (seek heads).
14942
14943 2004-09-09  Scott Wheeler <wheeler@kde.org>
14944
14945         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
14946         (gst_play_bin_set_property), (gst_play_bin_get_property),
14947         (gen_audio_element), (gen_audio_element):
14948           Add a volume element / property to the pipeline.
14949
14950 2004-09-07  Wim Taymans  <wim@fluendo.com>
14951
14952         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
14953         Copy timestamps from the master pad to the output buffers.
14954
14955 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14956
14957         * ext/raw1394/gstdv1394src.c:
14958           throw errors when applicable
14959
14960 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
14961
14962         * gst/matroska/ebml-ids.h:
14963         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
14964         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
14965         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
14966           automatically convert unix time <-> ebml time when reading/writing
14967           a date, use gst_ebml_write_uint to write CUETIME,
14968           not gst_ebml_write_date.
14969         * gst/matroska/matroska-ids.h:
14970         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
14971         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
14972         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
14973         (gst_matroska_mux_write_data):
14974           Write track and segment UIDs, write muxing date, write
14975           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
14976           Create cues for audio only files.
14977
14978 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14979
14980         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14981         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14982           Re-commit ALSA switches.
14983         * gst/adder/gstadder.c: (gst_adder_loop):
14984           64-bit fix (#151416).
14985         * gst/debug/progressreport.c: (gst_progressreport_report):
14986           64-bit fix (#151419).
14987         * gst/matroska/matroska-demux.c:
14988         (gst_matroska_demux_parse_contents):
14989           64-bit fix (#151420).
14990         * gst/playback/test3.c: (update_scale):
14991           64-bit fix (#151421).
14992
14993 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14994
14995         * configure.ac:
14996           bump nano to cvs
14997
14998 === release 0.8.4 ===
14999
15000 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15001
15002         * configure.ac: releasing 0.8.4, "Alias"
15003
15004 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
15005
15006         * ext/theora/Makefile.am:
15007           fix makefile.  Fixes #151462.
15008
15009 2004-08-30  Wim Taymans  <wim@fluendo.com>
15010
15011         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
15012         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
15013         (gst_multifdsink_remove_client_link),
15014         (gst_multifdsink_client_queue_buffer),
15015         (gst_multifdsink_handle_client_write):
15016         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
15017         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
15018         Fix some memory leaks.
15019
15020 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15021
15022         Patch by: David Schleef
15023
15024         * configure.ac:
15025         * sys/Makefile.am:
15026           rename our detection macro for V4L2.  Fixes #151236.
15027
15028 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15029
15030         Patch by: David Schleef
15031
15032         * configure.ac:
15033           check to define LAMEPRESET.  Fixes #151232.
15034
15035 2004-08-27  David Schleef  <ds@schleef.org>
15036
15037         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
15038         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
15039         (gst_glimagesink_fixate):  Move local variable declarations to
15040         make gcc-2.95 happy.
15041
15042 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15043
15044         * configure.ac:
15045           bump nano for prerelease
15046
15047 2004-08-27  David Schleef  <ds@schleef.org>
15048
15049         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
15050         * sys/sunaudio/gstsunaudiosrc.c:
15051         * sys/sunaudio/gstsunaudiosrc.h:
15052
15053 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
15054
15055         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
15056         handle EOS correctly
15057         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
15058         * gst/matroska/matroska-mux.h:
15059         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
15060         VFW compatibility mode
15061
15062 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15063
15064         patch by: Zaheer Abbas Merali
15065
15066         * ext/ogg/gstoggmux.c:
15067         * ext/vorbis/vorbisenc.c:
15068         * ext/vorbis/vorbisenc.h:
15069           handle NEWMEDIA
15070
15071 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
15072
15073         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
15074         fix byte order reversion on little endian machines.
15075         * gst/matroska/matroska-mux.c: (audiosink_templ),
15076         (gst_matroska_mux_audio_pad_link):
15077         add TTA codec to the list of supported codecs.
15078         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
15079         (gst_matroska_mux_start), (gst_matroska_mux_finish),
15080         (gst_matroska_mux_write_data):
15081         * gst/matroska/matroska-mux.h:
15082         write segment duration correctly, write muxing app string, fixes bugs
15083         #140897 and #140898.
15084         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
15085         wait for all pads to be negotiated before starting to mux.
15086
15087 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15088
15089         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
15090         * ext/lame/gstlame.h:
15091         Added new media support to lame
15092
15093 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
15094
15095         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
15096         send vorbis headers at the beginning of a stream, fixes bug #141554.
15097         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
15098         bug #148950.
15099         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
15100         (gst_matroska_demux_plugin_init):
15101         * gst/matroska/matroska-ids.h:
15102         enable demuxing of TTA audio streams, fixes bug #148951.
15103         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
15104         enable typefinding for TTA audio files, fixes bug #148711.
15105         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
15106         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
15107         fixes playback of packed bitstream and xvid with bframes, bug #135407.
15108
15109 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
15110
15111         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
15112         (gst_riff_read_element_data), (gst_riff_read_seek),
15113         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
15114         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
15115         <teuf@gnome.org>
15116
15117 2004-08-23 Iain <iaingnome@gmail.com>
15118
15119         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
15120         tags. They appear to be handled differently to normal.
15121         (tag_list_to_id3_tag_foreach): Ditto.
15122
15123 2004-08-22  Wim Taymans  <wim@fluendo.com>
15124
15125         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
15126         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
15127         Make sure we never send -1 granulepos.
15128
15129 2004-08-20  Wim Taymans  <wim@fluendo.com>
15130
15131         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
15132         (gst_ogg_mux_loop):
15133         I will accept bitchslappings with non sharp objects.
15134
15135 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15136
15137         * configure.ac:
15138         Clean up the test for lame presets
15139
15140 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15141
15142         * configure.ac:
15143         * ext/lame/Makefile.am:
15144         * ext/lame/gstlame.c: (gst_lame_class_init),
15145         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
15146         Only enable lame presets if version of lame has presets in API
15147
15148 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
15149         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
15150         * gst/udp/gstudpsrc.h:
15151           Don't call gst_pad_push in a get function. Fixes #150449
15152
15153 2004-08-18  Wim Taymans  <wim@fluendo.com>
15154
15155         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
15156         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
15157         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
15158         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
15159         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
15160         (gst_fdset_wait):
15161         * gst/tcp/gstfdset.h:
15162         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
15163         (gst_multifdsink_client_queue_buffer),
15164         (gst_multifdsink_handle_client_write):
15165         * gst/tcp/gstmultifdsink.h:
15166         Some extra checks in gstfdset.
15167         Only use send() when the fd is a socket. Don't try to
15168         read from write only fds.
15169
15170 2004-08-18  Wim Taymans  <wim@fluendo.com>
15171
15172         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
15173         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
15174         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
15175         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
15176         (gst_fdset_wait):
15177         Add more locking and bounds checking.
15178
15179 2004-08-18  Wim Taymans  <wim@fluendo.com>
15180
15181         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
15182         Realloc test fdset in the lock and right before starting
15183         the poll call. Bump the limit to 4096.
15184
15185 2004-08-17  David Schleef  <ds@schleef.org>
15186
15187         * sys/sunaudio/Makefile.am:
15188         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
15189         of rates and channels.  Make debugging less obnoxious.
15190
15191         Patch from Balamurali Viswanathan implementing a mixer for
15192         Sun audio.  (bug #144091):
15193         * sys/sunaudio/gstsunelement.c:
15194         * sys/sunaudio/gstsunelement.h:
15195         * sys/sunaudio/gstsunmixer.c:
15196         * sys/sunaudio/gstsunmixer.h:
15197
15198 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15199
15200         * gst/audioscale/gstaudioscale.c:
15201         * gst/audioscale/gstaudioscale.h:
15202         made audioscale resample from any sample rate to any sample rate
15203
15204 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15205
15206         * ext/libpng/gstpngdec.c:
15207           error out on unsupported types
15208
15209 2004-08-17  Iain <iaingnome@gmail.com>
15210
15211         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
15212         mid_side and loose_mid_side properties if its a stereo stream.
15213
15214 2004-08-17  Wim Taymans  <wim@fluendo.com>
15215
15216         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
15217         (theora_get_formats), (theora_dec_src_convert),
15218         (theora_dec_sink_convert), (theora_dec_src_query),
15219         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
15220         Add a debug line.
15221
15222 2004-08-17  Wim Taymans  <wim@fluendo.com>
15223
15224         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
15225         (gst_ogg_pad_push):
15226         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15227         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15228         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
15229         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
15230         Mark delta units in the muxer.
15231         Try to decode the packet after an out-of-sync error from
15232         libogg.
15233
15234 2004-08-17  Wim Taymans  <wim@fluendo.com>
15235
15236         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15237         (gst_multifdsink_init), (gst_multifdsink_add),
15238         (gst_multifdsink_client_queue_buffer),
15239         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
15240         * gst/tcp/gstmultifdsink.h:
15241         Added option to send a keyframe to clients as the first buffer.
15242         Make timeout property writable.
15243
15244 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15245
15246         patch by: Wim Taymans
15247
15248         * gst/tcp/gstfdset.c:
15249         * gst/tcp/gstmultifdsink.c:
15250           fix index comparison, should include 0
15251
15252 2004-08-16  Wim Taymans  <wim@fluendo.com>
15253
15254         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
15255         (gst_fdset_add_fd), (gst_fdset_remove_fd),
15256         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
15257         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
15258         (gst_fdset_wait):
15259           copy when reallocing for poll so the select arguments don't get
15260           changed during the call
15261
15262 2004-08-16  Wim Taymans  <wim@fluendo.com>
15263
15264         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15265         (gst_theora_enc_class_init), (theora_enc_sink_link),
15266         (theora_buffer_from_packet), (theora_enc_chain):
15267         Fix bug where buffers were not marked as keyframes
15268         correctly.
15269
15270 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15271
15272         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
15273         (gst_lame_preset_get_type), (gst_lame_class_init):
15274         describe the enum values for vbr mode and presets more verbosely
15275
15276 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15277
15278         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
15279         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
15280         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
15281         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
15282         * ext/lame/gstlame.h:
15283         add preset property to lame so it can use lame presets
15284
15285 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15286
15287         * ext/lame/gstlame.c: (gst_lame_get_property):
15288         whoops forgot break, thanks teuf
15289
15290 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15291
15292         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
15293         (gst_lame_class_init), (gst_lame_src_getcaps),
15294         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
15295         (gst_lame_get_property), (gst_lame_setup):
15296         * ext/lame/gstlame.h:
15297         fix lame's broken vbr stuff, allow it to resample if need be, and also
15298         make xing header optional
15299
15300 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15301
15302         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
15303         added getcaps function so samplerate doesnt get fixated to silly values
15304
15305 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15306
15307         * ext/lame/gstlame.c: (gst_lame_src_link):
15308         revert previous fix
15309
15310 2004-08-12  Johan Dahlin  <johan@gnome.org>
15311
15312         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
15313         checks. Doesn't matter what state we are in. Interfaces are a
15314         compile time thing, not runtime. It also broke the python bindings.
15315
15316 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15317
15318         * ext/lame/gstlame.c: (gst_lame_src_link):
15319         made source pad link function check if sinkpad is ok..fixes the problem
15320         where core fixates the output rate of lame stupidly
15321
15322 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15323
15324         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
15325         * sys/v4l/v4l_calls.c:
15326         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
15327           fix fixate function to handle nonsimple caps.
15328           remove bogus check in _link
15329           cleanups
15330
15331 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15332
15333         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
15334         set default compression ratio parameter to 0.0 so bitrate parameter
15335         works :)
15336
15337 2004-08-11  David Schleef  <ds@schleef.org>
15338
15339         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
15340
15341 2004-08-11  David Schleef  <ds@schleef.org>
15342
15343         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
15344         before.
15345
15346 2004-08-11  David Schleef  <ds@schleef.org>
15347
15348         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
15349
15350 2004-08-11  David Schleef  <ds@schleef.org>
15351
15352         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
15353           license field
15354         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
15355         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
15356           LGPL.
15357         * gst/auparse/gstauparse.c: Fix plugin license field.
15358         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
15359         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
15360         * gst/rtp/gstrtp.c: Fix plugin license field.
15361
15362 2004-08-11  Wim Taymans  <wim@fluendo.com>
15363
15364         * gst/tcp/Makefile.am:
15365         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
15366         (ensure_size), (gst_fdset_new), (gst_fdset_free),
15367         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
15368         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
15369         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
15370         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
15371         (gst_fdset_fd_can_write), (gst_fdset_wait):
15372         * gst/tcp/gstfdset.h:
15373         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
15374         (gst_multifdsink_class_init), (gst_multifdsink_init),
15375         (gst_multifdsink_add), (gst_multifdsink_remove),
15376         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
15377         (gst_multifdsink_remove_client_link),
15378         (gst_multifdsink_handle_client_read),
15379         (gst_multifdsink_client_queue_data),
15380         (gst_multifdsink_client_queue_caps),
15381         (gst_multifdsink_client_queue_buffer),
15382         (gst_multifdsink_handle_client_write),
15383         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15384         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
15385         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
15386         (gst_multifdsink_close):
15387         * gst/tcp/gstmultifdsink.h:
15388         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
15389         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
15390         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
15391         (gst_tcpserversink_close):
15392         * gst/tcp/gsttcpserversink.h:
15393         Abstracted away the select call, implemented poll (yes we ran into
15394         the 1024 limit in production).
15395
15396 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15397
15398         * gst/tcp/gsttcp.c:
15399         * gst/tcp/gsttcpplugin.c:
15400           improve debuggging, remove assert
15401
15402 2004-08-10  Wim Taymans  <wim@fluendo.com>
15403
15404         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
15405         (gst_client_status_get_type), (gst_multifdsink_class_init),
15406         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
15407         (gst_multifdsink_handle_client_read),
15408         (gst_multifdsink_handle_client_write),
15409         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15410         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
15411         (gst_multifdsink_get_property):
15412         * gst/tcp/gstmultifdsink.h:
15413         * gst/tcp/gsttcp-marshal.list:
15414         Starting to prepare for specifying buffer time in other units
15415         than buffers. Expose remove reason in signal.
15416
15417 2004-08-10  Wim Taymans  <wim@fluendo.com>
15418
15419         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
15420         (gst_multifdsink_remove), (gst_multifdsink_clear),
15421         (gst_multifdsink_remove_client_link),
15422         (gst_multifdsink_handle_client_read),
15423         (gst_multifdsink_client_queue_data),
15424         (gst_multifdsink_client_queue_buffer),
15425         (gst_multifdsink_handle_client_write),
15426         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
15427         (gst_multifdsink_chain), (gst_multifdsink_close):
15428         * gst/tcp/gstmultifdsink.h:
15429         Added more debugging info. Changed the way clients are
15430         removed from the lists. Fixed a bug where a bad file descriptor
15431         could cause many clients to be removed.
15432
15433 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
15434
15435         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
15436           allow all pixel-aspect-ratios, not just 1:1
15437
15438 2004-08-09  David Schleef  <ds@schleef.org>
15439
15440         * sys/glsink/ARB_multitexture.h:  Remove old files.
15441         * sys/glsink/EXT_paletted_texture.h:
15442         * sys/glsink/NV_register_combiners.h:
15443         * sys/glsink/gstgl_nvimage.c:
15444         * sys/glsink/gstgl_pdrimage.c:
15445         * sys/glsink/gstgl_rgbimage.c:
15446         * sys/glsink/gstglsink.c:
15447         * sys/glsink/gstglsink.h:
15448         * sys/glsink/gstglxwindow.c:
15449         * sys/glsink/regcomb_yuvrgb.c:
15450
15451 2004-08-09  David Schleef  <ds@schleef.org>
15452
15453         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
15454         GL sink plugin.  (Bug #147302)
15455
15456         * configure.ac: Test for OpenGL
15457         * sys/Makefile.am: Use test for OpenGL
15458         * sys/glsink/Makefile.am:
15459         * sys/glsink/glimagesink.c: rewrite
15460         * sys/glsink/glimagesink.h: rewrite
15461
15462 2004-08-09  David Schleef  <ds@schleef.org>
15463
15464         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
15465         sane framerates.
15466         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
15467         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
15468         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
15469
15470 2004-08-09  Wim Taymans  <wim@fluendo.com>
15471
15472         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15473         (gst_multifdsink_add), (gst_multifdsink_get_stats),
15474         (gst_multifdsink_client_remove),
15475         (gst_multifdsink_handle_client_read),
15476         (gst_multifdsink_handle_client_write),
15477         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
15478         Do a bit more logging, make the client_read code more robust.
15479
15480 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
15481
15482         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
15483         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
15484         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
15485         (gst_jpegdec_init), (gst_jpegdec_chain):
15486         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
15487         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
15488           cleanups, debugging fixes and memleak plugging
15489
15490 2004-08-09  Wim Taymans  <wim@fluendo.com>
15491
15492         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
15493         (theora_get_formats), (theora_dec_src_convert),
15494         (theora_dec_sink_convert), (theora_dec_src_query),
15495         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
15496         (theora_dec_change_state):
15497         Don't crash on missing header packets.
15498
15499 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
15500
15501         * po/LINGUAS:
15502         * po/sq.po:
15503           Added Albanian translation (Laurent Dhima)
15504         * po/cs.po:
15505           updated
15506
15507 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
15508
15509         * ext/lame/gstlame.c:
15510           fix/add debugging
15511
15512 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
15513
15514         * sys/ximage/ximagesink.c:
15515         * sys/xvimage/xvimagesink.c:
15516           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
15517
15518 2004-08-06  Wim Taymans  <wim@fluendo.com>
15519
15520         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15521         (gst_multifdsink_add), (gst_multifdsink_get_stats),
15522         (gst_multifdsink_client_remove),
15523         (gst_multifdsink_handle_client_read),
15524         (gst_multifdsink_handle_client_write),
15525         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
15526         Make sure we don't try to read more from a client that what
15527         ioctl says us or we deadlock.
15528
15529 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
15530
15531         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
15532         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
15533         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
15534           decouple running_time and n_frames so it can handle changing
15535           framerate while running
15536
15537 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
15538
15539         * po/nl.po:
15540         * po/sv.po:
15541           updated translations
15542
15543 2004-08-04  Benjamin Otte  <otte@gnome.org>
15544
15545         * gst/videotestsrc/gstvideotestsrc.c:
15546         (gst_videotestsrc_get_capslist), (generate_capslist),
15547         (plugin_init):
15548           generate the list of supported caps at startup and reuse it instead
15549           of always generating it
15550
15551 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
15552
15553         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
15554           whoops, last checkin broke normal build
15555
15556 2004-08-03  Benjamin Otte  <otte@gnome.org>
15557
15558         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
15559         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
15560         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
15561         (gst_alsa_mixer_get_option):
15562         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
15563         (dvdnavsrc_print_event):
15564         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
15565         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
15566         (gst_ogg_mux_pad_unlink):
15567         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
15568         (gst_multipart_mux_pad_unlink):
15569         * gst/videofilter/gstvideobalance.c:
15570         (gst_videobalance_colorbalance_set_value):
15571         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
15572         (gst_videomixer_pad_unlink):
15573         * po/uk.po:
15574         * sys/oss/gstossmixer.c:
15575         * sys/v4l/gstv4lcolorbalance.c:
15576         * sys/v4l/gstv4ltuner.c:
15577         * sys/v4l/v4lsrc_calls.c:
15578         * sys/v4l2/gstv4l2colorbalance.c:
15579         * sys/v4l2/gstv4l2tuner.c:
15580           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
15581
15582 2004-08-03  Benjamin Otte  <otte@gnome.org>
15583
15584         * examples/dynparams/filter.c: (ui_control_create):
15585         * examples/gstplay/player.c: (print_tag):
15586         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
15587         * ext/gdk_pixbuf/gstgdkanimation.c:
15588         (gst_gdk_animation_iter_may_advance):
15589         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
15590         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
15591         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
15592         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
15593         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
15594         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
15595         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
15596         * gst/sine/demo-dparams.c: (main):
15597         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
15598         * testsuite/alsa/formats.c: (create_pipeline):
15599         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
15600           fixes for G_DISABLE_ASSERT and friends
15601         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
15602         (mp3_type_frame_length_from_header), (mp3_type_find),
15603         (plugin_init):
15604           require mp3 typefinding to have at least MIN_HEADERS valid headers
15605           add typefinding for AAC adts files
15606
15607 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
15608
15609         * sys/ximage/ximagesink.c:
15610         (gst_ximagesink_calculate_pixel_aspect_ratio):
15611         * sys/xvimage/xvimagesink.c:
15612         (gst_xvimagesink_calculate_pixel_aspect_ratio):
15613         Make sure we calculate pixel-aspect-ratio using floating point maths
15614
15615 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15616
15617         * po/uk.po:
15618           updated translation
15619
15620 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15621
15622         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
15623         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
15624           add debugging for display PAR calculation
15625
15626 2004-08-02  David Schleef  <ds@schleef.org>
15627
15628         * configure.ac: Fix mikmod CFLAGS.
15629
15630 2004-07-27  Benjamin Otte  <otte@gnome.org>
15631
15632         * gst/audioscale/gstaudioscale.c:
15633         - fix templates to only support S16, it's the only format that works
15634         - make caps nego code use try_set_caps_nonfixed and fixation instead
15635         of try_set_caps twice, which is not nice for autopluggers
15636         - change rank to secondary, so autopluggers can pick it up after
15637         audioconvert
15638
15639 2004-08-02  Iain <iain@prettypeople.org>
15640
15641         * gst/interleave/interleave.c (interleave_init),
15642         (interleave_request_new_pad),
15643         (interleave_pad_removed),
15644         (interleave_buffered_loop): Use the real pad count, not the artificial
15645         one.
15646
15647 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15648
15649         * configure.ac: bump nano back to development
15650
15651 === release 0.8.3 ===
15652
15653 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15654
15655         * configure.ac: releasing 0.8.3, "Water"
15656
15657 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15658
15659         * sys/xvimage/xvimagesink.c:
15660         (gst_xvimagesink_calculate_pixel_aspect_ratio),
15661         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
15662         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
15663         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15664         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15665         * sys/xvimage/xvimagesink.h:
15666           apply similar PAR fixes as to ximagesink
15667
15668 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15669
15670         patch from: Benjamin Otte
15671
15672         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
15673           add link function to lame.  Fixes #148986.
15674
15675 2004-08-02  Johan Dahlin  <johan@gnome.org>
15676
15677         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
15678         fix debugging log
15679
15680 2004-07-30  David Schleef  <ds@schleef.org>
15681
15682         * gst/videomixer/Makefile.am: Fix things that should have been
15683         fixed in the last checkin.
15684
15685 2004-07-30  David Schleef  <ds@schleef.org>
15686
15687         * gst/multipart/Makefile.am: Fix things that should have been
15688         fixed in the last checkin.
15689
15690 2004-07-30  David Schleef  <ds@schleef.org>
15691
15692         * testsuite/multifilesink/Makefile.am: Fix unused variable.
15693
15694 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15695
15696         * configure.ac:
15697           bump nano for prerelease
15698         * po/af.po:
15699         * po/az.po:
15700         * po/cs.po:
15701         * po/en_GB.po:
15702         * po/hu.po:
15703         * po/nl.po:
15704         * po/sr.po:
15705         * po/sv.po:
15706         * po/uk.po:
15707           updates
15708
15709 2004-07-30  Wim Taymans  <wim@fluendo.com>
15710
15711         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15712         (gst_multifdsink_add), (gst_multifdsink_remove),
15713         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
15714         (gst_multifdsink_client_remove),
15715         (gst_multifdsink_handle_client_write),
15716         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
15717         * gst/tcp/gstmultifdsink.h:
15718         Recover from a select with a bad file descriptor by removing
15719         the client.
15720
15721 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15722
15723         * configure.ac:
15724           fix requirement of core
15725         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
15726         (gst_play_pipeline_setup):
15727           don't use colorspace element.  do use hermescolorspace element.
15728           make macro to get a colorspace element.
15729           mark strings for translation.
15730         * po/POTFILES.in:
15731           add play.c
15732         * po/af.po:
15733         * po/az.po:
15734         * po/cs.po:
15735         * po/en_GB.po:
15736         * po/hu.po:
15737         * po/nl.po:
15738         * po/sr.po:
15739         * po/sv.po:
15740         * po/uk.po:
15741           update translations
15742
15743 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15744
15745         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
15746         fix default for newmedia flag
15747
15748 2004-07-30  Wim Taymans  <wim@fluendo.com>
15749
15750         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
15751         (gst_theora_dec_init), (theora_get_formats),
15752         (theora_dec_src_convert), (theora_dec_sink_convert),
15753         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15754         (theora_dec_chain), (theora_dec_set_property),
15755         (theora_dec_get_property):
15756         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15757         (gst_theora_enc_class_init), (gst_theora_enc_init),
15758         (theora_enc_sink_link), (theora_enc_chain),
15759         (theora_enc_set_property), (theora_enc_get_property):
15760         Added cropping option to theora decoder.
15761         Added border option to theora encoder.
15762
15763 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15764
15765         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
15766         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
15767         (gst_pngenc_set_property):
15768         * ext/libpng/gstpngenc.h:
15769         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
15770
15771 2004-07-30  Wim Taymans  <wim@fluendo.com>
15772
15773         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15774         (theora_enc_sink_link), (theora_enc_chain),
15775         (theora_enc_set_property), (theora_enc_get_property):
15776         Fix encoding of non-multiple-of-16 video.
15777
15778 2004-07-29  David Schleef  <ds@schleef.org>
15779
15780         * configure.ac: make test for audiofile more strict
15781
15782 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
15783
15784         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15785           give different names to typefind functions
15786
15787 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15788
15789         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15790         (gst_ximagesink_calculate_pixel_aspect_ratio),
15791         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
15792         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
15793         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
15794         (gst_ximagesink_get_property), (gst_ximagesink_init):
15795         * sys/ximage/ximagesink.h:
15796           allocate PAR's dynamically.
15797           use autodetected PAR if no object-set PAR is given.
15798           add workaround for directfb's X not setting physical size.
15799           fix to xvimagesink will follow tomorrow.
15800
15801 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15802
15803         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
15804         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
15805         (gst_shout2send_get_type), (gst_shout2send_set_clock),
15806         (gst_shout2send_class_init), (gst_shout2send_init),
15807         (set_shout_metadata), (gst_shout2send_set_metadata),
15808         (gst_shout2send_chain), (gst_shout2send_set_property),
15809         (gst_shout2send_get_property), (gst_shout2send_connect),
15810         (gst_shout2send_change_state):
15811         * ext/shout2/gstshout2.h:
15812         - fix for sending mp3 audio to icecast2 server, if pad link function not
15813         called before PAUSED state
15814         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
15815         - added tagging support for mp3 audio broadcasted
15816         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
15817         debug info
15818
15819 2004-07-28  Wim Taymans  <wim@fluendo.com>
15820
15821         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
15822         (gst_ogg_demux_push):
15823         Return query failure when we don't know the length of
15824         an ogg stream insteda of returning TRUE with a bogus value.
15825
15826 2004-07-28  Wim Taymans  <wim@fluendo.com>
15827
15828         * ext/theora/theoradec.c: (theora_get_formats),
15829         (theora_dec_src_convert), (theora_dec_sink_convert),
15830         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15831         (theora_dec_chain):
15832         Don't screw up the 1 Chroma for 1 luma sample situation when we
15833         have an odd offset/width by adding a black border in those cases.
15834
15835 2004-07-28  Wim Taymans  <wim@fluendo.com>
15836
15837         * ext/theora/theoradec.c: (theora_get_formats),
15838         (theora_dec_src_convert), (theora_dec_sink_convert),
15839         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15840         (theora_dec_chain):
15841         * ext/theora/theoraenc.c: (theora_enc_sink_link):
15842         Added first attempt at cropping of the image as required by the
15843         theora spec. We need more properties in the caps (offset_x,
15844         offset_y,stride) to implement this correctly.
15845
15846 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
15847
15848         * ext/dvdnav/README:
15849           Update the README to use dvddemux
15850         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
15851           Ensure getcaps returns a subset of the template caps
15852         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
15853         (gst_mpeg2subt_init):
15854           Ensure getcaps returns a subset of the template caps
15855         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
15856         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
15857         (gst_dvd_demux_get_subpicture_stream),
15858         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
15859         * gst/mpegstream/gstdvddemux.h:
15860           Set the explicit caps on the current_video pad before pushing
15861           anything
15862         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
15863         (gst_mpeg_demux_get_audio_stream):
15864           Free caps used to gst_pad_set_explicit_caps, which takes a const
15865           GstCaps *
15866
15867 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15868
15869         * configure.ac: update GStreamer requirement to 0.8.4 because of
15870           GstFraction.
15871
15872 2004-07-28  Wim Taymans  <wim@fluendo.com>
15873
15874         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
15875         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
15876         Add the pad to the element after setting up the caps. This
15877         makes it a lot easier to autoplug.
15878
15879 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
15880
15881         * gst/median/gstmedian.c:
15882         * gst/mpeg2subt/gstmpeg2subt.c:
15883         * gst/mpegaudioparse/gstmpegaudioparse.c:
15884         * gst/mpegstream/gstdvddemux.c:
15885         * gst/mpegstream/gstmpegdemux.c:
15886         * gst/mpegstream/gstmpegpacketize.c:
15887         * gst/rtjpeg/gstrtjpeg.c:
15888         * gst/rtjpeg/gstrtjpegdec.c:
15889         * gst/rtjpeg/gstrtjpegenc.c:
15890         * gst/sine/gstsinesrc.c:
15891         * gst/smooth/gstsmooth.c:
15892         * gst/smpte/gstsmpte.c:
15893         * gst/smpte/gstsmpte.h:
15894         * gst/stereo/gststereo.c:
15895         * gst/videofilter/gstgamma.c:
15896         * gst/videofilter/gstvideobalance.c:
15897         * gst/videofilter/gstvideofilter.c:
15898         * gst/videofilter/gstvideoflip.c:
15899         * gst/videoscale/gstvideoscale.c:
15900         * gst/videoscale/videoscale.c:
15901         * gst/videotestsrc/gstvideotestsrc.c:
15902         * gst/videotestsrc/videotestsrc.c:
15903         * gst/wavenc/gstwavenc.c:
15904         * gst/wavparse/gstwavparse.c:
15905           fix local includes and 64 bits constants
15906
15907 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
15908
15909         * win32/gst.sln:
15910         * gst-libs/gst/*/*.vcproj:
15911         * gst/*/*.vcproj:
15912           more working plugins
15913
15914 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15915
15916         * testsuite/alsa/Makefile.am:
15917         * testsuite/alsa/srcstate.c:
15918         add test for alsasrc changing state
15919
15920 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15921
15922         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
15923         (gst_silence_get):
15924         * gst/silence/gstsilence.h:
15925         fix silence generation for 16bit raw audio
15926
15927 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15928
15929         * gst/matroska/matroska-demux.c:
15930         (gst_matroska_demux_parse_metadata),
15931         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
15932         * gst/mpegaudio/common.c:
15933         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
15934         (gst_videoscale_getcaps), (gst_videoscale_link),
15935         (gst_videoscale_src_fixate), (gst_videoscale_init),
15936         (gst_videoscale_finalize):
15937         * gst/videoscale/gstvideoscale.h:
15938         * gst/videotestsrc/gstvideotestsrc.c:
15939         (gst_videotestsrc_get_capslist):
15940         * gst/wavenc/gstwavenc.c:
15941         * sys/oss/gstossmixer.c: (fill_labels):
15942         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15943         (gst_ximagesink_handle_xevents),
15944         (gst_ximagesink_calculate_pixel_aspect_ratio),
15945         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
15946         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
15947         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
15948         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
15949         (gst_ximagesink_init), (gst_ximagesink_class_init):
15950         * sys/ximage/ximagesink.h:
15951         * sys/xvimage/xvimagesink.c:
15952         (gst_xvimagesink_calculate_pixel_aspect_ratio),
15953         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
15954         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
15955         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15956         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15957         * sys/xvimage/xvimagesink.h:
15958           first batch of pixel aspect ratio commits.
15959
15960 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15961
15962         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15963         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
15964         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
15965           handle stride, needs work if we want to move stride handling
15966           upstream, but works correctly for our purposes.
15967
15968 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15969
15970         * gst/videoscale/README:
15971           add testing examples
15972         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
15973         (gst_videoscale_chain):
15974         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15975         (gst_videoscale_get_size):
15976           add get_size function that handles stride like videotestsrc.
15977           fixes conversion for YUV formats for as much as I can test them.
15978
15979 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15980
15981         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15982         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
15983         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15984         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
15985         (gst_xvimagesink_xvimage_put):
15986           further cleanups, logging, error handling and synchronizing
15987
15988 2004-07-27  Wim Taymans  <wim@fluendo.com>
15989
15990         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
15991         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
15992         (gst_videomixer_pad_set_property),
15993         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
15994         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
15995         (gst_videomixer_class_init), (gst_videomixer_init),
15996         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
15997         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
15998         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
15999         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
16000         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
16001         (gst_videomixer_loop), (plugin_init):
16002         Be a nicer negotiation citizen and provide a getcaps function on
16003         the srcpad. This also fixes a crash when resizing.
16004
16005 2004-07-27  Julien MOUTTE  <julien@moutte.net>
16006
16007         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16008         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
16009
16010 2004-07-27  Wim Taymans  <wim@fluendo.com>
16011
16012         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
16013         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
16014         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
16015         (gst_pngenc_set_property):
16016         * ext/libpng/gstpngenc.h:
16017         Added snapshot property to pngenc.
16018         removed g_print from pngdec
16019
16020 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
16021
16022         * gst/ac3parse/ac3parse.vcproj
16023         * gst/adder/adder.vcproj
16024         * gst/alpha/alpha.vcproj
16025         * gst/alpha/alphacolor.vcproj
16026         * gst/asfdemux/asf.vcproj
16027         * gst/audioconvert/audioconvert.vcproj
16028         * gst/audiorate/audiorate.vcproj
16029         * gst/audioscale/audioscale.vcproj
16030         * gst/auparse/auparse.vcproj
16031         * gst/avi/avi.vcproj
16032         * gst/cdxaparse/cdxaparse.vcproj
16033         * gst/chart/chart.vcproj
16034         * gst/colorspace/colorspace.vcproj
16035         * gst/cutter/cutter.vcproj
16036         * gst/debug/debug.vcproj
16037         * gst/debug/efence.vcproj
16038         * gst/debug/navigationtest.vcproj
16039         * gst/deinterlace/deinterlace.vcproj
16040         * gst/effectv/effectv.vcproj
16041         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
16042         * gst/filter/filter.vcproj
16043         * gst/flx/flxdec.vcproj
16044         * gst/goom/goom.vcproj
16045         * gst/interleave/interleave.vcproj
16046         * gst/law/alaw.vcproj
16047         * gst/law/mulaw.vcproj
16048         * gst/matroska/matroska.vcproj
16049         * gst/median/median.vcproj
16050         * gst/mixmatrix/mixmatrix.vcproj
16051         * gst/mpeg1sys/mpeg1systemencode.vcproj
16052         * gst/mpeg1videoparse/mp1videoparse.vcproj
16053         * gst/mpeg2sub/mpeg2subt.vcproj
16054         * gst/mpegaudio/mpegaudio.vcproj
16055         * gst/mpegaudioparse/mpegaudioparse.vcproj
16056         * gst/mpegstream/mpegstream.vcproj
16057         * gst/multifilesink/multifilesink.vcproj
16058         * gst/multipart/multipart.vcproj
16059         * gst/oneton/oneton.vcproj
16060         * gst/overlay/overlay.vcproj
16061         * gst/passthrough/passthrough.vcproj
16062         * gst/qtdemux/qtdemux.vcproj
16063         * gst/realmedia/rmdemux.vcproj
16064         * gst/rtjpeg/rtjpeg.vcproj
16065         * gst/rtp/rtp.vcproj
16066         * gst/silence/silence.vcproj
16067         * gst/sine/sinesrc.vcproj
16068         * gst/smooth/smooth.vcproj
16069         * gst/smpte/smpte.vcproj
16070         * gst/spectrum/spectrum.vcproj
16071         * gst/speed/speed.vcproj
16072         * gst/stereo/stereo.vcproj
16073         * gst/switch/switch.vcproj
16074         * gst/tags/tagedit.vcproj
16075         * gst/tcp/tcp.vcproj
16076         * gst/typefind/typefindfunctions.vcproj
16077         * gst/udp/udp.vcproj
16078         * gst/videobox/videobox.vcproj
16079         * gst/videocrop/videocrop.vcproj
16080         * gst/videodrop/videodrop.vcproj
16081         * gst/videofilter/gamma.vcproj
16082         * gst/videofilter/videobalance.vcproj
16083         * gst/videofilter/videofilter.vcproj
16084         * gst/videofilter/videoflip.vcproj
16085         * gst/videoflip/videoflip.vcproj
16086         * gst/videomixer/videomixer.vcproj
16087         * gst/videorate/videorate.vcproj
16088         * gst/videoscale/videoscale.vcproj
16089         * gst/videotestsrc/videotestsrc.vcproj
16090         * gst/virtualdub/virtualdub.vcproj
16091         * gst/volenv/volenv.vcproj
16092         * gst/volume/volume.vcproj
16093         * gst/wavenc/wavenc.vcproj
16094         * gst/wavparse/wavparse.vcproj
16095         * gst/y4m/y4menc.vcproj
16096         * gst-libs/gst/audio/audio.vcproj
16097         * gst-libs/gst/audio/audiofilter.vcproj
16098         * gst-libs/gst/colorbalance/colorbalance.vcproj
16099         * gst-libs/gst/idct/idtc.vcproj
16100         * gst-libs/gst/media-info/media-info.vcproj
16101         * gst-libs/gst/mixer/mixer.vcproj
16102         * gst-libs/gst/navigation/navigation.vcproj
16103         * gst-libs/gst/play/play.vcproj
16104         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
16105         * gst-libs/gst/resample/resample.vcproj
16106         * gst-libs/gst/riff/riff.vcproj
16107         * gst-libs/gst/tuner/tuner.vcproj
16108         * gst-libs/gst/video/video.vcproj
16109         * gst-libs/gst/xoverlay/xoverlay.vcproj
16110           avoid problems with math.h, fix release dependancy
16111           rename GStreamer-0.8.lib to libgstreamer.lib
16112
16113 2004-07-27  Julien MOUTTE  <julien@moutte.net>
16114
16115         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
16116         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
16117         the atom is not available we have to unlock the mutex. Fixes #148023
16118
16119 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16120
16121         * gst-libs/gst/media-info/media-info.h:
16122           issue for a vararg macro with MSVC
16123
16124 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16125
16126         * gst/effectv/effectv.vcproj
16127         * gst-libs/gst/idct/idct.vcproj:
16128         * gst-libs/gst/media-info/media-info.vcproj:
16129         * gst-libs/gst/navigation/navigation.vcproj:
16130         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
16131         * gst-libs/gst/video/video.vcproj:
16132         * gst-libs/gst/xoverlay/xoverlay.vcproj:
16133           fixes for build problems
16134
16135 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16136
16137         * gst-libs/gst/audio/audio.def:
16138         * gst-libs/gst/audio/riff.def:
16139           add some definitions needed by plugins
16140
16141 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16142
16143         * gst/asfdemux/gstasfmux.c
16144           Fix some 64 bits constants to be glib friendly
16145
16146 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16147
16148         * gst/ac3parse/gstac3parse.c
16149         * gst/audioscale/gstaudioscale.c
16150         * gst/auparse/gstauparse.c
16151         * gst/colorspace/gstcolorspace.c
16152         * gst/colorspace/yuv2rgb.h
16153           local include fixes
16154
16155 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16156
16157         * win32/gst.sln
16158           add more plugins to the build
16159
16160 2004-07-26  Julien MOUTTE  <julien@moutte.net>
16161
16162         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
16163         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
16164
16165 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16166
16167         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
16168         (gst_level_set_property), (gst_level_get_property),
16169         (gst_level_base_init), (gst_level_class_init):
16170           add debugging categories.  cleanups.
16171
16172 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16173
16174         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
16175         (gst_videoscale_planar411), (gst_videoscale_planar400),
16176         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
16177         (gst_videoscale_scale_nearest_str1),
16178         (gst_videoscale_scale_nearest_str2),
16179         (gst_videoscale_scale_nearest_str4),
16180         (gst_videoscale_scale_nearest_16bit),
16181         (gst_videoscale_scale_nearest_24bit):
16182           fixed stride issues
16183           tested with 320x240 -> 321, 322, 324 x240
16184           tested with YV12, I420, YUY2, UYVY
16185           fixed packed422rev (don't think it could have worked before)
16186           by testing with UYVY
16187
16188 2004-07-26  Benjamin Otte  <otte@gnome.org>
16189
16190         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
16191         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
16192         (plugin_init):
16193           add debugging category, add error checks like checking return values
16194           of setup calls, make sure it still works after
16195           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
16196
16197 2004-07-26  Wim Taymans  <wim@fluendo.com>
16198
16199         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
16200         (gst_mpeg_demux_get_audio_stream),
16201         (gst_mpeg_demux_process_private):
16202         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
16203         Check for error codes from the negotiation functions. Make sure
16204         we really set the pad caps when a new pad is created.
16205
16206 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16207
16208         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16209         (gst_ffmpeg_caps_to_pix_fmt):
16210         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
16211         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16212         (gst_ffmpegcolorspace_pad_link):
16213           don't make function do two things at the same time without reason.
16214
16215 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16216
16217         * gst/ac3parse/ac3parse.vcproj
16218         * gst/adder/adder.vcproj
16219         * gst/alpha/alpha.vcproj
16220         * gst/alpha/alphacolor.vcproj
16221         * gst/asfdemux/asf.vcproj
16222         * gst/audioconvert/audioconvert.vcproj
16223         * gst/audiorate/audiorate.vcproj
16224         * gst/audioscale/audioscale.vcproj
16225         * gst/auparse/auparse.vcproj
16226         * gst/avi/avi.vcproj
16227         * gst/cdxaparse/cdxaparse.vcproj
16228         * gst/chart/chart.vcproj
16229         * gst/colorspace/colorspace.vcproj
16230         * gst/cutter/cutter.vcproj
16231         * gst/debug/debug.vcproj
16232         * gst/debug/efence.vcproj
16233         * gst/debug/navigationtest.vcproj
16234         * gst/deinterlace/deinterlace.vcproj
16235         * gst/effectv/effectv.vcproj
16236         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
16237         * gst/filter/filter.vcproj
16238         * gst/flx/flxdec.vcproj
16239         * gst/goom/goom.vcproj
16240         * gst/interleave/interleave.vcproj
16241         * gst/law/alaw.vcproj
16242         * gst/law/mulaw.vcproj
16243         * gst/matroska/matroska.vcproj
16244         * gst/median/median.vcproj
16245         * gst/mixmatrix/mixmatrix.vcproj
16246         * gst/mpeg1sys/mpeg1systemencode.vcproj
16247         * gst/mpeg1videoparse/mp1videoparse.vcproj
16248         * gst/mpeg2sub/mpeg2subt.vcproj
16249         * gst/mpegaudio/mpegaudio.vcproj
16250         * gst/mpegaudioparse/mpegaudioparse.vcproj
16251         * gst/mpegstream/mpegstream.vcproj
16252         * gst/multifilesink/multifilesink.vcproj
16253         * gst/multipart/multipart.vcproj
16254         * gst/oneton/oneton.vcproj
16255         * gst/overlay/overlay.vcproj
16256         * gst/passthrough/passthrough.vcproj
16257         * gst/qtdemux/qtdemux.vcproj
16258         * gst/realmedia/rmdemux.vcproj
16259         * gst/rtjpeg/rtjpeg.vcproj
16260         * gst/rtp/rtp.vcproj
16261         * gst/silence/silence.vcproj
16262         * gst/sine/sinesrc.vcproj
16263         * gst/smooth/smooth.vcproj
16264         * gst/smpte/smpte.vcproj
16265         * gst/spectrum/spectrum.vcproj
16266         * gst/speed/speed.vcproj
16267         * gst/stereo/stereo.vcproj
16268         * gst/switch/switch.vcproj
16269         * gst/tags/tagedit.vcproj
16270         * gst/tcp/tcp.vcproj
16271         * gst/typefind/typefindfunctions.vcproj
16272         * gst/udp/udp.vcproj
16273         * gst/videobox/videobox.vcproj
16274         * gst/videocrop/videocrop.vcproj
16275         * gst/videodrop/videodrop.vcproj
16276         * gst/videofilter/gamma.vcproj
16277         * gst/videofilter/videobalance.vcproj
16278         * gst/videofilter/videofilter.vcproj
16279         * gst/videofilter/videoflip.vcproj
16280         * gst/videoflip/videoflip.vcproj
16281         * gst/videomixer/videomixer.vcproj
16282         * gst/videorate/videorate.vcproj
16283         * gst/videoscale/videoscale.vcproj
16284         * gst/videotestsrc/videotestsrc.vcproj
16285         * gst/virtualdub/virtualdub.vcproj
16286         * gst/volenv/volenv.vcproj
16287         * gst/volume/volume.vcproj
16288         * gst/wavenc/wavenc.vcproj
16289         * gst/wavparse/wavparse.vcproj
16290         * gst/y4m/y4menc.vcproj
16291           more plugins supported under windows
16292
16293 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16294
16295         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
16296         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
16297         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
16298         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
16299         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
16300           Add debugging statements.  Use the sizes as returned by the
16301           *CreateImage calls.
16302
16303 2004-07-26  Johan Dahlin  <johan@gnome.org>
16304
16305         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
16306         the pad is negotiated.
16307
16308         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
16309
16310 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
16311
16312         * gst-libs/gst/colorbalance/colorbalance.vcproj:
16313         * gst-libs/gst/idct/idct.vcproj:
16314         * gst-libs/gst/media-info/media-info.vcproj:
16315         * gst-libs/gst/mixer/mixer.vcproj:
16316         * gst-libs/gst/navigation/navigation.vcproj:
16317         * gst-libs/gst/play/play.vcproj:
16318         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
16319         * gst-libs/gst/resample/resample.vcproj:
16320         * gst-libs/gst/tuner/tuner.vcproj:
16321         * gst-libs/gst/video/video.vcproj:
16322         * gst-libs/gst/xoverlay/xoverlay.vcproj:
16323           more plugins supported under windows
16324
16325 2004-07-25 Iain <iain@prettypeople.org>
16326
16327         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
16328         pad now rather than when the pad is created because state changes wipe
16329         explicit caps (fixes #148043).
16330
16331 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
16332
16333         reviewed by Benjamin Otte  <otte@gnome.org>
16334
16335         * ext/mad/gstmad.c:
16336           fix mad plugin crashing on Sun (fixes #148289)
16337
16338 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
16339
16340         * gst/avi/avi.def:
16341         * gst/avi/avi.vcproj:
16342         * gst/matroska/matroska.def:
16343         * gst/matroska/matroska.vcproj:
16344           remove unused .def files
16345
16346 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
16347
16348         * gst-libs/gst/audio/gstaudiofilter.c:
16349           Clean the local include
16350
16351 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
16352
16353         * win32/gst.sln:
16354         * gst-libs/gst/audio/audio.def:
16355         * gst-libs/gst/audio/audio.vcproj:
16356         * gst-libs/gst/audio/audiofilter.vcproj:
16357         * gst-libs/gst/audio/riff.def:
16358         * gst-libs/gst/audio/riff.vcproj:
16359         * gst-libs/gst/gst-libs.def:
16360         * gst-libs/gst/gst-libs.vcproj:
16361         * gst/avi/avi.vcproj:
16362         * gst/avi/avi.vcproj:
16363           Copy the files where needed after building, cleaner projects
16364
16365 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
16366
16367         * gst/matroska/ebml-write.c:
16368           Fix some 64 bits constants to be glib friendly
16369
16370 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
16371
16372         * win32/gst.sln:
16373         * gst-libs/gst/gst-libs.def:
16374         * gst-libs/gst/gst-libs.vcproj:
16375         * gst/matroska/matroska.def:
16376         * gst/matroska/matroska.vcproj:
16377           Add the preliminary canvas to build plugins on Win32
16378
16379 2004-07-23  Benjamin Otte  <otte@gnome.org>
16380
16381         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
16382           don't enfore negotiation from source side, it breaks
16383           sinesrc ! audioconvert ! osssink
16384
16385 2004-07-22  David Schleef  <ds@schleef.org>
16386
16387         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
16388         for ELF files, since they can easily be recognized as audio/mpeg.
16389         (bug #147441)
16390
16391 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16392
16393         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
16394         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
16395         (gst_videoscale_scale_nearest_24bit),
16396         (gst_videoscale_scale_nearest_16bit):
16397           fix 16bit and 24bit for stride (24bit might need testing)
16398           don't pretend we do more than one algorithm
16399
16400 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16401
16402         * configure.ac:
16403         * gst/Makefile.am:
16404         * gst/multifilesink/Makefile.am:
16405         * gst/multifilesink/gstmultifilesink.c:
16406         (gst_multifilesink_get_formats),
16407         (gst_multifilesink_get_query_types), (_do_init),
16408         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
16409         (gst_multifilesink_init), (gst_multifilesink_dispose),
16410         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
16411         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
16412         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
16413         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
16414         (gst_multifilesink_chain), (gst_multifilesink_change_state),
16415         (gst_multifilesink_uri_get_type),
16416         (gst_multifilesink_uri_get_protocols),
16417         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
16418         (gst_multifilesink_uri_handler_init), (plugin_init):
16419         * gst/multifilesink/gstmultifilesink.h:
16420         * testsuite/Makefile.am:
16421         * testsuite/multifilesink/Makefile.am:
16422         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
16423         (gst_newmedia_class_init), (gst_newmedia_init),
16424         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
16425         (newfile_signal), (test_signal), (main):
16426         multifilesink plugin for creating new files every time a new media
16427         discontinuity event occurs
16428
16429 2004-07-22  Wim Taymans  <wim@fluendo.com>
16430
16431         * gst/alpha/Makefile.am:
16432         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
16433         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
16434         (gst_alpha_color_init), (gst_alpha_color_set_property),
16435         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
16436         (transform), (gst_alpha_color_chain),
16437         (gst_alpha_color_change_state), (plugin_init):
16438         Stupid plugin to to RGBA to AYUV conversion because none of
16439         the colorspace plugins can handle that yet.
16440
16441 2004-07-22  Wim Taymans  <wim@fluendo.com>
16442
16443         * examples/seeking/seek.c: (update_scale), (main):
16444         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16445         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
16446         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
16447         (gst_decode_bin_init), (gst_decode_bin_dispose),
16448         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16449         (no_more_pads), (close_link), (type_found),
16450         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16451         (plugin_init):
16452         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16453         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16454         (gst_play_base_bin_dispose), (queue_overrun),
16455         (gen_preroll_element), (remove_prerolls), (unknown_type),
16456         (no_more_pads), (new_stream), (setup_source),
16457         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
16458         (play_base_eos), (gst_play_base_bin_change_state),
16459         (gst_play_base_bin_add_element),
16460         (gst_play_base_bin_remove_element),
16461         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16462         (gst_play_base_bin_unlink_stream),
16463         (gst_play_base_bin_get_streaminfo):
16464         * gst/playback/gstplaybin.c: (gen_video_element),
16465         (gen_audio_element):
16466         * gst/playback/gststreaminfo.h:
16467         More playback updates, attempt to fix things after the state change
16468         breakage.
16469
16470 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16471
16472         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
16473         (gst_videoscale_scale_nearest_16bit):
16474           comment algorithm
16475
16476 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16477
16478         * gst/videotestsrc/gstvideotestsrc.c:
16479         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
16480         (gst_videotestsrc_init), (gst_videotestsrc_get),
16481         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
16482         (gst_videotestsrc_get_property):
16483         * gst/videotestsrc/gstvideotestsrc.h:
16484         * gst/videotestsrc/videotestsrc.c:
16485         * gst/videotestsrc/videotestsrc.h:
16486           cleanup and commenting
16487
16488 2004-07-21  Wim Taymans  <wim@fluendo.com>
16489
16490         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
16491         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
16492         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
16493         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
16494         (_find_chain_get_unknown_part), (_find_streams_check),
16495         (gst_ogg_demux_push), (gst_ogg_pad_push):
16496         * ext/theora/theoradec.c: (theora_get_formats),
16497         (theora_dec_src_convert), (theora_dec_sink_convert),
16498         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
16499         (theora_dec_chain):
16500         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
16501         (vorbis_dec_convert), (vorbis_dec_src_query),
16502         (vorbis_dec_src_event), (vorbis_dec_event):
16503         More seeking fixes, oggdemux now supports seeking to time and
16504         uses the downstream element to convert granulepos to time.
16505         Seeking in theora-only ogg files now works.
16506
16507 2004-07-21  Wim Taymans  <wim@fluendo.com>
16508
16509         * ext/theora/theoradec.c: (gst_theora_dec_init),
16510         (theora_get_formats), (theora_get_event_masks),
16511         (theora_get_query_types), (theora_dec_src_convert),
16512         (theora_dec_sink_convert), (theora_dec_src_query),
16513         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
16514         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
16515         (vorbis_get_event_masks), (vorbis_get_query_types),
16516         (gst_vorbis_dec_init), (vorbis_dec_convert),
16517         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
16518         Added query/convert/formats functions to vorbis and theora decoders
16519         so that the outside world can use them too. Fixed seeking on an
16520         ogg/theora/vorbis file by disabling the seeking seeking on the
16521         theora srcpad.
16522
16523 2004-07-21  Julien MOUTTE  <julien@moutte.net>
16524
16525         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
16526         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
16527         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
16528         images creation for both elements. We don't create the image on caps
16529         nego or renego, we just destroy the internal one if present if it does
16530         not match the needs. The chain function takes care of creating a new
16531         image when needed.
16532         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
16533         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
16534         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
16535         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
16536         the image format information. The buffer pool checks for the context
16537         image format and discard images with different formats.
16538         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
16539
16540 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
16541
16542         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16543         (gst_ffmpegcolorspace_chain):
16544           no point in doing any chaining if the pad we want to push from
16545           isn't usable.
16546
16547 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16548
16549         * gst-libs/gst/riff/riff-media.c:
16550         (gst_riff_create_audio_caps_with_data):
16551           Fix double end-to-native symbol conversion (#148021).
16552
16553 2004-07-20  David Schleef  <ds@schleef.org>
16554
16555         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
16556         Don't use an Atom that doesn't exist.
16557
16558 2004-07-20  Wim Taymans  <wim@fluendo.com>
16559
16560         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16561         (gst_multifdsink_add), (gst_multifdsink_get_stats),
16562         (gst_multifdsink_client_remove),
16563         (gst_multifdsink_handle_client_write),
16564         (gst_multifdsink_queue_buffer):
16565         * gst/tcp/gstmultifdsink.h:
16566         More multifdsink stats. Avoid deadlock by releasing locks
16567         before sending out a signal.
16568
16569 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
16570
16571         * po/LINGUAS:
16572         * po/hu.po:
16573           added Hungarian translation (Laszlo Dvornik)
16574
16575 2004-07-20  Wim Taymans  <wim@fluendo.com>
16576
16577         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16578         (gst_multifdsink_add), (gst_multifdsink_client_remove),
16579         (gst_multifdsink_handle_client_write),
16580         (gst_multifdsink_queue_buffer):
16581         * gst/tcp/gsttcp-marshal.list:
16582         Fixed the stupid marshal definition.
16583
16584 2004-07-20  Wim Taymans  <wim@fluendo.com>
16585
16586         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16587         (gst_multifdsink_init), (gst_multifdsink_add),
16588         (gst_multifdsink_client_remove),
16589         (gst_multifdsink_handle_client_write),
16590         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
16591         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
16592         (gst_multifdsink_init_send):
16593         * gst/tcp/gstmultifdsink.h:
16594         Added more stats, added timeout for a client, fixed some typos
16595         and added some comments.
16596
16597 2004-07-20  Wim Taymans  <wim@fluendo.com>
16598
16599         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16600         (gst_multifdsink_add), (gst_multifdsink_get_stats),
16601         (gst_multifdsink_client_remove),
16602         (gst_multifdsink_handle_client_write):
16603         * gst/tcp/gstmultifdsink.h:
16604         * gst/tcp/gsttcp-marshal.list:
16605         Added get_stats method that returns a GValueArray of
16606         stats values.
16607
16608 2004-07-19  Benjamin Otte  <otte@gnome.org>
16609
16610         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
16611           make sure longname, description and author are valid UTF-8
16612
16613 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16614
16615         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
16616         (gst_ximagesink_set_property):
16617         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
16618         (gst_xvimagesink_set_property):
16619           make sure SYNCHRONOUS is respected after getting the X context
16620
16621 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
16622
16623         * gst/matroska/matroska-demux.c:
16624         (gst_matroska_demux_handle_src_event),
16625         (gst_matroska_demux_parse_blockgroup):
16626         * gst/matroska/matroska-ids.h:
16627           add BlockReference tag and ignore it to clear out log.
16628           ignore NAVIGATION events to clear out log.
16629
16630 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
16631
16632         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
16633         (gst_matroska_demux_add_stream):
16634         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
16635           add debug categories
16636
16637 2004-07-16  Wim Taymans  <wim@fluendo.com>
16638
16639         * ext/libpng/Makefile.am:
16640         * ext/libpng/gstpng.c: (plugin_init):
16641         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
16642         (gst_pngdec_get_type), (gst_pngdec_base_init),
16643         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
16644         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
16645         * ext/libpng/gstpngdec.h:
16646         Added png decoder.
16647
16648 2004-07-16  Julien MOUTTE  <julien@moutte.net>
16649
16650         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
16651         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
16652         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
16653         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
16654         (gst_ximagesink_buffer_alloc):
16655         * sys/ximage/ximagesink.h:
16656         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16657         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
16658         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16659         (gst_xvimagesink_buffer_alloc):
16660         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
16661         again. Using internal data pointer of the x(v)image to store image's
16662         data to be coherent with the buffer alloc mechanism. Investigated the
16663         image destruction code to be sure that everything gets freed correctly.
16664
16665 2004-07-16  Wim Taymans  <wim@fluendo.com>
16666
16667         * gst-libs/gst/riff/riff-read.c:
16668         (gst_riff_read_strf_vids_with_data),
16669         (gst_riff_read_strf_auds_with_data):
16670         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16671         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
16672         Make sure we don't create 0 sized subbuffers in riff-read.
16673         Signal the no more pads signal after reading the avi header.
16674
16675 2004-07-16  Wim Taymans  <wim@fluendo.com>
16676
16677         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16678         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
16679         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
16680         (gst_decode_bin_init), (gst_decode_bin_dispose),
16681         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16682         (no_more_pads), (close_link), (type_found),
16683         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16684         (gst_decode_bin_change_state), (plugin_init):
16685         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16686         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16687         (gst_play_base_bin_dispose), (queue_overrun),
16688         (gen_preroll_element), (remove_prerolls), (unknown_type),
16689         (no_more_pads), (new_stream), (setup_source),
16690         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
16691         (play_base_eos), (gst_play_base_bin_change_state),
16692         (gst_play_base_bin_add_element),
16693         (gst_play_base_bin_remove_element),
16694         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16695         (gst_play_base_bin_unlink_stream),
16696         (gst_play_base_bin_get_streaminfo):
16697         * gst/playback/gstplaybasebin.h:
16698         Better error recovery. Added configurable preroll queue size. Faster
16699         detection of no-more-pads.
16700
16701 2004-07-16  Wim Taymans  <wim@fluendo.com>
16702
16703         * gst-libs/gst/video/video.h:
16704         Added 32 bits RGBA. Not sure if we should use another mime-type
16705         for alpha rgb. Currently the presence of the alpha_mask property
16706         signals an alpha channel.
16707
16708 2004-07-16  Wim Taymans  <wim@fluendo.com>
16709
16710         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
16711         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
16712         FPS seems to be 0.0 to MAX everywhere else.
16713
16714 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16715
16716         * gst-libs/gst/riff/riff-media.c:
16717         (gst_riff_create_video_caps_with_data):
16718           mp42/mp43 (no caps) exist too.
16719         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
16720           Set pixel_width/height; we've got them in-caps.
16721         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16722         * gst/wavparse/gstwavparse.c: (plugin_init):
16723           Both are valid primary.
16724         * sys/oss/gstossmixer.c:
16725           Remove i18n hack and enable translations.
16726
16727 2004-07-15  Benjamin Otte  <otte@gnome.org>
16728
16729         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16730         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
16731           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
16732
16733 2004-07-15  Benjamin Otte  <otte@gnome.org>
16734
16735         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
16736         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
16737         (gst_alsa_close_audio):
16738           disable some of the debugging code for now. Writing debugging to a
16739           buffer is broken in current alsalib releases.
16740
16741 2004-07-12  Benjamin Otte  <otte@gnome.org>
16742
16743         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
16744           use bufferpools
16745
16746 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
16747
16748         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16749         (theora_dec_src_query), (theora_dec_event):
16750         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
16751           add debugging categories.  Remove \n's.
16752
16753 2004-07-13  Johan Dahlin  <johan@gnome.org>
16754
16755         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
16756         (gst_play_bin_get_property): Impl.
16757
16758 2004-07-13  Wim Taymans  <wim@fluendo.com>
16759
16760         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
16761         When trying to find the stream length, seek back N pages
16762         instead of just one, where N is the number of streams in
16763         the current chain.
16764
16765 2004-07-13  Wim Taymans  <wim@fluendo.com>
16766
16767         * gst-libs/gst/riff/riff-media.c:
16768         (gst_riff_create_audio_caps_with_data),
16769         (gst_riff_create_audio_caps),
16770         (gst_riff_create_audio_template_caps):
16771         * gst-libs/gst/riff/riff-media.h:
16772         * gst-libs/gst/riff/riff-read.c:
16773         (gst_riff_read_strf_vids_with_data),
16774         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
16775         * gst-libs/gst/riff/riff-read.h:
16776         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16777         (gst_avi_demux_add_stream):
16778         Set codec_data on caps for avidemuxer.
16779
16780 2004-07-12  David Schleef  <ds@schleef.org>
16781
16782         * configure.ac: Fix test for Objective C
16783
16784 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
16785         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
16786         (gst_gdk_pixbuf_chain):
16787           Add svg and pcx to template caps, and ensure that getcaps returns a
16788           subset of the template caps.
16789           Copy each row manually for output, as gdkpixbuf may pad the
16790           rowstride to a 32-bit word boundary.
16791
16792 2004-07-12  Wim Taymans  <wim@fluendo.com>
16793
16794         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
16795         (gst_riff_create_video_template_caps):
16796         Fix the template caps to include some more media types.
16797
16798 2004-07-12  Wim Taymans  <wim@fluendo.com>
16799
16800         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16801         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16802         (compare_ranks), (print_feature), (gst_decode_bin_init),
16803         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16804         (try_to_link_1), (new_pad), (close_link), (type_found),
16805         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16806         (gst_decode_bin_change_state), (plugin_init):
16807         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16808         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16809         (gst_play_base_bin_dispose), (queue_overrun),
16810         (gen_preroll_element), (remove_prerolls), (no_more_pads),
16811         (new_stream), (setup_source), (gst_play_base_bin_set_property),
16812         (gst_play_base_bin_get_property), (play_base_eos),
16813         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16814         (gst_play_base_bin_remove_element),
16815         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16816         (gst_play_base_bin_unlink_stream),
16817         (gst_play_base_bin_get_streaminfo):
16818         * gst/playback/gstplaybasebin.h:
16819         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16820         (gst_play_bin_class_init), (gst_play_bin_init),
16821         (gst_play_bin_dispose), (gst_play_bin_set_property),
16822         (gst_play_bin_get_property), (gen_video_element),
16823         (gen_audio_element), (remove_sinks), (setup_sinks),
16824         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16825         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16826         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16827         (gst_play_bin_query), (plugin_init):
16828         * gst/playback/test4.c: (main):
16829         More fixes on reusing of the element.
16830
16831 2004-07-11  Benjamin Otte  <otte@gnome.org>
16832
16833         * ext/mad/gstmad.c: (normal_seek):
16834           allow seeking for other methods than just SET
16835
16836 2004-07-11  Andy Wingo  <wingo@pobox.com>
16837
16838         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
16839         float, "any" caps -> buffer_frames=[0,MAX].
16840
16841         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
16842         doesn't intersect our caps with the template any more. Do it
16843         ourselves.
16844         (interleave_buffered_loop): Use g_newa instead of malloc/free.
16845
16846 2004-07-09  Wim Taymans  <wim@fluendo.com>
16847
16848         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16849         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16850         (compare_ranks), (print_feature), (gst_decode_bin_init),
16851         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16852         (try_to_link_1), (new_pad), (close_link), (type_found),
16853         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16854         (gst_decode_bin_change_state), (plugin_init):
16855         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16856         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16857         (gst_play_base_bin_dispose), (queue_overrun),
16858         (gen_preroll_element), (remove_prerolls), (no_more_pads),
16859         (new_stream), (setup_source), (gst_play_base_bin_set_property),
16860         (gst_play_base_bin_get_property), (play_base_eos),
16861         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16862         (gst_play_base_bin_remove_element),
16863         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16864         (gst_play_base_bin_unlink_stream),
16865         (gst_play_base_bin_get_streaminfo):
16866         * gst/playback/gstplaybasebin.h:
16867         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16868         (gst_play_bin_class_init), (gst_play_bin_init),
16869         (gst_play_bin_dispose), (gst_play_bin_set_property),
16870         (gst_play_bin_get_property), (gen_video_element),
16871         (gen_audio_element), (remove_sinks), (setup_sinks),
16872         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16873         (gst_play_bin_send_event), (gst_play_bin_get_formats),
16874         (gst_play_bin_convert), (gst_play_bin_get_query_types),
16875         (gst_play_bin_query), (plugin_init):
16876         * gst/playback/test4.c: (main):
16877         Work on object reuse and seeking.
16878
16879 2004-07-09  Wim Taymans  <wim@fluendo.com>
16880
16881         * examples/seeking/seek.c: (iterate):
16882         Don't consume all CPU in the idle loop.
16883
16884 2004-07-09  Wim Taymans  <wim@fluendo.com>
16885
16886         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
16887         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
16888         Add pad to element *after* setting the pad functions so that
16889         the scheduler can use the correct ones.
16890
16891 2004-07-09  Wim Taymans  <wim@fluendo.com>
16892
16893         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
16894         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
16895         Sync to keyframe after seek
16896
16897 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16898
16899         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
16900         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16901         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
16902         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
16903         * ext/libvisual/visual.c: (gst_visual_change_state):
16904         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
16905         * ext/theora/theoradec.c: (theora_dec_change_state):
16906         * ext/theora/theoraenc.c: (theora_enc_change_state):
16907         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
16908         * gst-libs/gst/navigation/navigation.c:
16909         * gst/adder/gstadder.c: (gst_adder_change_state):
16910         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
16911         (gst_audio_convert_get_buffer):
16912         * gst/multipart/multipartdemux.c:
16913         (gst_multipart_demux_change_state):
16914         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
16915         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16916         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
16917         * gst/videoscale/gstvideoscale.c:
16918         (gst_videoscale_handle_src_event):
16919         * gst/volume/gstvolume.c: (volume_chain_int16):
16920           don't assert in state change, this should be done by the base
16921           GstElement class.
16922           various debugging fixes.
16923
16924 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16925
16926         * configure.ac:
16927         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16928         (gst_play_dispose), (gst_play_set_location),
16929         (gst_play_set_data_src), (gst_play_set_video_sink),
16930         (gst_play_set_audio_sink), (gst_play_set_visualization),
16931         (gst_play_connect_visualization), (gst_play_get_sink_element),
16932         (gst_play_get_all_by_interface):
16933         * gst-libs/gst/play/play.h:
16934           add new method to get elements implementing an interface.
16935           add various error logging
16936
16937 2004-07-08  Wim Taymans  <wim@fluendo.com>
16938
16939         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
16940         (make_mpeg_pipeline), (make_mpegnt_pipeline),
16941         (make_playerbin_pipeline), (query_durations_elems),
16942         (query_durations_pads), (query_positions_elems),
16943         (query_positions_pads), (update_scale), (iterate), (stop_seek),
16944         (main):
16945         Added playbin seeking example.
16946
16947 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16948
16949         * gst-libs/gst/play/play.c: (gst_play_set_location),
16950         (gst_play_set_data_src), (gst_play_set_video_sink),
16951         (gst_play_set_audio_sink), (gst_play_set_visualization),
16952         (gst_play_connect_visualization), (gst_play_get_framerate):
16953           use a macro to look up elements from hash table
16954
16955 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16956
16957         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16958         (gst_play_get_length_callback), (gst_play_set_location),
16959         (gst_play_seek_to_time), (gst_play_set_data_src),
16960         (gst_play_set_video_sink), (gst_play_set_audio_sink),
16961         (gst_play_set_visualization), (gst_play_connect_visualization),
16962         (gst_play_get_sink_element):
16963         - add debugging info
16964         - fix looking up sink elements by iterating over complete caps
16965         - put everything except for source and autoplugger in a complete bin
16966
16967 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16968
16969         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
16970         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
16971         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
16972         (gst_alsa_sink_write), (gst_alsa_sink_loop):
16973         * ext/alsa/gstalsasink.h:
16974         - add debugging info
16975         - clean up schizophrenia of data/buffer/event
16976         - fix double event unref error
16977
16978 2004-07-08  Wim Taymans  <wim@fluendo.com>
16979
16980         * gst/playback/Makefile.am:
16981         Add headers to noinst
16982
16983 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16984
16985         * tools/gst-launch-ext-m.m:
16986         * tools/gst-launch-ext.1.in:
16987           convert to the third millenium
16988
16989 2004-07-07  David Schleef  <ds@schleef.org>
16990
16991         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
16992
16993 2004-07-07  Wim Taymans  <wim@fluendo.com>
16994
16995         * gst/playback/Makefile.am:
16996         * gst/playback/README:
16997         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16998         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16999         (compare_ranks), (print_feature), (gst_decode_bin_init),
17000         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
17001         (try_to_link_1), (new_pad), (close_link), (type_found),
17002         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
17003         (plugin_init):
17004         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
17005         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
17006         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
17007         (gen_preroll_element), (no_more_pads), (new_stream),
17008         (setup_source), (gst_play_base_bin_set_property),
17009         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
17010         (gst_play_base_bin_add_element),
17011         (gst_play_base_bin_remove_element),
17012         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
17013         (gst_play_base_bin_unlink_stream),
17014         (gst_play_base_bin_get_streaminfo):
17015         * gst/playback/gstplaybasebin.h:
17016         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
17017         (gst_play_bin_class_init), (gst_play_bin_init),
17018         (gst_play_bin_dispose), (gst_play_bin_set_property),
17019         (gst_play_bin_get_property), (gen_video_element),
17020         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
17021         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
17022         (gst_play_bin_get_formats), (gst_play_bin_convert),
17023         (gst_play_bin_get_query_types), (gst_play_bin_query),
17024         (plugin_init):
17025         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
17026         (gst_stream_info_get_type), (gst_stream_info_class_init),
17027         (gst_stream_info_init), (gst_stream_info_new),
17028         (gst_stream_info_dispose), (gst_stream_info_set_property),
17029         (gst_stream_info_get_property):
17030         * gst/playback/gststreaminfo.h:
17031         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
17032         (main):
17033         * gst/playback/test2.c: (main):
17034         * gst/playback/test3.c: (update_scale), (main):
17035         More playbin fixes. Added README. Do better element filtering.
17036         Added base class to preroll media. Added test apps.
17037
17038 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17039
17040         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
17041         * ext/mpeg2dec/gstmpeg2dec.h:
17042           various debugging improvements.  Reset stream to next picture
17043           instead of sequence header, otherwise seeks cannot work.
17044
17045 2004-07-07  Wim Taymans  <wim@fluendo.com>
17046
17047         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
17048         (gst_video_box_class_init), (gst_video_box_set_property),
17049         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
17050         Use pad_alloc where possible.
17051
17052 2004-07-07  Wim Taymans  <wim@fluendo.com>
17053
17054         * sys/oss/gstosselement.c: (gst_osselement_reset),
17055         (gst_osselement_parse_caps):
17056         * sys/oss/gstosselement.h:
17057         * sys/oss/gstosssrc.c: (gst_osssrc_get):
17058         Fix offset on osssrc.
17059
17060 2004-07-07  Wim Taymans  <wim@fluendo.com>
17061
17062         * ext/theora/theora.c: (plugin_init):
17063         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
17064         (theora_dec_src_query), (theora_dec_chain):
17065         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17066         (theora_enc_sink_link), (theora_buffer_from_packet),
17067         (theora_push_packet), (theora_enc_chain):
17068         Fix theora granulepos calculation.
17069         Fix overflow in duration/position calculation.
17070         Bump rank to PRIMARY for theoradec.
17071         Use granulepos of last packet to calculate position.
17072         Set keyframe flag on buffers when needed.
17073
17074 2004-07-06  David Schleef  <ds@schleef.org>
17075
17076         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
17077         serious?  (Fixed, obviously.)
17078
17079 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17080
17081         * po/LINGUAS:
17082         * po/cs.po:
17083           added Czech translation (Miloslav Trmac)
17084
17085 2004-07-05  Wim Taymans  <wim@fluendo.com>
17086
17087         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17088         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
17089         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
17090         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
17091         (close_link), (type_found), (gst_decode_bin_set_property),
17092         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
17093         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
17094         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
17095         (gst_decode_bin_query), (plugin_init):
17096         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
17097         (gst_play_bin_class_init), (gst_play_bin_init),
17098         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
17099         (get_video_element), (new_pad), (setup_source),
17100         (gst_play_bin_set_property), (gst_play_bin_get_property),
17101         (gst_play_bin_change_state), (gst_play_bin_add_element),
17102         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
17103         (gst_play_bin_send_event), (gst_play_bin_get_formats),
17104         (gst_play_bin_convert), (gst_play_bin_get_query_types),
17105         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
17106         * gst/playback/test.c: (main):
17107         More fixes, cleaned up playbin, make it use decodebin. Added
17108         threaded property to playbin.
17109
17110 2004-07-05  Wim Taymans  <wim@fluendo.com>
17111
17112         * configure.ac:
17113         * gst/playback/Makefile.am:
17114         * gst/playback/decodetest.c: (main):
17115         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17116         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
17117         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
17118         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
17119         (close_link), (type_found), (gst_decode_bin_set_property),
17120         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
17121         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
17122         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
17123         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
17124         (plugin_init):
17125         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
17126         (gst_play_bin_class_init), (gst_play_bin_init),
17127         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
17128         (collect_sink_pads), (find_compatibles), (close_pad_link),
17129         (try_to_link_1), (new_pad), (close_link), (type_found),
17130         (setup_source), (gst_play_bin_set_property),
17131         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
17132         (compare_ranks), (gst_play_bin_collect_factories),
17133         (gst_play_bin_change_state), (gst_play_bin_add_element),
17134         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
17135         (gst_play_bin_send_event), (gst_play_bin_get_formats),
17136         (gst_play_bin_convert), (gst_play_bin_get_query_types),
17137         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
17138         * gst/playback/test.c: (main):
17139         Added some playback helper elements and some test apps, very alpha
17140         still.
17141
17142 2004-07-04  Benjamin Otte  <otte@gnome.org>
17143
17144         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
17145           only restart audio when we indeed have an xrun to fix repeated
17146           xruns. Fix suggested by Giuliano Pochini.
17147
17148 2004-07-03  David Schleef  <ds@schleef.org>
17149
17150         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
17151         call to gst_debug_log() if debugging is disabled (bug #145118)
17152
17153 2004-07-03  Benjamin Otte  <otte@gnome.org>
17154
17155         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
17156           use our own functions for restarting the alsa device.
17157         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17158           I should apply patches myself - use MIN for the third argument, not
17159           the second, this fixes seeking
17160
17161 2004-07-02  David Schleef  <ds@schleef.org>
17162
17163         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
17164         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
17165         do with the logic.
17166
17167 2004-07-02  David Schleef  <ds@schleef.org>
17168
17169         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
17170         output buffers.  Fix logic mistake.  (bug #144866)
17171
17172 2004-07-02  David Schleef  <ds@schleef.org>
17173
17174         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
17175         on X.  (bug #144753)
17176
17177 2004-07-02  David Schleef  <ds@schleef.org>
17178
17179         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
17180         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
17181         (bug #144624)
17182         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
17183         (gst_osselement_rate_probe_check): Add another workaround for
17184         buggy drivers (bug #145336)
17185
17186 2004-07-02  David Schleef  <ds@schleef.org>
17187
17188         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
17189         Most systems don't have MSG_NOSIGNAL.
17190
17191 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
17192
17193         * Makefile.am:
17194         * gst-libs/gst/colorbalance/Makefile.am:
17195         * gst-libs/gst/mixer/Makefile.am:
17196         * gst-libs/gst/play/Makefile.am:
17197         * gst-libs/gst/tuner/Makefile.am:
17198           (hopefully) fix both install and dist and make error message useful.
17199           needs testing across automakes.
17200
17201 2004-07-02  Benjamin Otte  <otte@gnome.org>
17202
17203         * ext/ogg/gstogg.c: (plugin_init):
17204           we require bytestream now
17205         * ext/ogg/gstoggdemux.c:
17206           huge diff to implement chain setup in a fast and generic way. This
17207           improves tag reading and startup of huge files (read: Theora videos)
17208           quite a bit. It probably contains bugs, too, so please test.
17209           Seeking is not improved to the fast method.
17210
17211 2004-06-29  Wim Taymans  <wim@fluendo.com>
17212
17213         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
17214         * ext/ogg/gstoggmux.c:
17215         Fix memleak in oggdemux when running unconnected pads.
17216         doc update in mux, start working on keyframe mode.
17217
17218 2004-06-29  Benjamin Otte  <otte@gnome.org>
17219
17220         * sys/oss/gstosssink.c:
17221         * sys/oss/gstosssrc.c:
17222           advertise correct template caps - we indeed do non-native endianness
17223           and 8bit audio has no endianness
17224         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
17225         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
17226           avoid (wrong) duplications in getcaps function and return
17227           template caps
17228
17229 2004-06-29  Wim Taymans  <wim@fluendo.com>
17230
17231         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
17232         (gst_multifdsink_class_init), (gst_multifdsink_add),
17233         (gst_multifdsink_remove), (gst_multifdsink_clear),
17234         (gst_multifdsink_client_remove),
17235         (gst_multifdsink_handle_client_read),
17236         (gst_multifdsink_client_queue_data),
17237         (gst_multifdsink_client_queue_caps),
17238         (gst_multifdsink_client_queue_buffer),
17239         (gst_multifdsink_handle_client_write),
17240         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
17241         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
17242         (gst_multifdsink_init_send), (gst_multifdsink_close):
17243         Fix wrong GList iteration that could crash the server when
17244         more then 2 clients disconnect at the same time. Read all the
17245         pending commands in one batch to recover from command storms under
17246         very heavy load.
17247
17248 2004-06-28  Wim Taymans  <wim@fluendo.com>
17249
17250         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
17251         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
17252         (gst_videomixer_pad_set_property),
17253         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
17254         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
17255         (gst_videomixer_class_init), (gst_videomixer_init),
17256         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
17257         (pad_zorder_compare), (gst_videomixer_sort_pads),
17258         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
17259         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
17260         (gst_videomixer_update_queues), (gst_videomixer_loop),
17261         (plugin_init):
17262         Avoid divide by zero, choose masterpad as the pad with the highest
17263         framerate.
17264
17265 2004-06-27  Julien Moutte  <julien@moutte.net>
17266
17267         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
17268         (gst_ximagesink_xwindow_new):
17269         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
17270         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
17271         function directly. We might want to call it from somewhere else one day.
17272
17273 2004-06-27  Julien Moutte  <julien@moutte.net>
17274
17275         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
17276         (gst_ximagesink_xwindow_new):
17277         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
17278         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
17279         window decorations.
17280
17281 2004-06-27  Wim Taymans  <wim@fluendo.com>
17282
17283         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
17284         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
17285         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
17286         (gst_dvdec_set_property), (gst_dvdec_get_property):
17287         * ext/dv/gstdvdec.h:
17288         Implement drop_factor property to lower the framerate with
17289         a factor.
17290
17291 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17292
17293         * gst-libs/gst/colorbalance/Makefile.am:
17294         * gst-libs/gst/mixer/Makefile.am:
17295         * gst-libs/gst/play/Makefile.am:
17296         * gst-libs/gst/tuner/Makefile.am:
17297           unbreak Company's fix that didn't install the -enum.h files
17298
17299 2004-06-27  Wim Taymans  <wim@fluendo.com>
17300
17301         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
17302         (gst_dvdec_change_state):
17303         * ext/dv/gstdvdec.h:
17304         Fix timestamp, duration and offset of the buffers.
17305
17306 2004-06-27  Wim Taymans  <wim@fluendo.com>
17307
17308         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
17309         (gst_multifdsink_class_init), (gst_multifdsink_add),
17310         (gst_multifdsink_remove), (gst_multifdsink_clear),
17311         (gst_multifdsink_client_remove),
17312         (gst_multifdsink_handle_client_read),
17313         (gst_multifdsink_client_queue_data),
17314         (gst_multifdsink_client_queue_caps),
17315         (gst_multifdsink_client_queue_buffer),
17316         (gst_multifdsink_handle_client_write),
17317         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
17318         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
17319         (gst_multifdsink_init_send), (gst_multifdsink_close):
17320         * gst/tcp/gstmultifdsink.h:
17321         * gst/tcp/gsttcpserversink.c:
17322         (gst_tcpserversink_handle_server_read),
17323         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
17324         More multifdsink fixes, more recovery policy fixes.
17325         Removed stupid g_print
17326
17327 2004-06-26  Wim Taymans  <wim@fluendo.com>
17328
17329         * gst/tcp/Makefile.am:
17330         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
17331         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
17332         (gst_multifdsink_class_init), (gst_multifdsink_init),
17333         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
17334         (gst_multifdsink_handle_client_read),
17335         (gst_multifdsink_client_queue_data),
17336         (gst_multifdsink_client_queue_caps),
17337         (gst_multifdsink_client_queue_buffer),
17338         (gst_multifdsink_handle_client_write),
17339         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
17340         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
17341         (gst_multifdsink_chain), (gst_multifdsink_set_property),
17342         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
17343         (gst_multifdsink_close), (gst_multifdsink_change_state):
17344         * gst/tcp/gstmultifdsink.h:
17345         * gst/tcp/gsttcpplugin.c: (plugin_init):
17346         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
17347         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
17348         (gst_tcpserversink_handle_server_read),
17349         (gst_tcpserversink_handle_select),
17350         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
17351         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
17352         * gst/tcp/gsttcpserversink.h:
17353         Added multifdsink, made tcpserversink a subclass of fdsink, removed
17354         one of the locks, added recovery policy to multifdsink.
17355
17356 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17357
17358         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
17359           fix decision for when getting frames with same timestamp
17360         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
17361         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17362         (gst_v4lsrc_get_property):
17363         * sys/v4l/gstv4lsrc.h:
17364           add latency offset property
17365
17366 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17367
17368         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
17369         (plugin_init):
17370           fix debugging. add category.
17371
17372 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17373
17374         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
17375           fix wrong offsets
17376
17377 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17378
17379         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
17380         (gst_alsa_src_get_time), (gst_alsa_src_loop),
17381         (gst_alsa_src_change_state):
17382           return a time that is in sync with the element's processing
17383
17384 2004-06-25  Wim Taymans  <wim@fluendo.com>
17385
17386         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
17387         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
17388         (gst_tcpserversink_client_remove),
17389         (gst_tcpserversink_handle_client_read),
17390         (gst_tcpserversink_client_queue_data),
17391         (gst_tcpserversink_client_queue_caps),
17392         (gst_tcpserversink_client_queue_buffer),
17393         (gst_tcpserversink_handle_client_write),
17394         (gst_tcpserversink_queue_buffer),
17395         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
17396         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
17397         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
17398         (gst_tcpserversink_close):
17399         * gst/tcp/gsttcpserversink.h:
17400         Serversink rewrite. Really do non blocking writes to clients and
17401         maintain an internal queue to handle slower clients while not
17402         disturbing fast clients.
17403
17404 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17405
17406         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17407           better debug, don't override OFFSET and OFFSET_END
17408
17409 2004-06-25  Iain <iain@prettypeople.org>
17410
17411         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
17412         name=source for the wavparse pipeline.
17413
17414 2004-06-24  Johan Dahlin  <johan@gnome.org>
17415
17416         * ext/theora/theoraenc.c (theora_enc_chain): Call
17417         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
17418         streamheader caps are set correctly.
17419
17420 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17421
17422         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
17423         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
17424           respect minimum bitrate; same could be done for max bitrate
17425
17426 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17427
17428         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
17429         (gst_vorbisenc_setup):
17430           fix sample rate range
17431
17432 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17433
17434         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
17435         (gst_oggvorbisenc_setup):
17436         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
17437         (gst_vorbisenc_setup):
17438           resolve ambiguities in code and description
17439
17440 2004-06-24  Wim Taymans  <wim@fluendo.com>
17441
17442         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
17443         * ext/alsa/gstalsa.h:
17444         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
17445         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
17446         Use alsa trigger_tstamp to get the timestamp of the first
17447         sample in the buffer for more precise sync. Some cleanups.
17448
17449 2004-06-24  Wim Taymans  <wim@fluendo.com>
17450
17451         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
17452         (gst_audiorate_init), (gst_audiorate_chain),
17453         (gst_audiorate_set_property), (gst_audiorate_get_property):
17454         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
17455         (gst_videorate_chain):
17456         Added some logging, fixed an overflow bug in videorate.
17457
17458 2004-06-24  Benjamin Otte  <otte@gnome.org>
17459
17460         * ext/kio/Makefile.am:
17461           fix for builddir != srcdir and distcheck
17462
17463 2004-06-24  Benjamin Otte  <otte@gnome.org>
17464
17465         * gst-libs/gst/colorbalance/Makefile.am:
17466         * gst-libs/gst/mixer/Makefile.am:
17467         * gst-libs/gst/play/Makefile.am:
17468         * gst-libs/gst/tuner/Makefile.am:
17469         * gst/tcp/Makefile.am:
17470         * sys/dxr3/Makefile.am:
17471           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
17472           tarball.
17473           Also add all *.list files that were missing.
17474         * Makefile.am:
17475           add a distcheck hook to ensure the above doesn't happen again.
17476
17477 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
17478
17479         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
17480
17481 2004-06-23  Colin Walters  <walters@redhat.com>
17482
17483         * m4/Makefile.am: Distribute gst-fionread.m4.
17484
17485 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17486
17487         * configure.ac: back to dev
17488
17489 2004-06-23  Wim Taymans  <wim@fluendo.com>
17490
17491         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
17492         (gst_alsa_xrun_recovery):
17493         * ext/alsa/gstalsa.h:
17494         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17495         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
17496         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
17497         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
17498         (gst_alsa_src_loop):
17499         Add clock to alsasrc. Take new capture timestamp when
17500         restarting after an overrun. Split up some functions between
17501         alsasrc and alsasink.
17502
17503 === release 0.8.2 ===
17504
17505 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17506
17507         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
17508         (gst_alsa_change_state), (gst_alsa_update_avail),
17509         (gst_alsa_xrun_recovery):
17510         * ext/alsa/gstalsa.h:
17511         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17512           merge back changes from release
17513
17514 2004-06-23  Wim Taymans  <wim@fluendo.com>
17515
17516         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
17517         (gst_audiorate_init), (gst_audiorate_chain),
17518         (gst_audiorate_set_property), (gst_audiorate_get_property):
17519         Implement sample dropping and notify
17520
17521 2004-06-22  Wim Taymans  <wim@fluendo.com>
17522
17523         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17524         (theora_enc_sink_link), (theora_buffer_from_packet),
17525         (theora_push_packet), (theora_enc_chain):
17526         Some cleanups, make sure the timestamps are correct.
17527
17528 2004-06-22  Wim Taymans  <wim@fluendo.com>
17529
17530         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
17531         (gst_alsa_change_state), (gst_alsa_update_avail),
17532         (gst_alsa_xrun_recovery):
17533         * ext/alsa/gstalsa.h:
17534         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
17535         Cleanups, take queued samples into account when reporting
17536         the time.
17537
17538 2004-06-22  Wim Taymans  <wim@fluendo.com>
17539
17540         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
17541         (gst_videorate_init):
17542         Initialize the property as well.
17543
17544 2004-06-22  Wim Taymans  <wim@fluendo.com>
17545
17546         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
17547         (gst_videorate_init), (gst_videorate_chain),
17548         (gst_videorate_set_property), (gst_videorate_get_property):
17549         Add property to make videorate silent.
17550         Add property to prefer new frames over old ones.
17551
17552 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17553
17554         * sys/osxvideo/Makefile.am:
17555         Workaround so that the osxvideo .so file gets linked with the
17556         Cocoa, OpenGL and QuickTime frameworks
17557
17558 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17559
17560         * sys/osxaudio/Makefile.am:
17561         Workaround so that the osxaudio .so file gets linked with the
17562         CoreAudio framework
17563
17564 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17565
17566         * configure.ac:
17567         Whoops, my fault...fixed build issues
17568
17569 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17570
17571         * configure.ac:
17572         Add objective-c support if running in Darwin/Mac OS X
17573         * sys/Makefile.am:
17574         * sys/osxvideo:
17575         * sys/osxvideo/Makefile.am:
17576         * sys/osxvideo/osxvideosink.h:
17577         * sys/osxvideo/osxvideosink.m:
17578         * sys/osxvideo/cocoawindow.h:
17579         * sys/osxvideo/cocoawindow.m:
17580         Add osxvideosink, a cocoa-based osx video sink
17581
17582
17583 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
17584         * ext/dvdnav/gst-dvd:
17585         Grab the gconf key from the right spot
17586         * gst/debug/gstnavseek.c: (gst_navseek_init),
17587         (gst_navseek_segseek), (gst_navseek_handle_src_event),
17588         (gst_navseek_chain):
17589         * gst/debug/gstnavseek.h:
17590           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
17591           and loop parameters of a segment seek.
17592         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
17593         (gst_videotestsrc_get_event_masks),
17594         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
17595         * gst/videotestsrc/gstvideotestsrc.h:
17596           Add seeking support to videotestsrc
17597           Initialise the timestamp_offset variable.
17598
17599 2004-06-18  Wim Taymans  <wim@fluendo.com>
17600
17601         * ext/sidplay/gstsiddec.cc:
17602         Fix negotiation and set correct end offset.
17603
17604 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17605
17606         * configure.ac: branch and prerelease
17607
17608 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17609
17610         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
17611         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
17612         (gst_tcpclientsrc_init_receive):
17613         * gst/tcp/gsttcpclientsrc.h:
17614           read caps when connecting to server for GDP so we set them correctly
17615
17616 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17617
17618         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
17619           notify drops and duplicates
17620         * gst/videoscale/videoscale.c: (videoscale_get_structure):
17621           no good reason to limit ourselves to 100x100
17622
17623 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17624
17625         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
17626         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
17627         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17628         (gst_v4lsrc_get_property):
17629         * sys/v4l/gstv4lsrc.h:
17630         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17631         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
17632         (gst_v4l_set_audio):
17633         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
17634         (gst_v4lsrc_try_capture):
17635         * sys/v4l/v4lsrc_calls.h:
17636           change try_palette to more general try_capture
17637           add autoprobe option so we can turn off autoprobing
17638           various fixes
17639
17640 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
17641
17642         * configure.ac:
17643           add videorate
17644         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
17645         (gst_ximagesink_class_init):
17646         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
17647         (gst_xvimagesink_class_init):
17648           run them as finalize, not dispose, since dispose can be invoked
17649           multiple times
17650
17651 2004-06-17  Wim Taymans  <wim@fluendo.com>
17652
17653         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
17654         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
17655         * ext/alsa/gstalsa.h:
17656         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
17657         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
17658         (gst_alsa_src_change_state):
17659         * ext/alsa/gstalsasrc.h:
17660         Make the xrun code timestamp and offset the buffers correctly.
17661         moved the clock to the base class, use alsa methods to get time.
17662         Do correct timestamping on outgoing buffers.
17663
17664 2004-06-17  Wim Taymans  <wim@fluendo.com>
17665
17666         * gst/audiorate/Makefile.am:
17667         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
17668         (gst_audiorate_base_init), (gst_audiorate_class_init),
17669         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
17670         (gst_audiorate_set_property), (gst_audiorate_get_property),
17671         (gst_audiorate_change_state), (plugin_init):
17672         Added an audiorate converter that fills in gaps.
17673
17674 2004-06-17  Johan Dahlin  <johan@gnome.org>
17675
17676         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
17677
17678 2004-06-16  Wim Taymans  <wim@fluendo.com>
17679
17680         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
17681         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17682         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17683         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17684         (gst_v4lsrc_get_property):
17685         * sys/v4l/gstv4lsrc.h:
17686         Added a copy mode to v4lsrc where it will output a copied version
17687         of its internal hardware buffer.
17688         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
17689         can't | them.
17690
17691 2004-06-16  Wim Taymans  <wim@fluendo.com>
17692
17693         * sys/oss/gstosssrc.c: (gst_osssrc_get):
17694         Timestamp fixes.
17695
17696 2004-06-16  Wim Taymans  <wim@fluendo.com>
17697
17698         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17699         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17700         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17701         (gst_v4lsrc_get_property):
17702         * sys/v4l/gstv4lsrc.h:
17703         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
17704         Added a sync mode enum property to control v4lsrc timestamp method
17705         Removed the use-fixed-fps property and moved functionality in
17706         the enum.
17707         Don't error on an error value from v4l-conf, it might not always
17708         be a real error.
17709
17710 2004-06-16  Wim Taymans  <wim@fluendo.com>
17711
17712         * gst/videorate/Makefile.am:
17713         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
17714         (gst_videorate_base_init), (gst_videorate_class_init),
17715         (gst_videorate_getcaps), (gst_videorate_link),
17716         (gst_videorate_init), (gst_videorate_chain),
17717         (gst_videorate_set_property), (gst_videorate_get_property),
17718         (gst_videorate_change_state), (plugin_init):
17719         Added a video timestamp corrector.
17720
17721 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17722
17723         fixed a potential leak with previous commit
17724
17725         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17726
17727 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17728
17729         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17730         Added missing refcount, fixes bug #144425
17731         Cheers Tim for finding the bug
17732
17733 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17734
17735         * sys/v4l/gstv4l.c: (plugin_init):
17736         * sys/v4l/gstv4lcolorbalance.c:
17737         * sys/v4l/gstv4lcolorbalance.h:
17738         * sys/v4l/gstv4lelement.c:
17739         * sys/v4l/gstv4lelement.h:
17740         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
17741         * sys/v4l/gstv4lmjpegsink.h:
17742         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
17743         * sys/v4l/gstv4lmjpegsrc.h:
17744         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17745         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17746         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
17747         * sys/v4l/gstv4lsrc.h:
17748         * sys/v4l/gstv4ltuner.c:
17749         * sys/v4l/gstv4ltuner.h:
17750         * sys/v4l/gstv4lxoverlay.c:
17751         * sys/v4l/gstv4lxoverlay.h:
17752         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
17753         (gst_v4l_set_window), (gst_v4l_enable_overlay):
17754         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17755         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
17756         (gst_v4l_set_audio):
17757         * sys/v4l/v4l_calls.h:
17758         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
17759         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
17760         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
17761         (gst_v4lmjpegsink_playback_init),
17762         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
17763         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
17764         (gst_v4lmjpegsink_playback_stop),
17765         (gst_v4lmjpegsink_playback_deinit):
17766         * sys/v4l/v4lmjpegsink_calls.h:
17767         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
17768         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
17769         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
17770         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
17771         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
17772         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
17773         * sys/v4l/v4lmjpegsrc_calls.h:
17774         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
17775         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
17776         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
17777         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
17778         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
17779         (gst_v4lsrc_try_palette):
17780         * sys/v4l/v4lsrc_calls.h:
17781           bunch of paranoia cleanups
17782
17783 2004-06-14  David Schleef  <ds@schleef.org>
17784
17785         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
17786         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
17787         Send discont events and change timestamps appropriately when
17788         we get a seek event.  (bug #144240)
17789         * ext/cdparanoia/gstcdparanoia.h:
17790
17791 2004-06-14  Benjamin Otte  <otte@gnome.org>
17792
17793         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
17794           snd_pcm_hw_params_set_rate  since the latter fails for no good
17795           reason on some setups.
17796
17797 2004-06-14  David Schleef  <ds@schleef.org>
17798
17799         * gst/volume/demo.c: (value_changed_callback): exp10() is not
17800         standard.  Thank you for playing.
17801
17802 2004-06-14  Wim Taymans  <wim@fluendo.com>
17803
17804         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17805         Patch 1.3 broke the ordering of the colorspace info and
17806         made the plugin basically work by coincidence, reordered
17807         the info.
17808
17809 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17810
17811         * ext/lame/gstlame.c:
17812         * ext/mad/gstmad.c:
17813           sync caps.  Make sure mad can only output a list of rates, not
17814           a full range.  In the future, have three caps lists for each of the
17815           mpeg versions.  Change mpegversion to a double as well.
17816
17817 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17818
17819         * gst/volume/.cvsignore:
17820         * gst/volume/Makefile.am:
17821         * gst/volume/demo.c: (value_changed_callback), (idler),
17822         (setup_gui), (main):
17823           added small demo app
17824
17825 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
17826         * ext/esd/esdsink.c: (gst_esdsink_change_state):
17827         * ext/esd/esdsink.h:
17828         Close the esd connection on pause, because esd will just wait -
17829         blocking all other esd clients indefinitely.
17830
17831 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
17832
17833         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
17834           previous commit with GST_DEBUG
17835
17836 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17837
17838         * configure.ac:
17839           add a header check for a dvdread header in dvdnav.  Fixes #133002
17840
17841 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17842
17843         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
17844         * gst/tcp/gsttcpclientsink.h:
17845         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
17846         * gst/tcp/gsttcpclientsrc.h:
17847         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
17848         (gst_tcpserversink_handle_server_read),
17849         (gst_tcpserversink_init_send):
17850         * gst/tcp/gsttcpserversink.h:
17851         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
17852         * gst/tcp/gsttcpserversrc.h:
17853         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
17854         version of IP)
17855
17856 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17857
17858         * configure.ac:
17859         Added ogg library so that OSX detects libtheora properly
17860
17861 2004-06-11  Wim Taymans  <wim@fluendo.com>
17862
17863         * ext/theora/theoradec.c: (theora_dec_chain),
17864         (theora_dec_change_state):
17865         Don't try to decode frames before we received a keyframe.
17866
17867 2004-06-11  Wim Taymans  <wim@fluendo.com>
17868
17869         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17870         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17871         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17872         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17873         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17874         Added property to set the maximum delay of a page.
17875
17876 2004-06-10  Wim Taymans  <wim@fluendo.com>
17877
17878         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17879         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17880         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17881         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17882         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17883         Added max-delay property to control the maximum amount
17884         of data to put in one page.
17885
17886 2004-06-10  Wim Taymans  <wim@fluendo.com>
17887
17888         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17889         (gst_theora_enc_init), (theora_enc_sink_link),
17890         (theora_buffer_from_packet), (theora_enc_set_property),
17891         (theora_enc_get_property):
17892         Set duration on encoded buffer, added some more properties
17893
17894 2004-06-10  Wim Taymans  <wim@fluendo.com>
17895
17896         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
17897         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17898         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
17899         * ext/theora/theoraenc.c: (theora_enc_chain):
17900         Fix refcounting bugs
17901
17902 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17903
17904         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17905         (gst_asf_demux_loop), (gst_asf_demux_process_file),
17906         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
17907         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
17908         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
17909         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
17910         (gst_asf_demux_change_state):
17911         * gst/asfdemux/gstasfdemux.h:
17912           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
17913           feels like. I think we should set a new requirement for demuxers
17914           from now on to implement sane loop functions, data loops, query
17915           and seek functions before first commit into CVS. And this commit
17916           fixes all of the above.
17917
17918 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
17919
17920         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
17921           vorbis comments are properly encoded in UTF-8 before adding them
17922           to a GstTagList
17923
17924 2004-06-09  Benjamin Otte  <otte@gnome.org>
17925
17926         * ext/alsa/gstalsa.c: (add_channels):
17927           handle min <= max correctly
17928         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
17929         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
17930           add fixation functions so we fixate correctly. No preferring of alaw
17931           anymore because it's the first structure.
17932         * ext/alsa/gstalsa.h:
17933         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
17934         (gst_alsa_hw_params_dump):
17935           add functions to ease debugging in alsalib
17936         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
17937         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
17938         (gst_alsa_start_audio):
17939           only specify hw params if we really setup a format (fixes #134007 -
17940           or at least works around it)
17941
17942 2004-06-09  Wim Taymans  <wim@fluendo.com>
17943
17944         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
17945         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
17946         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
17947         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
17948         (gst_ogg_mux_loop):
17949         Use stream caps to setup the initial pages in the ogg stream.
17950         Correctly set the streamheader caps on the srcpad.
17951
17952 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17953
17954         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17955         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17956         (gst_v4lsrc_getcaps):
17957         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17958         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
17959           add querying of fps lists for webcams.  Negotiating to a framerate
17960           now works.
17961
17962 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17963
17964         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
17965         (theora_push_buffer), (theora_push_packet),
17966         (theora_set_header_on_caps), (theora_enc_chain):
17967           mark buffers and put on streamheader, raw theora streaming
17968           now works too, whee
17969
17970 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17971
17972         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17973         (gst_tcp_gdp_read_caps):
17974           do a looping read for caps and GDP headers too
17975
17976 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17977
17978         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17979         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
17980           return EOS instead of NULL in _get
17981
17982 2004-06-08  Wim Taymans  <wim@fluendo.com>
17983
17984         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17985         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
17986         (gst_tcp_gdp_write_caps):
17987         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17988         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
17989         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
17990         Memory leak fixes
17991
17992 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17993
17994         * ext/vorbis/Makefile.am:
17995         * ext/vorbis/vorbis.c: (plugin_init):
17996         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
17997         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
17998         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
17999         (vorbis_parse_change_state):
18000         * ext/vorbis/vorbisparse.h:
18001           adding a vorbisparse element that marks the buffers, streaming
18002           raw vorbis using GDP now works, whee
18003
18004 2004-06-08  Wim Taymans  <wim@fluendo.com>
18005
18006         * ext/jpeg/Makefile.am:
18007         * ext/jpeg/README:
18008         * ext/jpeg/gstjpeg.c: (plugin_init):
18009         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
18010         (gst_smokedec_base_init), (gst_smokedec_class_init),
18011         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
18012         * ext/jpeg/gstsmokedec.h:
18013         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
18014         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
18015         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
18016         (gst_smokeenc_resync), (gst_smokeenc_chain),
18017         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
18018         * ext/jpeg/gstsmokeenc.h:
18019         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
18020         (smokecodec_flush_destination), (smokecodec_term_destination),
18021         (smokecodec_init_source), (smokecodec_fill_input_buffer),
18022         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
18023         (smokecodec_term_source), (smokecodec_encode_new),
18024         (smokecodec_decode_new), (smokecodec_info_free),
18025         (smokecodec_set_quality), (smokecodec_get_quality),
18026         (smokecodec_set_threshold), (smokecodec_get_threshold),
18027         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
18028         (find_best_size), (abs_diff), (put), (smokecodec_encode),
18029         (smokecodec_parse_header), (smokecodec_decode):
18030         * ext/jpeg/smokecodec.h:
18031         Added a new simple jpeg based codec
18032
18033 2004-06-08  Wim Taymans  <wim@fluendo.com>
18034
18035         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
18036         (gst_multipart_mux_loop):
18037         Fix memory leak
18038
18039 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18040
18041         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
18042         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
18043         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
18044         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
18045         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
18046         * gst/tcp/gsttcpserversink.h:
18047           take streamheader into account
18048
18049 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18050
18051         * gst/level/Makefile.am:
18052         * gst/level/gstlevel.c: (gst_level_class_init):
18053           clean up marshal generation
18054
18055 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18056
18057         * gst/tcp/Makefile.am:
18058         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
18059         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
18060         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
18061         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
18062         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
18063         (gst_tcpclientsrc_get_property):
18064         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
18065         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
18066         (gst_tcpserversink_handle_client_read),
18067         (gst_tcpserversink_handle_client_write),
18068         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
18069         * gst/tcp/gsttcpserversink.h:
18070           add signals client-added and client-removed
18071         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
18072         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
18073         (gst_tcpserversrc_get_property):
18074         uniformized, change default protocol to NONE
18075         * gst/tcp/gsttcp-marshal.list: added
18076 2004-06-07  Benjamin Otte  <otte@gnome.org>
18077
18078         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18079           handle discont events if they happen before caps nego
18080
18081 2004-06-07  Wim Taymans  <wim@fluendo.com>
18082
18083         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18084         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
18085         (gst_multipart_demux_plugin_init):
18086         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
18087         (gst_multipart_mux_init), (gst_multipart_mux_loop),
18088         (gst_multipart_mux_change_state):
18089         Small updates, fix a memleak
18090
18091 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18092
18093         * configure.ac: OSS portability
18094         * ext/arts/gst_arts.c: idem
18095         * sys/oss/gstosselement.c: idem
18096         * sys/oss/gstossmixer.c: idem
18097         * sys/oss/gstosssink.c: idem
18098         * sys/oss/gstosssrc.c: idem
18099         * sys/oss/oss_probe.c: idem
18100           - check for soundcard.h in different places for some BSD
18101
18102 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
18103
18104         * AUTHORS:
18105         Add me to the authors file
18106         * configure.ac:
18107         Increase the libdv requirement to >= version 0.100
18108         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
18109         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
18110         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
18111         * ext/dv/gstdvdec.h:
18112         Add support for the new_media flag when sending DISCONT events
18113         Make the querying work when video pad is not linked
18114
18115 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
18116
18117         reviewed by Benjamin Otte  <otte@gnome.org>
18118
18119         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
18120           create a NULL-initialized array of pads, so we don't think they
18121           exist already. (fixes #143130)
18122
18123 2004-06-07  Benjamin Otte  <otte@gnome.org>
18124
18125         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
18126         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
18127         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
18128           don't use // coments
18129
18130 2004-06-07  Benjamin Otte  <otte@gnome.org>
18131
18132         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
18133           cast to GstClockTime to get higher granularity
18134         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18135           use gst_element_set_time_delay to get the exact time
18136         * ext/mad/gstmad.c: (gst_mad_chain):
18137           use the negotiated rate instead of the current frame's rate which
18138           might be wrong because of bit errors. This avoids emitting totally
18139           bogus timestamps and screwing sync.
18140         (fixes #143454)
18141
18142 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
18143
18144         reviewed by Benjamin Otte  <otte@gnome.org>
18145
18146         * gst/adder/gstadder.c: (gst_adder_loop):
18147           properly error out when no negotiation has happened yet. (fixes
18148           #143032)
18149
18150 2004-06-06  Benjamin Otte  <otte@gnome.org>
18151
18152         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
18153           forward correctly transformed offset in discont events. Based on
18154           patch by Arwed v. Merkatz. (fixes #142851)
18155
18156 2004-06-06  David Schleef  <ds@schleef.org>
18157
18158         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
18159         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
18160         problems on several systems.
18161
18162 2004-06-06  Benjamin Otte  <otte@gnome.org>
18163
18164         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
18165           use explicit caps on the srcpad
18166         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18167           properly error out if caps couldn't be set (fixes #142764)
18168
18169 2004-06-06  Benjamin Otte  <otte@gnome.org>
18170
18171         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
18172         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
18173         (gst_alsa_start_audio):
18174           - don't call set_periods_integer anymore, it breaks the
18175           configuration randomly
18176           - call snd_pcm_hw_params_set_access directly instead of using masks
18177           - don't fail if the sw_params can't be set, just use the default
18178           params and hope it works. Alsalib has weird issues when you touch
18179           sw_params and does no proper error reporting about what failed.
18180         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
18181         (gst_alsa_close_audio):
18182           make our alsa debugging go via gst debugging and not conditionally
18183           defined
18184         * ext/alsa/gstalsa.h:
18185           add ALSA_DEBUG_FLUSH macro
18186         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
18187         (plugin_init):
18188           wrap alsa errors to be printed via the gst debugging system and not
18189           spammed to stderr
18190
18191 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18192
18193         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18194         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
18195         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
18196         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
18197         (qtdemux_parse_trak):
18198         * gst/qtdemux/qtdemux.h:
18199           Bitch. Also known as seeking, querying & co.
18200         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
18201         (gst_osssink_change_state):
18202         * sys/oss/gstosssink.h:
18203           Resyncing is for weenies, this hack is no longer needed and was
18204           broken anyway (since it - unintendedly - always leaves resync to
18205           TRUE).
18206
18207 2004-06-05  Andrew Turner <zxombie@hotpop.com>
18208
18209         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
18210         * gst/tcp/gsttcpclientsrc.h: idem
18211           - define MSG_NOSIGNAL if not done
18212           - include unistd.h for off_t
18213           (fixes #143749)
18214
18215 2004-06-05  Benjamin Otte  <otte@gnome.org>
18216
18217         * configure.ac:
18218         * ext/kio/Makefile.am:
18219           check for qt's moc preprocessor explicitly and use it
18220
18221 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18222
18223         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
18224           don't get a signal for EPIPE on socket writes
18225           (somebody check if this works on other platforms)
18226
18227 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18228
18229         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
18230         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
18231           check error condition on available samples correctly
18232
18233 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18234
18235         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
18236           avoid a segfault
18237         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
18238         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
18239         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
18240         (gst_tcpserversrc_gdp_read_header):
18241          use ssize_t over size_t since the former is signed and thus the
18242          check for error codes can work
18243
18244 2004-06-02  Wim Taymans  <wim@fluendo.com>
18245
18246         reviewed by: Johan
18247
18248         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
18249         (gst_multipart_mux_loop):
18250         Oops
18251
18252 2004-06-02  Wim Taymans  <wim@fluendo.com>
18253
18254         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
18255         (gst_multipart_mux_init), (gst_multipart_mux_loop),
18256         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
18257         (gst_multipart_mux_change_state):
18258         Added configurable boundary specifier, added the value as a
18259         caps field as well.
18260
18261 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18262
18263         * gst/tcp/gsttcp.c:
18264         * gst/tcp/gsttcpclientsrc.c:
18265         * gst/tcp/gsttcpclientsrc.h:
18266         * gst/tcp/gsttcpserversrc.c:
18267           - portability fix, to compile on OSX
18268             (fixes #143146)
18269
18270         * sys/osxaudio/gstosxaudioelement.c:
18271         * sys/osxaudio/gstosxaudiosink.c:
18272         * sys/osxaudio/gstosxaudiosrc.c:
18273           - compilation warnings on OSX
18274             (fixes #143153)
18275
18276 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18277
18278         * ext/vorbis/vorbisdec.c : sign warning fixes
18279
18280         * gst-libs/gst/mixer/mixertrack.c :
18281           do no use defines which are glib 2.4 specific
18282
18283 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
18284
18285         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
18286           buffer since libflac doesn't expect it (reports a sync error when
18287           it encounters that)
18288
18289
18290 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
18291
18292         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
18293         * gst-libs/gst/mixer/mixertrack.c:
18294         (gst_mixer_track_get_property), (get_mixer_track_init),
18295         (get_mixer_track_get_property): Added property accessors
18296         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
18297         * gst-libs/gst/mixer/mixeroptions.c:
18298         (gst_mixer_options_get_values): Added
18299         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
18300         * gst-libs/gst/mixer/mixer.c: Fixed comment
18301
18302
18303 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18304
18305         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
18306           improve error messages on open
18307
18308
18309 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18310
18311         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
18312           check if v4l-conf is in path
18313
18314 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18315
18316         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
18317           change assert to a more readable error message
18318
18319 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
18320
18321         * gst-libs/gst/tuner/tunerchannel.h:
18322           - add a freq_multiplicator field to make the conversion
18323             between internal frequency unit and Hz
18324         * sys/v4l/gstv4lelement.c:
18325         * sys/v4l2/gstv4l2element.c:
18326           - change default video device to /dev/video0
18327         * sys/v4l/v4l_calls.c:
18328         * sys/v4l2/v4l2_calls.c:
18329           - we only expose frequency to the user in Hz instead of
18330             bastard v4lX unit (either 62.5kHz or 62.5Hz)
18331
18332 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
18333         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18334           Initialise b_o_s and e_o_s variables
18335         * gst-libs/gst/riff/riff-media.c:
18336         (gst_riff_create_video_caps_with_data):
18337           Add some unusual fourcc's from mplayer avi's
18338         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
18339           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
18340           autoplugging.
18341
18342 2004-05-28  Wim Taymans  <wim@fluendo.com>
18343
18344         * configure.ac:
18345         * gst/alpha/Makefile.am:
18346         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
18347         (gst_alpha_get_type), (gst_alpha_base_init),
18348         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
18349         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
18350         (gst_alpha_chroma_key), (gst_alpha_chain),
18351         (gst_alpha_change_state), (plugin_init):
18352         A plugin to add an alpha channel to I420 video. Can optionally do
18353         chroma keying.
18354         * gst/multipart/Makefile.am:
18355         * gst/multipart/multipart.c: (plugin_init):
18356         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18357         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18358         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
18359         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
18360         (gst_multipart_demux_change_state),
18361         (gst_multipart_demux_plugin_init):
18362         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
18363         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
18364         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
18365         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
18366         (gst_multipart_mux_pad_unlink),
18367         (gst_multipart_mux_request_new_pad),
18368         (gst_multipart_mux_handle_src_event),
18369         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
18370         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
18371         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
18372         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
18373         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
18374         send multipart jpeg images to a browser.
18375         * gst/videobox/Makefile.am:
18376         * gst/videobox/README:
18377         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
18378         (gst_video_box_get_type), (gst_video_box_base_init),
18379         (gst_video_box_class_init), (gst_video_box_init),
18380         (gst_video_box_set_property), (gst_video_box_get_property),
18381         (gst_video_box_sink_link), (gst_video_box_i420),
18382         (gst_video_box_ayuv), (gst_video_box_chain),
18383         (gst_video_box_change_state), (plugin_init):
18384         Crops or adds borders around an image. can do alpha channel
18385         borders as well.
18386         * gst/videomixer/Makefile.am:
18387         * gst/videomixer/README:
18388         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
18389         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
18390         (gst_videomixer_pad_get_sink_event_masks),
18391         (gst_videomixer_pad_get_property),
18392         (gst_videomixer_pad_set_property),
18393         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
18394         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
18395         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
18396         (gst_videomixer_base_init), (gst_videomixer_class_init),
18397         (gst_videomixer_init), (gst_videomixer_request_new_pad),
18398         (gst_videomixer_handle_src_event),
18399         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
18400         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
18401         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
18402         (gst_videomixer_loop), (gst_videomixer_get_property),
18403         (gst_videomixer_set_property), (gst_videomixer_change_state),
18404         (plugin_init):
18405         Generic video mixer plugin, can handle multiple inputs all with
18406         different framerates and video sizes. Is fully alpha channel
18407         aware.
18408
18409 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18410
18411         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
18412           Select first track as master track. Not sure how else to handle
18413           that...
18414         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
18415           Discard discont events. Should fix #142962.
18416
18417 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18418
18419         * ext/alsa/Makefile.am:
18420         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
18421         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
18422         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
18423         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
18424         (gst_alsa_mixer_get_option):
18425         * ext/alsa/gstalsamixer.h:
18426         * ext/alsa/gstalsamixeroptions.c:
18427         (gst_alsa_mixer_options_get_type),
18428         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
18429         (gst_alsa_mixer_options_new):
18430         * ext/alsa/gstalsamixeroptions.h:
18431         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
18432         * ext/alsa/gstalsamixertrack.h:
18433           Add enumerations (as GstMixerOptions). Make correct distinction
18434           between input/output tracks. Add capture/playback private flag.
18435           Use flag to decide on whether to set capture or playback volumes
18436           or switches. Use playback and record switches.
18437         * gst-libs/gst/mixer/Makefile.am:
18438         * gst-libs/gst/mixer/mixer-marshal.list:
18439         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
18440         (gst_mixer_set_option), (gst_mixer_get_option),
18441         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
18442         (gst_mixer_volume_changed), (gst_mixer_option_changed):
18443         * gst-libs/gst/mixer/mixer.h:
18444         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
18445         (gst_mixer_options_class_init), (gst_mixer_options_init),
18446         (gst_mixer_options_dispose):
18447         * gst-libs/gst/mixer/mixeroptions.h:
18448           Add GstMixerOptions.
18449         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
18450           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
18451           broken device detection on computers with multiple OSS sound
18452           cards.
18453
18454 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18455
18456         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18457           fixate nicely even when the peer is not negotiating
18458
18459 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18460
18461         * gst/audioconvert/gstaudioconvert.c:
18462         (gst_audio_convert_parse_caps):
18463           make sure we don't allow depth > width
18464         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18465           fixate endianness to G_BYTE_ORDER as default
18466         * gst/audioscale/gstaudioscale.c:
18467           we don't handle another endianness as host-endianness
18468
18469 2004-05-25  David Schleef  <ds@schleef.org>
18470
18471         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
18472
18473 2004-05-24  Benjamin Otte  <otte@gnome.org>
18474
18475         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
18476         (gst_oggvorbisenc_setup):
18477           properly fail when we can't setup the vorbis encoder due to
18478           unsupported settings
18479         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
18480         (gst_vorbisenc_setup):
18481           same
18482         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
18483           fix case where warnings occured when one pad was unlinked while the
18484           other's link function was called
18485
18486 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18487
18488         * gst/tcp/Makefile.am:
18489           use GST_ENABLE_NEW
18490
18491 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18492
18493         * gst-libs/gst/resample/private.h:
18494           don't use optimizations that are #if 0'ed
18495
18496 2004-05-24  Wim Taymans  <wim@fluendo.com>
18497
18498         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18499         Fix potential division by zero error and hopefully get
18500         the position query right to get correct timestamps on avi
18501         audio.
18502
18503 2004-05-24  Wim Taymans  <wim@fluendo.com>
18504
18505         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
18506         (gst_videoscale_scale_nearest_str2),
18507         (gst_videoscale_scale_nearest_str4),
18508         (gst_videoscale_scale_nearest_32bit),
18509         (gst_videoscale_scale_nearest_24bit),
18510         (gst_videoscale_scale_nearest_16bit):
18511         Fix the scaling algorithm and avoid a buffer overflow.
18512         removed the while loop in the scaling function as it
18513         was used for point sampling only.
18514
18515 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18516
18517         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
18518         (gst_id3_tag_class_init), (gst_id3_tag_init),
18519         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
18520         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
18521         (gst_id3_tag_send_tag_event):
18522           lots of fixes to make id3mux work and id3demux work correctly
18523
18524 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18525
18526         * ext/Makefile.am:
18527           add rules to build shout2send (was removed by accident
18528           when this module was no more marked experimental/broken)
18529
18530 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18531
18532         * ext/shout2/gstshout2.c:
18533         * ext/shout2/gstshout2.h:
18534           adding a "connection problem" signal to shout2send
18535           (fixes #142954)
18536
18537 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
18538
18539         * ext/kio/kioreceiver.cpp:
18540         * ext/kio/kioreceiver.h:
18541           fix sign comparison issues
18542
18543 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18544
18545         * gst/cdxaparse/gstcdxaparse.c:
18546         * gst/cdxaparse/gstcdxaparse.h:
18547           some renaming
18548           add some checks/sanity
18549           prepare for seek addition
18550
18551         * sys/sunaudio/gstsunaudio.c:
18552           remove exported dupe init function
18553
18554 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
18555
18556         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
18557         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
18558           Fix format conversion and position querying.
18559         * gst/debug/progressreport.c: (gst_progressreport_report):
18560           Don't output a bogus total value that we didn't query.
18561         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
18562           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
18563           only a blank window after xine has been used.
18564
18565 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18566
18567         * m4/as-arts.m4:
18568           sync with upstream version to fix test on FC2
18569           readd with -ko to preserve Id header
18570
18571 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18572
18573         * configure.ac:
18574           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
18575         * gst/tcp/gsttcpclientsrc.c: idem
18576         * gst/tcp/gsttcpserversink.c: idem
18577         * gst/tcp/gsttcpserversrc.c: idem
18578         * m4/gst-fionread.m4: idem
18579
18580         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
18581
18582         * configure.ac: enable speex plugin for speex 1.1.5+
18583         * ext/speex/gstspeexenc.c: fix cast warning
18584
18585         * ext/esd/README: fix typo
18586
18587 2004-05-20  David Schleef  <ds@schleef.org>
18588
18589         * configure.ac: Minor cosmetic change to convince the buildbot to
18590         reautogen.
18591         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
18592         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
18593         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
18594         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
18595         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
18596         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
18597         More hacking.  Plays audio now.
18598
18599 2004-05-20  David Schleef  <ds@schleef.org>
18600
18601         * configure.ac:
18602         * sys/Makefile.am:
18603
18604 2004-05-20  David Schleef  <ds@schleef.org>
18605
18606         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
18607         * sys/osxaudio/gstosxaudio.c:
18608         * sys/osxaudio/gstosxaudioelement.c:
18609         * sys/osxaudio/gstosxaudioelement.h:
18610         * sys/osxaudio/gstosxaudiosink.c:
18611         * sys/osxaudio/gstosxaudiosink.h:
18612         * sys/osxaudio/gstosxaudiosrc.c:
18613         * sys/osxaudio/gstosxaudiosrc.h:
18614
18615 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18616
18617         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
18618         (gst_vorbisenc_chain):
18619           put the codec headers on the caps as streamheader as well as
18620           pushing them out
18621
18622 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18623
18624         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
18625         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
18626         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
18627         split up push_packet into two functions
18628
18629 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18630
18631         * gst/tcp/.cvsignore:
18632           ignore enums
18633         * gst/tcp/Makefile.am:
18634         * gst/tcp/README:
18635         * gst/tcp/gsttcp.c:
18636         * gst/tcp/gsttcp.h:
18637         * gst/tcp/gsttcpclientsink.c:
18638         * gst/tcp/gsttcpclientsink.h:
18639         * gst/tcp/gsttcpclientsrc.c:
18640         * gst/tcp/gsttcpclientsrc.h:
18641         * gst/tcp/gsttcpplugin.c:
18642         * gst/tcp/gsttcpserversink.c:
18643         * gst/tcp/gsttcpserversink.h:
18644         * gst/tcp/gsttcpserversrc.c:
18645         * gst/tcp/gsttcpserversrc.h:
18646           add new tcp elements
18647
18648 2004-05-19  Wim Taymans  <wim@fluendo.com>
18649
18650         * gst/law/mulaw-conversion.c: (mulaw_encode):
18651         Fix overflow bug in ulaw encoding.
18652
18653 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18654
18655         * ext/mad/gstmad.c: (gst_mad_handle_event):
18656           don't unref the event twice
18657
18658 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18659
18660         * configure.ac:
18661           remove -Wno-sign-compare
18662
18663 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18664
18665         * configure.ac:
18666           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
18667           if you want to work against glib 2.2 and 2.4
18668
18669 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
18670
18671         * gst/tcp/Makefile.am:
18672         * gst/tcp/gsttcp.c:
18673         * gst/tcp/gsttcp.h:
18674         * gst/tcp/gsttcpsink.h:
18675         * gst/tcp/gsttcpsrc.h:
18676           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
18677
18678 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18679
18680         * gst/debug/tests.c: (md5_get_value):
18681           fix segfault on gst-inspect
18682
18683 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18684
18685         * gst/debug/testplugin.c:
18686         * gst/debug/tests.c:
18687         * gst/debug/tests.h:
18688           add new extensible and configurable testing element. Current tests
18689           include buffer count, stream length, timestamp/duration matching and
18690           md5.
18691         * gst/debug/Makefile.am:
18692         * gst/debug/gstdebug.c: (plugin_init):
18693           add infrastructure for new element
18694
18695 2004-05-19  Johan Dahlin  <johan@gnome.org>
18696
18697         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
18698         ending of the array. Fixes gst-inspect segfault on ppc.
18699
18700 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18701
18702         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
18703
18704         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
18705
18706 2004-05-18  David Schleef  <ds@schleef.org>
18707
18708         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
18709         warnings (bugs, actually) noticed by gcc but not forte.
18710
18711 2004-05-18  David Schleef  <ds@schleef.org>
18712
18713         * sys/sunaudio/Makefile.am:
18714         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
18715
18716 2004-05-18  David Schleef  <ds@schleef.org>
18717
18718         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
18719         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
18720         to allow qtdemux to use non-seekable streams. (bug #142272)
18721
18722 2004-05-18  David Schleef  <ds@schleef.org>
18723
18724         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
18725         (gst_resample_sinc_ft_float): Remove use of static temporary
18726         buffer.  This code was obviously not supposed to last long, but
18727         it's stuck in our ABI, so it required a little hack to make it
18728         ABI-compatible.  Fixes #142585.
18729         * gst-libs/gst/resample/resample.h: same.
18730
18731 2004-05-18  David Schleef  <ds@schleef.org>
18732
18733         * configure.ac: Add sunaudio
18734         * examples/Makefile.am: make gstplay depend on gconf
18735         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
18736         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
18737         (convert_table_lookup), (img_convert): remove c99-isms
18738         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
18739           unsigned, to fix a warning on Solaris
18740         * gst/mpeg1sys/systems.c: bcopy->memcpy
18741         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
18742         * sys/Makefile.am: Add sunaudio
18743
18744 2004-05-18  Wim Taymans  <wim@fluendo.com>
18745
18746         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
18747         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
18748         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
18749         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
18750         (gst_ogg_mux_loop):
18751         Fix an ugly memleak where the muxer didn't flush enough ogg
18752         pages. This also resulted in badly muxed ogg files.
18753
18754 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18755
18756         * gst/asfdemux/asfheaders.c :
18757         * gst/asfdemux/asfheaders.h :
18758         * gst/asfdemux/gstasfdemux.c :
18759           - fix ASF_OBJ_PADDING guid
18760           - add 3 new object guids (language list, metadata,
18761             extended stream properties)
18762           - add a function to parse extended header objects
18763
18764 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18765
18766         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
18767           remove leftover debugging g_print
18768
18769 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18770
18771         * ext/mad/gstmad.c: (gst_mad_handle_event):
18772           Fix for when the first format in a discont event is not a
18773           byte-based one. Should fix #137710.
18774
18775 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18776
18777         * m4/a52.m4 : fix compilation with -Wall -Werror
18778         * m4/libfame.m4 : idem
18779         * m4/libmikmod.m4 : idem
18780
18781 2004-05-17  Benjamin Otte  <otte@gnome.org>
18782
18783         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18784           signal the new tags before giving up the reference
18785
18786 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18787
18788         * ext/shout2/gstshout2.c:
18789           use application/ogg instead of application/x-ogg (patch by Patrick
18790           Guimond, fixes #142432)
18791         * sys/oss/gstosselement.c: (gst_osselement_reset),
18792         (gst_osselement_sync_parms):
18793           don't set fragment size unless specified (fixes #142493)
18794
18795 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18796
18797         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
18798           fixes #142664
18799
18800 2004-05-17  Benjamin Otte  <otte@gnome.org>
18801
18802         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
18803           compute offsets correctly for internal buffers so timestamps are set
18804           correctly when we can't seek. Also handle cases where there are no
18805           offsets. (based on a patch by David Moore, fixes #142507)
18806
18807 2004-05-17  Benjamin Otte  <otte@gnome.org>
18808
18809         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18810           use correct variable when determining amount of data to skip so we
18811           don't skip into the void and segfault
18812
18813 2004-05-16  Benjamin Otte  <otte@gnome.org>
18814
18815         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
18816           Hi, I'm a memleak
18817
18818 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18819
18820         * gst/asfdemux/gstasfdemux.c:
18821           - fix a mem leak and always propagate tags
18822           - add WMV3 to known video codecs (but no decoder yet)
18823           - replace "surplus data" at end of audio header for what
18824             it is : codec specific data
18825           - fix a typo
18826
18827 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
18828
18829         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
18830
18831         * gst-libs/gst/audio/audioclock.c:
18832           Fix wrong return type (#142205).
18833
18834 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18835
18836         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
18837           Ignore CRCs by default (fixes #142566).
18838
18839 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18840
18841         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
18842         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
18843         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
18844         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
18845         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
18846         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
18847           Fix for cases where we fail to attach to a mixer.
18848
18849 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18850
18851         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
18852           Don't touch events after not owning them anymore.
18853         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
18854         (gst_wavparse_fmt), (gst_wavparse_other),
18855         (gst_wavparse_handle_seek), (gst_wavparse_loop),
18856         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
18857         (gst_wavparse_srcpad_event):
18858         * gst/wavparse/gstwavparse.h:
18859           Add seeking, fix querying.
18860
18861 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18862
18863         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18864           - process comments even if they don't end with \0\0
18865             g_convert would ignore them if present and works well without them
18866
18867 2004-05-16  Benjamin Otte  <otte@gnome.org>
18868
18869         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
18870           simplify caps
18871
18872 2004-05-16  Benjamin Otte  <otte@gnome.org>
18873
18874         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18875           don't write to memory we might not write to - g_convert does that
18876           for us anyway (fixes #142613)
18877         (gst_asf_demux_audio_caps):
18878           comment out gst_util_dump_mem
18879
18880 2004-05-16  Benjamin Otte  <otte@gnome.org>
18881
18882         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18883           compute correct expected timestamps after seek (broken since
18884           last commit)
18885         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
18886           rename element and debugging category to gdkpixbufscale
18887
18888 2004-05-16  Benjamin Otte  <otte@gnome.org>
18889
18890         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18891           add error checking to snd_pcm_delay and remove duplicate call to
18892           snd_pcm_delay that caused issues (see inline code comments)
18893         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
18894           make more readable and fix return value when snd_pcm_delay fails
18895         (fixes #142586)
18896
18897 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
18898         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
18899         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
18900         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
18901         (gst_pixbufscale_link), (gst_pixbufscale_init),
18902         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
18903         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
18904         (gst_pixbufscale_get_property), (pixbufscale_init):
18905         * ext/gdk_pixbuf/pixbufscale.h:
18906         Add these files I forgot earlier
18907
18908 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
18909         * ext/gdk_pixbuf/Makefile.am:
18910         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
18911         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18912         Add new pixbufscale element to scale RGB video
18913         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
18914         and HYPER interpolation correctly.
18915         * ext/theora/theoraenc.c: (theora_enc_chain),
18916         Discard buffer and return if explicit caps could not be set
18917         (theora_enc_get_property):
18918         Make _get return kbps for the bitrate consistent with
18919         the _set function.
18920
18921
18922 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18923
18924         * ext/libvisual/visual.c: (gst_visual_chain):
18925           add missing visual_audio_analyze
18926
18927 2004-05-14  David Schleef  <ds@schleef.org>
18928
18929         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
18930         is killed while we're playing.
18931         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
18932         gst_element_no_more_pads().
18933
18934 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18935
18936         * gst-libs/gst/riff/riff-read.c :
18937           - fix INFO tag extraction in RIFF/AVI files
18938             because gst_event_unref (event) also freed taglist
18939           - avoid a mem leak
18940
18941 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18942
18943         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
18944         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
18945
18946         * gst/auparse/gstauparse.c :
18947           - add code (commented for now) to support audio/x-adpcm on src pad
18948             (we have no decoder for those layout yet)
18949
18950         * gst/cdxaparse/gstcdxaparse.c :
18951         * gst/cdxaparse/gstcdxaparse.h :
18952           - partial rewrite using RiffRead (ripped iain's wavparse code)
18953
18954         * gst/rtp/gstrtpL16enc.c : typo
18955         * gst/rtp/gstrtpgsmenc.c : typo
18956
18957 2004-05-13  Benjamin Otte  <otte@gnome.org>
18958
18959         * configure.ac:
18960           check for exact version of libvisual, it's not supposed to be
18961           API/ABI stable yet
18962
18963 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18964
18965         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18966           signal no-more-pads
18967
18968 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
18969
18970         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
18971         Report which format was used for GST_FORMAT_DEFAULT
18972         * gst/debug/Makefile.am:
18973         * gst/debug/gstdebug.c: (plugin_init):
18974         * gst/debug/progressreport.c: (gst_progressreport_base_init),
18975         (gst_progressreport_class_init), (gst_progressreport_init),
18976         (gst_progressreport_report), (gst_progressreport_set_property),
18977         (gst_progressreport_get_property), (gst_progressreport_chain),
18978         (gst_progressreport_plugin_init):
18979         Add progressreport element for testing.
18980
18981 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18982
18983         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
18984         * sys/v4l/gstv4lsrc.h:
18985         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
18986         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
18987         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
18988         (gst_v4lsrc_grab_frame):
18989           add more debugging
18990           send a discont at start
18991
18992 2004-05-12  Colin Walters  <walters@redhat.com>
18993
18994         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
18995         inflooping if we can't find a chunk.  Or in other words, don't blow
18996         chunks if we don't have a chunk to blow.
18997
18998 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
18999         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
19000         Remove old debug output
19001         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
19002         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
19003         (gst_dvdec_set_property), (gst_dvdec_get_property):
19004         Change the quality setting to an enum, so it works from gst-launch
19005         Don't renegotiate a non-linked pad. Allows audio only decoding.
19006         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
19007         (gst_deinterlace_link), (gst_deinterlace_init):
19008         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
19009         (gst_videodrop_link):
19010         Some caps negotiation fixes
19011
19012 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19013
19014         * ext/tarkin/gsttarkin.c :
19015           - Change RANK from NONE to PRIMARY
19016         * ext/gdk_pixbuf/gstgdkpixbuf.c :
19017           - Change RANK from NONE to MARGINAL
19018         * ext/divx/gstdivxenc.c :
19019           - Change RANK from PRIMARY to NONE (encoder/spider issue)
19020
19021 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
19022
19023         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
19024         (gst_vorbisenc_push_packet):
19025           copy a function that was added between 1.0 and 1.0.1 until we
19026           depend on worthwhile features of post-1.0
19027
19028 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19029
19030         * configure.ac:
19031           enable shout2 by default
19032         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
19033         (gst_shout2send_base_init), (gst_shout2send_init),
19034         (gst_shout2send_connect), (gst_shout2send_change_state):
19035         * ext/shout2/gstshout2.h:
19036           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
19037           #142262)
19038         * ext/theora/theora.c: (plugin_init):
19039           don't set rank on encoders
19040
19041 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
19042
19043         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
19044           Use codec_data property instead of flag1 and flag2 for wma
19045
19046 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19047
19048         * gst/cdxaparse/gstcdxaparse.c :
19049           - Add mpegversion to CAPS to make it link
19050           - Rank is as GST_RANK_SECONDARY instead of NONE
19051         * gst/auparse/gstauparse.c :
19052           - Document all audio encoding we can encounter from Solaris 9
19053             headers and libsndfile information.
19054           - Increase max. rate from 48000 to 192000 (to match other elements)
19055           - Don't try to play junk data between header and samples
19056
19057 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19058
19059         * ext/libvisual/visual.c: (gst_visual_getcaps):
19060           use the right caps depending on endianness (I hope)
19061         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
19062           use GST_RANK_NONE for all non-decoding elements or spider gets
19063           mighty confused
19064
19065 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19066
19067         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
19068           Fix some odd cases and fix BE metadata parsing of unicode16 text.
19069
19070 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19071
19072         * gst/switch/gstswitch.c: (gst_switch_release_pad),
19073         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
19074         (gst_switch_loop), (gst_switch_get_type):
19075           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
19076           HEADERS. Had to be said.
19077
19078 2004-05-10  David Schleef  <ds@schleef.org>
19079
19080         * configure.ac: Add prototype Dirac support.
19081         * ext/Makefile.am:
19082         * ext/dirac/Makefile.am:
19083         * ext/dirac/gstdirac.cc:
19084         * ext/dirac/gstdiracdec.cc:
19085
19086 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19087
19088         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
19089         (gst_auparse_init), (gst_auparse_chain),
19090         (gst_auparse_change_state):
19091           Hack around spider. Remove me some day please.
19092
19093 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19094
19095         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19096           Fix for some uninitialized variables in previous patch, also
19097           makes it work. Fixes #142286 while we're at it.
19098
19099 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19100
19101         * gst/auparse/gstauparse.c:
19102                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
19103                 only unsupported formats are ADPCM/CCITT G.72x
19104                 reviewed by Ronald
19105         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
19106
19107 2004-05-10  Wim Taymans  <wim@fluendo.com>
19108
19109         * ext/vorbis/Makefile.am:
19110         * ext/vorbis/README:
19111         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
19112         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
19113         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
19114         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
19115         (gst_oggvorbisenc_convert_sink),
19116         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
19117         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
19118         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
19119         (get_constraints_string), (update_start_message),
19120         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
19121         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
19122         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
19123         * ext/vorbis/oggvorbisenc.h:
19124         * ext/vorbis/vorbis.c: (plugin_init):
19125         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
19126         (raw_caps_factory), (gst_vorbisenc_class_init),
19127         (gst_vorbisenc_init), (gst_vorbisenc_setup),
19128         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
19129         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
19130         * ext/vorbis/vorbisenc.h:
19131         Added a raw vorbis encoder to be used with the oggmuxer.
19132         We still need the old encoder for some gnome applications,
19133         read the README to find out how that works.
19134         The raw encoder is called "rawvorbisenc" until 0.9.
19135
19136 2004-05-10  Wim Taymans  <wim@fluendo.com>
19137
19138         * ext/ogg/gstogg.c: (plugin_init):
19139         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
19140         (gst_ogg_print):
19141         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
19142         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
19143         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
19144         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
19145         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
19146         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
19147         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
19148         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
19149         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
19150         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
19151         Added an ogg muxer.
19152         Small typo fixes in the demuxer.
19153
19154 2004-05-10  Wim Taymans  <wim@fluendo.com>
19155
19156         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
19157         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
19158         (theora_enc_change_state), (theora_enc_set_property),
19159         (theora_enc_get_property):
19160         Mark the last packet with an EOS flag which is not really needed
19161         in gstreamer.
19162         Do some better video framerate initialisation.
19163         Update the buffer timestamp.
19164
19165 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
19166
19167         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
19168         Return the result of the parent state change call
19169
19170 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19171
19172         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
19173         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
19174         * gst/law/alaw-encode.c : (idem)
19175         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
19176         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
19177         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
19178
19179 2004-05-09  Benjamin Otte  <otte@gnome.org>
19180
19181         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
19182           don't use a fixed buffer size when writing variable length data to
19183           it. Fixes memory corruption and makes alsasrc work
19184
19185 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19186
19187         * ext/gnomevfs/gstgnomevfssink.c:
19188         (_gst_boolean_allow_overwrite_accumulator),
19189         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
19190           Run glib's default signal handler (??) in RUN_CLEANUP rather than
19191           RUN_LAST, and don't use that to set the accumulator value because
19192           then it's always FALSE.
19193
19194 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19195
19196         * gst-libs/gst/riff/riff-media.c:
19197         (gst_riff_create_video_caps_with_data),
19198         (gst_riff_create_audio_caps),
19199         (gst_riff_create_audio_template_caps):
19200         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
19201           Fix for unaligned RIFF files (i.e. where all the chunks together
19202           in a LIST chunk are not of the same size as the size given in
19203           the LIST chunk header). Fixes several odd WAVE files. Also fix
19204           ADPCM (block_align property) in audio, so that wavparse based
19205           on this works now as it used to stand-alone.
19206
19207 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
19208
19209         reviewed by Benjamin Otte  <otte@gnome.org>
19210
19211         * ext/a52dec/gsta52dec.c:
19212         * ext/divx/gstdivxdec.c:
19213         * ext/divx/gstdivxenc.c:
19214         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
19215         * ext/faac/gstfaac.c: (gst_faac_base_init):
19216         * ext/faad/gstfaad.c: (gst_faad_base_init):
19217         * ext/ivorbis/vorbisfile.c:
19218         * ext/lame/gstlame.c:
19219         * ext/libfame/gstlibfame.c:
19220         * ext/mpeg2enc/gstmpeg2enc.cc:
19221         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
19222         * ext/sidplay/gstsiddec.cc:
19223         * ext/speex/gstspeexdec.c:
19224         * ext/speex/gstspeexenc.c:
19225         * ext/xvid/gstxviddec.c:
19226         * ext/xvid/gstxvidenc.c:
19227           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
19228           (fixes #142193)
19229
19230 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19231
19232         * ext/alsa/gstalsa.c: (device_list),
19233         (gst_alsa_class_probe_devices):
19234         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
19235           Fix alsa oddness in mixer after the combination of using mixer
19236           in source/sink elements and using hw:x,y instead of just hw:x.
19237
19238 2004-05-09  Benjamin Otte  <otte@gnome.org>
19239
19240         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
19241         (gst_wavparse_create_sourcepad):
19242           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
19243           sourcepads
19244
19245 2004-05-09  Benjamin Otte  <otte@gnome.org>
19246
19247         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
19248           allow discont events before caps nego
19249
19250 2004-05-08  Benjamin Otte  <otte@gnome.org>
19251
19252         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
19253           don't leak events
19254
19255 2004-05-08  Benjamin Otte  <otte@gnome.org>
19256
19257         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
19258         (gst_level_change_state), (gst_level_init):
19259         * gst/level/gstlevel.h:
19260           figure out if we're initialized directly instead of keeping a
19261           variable that's wrong in 90% of cases
19262           don't initialize pads and then leak them and use a new unitialized
19263           pad. (fixes #142084)
19264           these were bugs so n00bish I didn't find them for an hour :/
19265
19266 2004-05-08 Iain <iain@prettypeople.org>
19267
19268         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
19269         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
19270         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
19271         return the length that was read.
19272         (gst_riff_read_strf_auds): Allow fmt tags as well.
19273
19274 2004-05-07  David Schleef  <ds@schleef.org>
19275
19276         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
19277         signed char assumption in faad.h.
19278
19279 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19280
19281         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
19282           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
19283
19284 2004-05-07  Colin Walters  <walters@redhat.com>
19285
19286         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
19287         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
19288         function.
19289         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
19290         Add dispose function.
19291
19292 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
19293         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
19294           Fix caps nego and pad templates. RGB mode caps should
19295           work now.
19296         * ext/dvdnav/gst-dvd:
19297           Move mpeg2dec inside the thread because otherwise the
19298           queue rejects cap changes mid-stream
19299         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
19300         (gst_mpeg2dec_flush_decoder):
19301           For mpeg2dec > 0.4.0, call the flush function instead of
19302           manually extracting all in-flight frames.
19303         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
19304         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
19305           Change mime type video/dv go video/x-dv to match the
19306           rest of gst-plugins
19307
19308 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19309
19310         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19311         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
19312         (gst_alsa_sink_class_init):
19313         * ext/alsa/gstalsasink.h:
19314         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
19315         (gst_alsa_src_class_init):
19316         * ext/alsa/gstalsasrc.h:
19317           Make alsasink/src a subclass of alsamixer so that mixer stuff
19318           shows up in gst-rec. Needs some finetuning.
19319
19320 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19321
19322         * ext/lame/gstlame.c: (gst_lame_chain):
19323           simplify
19324         * ext/mad/gstmad.c: (gst_mad_handle_event):
19325           fix event leak
19326         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19327           be able to detect mp3 files < 4096 bytes
19328
19329 2004-05-06  Wim Taymans  <wim@fluendo.com>
19330
19331         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
19332         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
19333         (theora_enc_set_property), (theora_enc_get_property):
19334         Also encode the first frame, cleanup some code.
19335
19336 2004-05-06  Wim Taymans  <wim@fluendo.com>
19337
19338         * ext/mpeg2enc/gstmpeg2enc.cc:
19339         Forward events first before deciding that negotiation was
19340         not performed.
19341
19342 2004-05-06  Wim Taymans  <wim@fluendo.com>
19343
19344         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
19345         First process the events before deciding that negotiation
19346         was not performed.
19347
19348 2004-05-06  Wim Taymans  <wim@fluendo.com>
19349
19350         * ext/theora/Makefile.am:
19351         * ext/theora/theora.c: (plugin_init):
19352         * ext/theora/theoradec.c: (theora_dec_change_state):
19353         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
19354         (gst_theora_enc_class_init), (gst_theora_enc_init),
19355         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
19356         (theora_enc_chain), (theora_enc_change_state),
19357         (theora_enc_set_property), (theora_enc_get_property):
19358         Added a theora encoder, grouped the encoder and decoder into the
19359         same plugin.
19360
19361 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19362
19363         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
19364         (gst_jpegenc_chain):
19365         fix DURATION on outgoing buffers
19366         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
19367         debug using time formats
19368         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
19369         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19370         (gst_xvimagesink_sink_link):
19371         windows with width/height 0 generate X errors, so don't allow them
19372
19373 2004-05-05  Wim Taymans  <wim@fluendo.com>
19374
19375         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
19376         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
19377         (gst_mpeg2dec_negotiate_format):
19378         * ext/mpeg2dec/gstmpeg2dec.h:
19379           removed the static pad template so that we can add the
19380           more accurate framerate value to the caps.
19381
19382
19383 2004-05-04  Benjamin Otte  <otte@gnome.org>
19384
19385         * configure.ac:
19386           check for kdemacros.h, too (should fix #141821)
19387         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
19388           don't crash if no header was sent, but nicely error out (fixes part
19389           of #141554)
19390
19391 2004-05-04  Wim Taymans  <wim@fluendo.com>
19392
19393         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
19394         parent dispose function to avoid segfault on destroy.
19395
19396 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
19397
19398         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
19399         (plugin_init):
19400         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
19401         (gst_xvimagesink_sink_link):
19402         clean up debugging caps
19403         also recreate xvimage when format has changed
19404
19405 2004-05-04  Benjamin Otte  <otte@gnome.org>
19406
19407         * ext/libvisual/Makefile.am:
19408         * ext/libvisual/visual.c: (gst_visual_class_init),
19409         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
19410         (gst_visual_srclink), (gst_visual_chain),
19411         (gst_visual_change_state), (plugin_init):
19412           use a GstAdapter to correctly adapt buffer sizes - allows using a
19413           framerate
19414
19415 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19416
19417         * sys/v4l/gstv4lelement.h:
19418         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
19419         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
19420         (gst_v4lsrc_buffer_free):
19421         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
19422         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
19423         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
19424         (gst_v4lsrc_requeue_frame):
19425         move some debugging categories around
19426         query for fps index and set accordingly if found
19427
19428 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19429
19430         * ext/lame/gstlame.c:
19431         correct defaults that lame_init puts out of range
19432
19433 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19434
19435         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
19436         (gst_divxenc_class_init):
19437         fix range since -1 is the default
19438         * gst/mpeg1sys/gstmpeg1systemencode.c:
19439         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
19440         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
19441         (gst_rtjpegdec_chain):
19442         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
19443         (gst_rtjpegenc_chain):
19444         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
19445         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
19446         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
19447         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
19448         * sys/v4l/gstv4lsrc.c:
19449         * sys/v4l/v4l_calls.c: (gst_v4l_open):
19450         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
19451         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
19452         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
19453         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
19454           remove gst_info calls
19455
19456 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19457
19458         * Makefile.am:
19459         * po/af.po:
19460         * po/az.po:
19461         * po/en_GB.po:
19462         * po/nl.po:
19463         * po/sr.po:
19464         * po/sv.po:
19465           Updated translations
19466
19467 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19468
19469         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19470           refactor/comment code
19471
19472 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19473
19474         * gst/asfdemux/Makefile.am:
19475         * gst/asfdemux/asfheaders.c:
19476         * gst/asfdemux/asfheaders.h:
19477         * gst/asfdemux/gstasf.c: (plugin_init):
19478         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
19479         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
19480         (gst_asf_demux_setup_pad):
19481         * gst/asfdemux/gstasfdemux.h:
19482         * gst/asfdemux/gstasfmux.c:
19483         * gst/asfdemux/gstasfmux.h:
19484           Add tagging support to demuxer, split out registration in its own
19485           file instead of in demux (hacky), and prevent having some tables
19486           in our memory multiple times (in asfheaders.h).
19487
19488 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19489
19490         * gst/matroska/matroska-demux.c:
19491         (gst_matroska_demux_parse_metadata):
19492         * gst/matroska/matroska-ids.h:
19493           Basic tag reading support.
19494
19495 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19496
19497         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
19498           Really detect ac-3 audio.
19499         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
19500           really detect matroska files (off-by-1).
19501
19502 2004-04-30  David Schleef  <ds@schleef.org>
19503
19504         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19505         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
19506         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
19507         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
19508         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
19509         hackage -- parse a lot more atoms, extract a few tags.  One might even
19510         mistake this for tag support.  Maybe it is.
19511         * gst/qtdemux/qtdemux.h:
19512
19513 2004-04-30  Colin Walters  <walters@verbum.org>
19514
19515         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
19516
19517 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19518
19519         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19520         (gst_ffmpegcolorspace_getcaps):
19521           remove broken nego fix
19522
19523 2004-04-30  Benjamin Otte  <otte@gnome.org>
19524
19525         * configure.ac:
19526         * ext/Makefile.am:
19527         * ext/libvisual/Makefile.am:
19528         * ext/libvisual/visual.c:
19529           add initial support for libvisual (http://libvisual.sourceforge.net)
19530           libvisual is still quite alpha, so expect crashes in there :)
19531
19532 2004-04-29  David Schleef  <ds@schleef.org>
19533
19534         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
19535         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
19536         up qtdemux to make it spit out codec_data.  Do _not_ look at this
19537         code; you will no longer respect me.
19538
19539 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19540
19541         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
19542         * ext/alsa/gstalsa.h :
19543         change alsa pcm device discovery to find more than 1 device
19544         per card. code review by Ronald.
19545
19546 2004-04-29  David Schleef  <ds@schleef.org>
19547
19548         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
19549         Add a check for a driver bug on FreeBSD.  (bug #140565)
19550
19551 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19552
19553         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
19554         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
19555         (gst_jpegenc_getcaps):
19556           move format setting to inner loop
19557         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19558         (gst_ffmpegcolorspace_getcaps):
19559           use GST_PAD_CAPS if available so that we use already negotiated
19560           caps
19561         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19562         (qtdemux_parse_moov), (qtdemux_parse):
19563           extra debugging
19564         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
19565         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
19566           move hardcoded path to DEFINE
19567
19568 2004-04-28  David Schleef  <ds@schleef.org>
19569
19570         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
19571         (bug #140064)
19572
19573 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19574
19575         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
19576           Don't probe for playback device if we're a source element. Fixes
19577           #139658.
19578
19579 2004-04-29  Benjamin Otte  <otte@gnome.org>
19580
19581         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
19582         (gst_id3_tag_chain):
19583           rewrite buffer offset
19584
19585 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19586
19587         * configure.ac:
19588         * ext/Makefile.am:
19589         * ext/dts/Makefile.am:
19590         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
19591         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
19592         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
19593         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
19594         (gst_dtsdec_loop), (gst_dtsdec_change_state),
19595         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
19596         (plugin_init):
19597         * ext/dts/gstdtsdec.h:
19598           New DTS decoder.
19599         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
19600         (gst_faad_srcconnect):
19601           Add ESDS atom handling (.m4a).
19602
19603 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19604
19605         * ext/divx/gstdivxdec.c: (plugin_init):
19606           Remove comment that makes no sense.
19607         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
19608           Fix for obvious typo that resulted in warnings during gst-register.
19609         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
19610         (gst_xviddec_sink_link):
19611           Fix caps negotiation a bit better.
19612         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
19613           We call this 'codec_data', not 'esds'.
19614
19615 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19616
19617         * gst/monoscope/gstmonoscope.c:
19618           make sure we only provide 256x128
19619         * gst/monoscope/monoscope.c: (monoscope_init):
19620           assert size of 256x128
19621
19622 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19623
19624         * Makefile.am:
19625         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
19626         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
19627           fixate to max width and height of device
19628
19629 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19630
19631         * Makefile.am:
19632         * sys/v4l/gstv4l.c:
19633         * sys/v4l/gstv4lsrc.c:
19634         * sys/v4l/v4l_calls.c:
19635         * sys/v4l/v4lsrc_calls.c:
19636           fix for qc-usb driver which fakes having more than one buffer
19637           by handing the same buffer twice, which confused GStreamer's/v4lsrc
19638           buffer_free override
19639           add debugging
19640
19641 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19642
19643         * Makefile.am:
19644         * gst/videotestsrc/gstvideotestsrc.c:
19645         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
19646         (gst_videotestsrc_init), (gst_videotestsrc_get),
19647         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
19648         * gst/videotestsrc/gstvideotestsrc.h:
19649           add num-buffers property
19650
19651         2004-04-26  Benjamin Otte  <otte@gnome.org>
19652
19653         * ext/mad/gstid3tag.c: (plugin_init):
19654           set id3mux rank to NONE so it doesn't confuse spider
19655           require audio/mpeg,mpegversion=1 in id3mux
19656
19657 2004-04-26  Benjamin Otte  <otte@gnome.org>
19658
19659         * configure.ac:
19660           detect faad correctly as non-working if it's indeed non-working
19661
19662 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
19663
19664         * Makefile.am:
19665         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
19666         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
19667         fix _getcaps so it only negotiates to its supported format
19668
19669 2004-04-25  Benjamin Otte  <otte@gnome.org>
19670
19671         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19672           fix memleak
19673
19674 2004-04-23  Benjamin Otte  <otte@gnome.org>
19675
19676         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
19677           audio/x-raw-int with height rules! not. Now it's depth.
19678
19679 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19680
19681         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
19682         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
19683         (gst_wavparse_loop):
19684           Missing variable initialization. Add handling of DVI ADPCM. Fix
19685           mis-parsing of LIST chunks. This works around a bug where we mis-
19686           parse non-aligning LIST chunks (so LIST chunks where the contents
19687           don't align with the actual LIST size). The correct fix is to use
19688           rifflib, I'm not going to fix wavparse - too much work. All this
19689           fixes #104878.
19690
19691 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19692
19693         reviewed by Benjamin Otte  <otte@gnome.org>
19694
19695         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
19696           fix shoutcast not working (fixes #140844)
19697
19698 2004-04-22  Benjamin Otte  <otte@gnome.org>
19699
19700         * ext/hermes/gsthermescolorspace.c:
19701         (gst_hermes_colorspace_caps_remove_format_info):
19702         * gst/colorspace/gstcolorspace.c:
19703         (gst_colorspace_caps_remove_format_info):
19704         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19705         (gst_ffmpegcolorspace_caps_remove_format_info):
19706           s/gst_caps_simplify/gst_caps_do_simplify/
19707
19708 2004-04-22  Benjamin Otte  <otte@gnome.org>
19709
19710         * gst-libs/gst/riff/riff-media.c:
19711         (gst_riff_create_video_caps_with_data):
19712           mpegversion is an int
19713         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
19714           don't try to create pad templates with NULL caps, use any caps
19715           instead.
19716
19717 2004-04-20  David Schleef  <ds@schleef.org>
19718
19719         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
19720         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
19721         (bug #140384)
19722
19723 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
19724
19725         reviewed by David Schleef
19726
19727         * ext/mad/gstid3tag.c: Add stdlib.h
19728         * gst/rtp/gstrtpgsmenc.c: same
19729         * gst/tags/gstid3tag.c: same
19730         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
19731         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
19732         GST_DISABLE_LOADSAVE use.
19733         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
19734         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
19735         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
19736         atol(3)).
19737         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
19738         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
19739         strtoul(3)).
19740         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
19741         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
19742         $(ID3_CFLAGS).
19743         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
19744         $(LIBFAME_CFLAGS).
19745
19746 2004-04-20  David Schleef  <ds@schleef.org>
19747
19748         * gst/realmedia/rmdemux.c:  This was supposed to part of the
19749         last checkin.  Same idea.
19750
19751 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
19752
19753         reviewed by David Schleef
19754
19755         * configure.ac: bump required gstreamer version to 0.8.1.1
19756         because of following changes [--ds]
19757
19758         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
19759         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
19760         (gst_riff_read_header):  Use GST_READ_UINT*
19761         macros to access possibly unaligned memory.
19762
19763         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
19764         (mp3_type_find):  Use GST_READ_UINT*
19765         macros to access possibly unaligned memory.
19766         (mp3_type_find, mpeg1_parse_header, qt_type_find)
19767         (speex_type_find): Likewise
19768
19769         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
19770
19771         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
19772         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
19773         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
19774         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
19775         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
19776         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
19777         macros to access possibly unaligned memory.
19778
19779         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
19780         Likewise.
19781
19782         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
19783         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
19784
19785         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19786         Likewise.
19787
19788         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
19789         (gst_mpeg2subt_chain_subtitle): Likewise.
19790
19791         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
19792         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
19793         Likewise.
19794
19795         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
19796         Likewise.
19797
19798         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
19799         Likewise.
19800
19801         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
19802         Likewise.
19803
19804 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19805
19806         * configure.ac:
19807           update required version of GStreamer because of GST_TIME_FORMAT
19808
19809 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19810
19811         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
19812           remove leftover g_print
19813         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19814           don't try setting only a subset of the caps. We don't want to kill
19815           autoplugging on purpose
19816
19817 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19818
19819         * sys/ximage/ximagesink.c: (plugin_init):
19820         * sys/xvimage/xvimagesink.c: (plugin_init):
19821           add debugging categories
19822
19823 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19824
19825         * po/en_GB.po:
19826         * po/LINGUAS:
19827           Adding en_GB translation (Gareth Owen)
19828
19829 2004-04-20  David Schleef  <ds@schleef.org>
19830
19831         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
19832         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
19833         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
19834         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
19835         A number of new features and hacks to extract the esds atom and
19836         put it into the caps.  (bug #137724)
19837
19838 2004-04-19  David Schleef  <ds@schleef.org>
19839
19840         * gconf/Makefile.am: Fix for non-GNU make
19841         * gst-libs/gst/Makefile.am: Change directory order to handle
19842         GstPlay linking with gstinterfaces
19843         * gst-libs/gst/audio/make_filter: make use of tr portable
19844         * gst-libs/gst/play/Makefile.am: Add intended \
19845         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19846         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
19847         function prototype instead of void *.
19848         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
19849         macro.
19850         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19851         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
19852         * gst/videofilter/make_filter: make use of tr portable
19853         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
19854
19855 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19856
19857         * po/LINGUAS:
19858         * po/uk.po:
19859           Added Ukrainian translation (Maxim V. Dziumanenko)
19860
19861 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19862
19863         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
19864         (gst_gsmdec_link), (gst_gsmdec_chain):
19865           Fix capsnego, simplify chain function slightly.
19866         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
19867           Add GSM.
19868
19869 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19870
19871         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
19872         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
19873         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
19874           Hack to make wavparse work with spider (always -> sometimes pad).
19875           Fixes #135862 && #140411.
19876
19877 2004-04-18  Benjamin Otte  <otte@gnome.org>
19878
19879         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
19880         (gst_osselement_rate_probe_check),
19881         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
19882           get rid of \n in debug output
19883
19884 2004-04-17  Iain <iain@prettypeople.org>
19885
19886         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
19887         not just EOS.
19888
19889 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19890
19891         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
19892         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
19893         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
19894         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
19895         (gst_id3_tag_src_link), (gst_id3_tag_chain),
19896         (gst_id3_tag_change_state), (plugin_init):
19897           deprecate id3tag element and replace with id3demux/id3mux.
19898           great side effect: this ugly file is now even uglier, yay!
19899         * ext/mad/gstmad.h:
19900           remove non-available function
19901           update for new get_type
19902
19903 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19904
19905         * configure.ac:
19906           require mpeg2dec >= 0.4.0
19907
19908 2004-04-17  Benjamin Otte  <otte@gnome.org>
19909
19910         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19911         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
19912         (gst_xvimagesink_set_xwindow_id):
19913           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
19914           assorted cleanup fixes.
19915
19916 2004-04-16  David Schleef  <ds@schleef.org>
19917
19918         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
19919         * sys/xvimage/xvimagesink.h: same
19920
19921 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
19922
19923         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
19924           Fix GST_ELEMENT_ERROR with (NULL)
19925
19926 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19927
19928         * gst-libs/gst/riff/riff-media.c:
19929         (gst_riff_create_video_caps_with_data):
19930           Add div[3456] as fourccs for DivX 3 (fixes #140137).
19931
19932 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19933
19934         * gst-libs/gst/riff/riff-media.c:
19935         (gst_riff_create_video_caps_with_data),
19936         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
19937         (gst_riff_create_video_template_caps),
19938         (gst_riff_create_audio_template_caps):
19939         * gst-libs/gst/riff/riff-media.h:
19940         * gst-libs/gst/riff/riff-read.c:
19941         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
19942         * gst-libs/gst/riff/riff-read.h:
19943         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
19944           Add MS RLE support. I added some functions to read out strf chunks
19945           into strf chunks and the data behind it. This is usually color
19946           palettes (as in RLE, but also in 8-bit RGB). Also use those during
19947           caps creation. Lastly, add ADPCM (similar to wavparse - which
19948           should eventually be rifflib based).
19949         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
19950         (gst_matroska_demux_init), (gst_matroska_demux_reset):
19951         * gst/matroska/matroska-demux.h:
19952           Remove placeholders for some prehistoric tagging system. Didn't add
19953           support for any tag system really anyway.
19954         * gst/qtdemux/qtdemux.c:
19955           Add support for audio/x-m4a (MPEG-4) through spider.
19956         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
19957         (gst_wavparse_loop):
19958           ADPCM support (#135862). Increase max. buffer size because we
19959           cannot split buffers for ADPCM (screws references) and I've seen
19960           files with 2048 byte chunks. 4096 seems safe for now.
19961
19962 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19963
19964         * configure.ac: bump nano to 1
19965
19966 === release 0.8.1 ===
19967
19968 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19969
19970         * configure.ac: releasing 0.8.1, "Comforting Sounds"
19971
19972 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19973
19974         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19975           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
19976           Fixes #140058
19977
19978 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19979
19980         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
19981           lower rank of dvddemux so that it's not used for mpeg playback.
19982
19983 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19984
19985         * configure.ac:
19986           save libs correctly when checking mad
19987
19988 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19989
19990         * ext/mad/gstid3tag.c: (plugin_init):
19991           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
19992
19993 2004-04-13  David Schleef  <ds@schleef.org>
19994
19995         * common/m4/gst-feature.m4: Call -config scripts with
19996         --plugin-libs if it is supported.
19997         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
19998         JPEG images are image/jpeg.
19999         * gst/debug/Makefile.am:
20000         * gst/debug/negotiation.c: (gst_negotiation_class_init),
20001         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
20002         (gst_negotiation_update_caps), (gst_negotiation_get_property),
20003         (gst_negotiation_plugin_init): Add a property that acts like
20004         filter caps.
20005         * testsuite/gst-lint:  Move license checking to be a standard
20006         test.
20007
20008 2004-04-13  David Schleef  <ds@schleef.org>
20009
20010         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
20011         patch from Sebastien Cote (bug #139958)
20012
20013 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20014
20015         * examples/gstplay/Makefile.am:
20016         * examples/gstplay/player.c: (main):
20017           make the commandline player example use gconf settings
20018
20019 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20020
20021         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
20022         (gst_cacasink_sinkconnect), (gst_cacasink_init),
20023         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
20024           init/end library during state transition, not object
20025           creation/disposal.  get rid of custom dispose handler.
20026
20027
20028 2004-04-12  Christian Schaller <Uraeus@gnome.org>
20029
20030         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
20031         be a symlink
20032
20033 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20034
20035         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
20036           Handle JUNK chunks inside data section. Prevents warnings.
20037
20038 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20039
20040         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20041         (gst_riff_create_video_template_caps):
20042           Add MS video v1.
20043         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20044         (gst_avi_demux_stream_data):
20045           Add support for "rec-list" chunks.
20046
20047 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20048
20049         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
20050           Fix another codecname mismatch.
20051
20052 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20053
20054         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20055           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
20056           so that MJPEG plays back.
20057
20058 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20059
20060         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
20061         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
20062         * gst/mpeg1videoparse/gstmp1videoparse.h:
20063           Fix for some slight mis-cuts in buffer parsing, and for some
20064           potential overflows or faults-causers. Adds disconts. Also fixes
20065           #139105 while we're at it.
20066
20067 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20068
20069         * configure.ac:
20070         * sys/v4l2/gstv4l2element.h:
20071           Workaround for missing struct v4l2_buffer declaration in Suse 9
20072           and Mandrake 10 linux/videodev2.h header file (#135919).
20073
20074 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20075
20076         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
20077           Bail out if no filename was given.
20078
20079 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20080
20081         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
20082         (gst_v4l2_fourcc_from_structure):
20083           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
20084           Y41B somewhere).
20085
20086 2004-04-09  Benjamin Otte  <otte@gnome.org>
20087
20088         * ext/gnomevfs/gstgnomevfssink.c:
20089         (_gst_boolean_allow_overwrite_accumulator),
20090         (gst_gnomevfssink_class_init):
20091           fix erase signal - if any handler returns false the file will not be
20092           overwritten. If no handler is connected, the file will not be
20093           overwritten either.
20094           renamed signal to "allow-overwrite"
20095         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
20096           free string when adding it to ID3 failed
20097         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
20098           unref event when done
20099         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
20100           free caps
20101         * gst/typefind/gsttypefindfunctions.c:
20102         (mpeg_video_stream_type_find):
20103           fix invalid read
20104
20105 2004-04-08  David Schleef  <ds@schleef.org>
20106
20107         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20108         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
20109
20110 2004-04-08  David Schleef  <ds@schleef.org>
20111
20112         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
20113         we don't support (bug #139532)
20114
20115 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
20116
20117         * ext/mad/gstmad.c: (gst_mad_handle_event),
20118         (gst_mad_check_caps_reset), (gst_mad_chain),
20119         (gst_mad_change_state):
20120           only set explicit caps if they haven't been set before for
20121           this stream.  MPEG-audio sample rate/channels aren't allowed
20122           to change in-stream.
20123           Fixes #139382
20124
20125 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20126
20127         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
20128         (_gst_boolean_did_something_accumulator),
20129         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
20130         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
20131         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
20132         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
20133         (gst_gnomevfssink_change_state):
20134           Fix erase signal. Don't erase by default. Remove handoff signal.
20135           Remove erase property. Don't segfault. General cleanup.
20136
20137 2004-04-07  Benjamin Otte  <otte@gnome.org>
20138
20139         * gst-libs/gst/gconf/test-gconf.c: (main):
20140           add missing gst_init
20141
20142 2004-04-07  Benjamin Otte  <otte@gnome.org>
20143
20144         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
20145           free the mutexes, too
20146
20147 2004-04-07  Benjamin Otte  <otte@gnome.org>
20148
20149         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
20150           actually free the URI string
20151         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
20152           compute offset correctly when passing discont events
20153         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
20154           don't leak discont events
20155         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
20156           add some missing breaks so caps aren't copied randomly
20157         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
20158           if we realloc memory, we better use it
20159
20160 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20161
20162         * ext/mad/gstmad.c: (normal_seek):
20163           fix GST_FORMAT_TIME usage
20164
20165 2004-04-05  David Schleef  <ds@schleef.org>
20166
20167         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
20168         a deprecated function (hack!)
20169
20170 2004-04-05  Benjamin Otte  <otte@gnome.org>
20171
20172         * ext/esd/esdmon.c: (gst_esdmon_get):
20173           fix nonterminated vararg and memleak
20174
20175 2004-04-05  Benjamin Otte  <otte@gnome.org>
20176
20177         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
20178         (gst_ladspa_init), (gst_ladspa_force_src_caps),
20179         (gst_ladspa_set_property), (gst_ladspa_get_property),
20180         (gst_ladspa_instantiate), (gst_ladspa_activate),
20181         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
20182           clean up debugging
20183
20184 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
20185
20186         reviewed by Benjamin Otte  <otte@gnome.org>
20187
20188         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
20189           check for broken LADSPA parameters (fixes #138635)
20190
20191 2004-04-05  Benjamin Otte  <otte@gnome.org>
20192
20193         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
20194           advertise buffer-frames correctly on sinkpads
20195
20196 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20197
20198         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
20199         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
20200         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
20201         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
20202         (gst_mad_check_caps_reset), (gst_mad_chain):
20203         add more debugging, only reset caps when we're not in error state
20204
20205 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20206
20207         * ext/mad/gstmad.c: add debugging category, comment + cleanups
20208
20209 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
20210
20211         reviewed by Benjamin Otte  <otte@gnome.org>
20212
20213         * configure.ac:
20214           fix == in test(1) operator
20215
20216 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
20217
20218         reviewed by Benjamin Otte  <otte@gnome.org>
20219
20220         * configure.ac:
20221           fix --export-symblos-regex to a working regex.
20222
20223 2004-04-04  Benjamin Otte  <otte@gnome.org>
20224
20225         * sys/oss/.cvsignore:
20226           add for oss_probe
20227
20228 2004-04-03  Tim-Phillip M??ller <t.i.m@zen.co.uk>
20229
20230         reviewed by Benjamin Otte  <otte@gnome.org>
20231
20232         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
20233           add missing 'new_media' argument (fixes #138168)
20234         * gst/matroska/matroska-demux.c:
20235         (gst_matroska_demux_handle_seek_event):
20236           add vararg terminator (fixes #138169)
20237
20238 2004-04-02  David Schleef  <ds@schleef.org>
20239
20240         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
20241         disted (bug #138914)
20242
20243 2004-04-01  Benjamin Otte  <otte@gnome.org>
20244
20245         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
20246         (gst_alsa_close_audio):
20247           handle case better where a soundcard can't pause
20248         * ext/ogg/gstoggdemux.c:
20249           don't crash when we get events but don't have pads yet
20250
20251 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20252
20253         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
20254           throw an error if we couldn't probe any caps.
20255
20256 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
20257
20258         * ext/dvdnav/gst-dvd:
20259         Add a really simple sample DVD player
20260
20261 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
20262
20263         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
20264         (gst_a52dec_push), (gst_a52dec_handle_event),
20265         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
20266         (gst_a52dec_change_state):
20267         * ext/a52dec/gsta52dec.h:
20268           Use a debug category, Output timestamps correctly
20269           Emit tag info, Handle events, tell liba52dec about cpu
20270           capabilities so it can use MMX etc.
20271         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
20272           Fix a crasher accessing invalid memory
20273         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
20274         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
20275         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
20276         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
20277         (dvdnavsrc_query):
20278           Some support for byte-format seeking.
20279           Small fixes for still frames and menu button overlays
20280         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
20281         (gst_mpeg2dec_alloc_buffer):
20282           Use a debug category. Adjust the report level of several items to
20283           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
20284           so it doesn't lose the GstBuffer pointer
20285         * gst/debug/Makefile.am:
20286         * gst/debug/gstdebug.c: (plugin_init):
20287         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
20288         (gst_navseek_base_init), (gst_navseek_class_init),
20289         (gst_navseek_init), (gst_navseek_seek),
20290         (gst_navseek_handle_src_event), (gst_navseek_set_property),
20291         (gst_navseek_get_property), (gst_navseek_chain),
20292         (gst_navseek_plugin_init):
20293         * gst/debug/gstnavseek.h:
20294           Add the navseek debug element for seeking back and forth in a
20295           video stream using arrow keys.
20296         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
20297         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
20298         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
20299         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
20300         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
20301         (gst_mpeg2subt_parse_header), (gst_get_nibble),
20302         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
20303         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
20304         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
20305         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
20306         * gst/mpeg2sub/gstmpeg2subt.h:
20307           Pretty much a complete rewrite. Now a loopbased element. May still
20308           require work to properly synchronise subtitle buffers.
20309         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
20310         (gst_dvd_demux_send_subbuffer):
20311         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
20312           Don't attempt to create subbuffers of size 0
20313           Reduce a couple of error outputs to warnings.
20314         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
20315         (gst_y4mencode_chain):
20316         Output the y4m frame header correctly.
20317
20318 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20319
20320         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
20321           throw errors instead of allowing SIGFPE
20322
20323 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20324
20325         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
20326         (gst_gconf_render_bin_from_key):
20327           leak plugging and style fixing
20328
20329 2004-03-31  David Schleef  <ds@schleef.org>
20330
20331         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
20332         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
20333         (bug #138225)
20334         * gst/debug/Makefile.am:
20335         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
20336         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
20337         plugin.
20338         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
20339         (gst_negotiation_base_init), (gst_negotiation_class_init),
20340         (gst_negotiation_init), (gst_negotiation_getcaps),
20341         (gst_negotiation_pad_link), (gst_negotiation_chain),
20342         (gst_negotiation_set_property), (gst_negotiation_get_property),
20343         (gst_negotiation_plugin_init):  New element to talk about random
20344         negotiation things happening in a pipeline.
20345
20346 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
20347
20348         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
20349           fix integer addition with help of Stefan Kost
20350
20351 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
20352
20353         * po/nl.po: updated Dutch translation (Elros Cyriatan)
20354
20355 2004-03-30  David Schleef  <ds@schleef.org>
20356
20357         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
20358         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
20359         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
20360         (bug #137504)
20361         * ext/mpeg2dec/gstmpeg2dec.h:
20362
20363 2004-03-30  David Schleef  <ds@schleef.org>
20364
20365         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
20366
20367 2004-03-30  David Schleef  <ds@schleef.org>
20368
20369         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
20370         Michael Petullo) to handle .mov
20371
20372 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20373
20374         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
20375         (gst_osselement_rate_check_rate):
20376           probe caps correctly for sound cards that only support one format
20377
20378 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20379
20380         * ext/kio/kiosrc.cpp: (process_events):
20381           update handling event processing if inside KDE - untested
20382
20383 2004-03-29  David Schleef  <ds@schleef.org>
20384
20385         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
20386         by 2 to not interfere with other colorspaces.
20387         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
20388         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
20389         one to not interfere with ffmpeg_colorspace.
20390
20391 2004-03-29  David Schleef  <ds@schleef.org>
20392
20393         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
20394         aren't in the caps.
20395         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
20396         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
20397
20398 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20399
20400         * gst-libs/gst/riff/riff-media.c:
20401           fail on error, don't try to set stuff on NULL caps
20402
20403 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20404
20405         * configure.ac:
20406         * ext/Makefile.am:
20407         * ext/kio/Makefile.am:
20408         * ext/kio/kioreceiver.cpp:
20409         * ext/kio/kioreceiver.h:
20410         * ext/kio/kiosrc.cpp:
20411         * ext/kio/kiosrc.h:
20412           add experimental kiosrc plugin
20413         * ext/alsa/gstalsaplugin.c: (plugin_init):
20414           initialize debugging category only when we're sure registering the
20415           plugins worked.
20416
20417 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20418
20419         * examples/gstplay/player.c: (main):
20420         * gst-libs/gst/play/play.c: (gst_play_class_init),
20421         (gst_play_set_location), (gst_play_set_data_src),
20422         (gst_play_set_video_sink), (gst_play_set_audio_sink),
20423         (gst_play_set_visualization), (gst_play_connect_visualization):
20424           check return values of element_set_state and return FALSE where
20425           failed
20426
20427 2004-03-29  Benjamin Otte  <otte@gnome.org>
20428
20429         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
20430           try harder to check if an event is really a discont
20431
20432 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20433
20434         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
20435         * po/az.po:
20436
20437 2004-03-28  Benjamin Otte  <otte@gnome.org>
20438
20439         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
20440         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
20441         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
20442           get rid of non-standard "..." ranges in case statements.
20443
20444 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
20445
20446         * gst/mpegstream/gstmpegdemux.c:
20447         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
20448         specific functionality split to the new dvddemux element.
20449         * gst/mpegstream/gstdvddemux.c:
20450         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
20451         streams, derived from mpegdemux.
20452         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
20453         up. SCR based timestamp rewriting can be turned off (will probably
20454         completely disappear soon).
20455         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
20456         hacking. General cleanup. All printf statements replaced by
20457         debugging messages. Almost complete libdvdnav support.
20458         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
20459         by events. New properties for audio and subpicture languages.
20460         (dvdnavsrc_update_highlight): Now uses events.
20461         (dvdnavsrc_user_op): Cleaned up.
20462         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
20463         based). Lots of cleanup, and propper support for most libdvdnav
20464         events.
20465         (dvdnavsrc_make_dvd_event): New function.
20466         (dvdnavsrc_make_dvd_nav_packet_event): New function.
20467         (dvdnavsrc_make_clut_change_event): New function.
20468
20469 2004-03-26  Benjamin Otte  <otte@gnome.org>
20470
20471         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
20472           fix bug where typefinding would claim it's theora whenever less then
20473           7 bytes of data were available
20474
20475 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20476
20477         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
20478         (gst_alawdec_base_init), (gst_alawdec_class_init),
20479         (gst_alawdec_init), (gst_alawdec_chain):
20480         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
20481         (gst_alawenc_base_init), (gst_alawenc_class_init),
20482         (gst_alawenc_init), (gst_alawenc_chain):
20483         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
20484         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
20485         (gst_mulawdec_init), (gst_mulawdec_chain):
20486         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
20487         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
20488         (gst_mulawenc_init), (gst_mulawenc_chain):
20489           Fix capsnego in all four, remove the unused property functions and
20490           simplify the chain functions slightly. I guess we could use macros
20491           or something similar for those, since the code is so similar, but
20492           I'm currently too lazy...
20493
20494 2004-03-24  David Schleef  <ds@schleef.org>
20495
20496         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
20497         (gst_osselement_close_audio), (gst_osselement_probe_caps),
20498         (gst_osselement_get_format_structure),
20499         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
20500         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
20501         (gst_osselement_rate_int_compare): Add code to handle rate probing
20502         (bug #120883)
20503         * sys/oss/gstosselement.h: same
20504         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
20505         Use rate probing provided by osselement.
20506         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
20507
20508 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20509
20510         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
20511         (gst_xvidenc_get_property):
20512           ulong/int mess-up.
20513
20514 2004-03-24  David Schleef  <ds@schleef.org>
20515
20516         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
20517         (gst_speexdec_init):
20518         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
20519         (gst_speexenc_init):  Create the pad template correctly (from
20520         the static pad template, not a NULL pointer.)
20521
20522 2004-03-25  Benjamin Otte  <otte@gnome.org>
20523
20524         * gst/debug/Makefile.am:
20525         * gst/debug/breakmydata.c:
20526           add element that quasi-randomly changes bytes in the stream.
20527           Intended use is robustness checking of demuxers and decoders in
20528           media tests.
20529
20530 2004-03-24  Benjamin Otte  <otte@gnome.org>
20531
20532         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
20533         (gst_alsa_probe_hw_params):
20534         * ext/alsa/gstalsa.h:
20535           debugging output fixes
20536
20537 2004-03-24  Benjamin Otte  <otte@gnome.org>
20538
20539         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
20540           don't g_return_if_fail if element is PLAYING, fail silently as every
20541           other element.
20542         * gst/effectv/gstquark.c: (gst_quarktv_chain):
20543           only fix needed for cast lvalue issues in gst-plugins
20544         * gst/volenv/gstvolenv.c: (gst_volenv_init):
20545           add proxy_getcaps
20546
20547 2004-03-24  Benjamin Otte  <otte@gnome.org>
20548
20549         * gst/level/gstlevel.c: (gst_level_init):
20550           add proxying getcaps function, so level doesn't advertise impossible
20551           caps
20552
20553 2004-03-24  David Schleef  <ds@schleef.org>
20554
20555         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
20556         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
20557         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
20558         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
20559         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
20560         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
20561         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
20562         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
20563         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
20564         messages.  Divide the chunk size by the compression ratio
20565         (needed for MACE audio)
20566
20567 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20568
20569         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
20570           Fix buffer overflow read error.
20571
20572 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20573
20574         * ext/alsa/gstalsa.h:
20575           Remove unused entry.
20576         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20577           Add cinepak.
20578         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
20579         (gst_videodrop_link), (gst_videodrop_chain):
20580           Fix, sort of. Was horribly broken with new capsnego. Bah...
20581
20582 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
20583
20584         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
20585         (plugin_init):
20586         Add a monkeysaudio typefind function
20587
20588 2004-03-23  Johan Dahlin  <johan@gnome.org>
20589
20590         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
20591         (gst_play_video_fixate): Check so the structure has the field
20592         before trying to fixate them, this makes it possible to have
20593         fakesinks for video and audio output without printing errors on
20594         the output console.
20595
20596 2004-03-22  David Schleef  <ds@schleef.org>
20597
20598         * sys/oss/Makefile.am:
20599         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
20600         (check_rate), (add_rate):  Rate probing test app.
20601
20602 2004-03-21  Benjamin Otte  <otte@gnome.org>
20603
20604         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
20605         (_fixate_caps_to_int), (gst_audio_convert_fixate):
20606           add a fixation function that pretty much does the right thing (fixes
20607           #137556)
20608
20609 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
20610
20611         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
20612
20613 2004-03-20  Tim-Phillip M??ller <t.i.m@zen.co.uk>
20614
20615         reviewed by: Benjamin Otte  <otte@gnome.org>
20616
20617         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20618           terminate gst_event_new_discontinuous correctly (fixes parts of
20619           #137711)
20620
20621 2004-03-19  David Schleef  <ds@schleef.org>
20622
20623         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
20624         since it doesn't depend on X, and it's part of our ABI.
20625
20626 2004-03-19  Iain <iain@prettypeople.org>
20627
20628         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
20629         is_int in the structure, not the local variable.
20630
20631 2004-03-19  David Schleef  <ds@schleef.org>
20632
20633         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
20634         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
20635         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
20636         Improvements in caps negotiation.
20637
20638 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20639
20640         * po/LINGUAS:
20641         * po/af.po:
20642           adding Afrikaans (Petri Jooste)
20643
20644 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20645
20646         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20647         (gst_ffmpegcolorspace_chain):
20648         throw error instead of g_critical (#137588)
20649
20650 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20651
20652         * Makefile.am:
20653         * configure.ac:
20654           dist common and m4 correctly
20655         * po/sv.po:
20656
20657 2004-03-17  David Schleef  <ds@schleef.org>
20658
20659         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
20660         (bug #137348)
20661
20662 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20663
20664         * po/LINGUAS:
20665         * po/sv.po:
20666           adding Swedish translation (Christian Rose)
20667
20668 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20669
20670         * Makefile.am: use release.mak
20671
20672 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20673
20674         * common/ChangeLog:
20675         * common/gst-autogen.sh:
20676           add some explanation about the version detection
20677         * configure.ac:
20678           fix X check
20679
20680 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20681
20682         * configure.ac: bump nano to 1
20683
20684 === release 0.8.0 ===
20685
20686 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20687
20688         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
20689
20690 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20691
20692         * configure.ac:
20693           update libtool version
20694         * gst-libs/gst/media-info/Makefile.am:
20695           actually use libtool version
20696
20697 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20698
20699         * configure.ac: fix speex detection to work with 1.0 but not 1.1
20700
20701 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20702
20703         * configure.ac:
20704         * gst-plugins.spec.in:
20705         * pkgconfig/Makefile.am:
20706         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
20707         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20708         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20709         * pkgconfig/gstreamer-libs.pc.in:
20710         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20711         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20712         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
20713         * pkgconfig/gstreamer-plugins.pc.in:
20714           remove @VERSION@ from some of the pc files since core and plugins
20715           are decoupled.
20716           created gstreamer-plugins.pc as it's a better name, but keeping
20717           -libs around for now to get fixes upstream done first.
20718
20719 2004-03-15  Julien MOUTTE <julien@moutte.net>
20720
20721         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
20722         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
20723         * gst-libs/gst/play/play.h:
20724
20725 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20726
20727         * *.c, *.cc: don't mix tabs and spaces
20728
20729 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20730
20731         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
20732           use the new ffmpegcolorspace
20733         * gst-plugins.spec.in:
20734           package new colorspace and media-info
20735         * configure.ac:
20736         * pkgconfig/Makefile.am:
20737           fix some more disting issues
20738         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20739         * pkgconfig/gstreamer-media-info.pc.in:
20740           generate media-info pc files
20741
20742 2004-03-15  Johan Dahlin  <johan@gnome.org>
20743
20744         * *.h: Revert indenting
20745
20746 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20747
20748         * configure.ac:
20749           adding ffmpegcolorspace element
20750         * gst/ffmpegcolorspace/Makefile.am:
20751         * gst/ffmpegcolorspace/avcodec.h:
20752         * gst/ffmpegcolorspace/common.h:
20753         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
20754         * gst/ffmpegcolorspace/dsputil.h:
20755         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
20756         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20757         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
20758         (gst_ffmpeg_caps_to_pix_fmt):
20759         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
20760         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20761         (gst_ffmpegcolorspace_caps_remove_format_info),
20762         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
20763         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
20764         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
20765         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
20766         (gst_ffmpegcolorspace_set_property),
20767         (gst_ffmpegcolorspace_get_property),
20768         (gst_ffmpegcolorspace_register):
20769         * gst/ffmpegcolorspace/imgconvert.c:
20770         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
20771         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
20772         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
20773         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
20774         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
20775         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
20776         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
20777         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
20778         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
20779         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
20780         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
20781         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
20782         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
20783         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
20784         (img_get_alpha_info), (deinterlace_line),
20785         (deinterlace_line_inplace), (deinterlace_bottom_field),
20786         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
20787         * gst/ffmpegcolorspace/imgconvert_template.h:
20788         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
20789         * gst/ffmpegcolorspace/mmx.h:
20790         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
20791           adding ffmpegcolorspace element supplied by Ronald after cleaning
20792           up and pulling in the right bits of upstream source.
20793           I'm sure a better C/compiler wizard could do some cleaning up (for
20794           example use GLIB's malloc stuff), but as a first pass this
20795           works very well
20796
20797 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20798
20799         * ext/alsa/gstalsa.h:
20800           I assume Ronald forgot to commit the change to have cardname
20801           as a struct member.  Expect some public spanking at the next
20802           opportunity.
20803
20804 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20805
20806         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
20807         (gst_alsa_open_audio), (gst_alsa_close_audio):
20808         * ext/alsa/gstalsa.c:
20809           Don't open the device if we're a mixer (= padless).
20810         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
20811         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
20812         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
20813           Open mixer during state change rather than during object
20814           initialization. Also, get a device name. Currently in a somewhat
20815           hackish fashion, but I didn't really find something better.
20816
20817 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20818
20819         * *.c, *.h: run gst-indent
20820
20821 2004-03-14  Benjamin Otte  <otte@gnome.org>
20822
20823         * gst/modplug/gstmodplug.cc:
20824         * gst/modplug/gstmodplug.h:
20825           set correct timestamps on outgoing buffers
20826
20827 2004-03-14  Benjamin Otte  <otte@gnome.org>
20828
20829         * gst/modplug/gstmodplug.cc:
20830           handle events - don't do crap when a discont arrives that's not
20831           necessary
20832           This allows correct loading and playback of mods in Rhythmbox
20833
20834 2004-03-14  Benjamin Otte  <otte@gnome.org>
20835
20836         * configure.ac:
20837         * gst-libs/gst/gconf/Makefile.am:
20838         * pkgconfig/Makefile.am:
20839           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
20840           they get rebuilt properly
20841         * configure.ac:
20842           when checking for vorbis, try pkgconfig first.
20843         * gst/modplug/gstmodplug.cc:
20844           add fixate function
20845
20846 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20847
20848         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20849           Fix for obvious mistake, where we first shift the offset and then
20850           read a samplesize element assuming the old offset. Note that this
20851           part still has something weird, i.e. my movies containing those
20852           don't actually play well, but at least there's something that looks
20853           like sound now.
20854
20855 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
20856         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
20857         (plugin_init):
20858         Add a typefind function for speex format
20859
20860 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20861
20862         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
20863         (gst_asf_demux_setup_pad):
20864           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
20865           instead of 0. Reason is simple: some elements have a fps range
20866           of 1-max instead of 0-max. So now ASF video actually works.
20867
20868 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20869
20870         * po/LINGUAS:
20871         * po/sr.po:
20872           adding serbian as a language
20873
20874 2004-03-13  Benjamin Otte  <otte@gnome.org>
20875
20876         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
20877           return taglist correctly from _get function, don't gst_pad_push it.
20878           (fixes #137042)
20879
20880 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
20881         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20882
20883 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20884
20885         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
20886         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
20887         (gst_alsa_mixer_track_new):
20888         * ext/alsa/gstalsamixertrack.h:
20889           Fix ancient leftovers... MixerTrack is a GObject.
20890
20891 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20892
20893         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20894         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
20895           Don't block during probing...
20896
20897 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20898
20899         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
20900         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
20901         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
20902         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
20903         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
20904         (gst_alsa_open_audio), (gst_alsa_close_audio):
20905         * ext/alsa/gstalsa.h:
20906           Add propertyprobe interface implementation, add some device-name
20907           property, all this so that it looks good in gnome-volume-control.
20908
20909 2004-03-12  David Schleef  <ds@schleef.org>
20910
20911         * configure.ac: the Hermes library controls hermescolorspace, not
20912         colorspace.
20913         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
20914         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
20915         not /* */
20916         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
20917         * ext/sdl/sdlvideosink.h: ditto.
20918         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
20919
20920 2004-03-12  Benjamin Otte  <otte@gnome.org>
20921
20922         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
20923         (gst_x_overlay_got_xwindow_id):
20924         * gst-libs/gst/xoverlay/xoverlay.h:
20925           replace XID with unsigned long to get rid of the xlibs dependency in
20926           XOverlay (fixes #137004)
20927
20928 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
20929         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
20930         (gst_agingtv_setup):
20931         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
20932         (gst_dicetv_base_init), (gst_dicetv_class_init),
20933         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
20934         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
20935         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20936         (gst_edgetv_setup), (gst_edgetv_rgb32):
20937         * gst/effectv/gsteffectv.c:
20938         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
20939         (gst_quarktv_set_property):
20940         * gst/effectv/gstrev.c: (gst_revtv_get_type),
20941         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20942         (gst_revtv_setup), (gst_revtv_rgb32):
20943         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
20944         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20945         (gst_shagadelictv_init), (gst_shagadelictv_setup),
20946         (gst_shagadelictv_rgb32):
20947         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
20948         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20949         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
20950         * gst/effectv/gstwarp.c:
20951         Port everything that can be ported to videofilter and fix up the caps.
20952         Can someone with a big-endian machine please check these?
20953
20954 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20955
20956         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
20957         (gst_osssink_chain), (gst_osssink_change_state):
20958           Latest fixes for A/V sync, audio playback and such. This is about
20959           all... MPEG playback issues are mostly related to the async build-
20960           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
20961
20962 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20963
20964         patch from: Stephane Loeuillet
20965
20966         * configure.ac:
20967           use pkg-config for some libraries, falling back to the old .m4 way
20968           (fixes #131270)
20969         * m4/libdv.m4:
20970           removed
20971
20972 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20973
20974         * configure.ac:
20975         * tools/Makefile.am:
20976         * tools/Makefile.in:
20977         * tools/gst-launch-ext-m.m:
20978         * tools/gst-launch-ext.1.in:
20979         * tools/gst-visualise-m.m:
20980         * tools/gst-visualise.1:
20981         * tools/gst-visualise.1.in:
20982           reorganizing generation of script tools
20983
20984 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20985
20986         * ext/divx/gstdivxdec.c:
20987           Downgrade priority. We prefer ffdec_mpeg4.
20988         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
20989         (gst_faad_chain), (gst_faad_change_state):
20990           Fix capsnego. Doesn't work for some sounds because we don't have
20991           a 5:1 to stereo element.
20992         * ext/xvid/gstxvid.c: (plugin_init):
20993           Add priority.
20994         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
20995         (gst_osssink_change_state):
20996           Add discont handling.
20997
20998 2004-03-09  Colin Walters  <walters@verbum.org>
20999
21000         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
21001         conversion.
21002
21003 2004-03-09  Benjamin Otte  <otte@gnome.org>
21004
21005         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
21006           the signals take 2 arguments
21007
21008 2004-03-09  David Schleef  <ds@schleef.org>
21009
21010         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
21011         (gst_alsa_fixate): Add fixate function.  (bug #136686)
21012         * ext/alsa/gstalsa.h:
21013         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
21014
21015 2004-03-09  Benjamin Otte  <otte@gnome.org>
21016
21017         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
21018         (gst_mikmod_change_state):
21019         * ext/mikmod/gstmikmod.h:
21020           make mikmod's loop function not loop infinitely and call
21021           gst_element_yield anymore
21022         * gst/modplug/gstmodplug.cc:
21023           fix pad negotiation (fixes #136590)
21024
21025 2004-03-09  David Schleef  <ds@schleef.org>
21026
21027         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
21028         doesn't conflict with the internal colorspace plugin.
21029         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
21030         satisfy the crappy-ass shell shipped by a certain vendor.
21031         * gst/videofilter/make_filter: same (bug #135299)
21032
21033 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21034
21035         * configure.ac: bump nano to 1
21036
21037 === release 0.7.6 ===
21038
21039 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21040
21041         * configure.in: releasing 0.7.6, "There"
21042
21043 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21044
21045         * pkgconfig/gstreamer-play-uninstalled.pc.in:
21046         * pkgconfig/gstreamer-play.pc.in:
21047           synchronize the two
21048
21049 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21050
21051         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
21052         (cdparanoia_open), (cdparanoia_event):
21053           fix/add error handling
21054         * po/POTFILES.in:
21055           add cdparanoia source
21056         * tools/Makefile.am:
21057           make scripts executable
21058
21059 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21060
21061         * configure.ac:
21062         * ext/vorbis/Makefile.am:
21063         * sys/Makefile.am:
21064           remove id3types, vorbisfile and xvideosink from the build (#133783)
21065
21066 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21067
21068         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
21069           Fix metadata read crash (#136537).
21070
21071 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21072
21073         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
21074         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
21075           adding mime types, fixing the one-stop function
21076
21077 2004-03-08  Christian Schaller <Uraeus@gnome.org>
21078
21079         * ext/nas/nassink.c and /ext/nas/nassink.h:
21080         More NAS love from Arwed von Merkatz
21081         So lets all sing 'Can you feel the NAS tonight'
21082
21083 2004-03-08  Christian Schaller <Uraeus@gnome.org>
21084
21085         * tools/gst-launch-ext.in:
21086         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
21087
21088 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21089
21090         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
21091         (gst_mpeg2dec_init):
21092         remove the user_data pad for now, because it is being used in
21093         fixating causing MPEG playback to fixate on 1000 Hz for playback.
21094         If someone knows how to fix this properly, please do.
21095
21096 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21097
21098         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
21099         (gst_osssink_get_time):
21100         add a warning, IMO this won't get triggered anymore, remove later
21101
21102 2004-03-07  David Schleef  <ds@schleef.org>
21103
21104         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
21105         format (bug #136470)
21106
21107 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
21108
21109         * gst-libs/Makefile.am:
21110         * gst-libs/gst/media-info/Makefile.am:
21111         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
21112         (error_callback), (gst_media_info_error_create),
21113         (gst_media_info_error_element), (gmip_init), (gmip_reset),
21114         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
21115         * gst-libs/gst/media-info/media-info-priv.h:
21116         * gst-libs/gst/media-info/media-info-test.c: (main):
21117         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
21118         (gst_media_info_class_init), (gst_media_info_instance_init),
21119         (gst_media_info_set_source), (gst_media_info_read_with_idler),
21120         (gst_media_info_read_idler), (gst_media_info_read):
21121         * gst-libs/gst/media-info/media-info.h:
21122         fixed, should work now
21123
21124 2004-03-07  Christian Schaller <Uraeus@gnome.org>
21125
21126         * ext/nas/nassink.c:
21127         A bunch of NAS fixes from Arwed von Merkatz
21128
21129 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21130
21131         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21132         (qtdemux_parse_trak):
21133           Fix crash (j might be greater than n_samples, in which case we're
21134           writing outside the allocated space for the array) and memleak.
21135
21136 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21137
21138         * sys/oss/gstosssink.c: (gst_osssink_chain):
21139           And another caller that couldn't handle delay < 0 (unsigned
21140           integer overflow). Video now continues playing on an audio
21141           buffer underrun, and the clock continues working. Audio still
21142           stalls.
21143
21144 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21145
21146         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
21147         (gst_osssink_get_time):
21148           get_delay() may return values lower than 0. In those cases, we
21149           should not actually cast to *unsigned* int64, that will break
21150           stuff horribly. In my case, it screwed up A/V sync in movies
21151           in totem rather badly.
21152
21153 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
21154
21155         * ext/faac/gstfaac.c: (gst_faac_chain):
21156         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21157         * ext/libpng/gstpngenc.c: (user_write_data):
21158         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
21159         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
21160         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
21161         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
21162         Fix several misuse of gst_buffer_merge (it doesn't take ownership
21163         of any buffer), should fix some leaks. I hope I didn't unref buffers
21164         that shouldn't be...
21165
21166 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21167
21168         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
21169         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
21170         (error_callback), (gmi_reset), (gmi_seek_to_track),
21171         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
21172         (gmip_find_type_post), (gmip_find_stream_post),
21173         (gmip_find_track_streaminfo_post):
21174         * gst-libs/gst/media-info/media-info-priv.h:
21175         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
21176         (info_print), (main):
21177         * gst-libs/gst/media-info/media-info.c:
21178         (gst_media_info_error_create), (gst_media_info_error_element),
21179         (gst_media_info_instance_init), (gst_media_info_get_property),
21180         (gst_media_info_new), (gst_media_info_set_source),
21181         (gst_media_info_read_idler), (gst_media_info_read):
21182         * gst-libs/gst/media-info/media-info.h:
21183           first pass at making this work again.  This seems to work on
21184           tagged ogg/vorbis and mp3 files.
21185
21186 2004-03-06  Benjamin Otte  <otte@gnome.org>
21187
21188         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21189           fix huge leak: gst_buffer_merge doesn't unref the first argument
21190           itself.
21191
21192 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21193
21194         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
21195           report layer/mode/emphasis
21196
21197 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
21198
21199         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
21200
21201 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21202
21203         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
21204           signal serial
21205
21206 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21207
21208         * ext/vorbis/vorbis.c: (plugin_init):
21209         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
21210         (gst_vorbis_dec_init), (vorbis_dec_event):
21211         add debug category
21212         make vorbisdec handle _BYTE and _TIME queries
21213
21214 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
21215
21216         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
21217           from the xing header
21218
21219 2004-03-06  Benjamin Otte  <otte@gnome.org>
21220
21221         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
21222         (gst_audio_convert_link), (gst_audio_convert_change_state),
21223         (gst_audio_convert_buffer_from_default_format):
21224           do conversions from/to float correctly, fix some caps nego errors,
21225           export correct supported caps in template and getcaps, use correct
21226           caps in try_set_caps functions
21227
21228 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
21229
21230         For some reason, I only committed a ChangeLog entry yesterday and
21231         not the corresponding code...
21232         * ext/mad/gstmad.c: Fix detection of Xing headers
21233         * gst/tags/gstid3tag.c: Changes to support TLEN tags
21234
21235 2004-03-06  Benjamin Otte  <otte@gnome.org>
21236
21237         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
21238         (gst_ogg_demux_src_query):
21239           make sure to handle the case where there's no current chain
21240           gracefully.
21241
21242 2004-03-05  David Schleef  <ds@schleef.org>
21243
21244         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
21245         Add fixate function. (bug #131128)
21246         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
21247         (gst_sdlvideosink_fixate):  Add fixate function.
21248         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21249         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
21250         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
21251         Fix missing break that was causing ulaw to be interpreted as
21252         raw int.
21253
21254 2004-03-05  David Schleef  <ds@schleef.org>
21255
21256         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
21257         Fix code that ignores return value of gst_buffer_merge().
21258         (bug #114560)
21259         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
21260         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
21261         * testsuite/gst-lint:  Check for above.
21262
21263 2004-03-05  David Schleef  <ds@schleef.org>
21264
21265         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
21266         caps and throw an element error.  (bug #136334)
21267
21268 2004-03-05  David Schleef  <ds@schleef.org>
21269
21270         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
21271         (gst_faad_chain): Fix negotiation.
21272         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
21273         key and button events.
21274         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
21275         dung heap of code.
21276         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
21277         depends on gconf
21278         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
21279         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
21280         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
21281         function to encourage better negotiation, particularly between
21282         audioconvert and osssink.
21283         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
21284         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
21285         more important.
21286         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
21287         typefinding.
21288         * gst/vbidec/vbiscreen.c:  Add glib header
21289         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
21290
21291 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
21292
21293         * ext/mad/gstmad.c: Fix detection of Xing headers
21294         * gst/tags/gstid3tag.c: Changes to support TLEN tags
21295
21296 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21297
21298         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
21299         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
21300           debug updates
21301
21302 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
21303
21304         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21305         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
21306         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
21307         files, and report the parsed length as a GST_TAG_DURATION tag.
21308         * gst/tags/gstid3tag.c: support TLEN (duration) tag
21309
21310 2004-03-05  Benjamin Otte  <otte@gnome.org>
21311
21312         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
21313           convert channels correctly. convert correctly to unsigned.
21314
21315 2004-03-05  Julien MOUTTE <julien@moutte.net>
21316
21317         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
21318         we have a window before clearing it.
21319
21320 2004-03-05  Julien MOUTTE <julien@moutte.net>
21321
21322         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
21323         have a window before clearing it.
21324
21325 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21326
21327         * gconf/gstreamer.schemas.in:
21328         * gst-libs/gst/gconf/Makefile.am:
21329           version installation path the same way as for 0.6
21330         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
21331         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21332         * pkgconfig/gstreamer-play-uninstalled.pc.in:
21333           remove comment that was fixed
21334
21335 2004-03-05  David Schleef  <ds@schleef.org>
21336
21337         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
21338         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
21339         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
21340         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
21341         Add prototype code for handling seeking and querying.
21342
21343 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21344
21345         * examples/gstplay/player.c: (main):
21346           Initialize variables to NULL. Prevents a segfault because the
21347           (uninitialized) variable is not NULL, resulting in a crash on
21348           trying to reach error->message.
21349
21350 2004-03-05  Benjamin Otte  <otte@gnome.org>
21351
21352         * gst/audioconvert/gstaudioconvert.c:
21353         (gst_audio_convert_buffer_to_default_format):
21354         make float=>int conversion work correctly even in cornercases.
21355
21356 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
21357
21358         * debian/README.Debian:
21359         * debian/build-deps:
21360         * debian/changelog:
21361         * debian/control:
21362         * debian/control.in:
21363         * debian/copyright:
21364         * debian/gstreamer-a52dec.files:
21365         * debian/gstreamer-aa.files:
21366         * debian/gstreamer-alsa.files:
21367         * debian/gstreamer-alsa.manpages:
21368         * debian/gstreamer-arts.files:
21369         * debian/gstreamer-artsd.files:
21370         * debian/gstreamer-audiofile.files:
21371         * debian/gstreamer-avifile.files:
21372         * debian/gstreamer-cdparanoia.files:
21373         * debian/gstreamer-colorspace.files:
21374         * debian/gstreamer-doc.files:
21375         * debian/gstreamer-dv.files:
21376         * debian/gstreamer-dvd.files:
21377         * debian/gstreamer-esd.files:
21378         * debian/gstreamer-festival.files:
21379         * debian/gstreamer-flac.files:
21380         * debian/gstreamer-gconf.conffiles:
21381         * debian/gstreamer-gconf.files:
21382         * debian/gstreamer-gconf.postinst:
21383         * debian/gstreamer-gnomevfs.files:
21384         * debian/gstreamer-gsm.files:
21385         * debian/gstreamer-http.files:
21386         * debian/gstreamer-jack.files:
21387         * debian/gstreamer-jpeg.files:
21388         * debian/gstreamer-mad.files:
21389         * debian/gstreamer-mikmod.files:
21390         * debian/gstreamer-misc.files:
21391         * debian/gstreamer-mpeg2dec.files:
21392         * debian/gstreamer-oss.files:
21393         * debian/gstreamer-plugin-apps.files:
21394         * debian/gstreamer-plugin-apps.manpages:
21395         * debian/gstreamer-plugin-libs-dev.files:
21396         * debian/gstreamer-plugin-libs.files:
21397         * debian/gstreamer-plugin-template.postinst:
21398         * debian/gstreamer-plugin-template.postrm:
21399         * debian/gstreamer-sdl.files:
21400         * debian/gstreamer-sid.files:
21401         * debian/gstreamer-vorbis.files:
21402         * debian/gstreamer-x.files:
21403         * debian/mk.control:
21404         * debian/rules:
21405         Debian package info not maintained here.
21406
21407 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
21408
21409         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
21410         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
21411         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
21412         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
21413         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
21414         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
21415         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
21416         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
21417         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
21418         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
21419         * gst-libs/gst/colorbalance/colorbalance.c:
21420         (gst_color_balance_class_init):
21421         * gst-libs/gst/colorbalance/colorbalancechannel.c:
21422         (gst_color_balance_channel_class_init):
21423         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
21424         * gst-libs/gst/play/play.c: (gst_play_class_init):
21425         * gst-libs/gst/propertyprobe/propertyprobe.c:
21426         (gst_property_probe_iface_init):
21427         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
21428         * gst-libs/gst/tuner/tunerchannel.c:
21429         (gst_tuner_channel_class_init):
21430         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
21431         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
21432         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
21433         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
21434         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
21435         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
21436         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
21437         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
21438         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
21439           fix signals to use - instead of _
21440         * ext/libcaca/gstcacasink.h:
21441         * ext/sdl/sdlvideosink.h:
21442           fix header rename
21443
21444 2004-03-04  David Schleef  <ds@schleef.org>
21445
21446         * testsuite/gst-lint:  Add a check for bad signal names.
21447
21448 2004-03-04  <kost@imn.htwk-leipzig.de>
21449
21450         reviewed by David Schleef
21451
21452         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
21453         modified the alpha channel and caused a warning. (bug #136192)
21454
21455 2004-04-03  Christian Schaller <Uraeus@gnome.org>
21456
21457         * gst-plugins.spec.in:
21458         Change names of plugins to actually be correct. Try to keep things
21459         alphabetical to avoid getting beat up by Thomas
21460
21461 2004-03-03  Julien MOUTTE <julien@moutte.net>
21462
21463         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
21464         Using ximagesink as a default if no gconf key found. We should
21465         probably consider using alsasink instead of osssink for the audio
21466         part.
21467
21468 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21469
21470         * configure.ac:
21471           fix --with-plugins, don't think it ever worked before
21472         * gst-plugins.spec.in:
21473           even more updates
21474
21475 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21476
21477         * ext/sdl/sdlvideosink.h:
21478         * sys/ximage/ximagesink.h:
21479         * sys/xvideo/xvideosink.h:
21480         * sys/xvimage/xvimagesink.h:
21481           Fix for move of gstvideosink.h -> videosink.h.
21482
21483 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21484
21485         * gst-libs/gst/xwindowlistener/Makefile.am:
21486           this is a plugin library, not a library
21487
21488 2004-03-01  David Schleef  <ds@schleef.org>
21489
21490         * AUTHORS:  Added some names.  Add yourself if you're still
21491         missing.
21492
21493 2004-03-01  David Schleef  <ds@schleef.org>
21494
21495         * MAINTAINERS: Add
21496
21497 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21498
21499         * gst-plugins.spec.in: clean up spec file
21500
21501 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21502
21503         * gst-libs/gst/video/Makefile.am:
21504         * gst-libs/gst/video/gstvideosink.c:
21505         * gst-libs/gst/video/gstvideosink.h:
21506           rename gstvideosink.h to videosink.h to match other headers
21507         * gst/mixmatrix/Makefile.am:
21508           fix plugin filename
21509         * gst/tags/Makefile.am: fix plugin filename
21510
21511 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21512
21513         * gst/tags/Makefile.am: fix plugin filename
21514
21515 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21516
21517         * examples/gstplay/player.c: (got_time_tick), (main):
21518           add error handler
21519           display time_tick more readably
21520         * gst/mixmatrix/Makefile.am:
21521           fix plugin file name
21522
21523 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
21524
21525         * sys/oss/gstosselement.c: (gst_osselement_probe),
21526         (device_combination_append), (gst_osselement_class_probe_devices):
21527         * sys/oss/gstosselement.h:
21528           Reworked enumeration of oss dsps and mixers so that gst-mixer works
21529           on my system using alsa oss emulation, fixes bug #135597
21530
21531 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21532
21533         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
21534         (gst_videodrop_chain), (gst_videodrop_change_state):
21535         * gst/videodrop/gstvideodrop.h:
21536           Work based on timestamp of input data, not based on the expected
21537           framerate from the input. The consequence is that this element now
21538           not only scales framerates, but also functions as a framerate
21539           corrector or framerate stabilizer/constantizer.
21540
21541 2004-02-27  David Schleef  <ds@schleef.org>
21542
21543         patches from jmmv@menta.net (Julio M. Merino Vidal)
21544
21545         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
21546         GST_ELEMENT_ERROR call (bug #135634)
21547         * gst/interleave/interleave.c: (interleave_buffered_loop),
21548         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
21549         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
21550         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
21551         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
21552         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
21553         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
21554         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
21555         Fix GST_ELEMENT_ERROR call.
21556         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
21557         GST_ELEMENT_ERROR call.
21558
21559 2004-02-27  Benjamin Otte  <otte@gnome.org>
21560
21561         * gst-libs/gst/audio/audio.h:
21562           add macro to make sure header isn't included twice
21563         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
21564           don't use gst_buffer_free
21565         * gst/playondemand/filter.func:
21566           don't use gst_data_free. Free data only once.
21567
21568 2004-02-26  David Schleef  <ds@schleef.org>
21569
21570         * gst-libs/gst/colorbalance/Makefile.am:
21571         * gst-libs/gst/mixer/Makefile.am:
21572         * gst-libs/gst/tuner/Makefile.am:
21573         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
21574         should not be disted, -marshal.h files should not be installed,
21575         and -enum.h files _should_ be installed.  Fix to make this the
21576         case.
21577
21578 === release 0.7.5 ===
21579
21580 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21581
21582         * configure.ac: release 0.7.5, "Under The Sea"
21583
21584 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21585
21586         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
21587         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
21588         * gst/videoscale/gstvideoscale.c:
21589         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
21590           assorted debug/warning fixes
21591
21592 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21593
21594         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
21595         (gst_videoscale_init), (gst_videoscale_chain),
21596         (gst_videoscale_set_property), (plugin_init):
21597         * gst/videoscale/gstvideoscale.h:
21598         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
21599         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
21600         (gst_videoscale_planar400), (gst_videoscale_packed422),
21601         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
21602         (gst_videoscale_24bit), (gst_videoscale_16bit),
21603         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
21604         (gst_videoscale_scale_plane_slow),
21605         (gst_videoscale_scale_point_sample),
21606         (gst_videoscale_scale_nearest),
21607         (gst_videoscale_scale_nearest_str2),
21608         (gst_videoscale_scale_nearest_str4),
21609         (gst_videoscale_scale_nearest_32bit),
21610         (gst_videoscale_scale_nearest_24bit),
21611         (gst_videoscale_scale_nearest_16bit):
21612         add debugging category and use it properly
21613         fix use of GST_PTR_FORMAT
21614
21615 2004-02-25  Andy Wingo  <wingo@pobox.com>
21616
21617         * gst/interleave/interleave.c (interleave_buffered_loop): Always
21618         push only when channel->buffer is NULL. Prevents segfaults doing
21619         the state change after a nonlocal exit, like a scheme exception.
21620
21621         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
21622         Handle the case where the intersected caps is empty.
21623
21624 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21625
21626         * gst/law/mulaw-decode.c: (mulawdec_link):
21627         * gst/law/mulaw.c: (plugin_init):
21628           fix mulawdec so it actually works again
21629
21630 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
21631
21632         reviewed by: David Schleef  <ds@schleef.org>
21633
21634         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
21635         (gst_gamma_init), (gst_gamma_set_property),
21636         (gst_gamma_get_property), (gst_gamma_calculate_tables),
21637         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
21638         for RGB, with separate r g and b correction factors. (#131167)
21639
21640 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21641
21642         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
21643           only signal tags for bitrate if they're > 0 (#134894)
21644
21645 2004-02-24  David Schleef  <ds@schleef.org>
21646
21647         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
21648         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
21649         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
21650         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
21651         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
21652         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
21653         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
21654         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
21655         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
21656         category.  Attempt to fix timestamp calculation.
21657
21658 2004-02-24  Johan Dahlin  <johan@gnome.org>
21659
21660         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
21661
21662 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21663
21664         * configure.ac:
21665         * gconf/Makefile.am:
21666         * gconf/gstreamer.schemas:
21667         * gst-libs/gst/gconf/Makefile.am:
21668         * gst-libs/gst/gconf/gconf.c:
21669           version gconf schemas and install locations
21670
21671 2004-02-23  Benjamin Otte  <otte@gnome.org>
21672
21673         * ext/xine/xineinput.c: (gst_xine_input_dispose):
21674         (gst_xine_input_subclass_init):
21675           call parent dispose.
21676           change pad template for CD reader correctly
21677         * ext/xine/Makefile.am:
21678         * ext/xine/gstxine.h:
21679         * ext/xine/xine.c: (plugin_init):
21680         * ext/xine/xineaudiosink.c:
21681           wrap audio sinks, too
21682         * gst-libs/gst/resample/private.h:
21683         * gst-libs/gst/resample/resample.c: (gst_resample_init),
21684         (gst_resample_reinit), (gst_resample_scale),
21685         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
21686         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
21687         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
21688         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
21689         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
21690         * gst-libs/gst/resample/resample.h:
21691         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
21692         (gst_audioscale_class_init), (gst_audioscale_link),
21693         (gst_audioscale_get_buffer), (gst_audioscale_init),
21694         (gst_audioscale_chain), (gst_audioscale_set_property),
21695         (gst_audioscale_get_property):
21696         * gst/audioscale/gstaudioscale.h:
21697           s/resample_*/gst_resample_*/i to not clobber namespaces
21698
21699 2004-02-23  Julien MOUTTE  <julien@moutte.net>
21700
21701         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21702         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
21703         (gst_riff_create_video_template_caps),
21704         (gst_riff_create_audio_template_caps),
21705         (gst_riff_create_iavs_template_caps):
21706         * gst-libs/gst/riff/riff-media.h:
21707         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21708         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
21709         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
21710         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
21711         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21712         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
21713         (gst_matroska_demux_plugin_init): First batch implementing audio and
21714         video codec tags in demuxers.
21715
21716 2004-02-22  Benjamin Otte  <otte@gnome.org>
21717
21718         * ext/xine/Makefile.am:
21719         * ext/xine/gstxine.h:
21720         * ext/xine/xine.c: (plugin_init):
21721         * ext/xine/xineinput.c:
21722           add input plugin wrapper. Playback from files, http, mms and cdda
21723           works.
21724         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
21725           remove leftover G_GNUC_UNUSED
21726         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
21727         (gst_asf_demux_identify_guid):
21728           improve debugging output
21729
21730 2004-02-22  Benjamin Otte  <otte@gnome.org>
21731
21732         reported by: Padraig O'Briain <padraig.obriain@sun.com>
21733
21734         * autogen.sh:
21735           replace test -e with test -x for mkinstalldirs to be more portable.
21736           (fixes #134816)
21737
21738 2004-02-22  Benjamin Otte  <otte@gnome.org>
21739
21740         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
21741
21742         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
21743           set rank to PRIMARY
21744         * gst/volume/gstvolume.c: (plugin_init):
21745           set rank to NONE
21746         fixes #134960
21747
21748 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
21749
21750         reviewed by Benjamin Otte  <otte@gnome.org>
21751
21752         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21753           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
21754
21755 2004-02-22  Benjamin Otte  <otte@gnome.org>
21756
21757         * configure.ac:
21758           export [_]*{gst,Gst,GST}.* symbols from plugins
21759
21760 2004-02-22  Christophe Fergeau <teuf@gnome.org>
21761
21762         reviewed by: Benjamin Otte  <otte@gnome.org>
21763
21764         * ext/lame/gstlame.c: (add_one_tag):
21765         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21766         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
21767         (gst_vorbisenc_metadata_set1):
21768         * gst/tags/gstid3tag.c:
21769         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
21770           apply fixes from bugs #135042 (lame can't write tags) and #133817
21771           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
21772
21773 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
21774
21775         * configure.ac: Export only gst_plugin_desc from plugins.
21776          Note that this change only makes any effect with Linux using libtool
21777          1.5.2 or higher. Otherwise it is silently ignored, but it would build
21778          fine. And don't try to have several versions of libtool in different
21779          directories.
21780
21781 2004-02-20  Andy Wingo  <wingo@pobox.com>
21782
21783         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
21784         interleave respectively.
21785
21786         * gst/interleave/deinterleave.c: New plugin: deinterleave
21787         (replaces on oneton).
21788         * gst/interleave/interleave.c: New plugin: interleave.
21789         * gst/interleave/plugin.h: Support file.
21790         * gst/interleave/plugin.c: Support file.
21791
21792         * configure.ac: Remove intfloat and oneton, add interleave.
21793
21794         * ext/sndfile/gstsf.c: Handle events better.
21795
21796         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
21797         and float2int operation. int2float has scheduling problems as
21798         noted in in2float_chain.
21799
21800 2004-02-20  Benjamin Otte  <otte@gnome.org>
21801
21802         * ext/xine/Makefile.am:
21803         * ext/xine/gstxine.h:
21804         * ext/xine/xine.c:
21805         * ext/xine/xineaudiodec.c:
21806         * ext/xine/xinecaps.c:
21807           add first version of xine plugin wrapper. Currently only wraps the
21808           QDM2 win32 DLL, and even that only in proof-of-concept quality.
21809         * configure.ac:
21810         * ext/Makefile.am:
21811           add xine plugin wrapper, disabled by default. Use --enable-xine to
21812           build. Note that it'll segfault on gst-register if you don't remove
21813           the goom and tvtime post plugins from xine.
21814         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21815         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
21816           add extradata parsing for QDM2.
21817           change around debugging prints.
21818
21819 2004-02-19  Benjamin Otte  <otte@gnome.org>
21820
21821         * ext/lame/gstlame.c: (gst_lame_chain):
21822         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21823           use gst_tag_list_insert when you want to insert tags
21824
21825 2004-02-18  David Schleef  <ds@schleef.org>
21826
21827         * configure.ac:  Move massink to gst-rotten
21828         * ext/Makefile.am:
21829         * ext/mas/Makefile.am:
21830         * ext/mas/massink.c:
21831         * ext/mas/massink.h:
21832
21833 2004-02-18  David Schleef  <ds@schleef.org>
21834
21835         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
21836         typefinding, since it seems to be worse than nothing.
21837         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
21838         atom to recognize .mp4 and .m4a files as video/quicktime.
21839
21840 2004-02-18  David Schleef  <ds@schleef.org>
21841
21842         * gst/sine/demo-dparams.c: (quit_live),
21843         (dynparm_log_value_changed), (dynparm_value_changed), (main):
21844         Use double dparams, not float.
21845         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21846         (gst_sinesrc_init): Change sync default to FALSE, since multiple
21847         sync'd elements don't really work correctly.
21848         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
21849         (volume_update_volume), (volume_get_property):  Change dparam
21850         to double.
21851
21852 2004-02-18  Julien MOUTTE  <julien@moutte.net>
21853
21854         * sys/ximage/ximagesink.c:
21855         (gst_ximagesink_xwindow_update_geometry),
21856         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21857         (gst_ximagesink_change_state), (gst_ximagesink_expose),
21858         (gst_ximagesink_init): Rework the way software video scaling works. So
21859         now we check on each chain call if the video frames are feeling the
21860         window. If not we try to renegotiate caps. On failure we memorize that
21861         and we won't try again for that PLAYING sessions.
21862         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
21863         failure.
21864         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
21865         synchronous flag.
21866
21867 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21868
21869         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
21870           break up _link so we can give a better debug message for errors
21871
21872 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21873
21874         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21875           set up debug category
21876
21877 2004-02-18  Julien MOUTTE <julien@moutte.net>
21878
21879         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21880         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
21881         the way renegotiation work. The event handling function is not taking
21882         care of external windows and renegotiate method check for pad flags
21883         NEGOTIATING. Should fix : #133209
21884
21885 2004-02-17  Julien MOUTTE  <julien@moutte.net>
21886
21887         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
21888         pad is negotiating before trying renegotiation.
21889
21890 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21891
21892         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
21893           pass on all possible mime types as typefind hints
21894
21895 2004-02-17  Julien MOUTTE <julien@moutte.net>
21896
21897         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
21898         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
21899         possible SHM leak if we crash. All other apps using XShm are doing
21900         that.
21901
21902 2004-02-17  Julien MOUTTE  <julien@moutte.net>
21903
21904         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21905         (gst_ximagesink_expose): Renegotiate size on expose.
21906         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
21907         size on expose.
21908
21909 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21910
21911         * testsuite/alsa/sinesrc.c:
21912           cosmetic fix to fix compile issue with gcc 2.95.4
21913
21914 2004-02-16  Julien MOUTTE <julien@moutte.net>
21915
21916         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
21917         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
21918         failed opening the audio device.
21919         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
21920         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
21921         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
21922         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
21923         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21924         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
21925         (gst_ximagesink_change_state), (gst_ximagesink_chain),
21926         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
21927         Removing some useless g_return_if_fail like wingo suggested.
21928         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
21929         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
21930         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
21931         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
21932         (gst_xvimagesink_update_colorbalance),
21933         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
21934         (gst_xvimagesink_xcontext_clear),
21935         (gst_xvimagesink_get_fourcc_from_caps),
21936         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
21937         (gst_xvimagesink_set_xwindow_id),
21938         (gst_xvimagesink_colorbalance_list_channels),
21939         (gst_xvimagesink_colorbalance_set_value),
21940         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
21941         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
21942
21943 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21944
21945         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
21946           throw error when not negotiated instead of asserting
21947
21948 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21949
21950         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
21951         correct data refcounting.
21952
21953 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21954
21955         * gst/switch/gstswitch.c: (gst_switch_change_state),
21956         (gst_switch_class_init): Cleaning the sinkpads correctly on state
21957         change, mostly the EOS flag.
21958
21959 2004-02-15  Julien MOUTTE  <julien@moutte.net>
21960
21961         * examples/gstplay/player.c: (got_eos), (main): Adding some
21962         output for debugging.
21963         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
21964         timeouts if we go to any state different from PLAYING.
21965         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
21966         more EOS bugs in riff lib.
21967
21968 2004-02-14  Julien MOUTTE  <julien@moutte.net>
21969
21970         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
21971         visualization until i find a way to fix switch correctly.
21972         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
21973         EOS arrives.
21974         * gst/switch/gstswitch.c: (gst_switch_release_pad),
21975         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
21976         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
21977         Reworked switch to get a more correct behaviour with events and refing
21978         of data stored in sinkpads.
21979         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
21980         we don't pull from a pad in EOS.
21981
21982 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21983
21984         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21985           remove v1 tag even if we can't read it (makes sure we don't detect
21986           it again)
21987
21988 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21989
21990         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
21991         (gst_alsa_xrun_recovery):
21992         * ext/alsa/gstalsa.h:
21993           try xrun recovery when wait failed. Make xrun recovery function
21994           return TRUE/FALSE to indicate success. (might fix #134354)
21995
21996 2004-02-13  David Schleef  <ds@schleef.org>
21997
21998         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
21999         (dynparm_value_changed), (main): Convert from float to double.
22000         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
22001
22002 2004-02-13  David Schleef  <ds@schleef.org>
22003
22004         * gst/silence/gstsilence.c: (gst_silence_class_init),
22005         (gst_silence_set_clock), (gst_silence_get),
22006         (gst_silence_set_property), (gst_silence_get_property):
22007         * gst/silence/gstsilence.h: Add sync property.
22008         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22009         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
22010         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
22011         * gst/sine/gstsinesrc.h: Add sync property.
22012
22013 2004-02-13  David Schleef  <ds@schleef.org>
22014
22015         * gst/intfloat/gstint2float.c: (conv_f32_s16),
22016         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
22017
22018 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22019
22020         * configure.ac:
22021         * ext/Makefile.am:
22022         * gst-libs/ext/Makefile.am:
22023           move ffmpeg plugin to gst-ffmpeg module
22024
22025 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22026
22027         * configure.ac: use GST_ARCH to detect architecture
22028
22029 2004-02-12  Julien MOUTTE  <julien@moutte.net>
22030
22031         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
22032
22033 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22034
22035         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
22036           classify LADSPA plugins based on number of src/sink pads
22037           (#133663, Stefan Kost)
22038         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
22039           fix dparams registration
22040           (#133528, Stefan Kost)
22041         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
22042           fix use of isprint and use g_ascii_isprint instead
22043           (#133316, Stefan Kost)
22044
22045 2004-02-11  David Schleef  <ds@schleef.org>
22046
22047         Convert a few inner loops to use liboil.  This is currently
22048         optional, and is only enabled if liboil is present (duh!).
22049         * configure.ac: Check for liboil-0.1
22050         * gst/intfloat/Makefile.am:
22051         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
22052         (gst_int2float_chain_gint16):
22053         * gst/videofilter/Makefile.am:
22054         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
22055         (tablelookup_u8), (gst_videobalance_planar411):
22056         * gst/videotestsrc/Makefile.am:
22057         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
22058         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
22059         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
22060         (paint_hline_RGB565), (paint_hline_xRGB1555):
22061
22062 2004-02-11  David Schleef  <ds@schleef.org>
22063
22064         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
22065         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
22066         (gst_colorspace_getcaps), (gst_colorspace_link),
22067         (gst_colorspace_base_init), (gst_colorspace_init),
22068         (gst_colorspace_chain), (gst_colorspace_change_state),
22069         (plugin_init): Merge Ronald's patch (bug #117897) and update
22070         for new caps and negotiation.  Seems to work, although it
22071         shows off bugs in lcs.
22072
22073 2004-02-11  David Schleef  <ds@schleef.org>
22074
22075         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
22076         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
22077
22078 2004-02-11  David Schleef  <ds@schleef.org>
22079
22080         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
22081         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
22082         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
22083         Add server and port properties
22084
22085 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22086
22087         * m4/a52.m4:
22088         * m4/aalib.m4:
22089         * m4/as-ffmpeg.m4:
22090         * m4/as-liblame.m4:
22091         * m4/as-slurp-ffmpeg.m4:
22092         * m4/check-libheader.m4:
22093         * m4/esd.m4:
22094         * m4/freetype2.m4:
22095         * m4/gconf-2.m4:
22096         * m4/glib.m4:
22097         * m4/gst-alsa.m4:
22098         * m4/gst-artsc.m4:
22099         * m4/gst-ivorbis.m4:
22100         * m4/gst-matroska.m4:
22101         * m4/gst-sdl.m4:
22102         * m4/gst-shout2.m4:
22103         * m4/gst-sid.m4:
22104         * m4/gtk.m4:
22105         * m4/libdv.m4:
22106         * m4/libfame.m4:
22107         * m4/libmikmod.m4:
22108         * m4/ogg.m4:
22109         * m4/vorbis.m4:
22110           fix underquotedness of macros (#133800)
22111         * m4/as-avifile.m4:
22112         * m4/xmms.m4:
22113           removed because no longer used
22114
22115 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22116
22117         * configure.ac:
22118           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
22119           by autopoint (fixes #132996)
22120
22121 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22122
22123         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
22124         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
22125         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
22126         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
22127           fix memleaks
22128
22129 2004-02-11  David Schleef  <ds@schleef.org>
22130
22131         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
22132         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
22133         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
22134         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
22135         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
22136         (gst_jpegenc_class_init), (gst_jpegenc_init),
22137         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
22138         (gst_jpegenc_chain), (gst_jpegenc_set_property),
22139         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
22140         * ext/jpeg/gstjpegenc.h: Fix negotiation.
22141
22142 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22143
22144         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
22145         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
22146         * ext/mikmod/gstmikmod.h:
22147           fix caps negotiation in mikmod
22148         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
22149           output debug information
22150
22151 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22152
22153         * gst-libs/gst/colorbalance/Makefile.am:
22154         * gst-libs/gst/navigation/Makefile.am:
22155         * gst-libs/gst/xoverlay/Makefile.am:
22156           remove unused GST_OPT_CFLAGS from Makefiles
22157           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
22158
22159 2004-02-07  David Schleef  <ds@schleef.org>
22160
22161         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
22162         push events to pads that haven't been created (#133508)
22163
22164 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
22165
22166         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
22167         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
22168         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
22169         (gst_dvdec_loop), (gst_dvdec_change_state):
22170         Second attempt at committing a working dvdec element.
22171
22172 2004-02-06  David Schleef  <ds@schleef.org>
22173
22174         Build fixes for OS X: (see #129600)
22175         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
22176         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
22177         (gst_riff_read_strf_iavs):
22178         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
22179         (gst_avi_demux_stream_odml):
22180         * gst/playondemand/Makefile.am:
22181         * gst/rtp/rtp-packet.c:
22182
22183 2004-02-05  David Schleef  <ds@schleef.org>
22184
22185         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
22186         last change, because it Just Doesn't Compile.
22187
22188 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22189
22190         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
22191           skip undecodable id3v2 tag instead of keeping it
22192
22193 2004-02-05  David Schleef  <ds@schleef.org>
22194
22195         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
22196         Unref leaked buffer.  (Noticed by Ronald)
22197
22198 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
22199
22200         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
22201         Sync requires with other checks.  >= vs =.
22202
22203 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
22204
22205         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
22206         (gst_dvdec_video_link), (gst_dvdec_loop):
22207         * ext/dv/gstdvdec.h:
22208           rework the caps negotiation so that dvdec works again instead
22209           of just segfaulting.
22210
22211 === release 0.7.4 ===
22212
22213 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22214
22215         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
22216         * configure.ac: changed for release
22217
22218 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22219
22220         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
22221         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
22222         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
22223         * pkgconfig/gstreamer-play-uninstalled.pc.in:
22224           reworked patch by David Lehn to fix libdir and includedir for
22225           uninstalled libraries
22226           removed play and gconf from gstreamer-libs since they have their
22227           own pkgconfig files
22228
22229 2004-02-04  David Schleef  <ds@schleef.org>
22230
22231         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
22232         memleak.
22233
22234 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22235
22236         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22237           use correct GST_TAG_ENCODER tag
22238
22239 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22240
22241         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
22242           be sure to stop the clock when going to paused
22243         * sys/oss/gstosssink.c: (gst_osssink_change_state):
22244           reset number of transmitted when going to ready.
22245         fixes #132935
22246
22247 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
22248
22249         reviewed by Benjamin Otte
22250
22251         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
22252           extract track count (fixes #133410)
22253
22254 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22255
22256         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
22257           that should be !=, not == (fixes #132519)
22258
22259 2004-02-04  David Schleef  <ds@schleef.org>
22260
22261         Make sure set_explicit_caps() is called before adding pad.
22262         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
22263         * gst/id3/gstid3types.c: (gst_id3types_loop):
22264         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
22265         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
22266
22267 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22268
22269         * configure.ac:
22270           bump nano to 2, first prerelease
22271           put back AM_PROG_LIBTOOL
22272
22273 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22274
22275         * testsuite/alsa/Makefile.am:
22276           these are user test apps, not automatic testsuite tests
22277
22278 2004-02-04  David Schleef  <ds@schleef.org>
22279
22280         Convert GST_DEBUG_CAPS() to GST_DEBUG():
22281         * gst/mpeg1videoparse/gstmp1videoparse.c:
22282         (mp1videoparse_parse_seq):
22283         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
22284         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
22285         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
22286         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
22287         (gst_xvideosink_getcaps):
22288         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
22289         * testsuite/gst-lint: more tests
22290
22291 2004-02-04  David Schleef  <ds@schleef.org>
22292
22293         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
22294         with the code that they would expand to.
22295         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
22296         (gst_flacdec_get_src_query_types),
22297         (gst_flacdec_get_src_event_masks):
22298         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
22299         (gst_gnomevfssrc_get_query_types),
22300         (gst_gnomevfssrc_get_event_mask):
22301
22302 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22303
22304         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22305         (gst_sinesrc_dispose):
22306           fix memleak by properly disposing sinesrc
22307
22308 2004-02-04  Julien MOUTTE  <julien@moutte.net>
22309
22310         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
22311         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
22312         an overlay to redraw the image because it has been exposed.
22313         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
22314         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
22315         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
22316         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
22317         interface
22318         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
22319         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
22320         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
22321         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
22322         interface
22323
22324 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22325
22326         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
22327           more memleak fixage
22328
22329 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22330
22331         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
22332         * gst/typefind/gsttypefindfunctions.c:
22333           fix memleaks shown by gst-typefind
22334
22335 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22336
22337         * common/glib-gen.mak:
22338           add hack rule to touch .Plo files
22339         * gst-libs/gst/colorbalance/Makefile.am:
22340         * gst-libs/gst/mixer/Makefile.am:
22341         * gst-libs/gst/play/Makefile.am:
22342         * gst-libs/gst/tuner/Makefile.am:
22343           remove glib_root variable
22344
22345 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22346
22347         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
22348           set explicit caps before adding the element, so the autopluggers can
22349           plug correctly.
22350         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
22351         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
22352         (mpeg_video_type_find), (mpeg_video_stream_type_find),
22353         (dv_type_find):
22354           fix memleaks in typefind functions. gst_type_find_suggest takes a const
22355           argument.
22356
22357 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22358
22359         * gst-libs/gst/colorbalance/Makefile.am:
22360         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
22361         * gst-libs/gst/colorbalance/colorbalance.c:
22362         * gst-libs/gst/colorbalance/colorbalance.h:
22363         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
22364         * gst-libs/gst/mixer/Makefile.am:
22365         * gst-libs/gst/mixer/mixer-marshal.list:
22366         * gst-libs/gst/mixer/mixer.c:
22367         * gst-libs/gst/mixer/mixer.h:
22368         * gst-libs/gst/mixer/mixermarshal.list:
22369         * gst-libs/gst/play/Makefile.am:
22370         * gst-libs/gst/play/play.h:
22371         * gst-libs/gst/tuner/Makefile.am:
22372         * gst-libs/gst/tuner/tuner-marshal.list:
22373         * gst-libs/gst/tuner/tuner.c:
22374         * gst-libs/gst/tuner/tuner.h:
22375         * gst-libs/gst/tuner/tunermarshal.list:
22376           use new glib-gen.mak snippet to clean up Makefile.am
22377           fix various bugs in Makefile.am's
22378
22379 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22380
22381         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
22382           handle chain parsing correctly in the multichain case
22383         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
22384         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
22385         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22386         (theora_dec_chain):
22387           handle events and queries correctly
22388
22389 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
22390
22391         * .cvsignore:
22392         Ignore generated file _stdint.h.
22393
22394 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
22395
22396         * gst-libs/gst/colorbalance/Makefile.am:
22397         * gst-libs/gst/colorbalance/colorbalance.h:
22398         * gst-libs/gst/mixer/Makefile.am:
22399         * gst-libs/gst/mixer/mixer.h:
22400         * gst-libs/gst/play/Makefile.am:
22401         * gst-libs/gst/play/play.h:
22402         * gst-libs/gst/tuner/Makefile.am:
22403         * gst-libs/gst/tuner/tuner.h:
22404         Generate enum type code with glib-mkenums.
22405         * gst-libs/gst/colorbalance/.cvsignore:
22406         * gst-libs/gst/mixer/.cvsignore:
22407         * gst-libs/gst/play/.cvsignore:
22408         * gst-libs/gst/tuner/.cvsignore:
22409         Ignore generated files.
22410
22411 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
22412
22413         * gst-libs/gst/audio/.cvsignore:
22414         Ignore generated file.
22415         * gst-libs/gst/audio/Makefile.am:
22416         Do not install example filter.
22417
22418 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
22419
22420         * examples/switch/.cvsignore:
22421         Ignore generated file.
22422
22423 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22424
22425         * common/m4/ax_create_stdint_h.m4:
22426         * configure.ac:
22427           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
22428           _stdint.h.
22429         * Makefile.am:
22430           remove generated _stdint.h in DISTCLEANFILES
22431         * ext/a52dec/gsta52dec.c:
22432           include _stdint.h for a52dec. (should fix #133064)
22433
22434 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
22435
22436         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
22437         (gst_tag_to_vorbis_comments):
22438         Add replaygain support to vorbistag
22439
22440 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
22441         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
22442         (gst_ffmpeg_caps_to_extradata):
22443           Fix SVQ3 caps flag properties
22444           Use glib macro for bytes swap
22445
22446 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22447
22448         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
22449         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
22450         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
22451         * ext/sndfile/gstsf.c: (plugin_init):
22452         * gst/avi/gstavi.c: (plugin_init):
22453         * sys/dxr3/dxr3init.c: (plugin_init):
22454         * sys/oss/gstossaudio.c: (plugin_init):
22455         * sys/v4l/gstv4l.c: (plugin_init):
22456         * sys/v4l2/gstv4l2.c: (plugin_init):
22457           remove textdomain calls
22458         * po/nl.po:
22459           update Dutch translation
22460
22461 2004-02-02  Julien MOUTTE  <julien@moutte.net>
22462
22463         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
22464         (gst_play_set_audio_sink): Moving volume in the audio thread for
22465         instantaneous volume change. Maybe i will add another volume in front
22466         of visualization later, not sure yet though.
22467
22468 2004-02-02  Julien MOUTTE  <julien@moutte.net>
22469
22470         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22471         (gst_ximagesink_handle_xevents): Better X events handling, only take
22472         the latest events for configure and motion.
22473         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
22474
22475 2004-02-02  Jon Trowbridge  <trow@gnu.org>
22476
22477         reviewed by: David Schleef  <ds@schleef.org>
22478
22479         Fix memory leaks:
22480         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
22481         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
22482
22483 2004-02-02  David Schleef  <ds@schleef.org>
22484
22485         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
22486         of lines.
22487         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
22488         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
22489         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
22490         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
22491         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
22492         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
22493         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
22494         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
22495         (gst_float2_2_int_link):
22496         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
22497         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
22498         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
22499         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
22500         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
22501         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
22502         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
22503         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
22504         * testsuite/gst-lint: Add tests for bzero and ;;
22505
22506 2004-02-02  David Schleef  <ds@schleef.org>
22507
22508         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
22509
22510 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22511
22512         * ext/aalib/gstaasink.c: (gst_aasink_open):
22513         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
22514         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22515         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
22516         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
22517         (gst_afsink_close_file):
22518         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
22519         (gst_afsrc_close_file):
22520         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
22521         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
22522         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
22523         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
22524         * ext/esd/esdmon.c: (gst_esdmon_get):
22525         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
22526         * ext/faac/gstfaac.c: (gst_faac_chain):
22527         * ext/faad/gstfaad.c: (gst_faad_chain):
22528         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
22529         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
22530         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
22531         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
22532         (gst_flacdec_loop):
22533         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
22534         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
22535         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
22536         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
22537         (gst_gnomevfssink_close_file):
22538         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
22539         (gst_gnomevfssrc_open_file):
22540         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
22541         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
22542         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
22543         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
22544         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
22545         * ext/mad/gstmad.c: (gst_mad_chain):
22546         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
22547         * ext/mpeg2dec/gstmpeg2dec.c:
22548         * ext/mpeg2enc/gstmpeg2enc.cc:
22549         * ext/mplex/gstmplex.cc:
22550         * ext/mplex/gstmplexibitstream.cc:
22551         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
22552         (gst_ogg_demux_push):
22553         * ext/raw1394/gstdv1394src.c:
22554         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
22555         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
22556         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
22557         (gst_sf_loop):
22558         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
22559         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
22560         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
22561         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
22562         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
22563         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
22564         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
22565         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
22566         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22567         (gst_riff_read_element_data), (gst_riff_read_seek),
22568         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
22569         * gst/adder/gstadder.c: (gst_adder_loop):
22570         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
22571         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
22572         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
22573         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
22574         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
22575         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
22576         * gst/goom/gstgoom.c: (gst_goom_chain):
22577         * gst/id3/gstid3types.c: (gst_id3types_loop):
22578         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
22579         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
22580         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
22581         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22582         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
22583         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
22584         (gst_ebml_read_float), (gst_ebml_read_header):
22585         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
22586         (gst_matroska_demux_parse_blockgroup):
22587         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
22588         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
22589         * gst/oneton/gstoneton.c: (gst_oneton_chain):
22590         * gst/silence/gstsilence.c: (gst_silence_get):
22591         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
22592         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
22593         * gst/speed/gstspeed.c: (speed_loop):
22594         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
22595         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
22596         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
22597         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
22598         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
22599         (gst_wavparse_loop):
22600         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
22601         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
22602         (dxr3audiosink_close):
22603         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
22604         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
22605         (dxr3videosink_close), (dxr3videosink_write_data):
22606         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22607         * sys/oss/gstosssink.c: (gst_osssink_chain):
22608         * sys/oss/gstosssrc.c: (gst_osssrc_get):
22609         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
22610         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
22611         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
22612         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
22613         (gst_v4l_set_window), (gst_v4l_enable_overlay):
22614         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
22615         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
22616         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
22617         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
22618         (gst_v4l_set_audio):
22619         * sys/v4l/v4l_calls.h:
22620         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
22621         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
22622         (gst_v4lmjpegsink_playback_init),
22623         (gst_v4lmjpegsink_playback_start):
22624         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
22625         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
22626         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
22627         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
22628         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
22629         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
22630         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
22631         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22632         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
22633         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
22634         (gst_v4l2_get_output), (gst_v4l2_set_output),
22635         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
22636         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
22637         (gst_v4l2_set_attribute):
22638         * sys/v4l2/v4l2_calls.h:
22639         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
22640         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
22641         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
22642         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
22643         (gst_v4l2src_capture_stop):
22644         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
22645         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22646         (gst_ximagesink_chain):
22647         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
22648         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
22649         (gst_xvideosink_xwindow_new):
22650         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22651         (gst_xvimagesink_chain):
22652
22653 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22654
22655         * gst/volume/gstvolume.c: (gst_volume_set_volume),
22656         (gst_volume_get_volume), (volume_class_init), (volume_init),
22657         (volume_chain_int16), (volume_update_volume):
22658         * gst/volume/gstvolume.h:
22659           make code more readable by removing magic numbers
22660           make mixer interface export 0-100 range
22661           make it internally map to 0.0-1.0 range so users don't distort
22662           output by putting the sliders at full volume
22663
22664 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22665
22666         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
22667         (gst_play_state_change), (gst_play_seek_to_time):
22668         block the tick callback for 0.5 secs after doing a seek
22669
22670 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22671
22672         * gst-libs/gst/play/play.c: (gst_play_new):
22673           check for GError
22674
22675 2004-02-01  Julien MOUTTE  <julien@moutte.net>
22676
22677         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
22678         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
22679         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
22680         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
22681         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
22682         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
22683
22684 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22685
22686         * configure.ac:
22687         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22688           check for a function added in vorbis 1.1
22689
22690 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22691
22692         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
22693         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
22694           really start/stop clock only on PLAYING <=> PAUSED
22695         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22696           remove \n from debugging lines
22697         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
22698           make it work when seeking does not
22699         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22700           reset on DISCONT
22701
22702 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22703
22704         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
22705           start clock on PAUSED=>PLAYING, not later
22706         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22707           extract correct time for different discont formats
22708         (gst_alsa_sink_get_time):
22709           don't segfault when no format is negotiated yet, just return 0
22710         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22711         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
22712         (gst_ogg_pad_push):
22713           handle flush and discont events correctly
22714         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
22715           handle discont events correctly
22716
22717 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
22718
22719         * gst-libs/gst/play/play.c: (gst_play_error_quark),
22720         (gst_play_error_create), (gst_play_error_plugin),
22721         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
22722         * gst-libs/gst/play/play.h:
22723           add error handling during creation
22724         * examples/gstplay/player.c: (main):
22725           use new gst_play_new
22726
22727
22728 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22729
22730         * ext/theora/theoradec.c: (theora_dec_chain):
22731           make comments work
22732         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22733         (vorbis_dec_src_event), (vorbis_dec_chain):
22734           add encoder tag, fix tag reading to be more error tolerant, change
22735           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
22736           gst_pad_event_default.
22737         * gst/tags/gstvorbistag.c:
22738         (gst_tag_list_from_vorbiscomment_buffer):
22739           undefine function specific define at end of function
22740
22741 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
22742
22743         * ext/flac/gstflac.c: (plugin_init):
22744         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
22745         * ext/flac/gstflacdec.h:
22746         * ext/flac/gstflacenc.h:
22747           Fix typos
22748
22749 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
22750
22751         * examples/gstplay/player.c: s/gstplay.h/play.h/
22752
22753 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22754
22755         * gst-libs/gst/play/Makefile.am:
22756         * gst-libs/gst/play/gstplay.c:
22757         * gst-libs/gst/play/gstplay.h:
22758         * gst-libs/gst/play/play.c:
22759           more surgery, operation complete
22760
22761 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22762
22763         * gst-libs/gst/play/play.old.c:
22764         * gst-libs/gst/play/play.old.h:
22765           after CVS surgery by moving, remove
22766         * gst-libs/gst/play/playpipelines.c:
22767           remove
22768
22769         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
22770           add negotiation error
22771
22772 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22773
22774         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22775         (gst_ogg_demux_push):
22776           add some seeking debug info
22777           send a flush when seeking
22778
22779 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22780
22781         * configure.ac:
22782           use AC_C_INLINE
22783         * configure.ac:
22784         * ext/Makefile.am:
22785         * ext/theora/Makefile.am:
22786         * ext/theora/theoradec.c:
22787           add theora video decoder. Does just do simple decoding for now and
22788           has been tested against Theora cvs only. It only works when theora
22789           is compiled with --enable-static.
22790         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22791           always reset packetno on DISCONT
22792
22793 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22794
22795         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
22796           Fix audio.
22797
22798 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22799
22800         * gst/mpegaudioparse/gstmpegaudioparse.c:
22801         (mp3_type_frame_length_from_header):
22802           Fix header parsing - stolen from ffmpeg (thank you! :) ).
22803
22804 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22805
22806         * ext/esd/esdsink.c: (gst_esdsink_init):
22807           Since we have static pad template caps, we don't need to negotiate;
22808           either the core errors out or we know the format.
22809
22810 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22811
22812         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22813         (gst_riff_read_seek):
22814         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22815         (gst_ebml_read_seek):
22816           Fix event handling.
22817
22818 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22819
22820         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
22821           removee video/x-theora from vp3 decoder, it doesn't handle raw
22822           theora streams
22823         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
22824           fix bug with finalizing element that never went to PAUSED
22825         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
22826           length and position queries were swapped
22827         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
22828         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
22829         (vorbis_dec_src_event):
22830           implement querying time and bytes
22831
22832 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22833
22834         * just about every source file:
22835           gst_element_error -> GST_ELEMENT_ERROR
22836
22837 2004-01-29  Julien MOUTTE  <julien@moutte.net>
22838
22839         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
22840         emiting FLUSH and even before DISCONT.
22841         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
22842         get the best instant seeking as possible yay!
22843
22844 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22845
22846         * gst/mpeg1videoparse/gstmp1videoparse.c:
22847         (gst_mp1videoparse_real_chain):
22848           Committed wrong version last week... Grr... Didn't notice until now.
22849
22850 2004-01-29  Julien MOUTTE <julien@moutte.net>
22851
22852         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
22853         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
22854         have_xwindow_id signal in xwindow_create.
22855
22856 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22857
22858         * ext/ogg/gstoggdemux.c:
22859           lots of changes - mainly support for chained bitstreams, seeking,
22860           querying and bugfixes of course
22861         * ext/vorbis/Makefile.am:
22862         * ext/vorbis/vorbisdec.c:
22863         * ext/vorbis/vorbisdec.h:
22864           add vorbisdec raw vorbis decoder
22865         * ext/vorbis/vorbis.c: (plugin_init):
22866           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
22867         * gst/intfloat/Makefile.am:
22868         * gst/intfloat/float22int.c:
22869         * gst/intfloat/float22int.h:
22870         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
22871           add float2intnew plugin. It converts multichannel interleaved float to
22872           multichannel interleaved int. The name should probably be changed.
22873         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
22874         (plugin_init):
22875           add typefinding for raw theora video so oggdemux can detect it.
22876
22877 2004-01-28  Julien MOUTTE  <julien@moutte.net>
22878
22879         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
22880         sink element first.
22881         * gst/videoscale/gstvideoscale.c:
22882         (gst_videoscale_handle_src_event): Fixing src event handler.
22883
22884 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22885
22886         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
22887         (gst_v4lsrc_open), (gst_v4lsrc_close),
22888         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
22889         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
22890         * sys/v4l/gstv4lsrc.h:
22891         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
22892         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
22893           Implement resizing... Hack. But that's why v4l is b0rked...
22894
22895 2004-01-28  Julien MOUTTE <julien@moutte.net>
22896
22897         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22898         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
22899         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
22900         (gst_ximagesink_xwindow_destroy):
22901         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22902         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22903         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
22904         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
22905         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
22906         correctly cleaning the image created to check xshm calls on succes,
22907         added a lot of XSync calls in X11 functions, and fixed a segfault when
22908         no image format was defined before negotiation happened.
22909
22910 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22911
22912         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
22913           use gst_element_get_time to get correct time
22914
22915 2004-01-28  Julien MOUTTE  <julien@moutte.net>
22916
22917         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
22918         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
22919         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
22920         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
22921         (gst_xvimagesink_check_xshm_calls),
22922         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
22923         X plugins are now able to detect that XShm calls will fail even if the
22924         server claims that it has XShm support (remote displays most of the
22925         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
22926         so that we use non XShm functions. This feature is almost useless for
22927         xvimagesink as Xv is not supported on remote displays anyway, but
22928         it might happen than even on the local display XShm calls fail.
22929
22930 2004-01-27  David Schleef  <ds@schleef.org>
22931
22932         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
22933         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
22934         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
22935         changed esdsink to only use 44100,16,2, since esd sucks at rate
22936         conversion and esdsink has had difficulty negotiating.
22937
22938 2004-01-27  Julien MOUTTE <julien@moutte.net>
22939
22940         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
22941         (gst_play_seek_to_time): Fixing the way to get current position.
22942
22943 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22944
22945         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
22946           use gst_element_get_time to get correct time
22947
22948 2004-01-27  Julien MOUTTE <julien@moutte.net>
22949
22950         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
22951         fix ever... Inverting 2 lines of code make spider autoplug correctly
22952         tagged mp3 !
22953
22954 2004-01-27  David Schleef  <ds@schleef.org>
22955
22956         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22957         Use gst_pad_try_set_caps_nonfixed().
22958
22959 2004-01-27  David Schleef  <ds@schleef.org>
22960
22961         * gst/ac3parse/gstac3parse.c: update to checklist 5
22962         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
22963         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
22964         * gst/audioscale/gstaudioscale.c: same
22965         * gst/auparse/gstauparse.c: same
22966         * gst/avi/gstavidemux.c: same
22967
22968 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22969
22970         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
22971           stop processing after EOS
22972
22973 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22974
22975         * gst/asfdemux/asfheaders.h:
22976         * gst/asfdemux/gstasfdemux.c:
22977         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
22978         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
22979         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
22980           lot's of fixes to make data extraction simpler and get the code
22981           architecture and compiler independant. Add debugging category
22982         * gst/goom/gstgoom.c: (gst_goom_change_state):
22983           reset channel count on PAUSED=>READY, not READY=>PAUSED
22984
22985 2004-01-26  Colin Walters  <walters@verbum.org>
22986
22987         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
22988         code to pull a bigger buffer in iradio mode.  This as a side effect
22989         makes typefinding work.
22990
22991 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
22992
22993         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
22994         Fix SVQ3 decoding on PPC
22995
22996 2004-01-26  Julien MOUTTE <julien@moutte.net>
22997
22998         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
22999         that one managed to stay there... Fixed.
23000
23001 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
23002
23003         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
23004         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
23005         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
23006         (qtdemux_video_caps):
23007         * gst/qtdemux/qtdemux.h:
23008         Add SVQ3 specific flags to qtdemux and ffmpeg
23009
23010 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23011
23012         * gst-libs/gst/audio/audio.h:
23013           remove buffer-frames from audio caps
23014         * gst/audioconvert/gstaudioconvert.c:
23015           fix plugin to really work.
23016
23017 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23018
23019         * gst-libs/gst/mixer/mixer.c:
23020         * gst-libs/gst/propertyprobe/propertyprobe.c:
23021         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
23022         (gst_tuner_find_channel_by_name):
23023         * gst-libs/gst/tuner/tuner.h:
23024           Add gtk-doc style comments. Also fix a function name.
23025
23026 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23027
23028         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
23029         (gst_divxdec_negotiate):
23030           Fix for new capsnego - also fixes gst-player with divxdec.
23031
23032 2004-01-25  Julien MOUTTE  <julien@moutte.net>
23033
23034         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
23035         (gst_play_identity_handoff), (gst_play_set_location),
23036         (gst_play_set_visualization), (gst_play_connect_visualization): Another
23037         try in visualization implementation. Still have an issue with switch
23038         blocking when pulling from video_queue and only audio comes out of
23039         spider.
23040         * gst/switch/gstswitch.c: (gst_switch_release_pad),
23041         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
23042         release method. And check if the pad is usable before pulling.
23043
23044 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23045
23046         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
23047         (gst_videobalance_init),
23048         (gst_videobalance_colorbalance_list_channels),
23049         (gst_videobalance_colorbalance_set_value),
23050         (gst_videobalance_colorbalance_get_value),
23051         (gst_videobalance_update_properties),
23052         (gst_videobalance_update_tables_planar411),
23053         (gst_videobalance_planar411):
23054         * gst/videofilter/gstvideobalance.h:
23055           Implement lookup-tables. +/- 10x faster.
23056
23057 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23058
23059         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
23060         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
23061           The index reading was broken. The rest worked fine, but the whole
23062           goal of my rewrite was to make avidemux readable, and this was
23063           not at all readable. Please use typed variables.
23064
23065 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23066
23067         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
23068           Additional pad usability check.
23069         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
23070         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
23071         (gst_mp1videoparse_real_chain):
23072           Fix MPEG video stream parsing. The original plugin had several
23073           issues, including not timestamping streams where the source was
23074           not timestamped (this happens with PTS values in mpeg system
23075           streams, but MPEG video is also a valid stream on its own so
23076           that needs timestamps too). We use the display time code for that
23077           for now. Also, if one incoming buffer contains multiple valid
23078           frames, we push them all on correctly now, including proper EOS
23079           handling. Lastly, several potential segfaults were fixed, and we
23080           properly sync on new sequence/gop headers to include them in next,
23081           not previous frames (since they're header for the next frame, not
23082           the previous). Also see #119206.
23083         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
23084         (bpf_from_header):
23085           Move caps setting so we only do it after finding several valid
23086           MPEG-1 fraes sequentially, not right after the first one (which
23087           might be coincidental).
23088         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
23089         (mpeg_video_type_find), (mpeg_video_stream_type_find),
23090         (plugin_init):
23091           Add unsynced MPEG video stream typefinding, and change some
23092           probability values so we detect streams rightly. The idea is as
23093           follows: I can have an unsynced system stream which contains
23094           video. In the current code, I would randomly get a type for either
23095           system or video stream type found, because the probabilities are
23096           being calculated rather randomly. I now use fixed values, so we
23097           always prefer system stream if that was found (and that is how it
23098           should be). If no system stream was found, we can still identity                the stream as video-only.
23099
23100 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23101
23102         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
23103         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
23104           don't write to buffer. Extract data without the need of
23105           __attribute__ ((packed))
23106
23107 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23108
23109         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
23110         (mpeg1_sys_type_find):
23111           Fix MPEG-1 stream typefinding.
23112
23113 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23114
23115         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
23116           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
23117
23118 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23119
23120         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
23121         * ext/esd/gstesd.c: (plugin_init):
23122           private debugging, better error reporting
23123
23124 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23125
23126         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
23127         (gst_riff_read_init), (gst_riff_read_change_state):
23128         * gst-libs/gst/riff/riff-read.h:
23129           Remove stuff fromold metadata system.
23130
23131 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23132
23133         * ext/ogg/gstoggdemux.c:
23134           Fix wrong file comment.
23135         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
23136         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
23137           Add metadata reading properly.
23138
23139 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23140
23141         * ext/Makefile.am:
23142           Fix nas DIST_SUBDIRS
23143           Uraeus:
23144           Fix bug where make distcheck doesn't get run on adding stuff to
23145           the build.
23146
23147 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23148
23149         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
23150         * ext/divx/gstdivxdec.h:
23151           Fix divx3 ("msmpeg4") playback using divxdec.
23152
23153 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23154
23155         * gst/typefind/gsttypefindfunctions.c:
23156         (mp3_type_frame_length_from_header): fix bug in length computation
23157         (mp3_type_find): improve debugging output
23158
23159 2004-01-23  Julien MOUTTE  <julien@moutte.net>
23160
23161         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
23162         (gst_play_set_location), (gst_play_seek_to_time),
23163         (gst_play_set_audio_sink), (gst_play_set_visualization),
23164         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
23165         the pipeline from scratch. Visualization is back and switch went out as
23166         i realized it was not possible to use the way i wanted.
23167         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
23168         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
23169         clearing in state change from READY to NULL. So that one can clean the
23170         X ressources keeping the element.
23171         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23172         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
23173         (gst_xvimagesink_colorbalance_set_value),
23174         (gst_xvimagesink_colorbalance_get_value),
23175         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
23176         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
23177         change from READY to NULL and fixed some stupid bugs in colorbalance
23178         get/set values. Also added the following feature : when nobody tries to
23179         set some values to the colorbalance levels before the xcontext is
23180         grabbed, then when creating channels list from Xv attributes we set the
23181         internal values to the Xv defaults. This way we handle buggy Xv drivers
23182         that set default hue values far from the middle of the range (Thanks
23183         to Jon Trowbridge for pointing that issue).
23184         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
23185         colorbalance levels have been set before xcontext is grabbed.
23186
23187 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23188
23189         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
23190           Fix the ossmixer case where we shouldn't open /dev/dsp* because
23191           it might block operations (which is bad for a mixer).
23192
23193 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23194
23195         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
23196         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
23197         (gmip_find_type_pre):
23198         * gst-libs/gst/media-info/media-info-priv.h:
23199         * gst-libs/gst/media-info/media-info.c:
23200         (gst_media_info_instance_init), (gst_media_info_read_idler):
23201         add fakesink to get caps on decoder src pad again
23202         fix callback prototype to match new have_type signal signature
23203
23204 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23205
23206         * gst/adder/gstadder.c: (gst_adder_link):
23207           fix non-compile and cut-n-paste code
23208
23209 2004-01-21  David Schleef  <ds@schleef.org>
23210
23211         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
23212         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
23213         (gst_swfdec_init), (gst_swfdec_change_state):
23214         * ext/swfdec/gstswfdec.h:
23215         Fix negotiation.
23216         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
23217         (gst_adder_request_new_pad): Fix negotiation.
23218         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
23219         Add a fixate function.
23220         * gst/intfloat/gstfloat2int.c:
23221         * gst/intfloat/gstfloat2int.h:
23222         * gst/intfloat/gstint2float.c:
23223         * gst/intfloat/gstint2float.h:
23224         Completely rewrite the negotiation.  Doesn't quite work yet,
23225         due to some buffer-frames problem.
23226
23227 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23228
23229         * ext/gnomevfs/gstgnomevfssrc.c:
23230         * sys/v4l2/v4l2_calls.h:
23231           fix includes for distcheck
23232
23233 2004-01-21  Christian Schaller <uraeus@gnome.org>
23234
23235         * ext/nas/
23236         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
23237         based on earlier patch from Laurent Vivier
23238
23239 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
23240
23241         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
23242         Fix wma caps property
23243         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
23244         Fix typo (flags1 and flags2)
23245
23246 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23247
23248         * gst-libs/gst/media-info/media-info-priv.c:
23249         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
23250         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
23251         (gmip_find_stream), (gmip_find_track_metadata),
23252         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
23253         (gmip_find_track_format):
23254         * gst-libs/gst/media-info/media-info-priv.h:
23255         * gst-libs/gst/media-info/media-info-test.c: (main):
23256         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
23257         (gst_media_info_read_idler), (gst_media_info_read):
23258         * gst-libs/gst/media-info/media-info.h:
23259           register debugging category and use it for debugging
23260
23261 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23262
23263         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
23264         (gst_vorbisfile_new_link):
23265           signal streaminfo through tags
23266
23267 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23268
23269         * ext/mplex/gstmplex.cc:
23270         * ext/mplex/gstmplexibitstream.cc:
23271           g++ doesn't like NULL in our i18n/error macros, should be
23272           either (NULL) or ("").
23273
23274 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23275
23276         * sys/dxr3/dxr3audiosink.c:
23277         * sys/dxr3/dxr3init.c:
23278         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
23279         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
23280           Fix more error error error errors (missing includes here).
23281
23282 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23283
23284         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23285           fix thomas' error errors.
23286
23287 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23288
23289         * ext/mpeg2enc/gstmpeg2enc.cc:
23290           fix error errors.
23291
23292 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23293
23294         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
23295         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
23296           Fix for new error system.
23297
23298 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23299
23300         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
23301           fix for new error reporting
23302
23303 2004-01-20  David Schleef  <ds@schleef.org>
23304
23305         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
23306         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
23307         (gst_ximagesink_set_xwindow_id): Change to using a framerate
23308         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
23309         and neither is 100+, most likely.
23310         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
23311         (gst_xvimagesink_getcaps): same
23312
23313 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23314
23315         * configure.ac:
23316           Up version requirement to 2.0.3 (not yet released) to avoid symbol
23317           clashes with ffmpeg.
23318
23319 2004-01-20  Julien MOUTTE  <julien@moutte.net>
23320
23321         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
23322         (gst_switch_init): Fixed switch element : proxying link and setting
23323         caps from src to sink on request.
23324
23325 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23326
23327         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
23328         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
23329         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
23330         fix element_error
23331
23332 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23333
23334         * sys/v4l/v4l_calls.h:
23335         * sys/v4l2/v4l2_calls.h:
23336           element_error fixes
23337
23338 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23339
23340         * gst-libs/gst/gst-i18n-plugin.h:
23341           add locale.h
23342           remove config.h inclusion
23343
23344 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23345
23346         * autogen.sh:
23347           adding autopoint invocation
23348         * Makefile.am:
23349         * configure.ac:
23350         * gst-libs/gst/gettext.h:
23351           adding gettext bits
23352         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
23353         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
23354         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
23355         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
23356         (gst_gnomevfssink_close_file):
23357         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
23358         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
23359         * gst-libs/gst/gst-i18n-plugin.h:
23360         * gst/avi/gstavi.c: (plugin_init):
23361         * sys/dxr3/dxr3init.c: (plugin_init):
23362         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
23363         * sys/oss/gstossaudio.c: (plugin_init):
23364         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
23365         * sys/v4l/gstv4l.c: (plugin_init):
23366         * sys/v4l/v4l_calls.c: (gst_v4l_open):
23367         * sys/v4l2/gstv4l2.c: (plugin_init):
23368         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
23369         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
23370         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
23371         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
23372         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
23373         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
23374           make sure locale and translation domain are set
23375           fix translated strings
23376         * po/.cvsignore:
23377         * po/LINGUAS:
23378         * po/Makevars:
23379         * po/POTFILES.in:
23380         * po/nl.po:
23381           put translation files into place
23382         * sys/xvideo/imagetest.c: (main):
23383         * ext/dv/demo-play.c: (main):
23384           fix unnecessary translations
23385
23386 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23387
23388         * ext/sndfile/gstsf.c:
23389         * gst/avi/gstavimux.c:
23390         * ext/audiofile/gstafsink.c:
23391         * ext/audiofile/gstafsrc.c:
23392         * ext/gnomevfs/gstgnomevfssink.c:
23393         * ext/gnomevfs/gstgnomevfssrc.c:
23394         * sys/oss/gstosselement.c:
23395         * sys/v4l/v4l_calls.h:
23396           fix i18n include
23397
23398 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23399
23400         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
23401         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
23402         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
23403         (gst_v4l2_get_output), (gst_v4l2_set_output),
23404         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
23405         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
23406         (gst_v4l2_set_attribute):
23407         update to new error handling
23408
23409 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23410
23411         * ext/sidplay/gstsiddec.cc:
23412         * gst/modplug/gstmodplug.cc:
23413           parenthese NULL because C++ seems angry about it
23414
23415 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23416
23417         * gst-libs/gst/gst-i18n-plugin.h:
23418           add skeleton i18n stuff, but needs to be further implemented
23419
23420 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
23421
23422         * examples/gstplay/player.c: (main):
23423         * ext/aalib/gstaasink.c: (gst_aasink_open):
23424         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
23425         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23426         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
23427         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
23428         (gst_afsink_close_file):
23429         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
23430         (gst_afsrc_close_file):
23431         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
23432         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
23433         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
23434         * ext/esd/esdmon.c: (gst_esdmon_get):
23435         * ext/esd/esdsink.c: (gst_esdsink_chain):
23436         * ext/faac/gstfaac.c: (gst_faac_chain):
23437         * ext/faad/gstfaad.c: (gst_faad_chain):
23438         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
23439         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
23440         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
23441         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
23442         (gst_flacdec_loop):
23443         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
23444         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
23445         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
23446         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
23447         (gst_gnomevfssink_close_file):
23448         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
23449         (gst_gnomevfssrc_open_file):
23450         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
23451         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
23452         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
23453         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
23454         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
23455         * ext/mad/gstmad.c: (gst_mad_chain):
23456         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
23457         * ext/mpeg2dec/gstmpeg2dec.c:
23458         * ext/mpeg2enc/gstmpeg2enc.cc:
23459         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23460         * ext/mplex/gstmplex.cc:
23461         * ext/mplex/gstmplexibitstream.cc:
23462         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
23463         (gst_ogg_demux_push), (gst_ogg_pad_push):
23464         * ext/raw1394/gstdv1394src.c:
23465         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
23466         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
23467         * ext/sidplay/gstsiddec.cc:
23468         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
23469         (gst_sf_loop):
23470         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
23471         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
23472         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
23473         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
23474         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
23475         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
23476         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
23477         * gst-libs/gst/Makefile.am:
23478         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
23479         (gst_riff_read_element_data), (gst_riff_read_seek),
23480         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
23481         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
23482         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
23483         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
23484         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
23485         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23486         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
23487         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
23488         * gst/goom/gstgoom.c: (gst_goom_chain):
23489         * gst/id3/gstid3types.c: (gst_id3types_loop):
23490         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
23491         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
23492         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
23493         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
23494         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
23495         (gst_ebml_read_float), (gst_ebml_read_header):
23496         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
23497         (gst_matroska_demux_parse_blockgroup):
23498         * gst/modplug/gstmodplug.cc:
23499         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
23500         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
23501         * gst/oneton/gstoneton.c: (gst_oneton_chain):
23502         * gst/silence/gstsilence.c: (gst_silence_get):
23503         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23504         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
23505         * gst/speed/gstspeed.c: (speed_loop):
23506         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
23507         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23508         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
23509         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
23510         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
23511         (gst_wavparse_loop):
23512         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
23513         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
23514         (dxr3audiosink_close):
23515         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
23516         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
23517         (dxr3videosink_close), (dxr3videosink_write_data):
23518         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
23519         * sys/oss/gstosselement.h:
23520         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
23521         (gst_osssink_chain):
23522         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23523         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
23524         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
23525         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
23526         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
23527         (gst_v4l_enable_overlay):
23528         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
23529         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
23530         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
23531         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
23532         (gst_v4l_set_audio):
23533         * sys/v4l/v4l_calls.h:
23534         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
23535         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
23536         (gst_v4lmjpegsink_playback_init),
23537         (gst_v4lmjpegsink_playback_start):
23538         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
23539         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
23540         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
23541         (gst_v4lmjpegsrc_requeue_frame):
23542         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
23543         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
23544         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
23545         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
23546         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
23547         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
23548         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
23549         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
23550         (gst_v4l2src_capture_stop):
23551         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
23552         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
23553         (gst_ximagesink_chain):
23554         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
23555         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
23556         (gst_xvideosink_xwindow_new):
23557         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23558         (gst_xvimagesink_chain):
23559         use new error signal, function and categories
23560
23561 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
23562
23563         * configure.ac:
23564         * ext/Makefile.am:
23565         * ext/musicbrainz/gsttrm.c:
23566         * ext/musicbrainz/gsttrm.h:
23567         * ext/musicbrainz/Makefile.am:
23568         Add a trm plugin
23569
23570 2004-01-18  Julien MOUTTE  <julien@moutte.net>
23571
23572         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
23573         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
23574         synchronous property for debugging.
23575         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
23576         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23577         (gst_xvimagesink_set_property): Moving a pointer declaration to a
23578         smaller block, fixing indent.
23579
23580 2004-01-16  David Schleef  <ds@schleef.org>
23581
23582         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
23583         property affects the video stream.
23584         * sys/xvimage/xvimagesink.c:
23585         * sys/xvimage/xvimagesink.h:
23586         Add synchronous property for debugging.  Should probably be
23587         disabled in non-CVS builds.  Make sure that the Xv attribute
23588         exists before we set it (crash!).  Fix a silly float bug that
23589         caused colorbalance to just not work.
23590
23591 2004-01-17  Christian Schaller <Uraeus@gnome.org>
23592
23593         * tools/gst-launch-ext.in - update for new plugins
23594
23595 2004-01-16  David Schleef  <ds@schleef.org>
23596
23597         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
23598         already-freed caps.
23599
23600 2994-01-16  Christian Schaller <Uraeus@gnome.org>
23601
23602         * Update spec for new colorspace plugin and libcaca plugin
23603         * Fix compilation of libcaca plugin (clock -> id)
23604
23605 2004-01-16  Julien MOUTTE <julien@moutte.net>
23606
23607         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
23608         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
23609         (gst_xvimagesink_set_xwindow_id),
23610         (gst_xvimagesink_colorbalance_set_value),
23611         (gst_xvimagesink_colorbalance_get_value),
23612         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
23613         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
23614         correct colorbalance properties. They can now be set when the element
23615         is still in NULL state. The values will be committed to the Xv Port
23616         when xcontext is initialized.
23617         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
23618         brightness int values in the GstXvImagesink structure.
23619
23620 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23621
23622         * gst-libs/gst/Makefile.am:
23623           restructure so having local patches works easier.
23624
23625 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23626
23627         * ext/mpeg2enc/Makefile.am:
23628         * ext/mpeg2enc/gstmpeg2enc.cc:
23629         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23630           Bugfix with respect to EOS handling.
23631
23632 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23633
23634         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
23635           Link with right caps (else, it segfaults).
23636         * ext/mplex/gstmplexjob.cc:
23637           Fix for slight API change in 1.6.1.93 release of mjpegtools.
23638
23639 2004-01-15  David Schleef  <ds@schleef.org>
23640
23641         * gst-libs/gst/audio/Makefile.am:
23642         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
23643         from the template.
23644         * gst-libs/gst/audio/gstaudiofilter.c:
23645         * gst-libs/gst/audio/gstaudiofilter.h:
23646         Add bytes_per_sample and size and n_samples calculation.
23647         * gst-libs/gst/audio/gstaudiofilterexample.c:
23648         Remove, now autogenerated.
23649         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
23650         Moved from gstaudiofilterexample, object name changed, code added
23651         so that it actually works.
23652         * gst-libs/gst/audio/make_filter:
23653         Script to build an audiofilter subclass from the template.
23654         * gst/colorspace/Makefile.am:
23655         * gst/colorspace/yuv2yuv.c:
23656         Remove file, since it's GPL, and we don't use it.
23657
23658 2004-01-15  Julien MOUTTE  <julien@moutte.net>
23659
23660         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23661         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
23662         them use the buffer free function to test how the buffer was allocated.
23663
23664 2004-01-15  David Schleef  <ds@schleef.org>
23665
23666         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
23667         that handles osssink fallback.
23668         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
23669         (gst_audio_convert_getcaps):
23670         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
23671         Add audio/x-qdm2 for QDM2 audio.
23672         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23673         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
23674         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
23675         Decrease minimum size to 16x16.
23676         * gst/wavparse/gstwavparse.c:
23677         Convert disabled pad template caps to new caps.
23678         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23679         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23680         (gst_xvimagesink_chain): Throw element error when display cannot
23681         be opened.  Increase minimum framerate to 1.0.  Check the data
23682         free function on a buffer to make sure it is the type we expect
23683         before manipulating it.
23684
23685 2004-01-15  Julien MOUTTE <julien@moutte.net>
23686
23687         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23688         (gst_videobalance_colorbalance_set_value): Implement passthru if
23689         settings are in the middle.
23690         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
23691
23692 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23693
23694         * gst/videofilter/Makefile.am:
23695         * gst/volume/Makefile.am:
23696           Since we use videofilter symbols, link to it.
23697
23698 2004-01-15  Julien MOUTTE <julien@moutte.net>
23699
23700         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
23701         mixer interface type to HARDWARE.
23702         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
23703         type to SOFTWARE.
23704         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
23705         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
23706         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
23707         (gst_volume_interface_init), (gst_volume_list_tracks),
23708         (gst_volume_set_volume), (gst_volume_get_volume),
23709         (gst_volume_set_mute), (gst_volume_mixer_init),
23710         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
23711         (volume_init): Implementing mixer interface.
23712         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
23713         * sys/oss/gstosselement.c: (gst_osselement_get_type),
23714         (gst_osselement_change_state): Removing some trailing commas in
23715         structures.
23716         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
23717         interface type to HARDWARE.
23718         * sys/v4l/gstv4lcolorbalance.c:
23719         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
23720         type to HARDWARE.
23721         * sys/v4l2/gstv4l2colorbalance.c:
23722         (gst_v4l2_color_balance_interface_init): Setting colorbalance
23723         interface type to HARDWARE.
23724         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
23725         same code than ximagesink for event handling.
23726
23727 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23728
23729         * ext/snapshot/Makefile.am:
23730         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
23731         (gst_snapshot_chain):
23732         * ext/snapshot/gstsnapshot.h:
23733           This has to be a joke... Snapshot should be connected to a tee,
23734           colorspace element before it and EOS after that, where the other
23735           src of the tee receives normal data.
23736           The current way is *wrong*.
23737
23738 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23739
23740         * ext/hermes/gsthermescolorspace.c:
23741           Fix another compile error. Same as below.
23742
23743 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23744
23745         * gst/colorspace/gstcolorspace.c:
23746         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
23747         (gst_colorspace_i420_to_yv12):
23748           Fix compiling... Didn't test if it actually works.
23749
23750 2004-01-15  David Schleef  <ds@schleef.org>
23751
23752         * configure.ac:
23753         * gst/colorspace/Makefile.am:
23754         * gst/colorspace/gstcolorspace.c:
23755         * gst/colorspace/gstcolorspace.h:
23756         * gst/colorspace/yuv2rgb.c:
23757         * gst/colorspace/yuv2rgb.h:
23758         Duplicate the ext/hermes colorspace plugin, and remove Hermes
23759         code and GPL code.  Fix for new caps negotiation.  Rewrite
23760         much of the format handling code, and some of the conversion
23761         code.  Basically, rewrote almost everything.  This element
23762         handles I420, YV12 to RGB conversions.
23763         * ext/hermes/Makefile.am:
23764         * ext/hermes/gsthermescolorspace.c:
23765         Rename colorspace to hermescolorspace.  Fix negotiation issues.
23766         Remove non-Hermes related code.  This element handles lots of
23767         RGB to RGB conversions, but no YUV.
23768         * ext/hermes/gstcolorspace.c:
23769         * ext/hermes/gstcolorspace.h:
23770         * ext/hermes/rgb2yuv.c:
23771         * ext/hermes/yuv2rgb.c:
23772         * ext/hermes/yuv2rgb.h:
23773         * ext/hermes/yuv2rgb_mmx16.s:
23774         * ext/hermes/yuv2yuv.c:
23775         * ext/hermes/yuv2yuv.h:
23776         Remove old code.
23777
23778 2004-01-14  Colin Walters  <walters@verbum.org>
23779
23780         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
23781         they've already been.
23782
23783 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23784
23785         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
23786           assume tag mode when pad is not connected
23787
23788 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23789
23790         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23791           Don't update the time of the clock
23792         (gst_alsa_sink_loop):
23793           sync to the clock given to alsasink, not the own clock
23794         * sys/oss/gstosssink.c: (gst_osssink_chain):
23795           sync to the clock
23796         (gst_osssink_change_state):
23797           activate the clock
23798         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23799         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23800           remove bogus code that made DISCONT events unhandled
23801         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
23802           explicitly case to double in _set_simple. (fixes 2nd warning in bug
23803           #131502)
23804         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
23805         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
23806         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
23807           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
23808           2nd warning in bug #131502)
23809
23810 2004-01-14  Julien MOUTTE  <julien@moutte.net>
23811
23812         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23813         (gst_videobalance_colorbalance_set_value),
23814         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
23815         for colorbalance interface implementation.
23816         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
23817         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
23818         (gst_ximagesink_dispose), (gst_ximagesink_init),
23819         (gst_ximagesink_class_init): Adding DISPLAY property.
23820         * sys/ximage/ximagesink.h: Adding display_name to store display.
23821         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23822         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
23823         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
23824         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
23825         properties (they still need polishing though for gst-launch use : no
23826         xcontext yet, i ll do that tomorrow).
23827         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
23828
23829 2004-01-14  Julien MOUTTE  <julien@moutte.net>
23830
23831         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
23832         (gst_play_set_location), (gst_play_set_visualization): Preparing
23833         switch integration, adding videobalance in the pipeline.
23834
23835 2004-01-14  Julien MOUTTE <julien@moutte.net>
23836
23837         * gst-libs/gst/colorbalance/colorbalance.c:
23838         (gst_color_balance_class_init): Adding a default type.
23839         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
23840         the type.
23841         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
23842         (gst_videobalance_dispose), (gst_videobalance_class_init),
23843         (gst_videobalance_init), (gst_videobalance_interface_supported),
23844         (gst_videobalance_interface_init),
23845         (gst_videobalance_colorbalance_list_channels),
23846         (gst_videobalance_colorbalance_set_value),
23847         (gst_videobalance_colorbalance_get_value),
23848         (gst_videobalance_colorbalance_init): Implementing colorbalance
23849         interface.
23850         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
23851         list.
23852         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
23853         bug which was triggering a BadAccess X error when setting an overlay
23854         before pad was really negotiated.
23855         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
23856         Using the colorbalance type macro.
23857
23858 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23859
23860         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
23861         (gst_flacenc_chain):
23862           handle tags correctly
23863         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
23864           extract ID3v1 tags correctly
23865
23866 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23867
23868         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
23869         (plugin_init):
23870           Improve matroska typefinding for odd-typed headers...
23871
23872 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23873
23874         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
23875           Fix for using incremental number on padnames.
23876
23877 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23878
23879         * ext/divx/gstdivxdec.c:
23880         * ext/divx/gstdivxenc.c:
23881           Set category to divx4linux instead of divx (too generic).
23882         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23883         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
23884         (gst_wavparse_loop), (gst_wavparse_change_state):
23885         * gst/wavparse/gstwavparse.h:
23886           fix parsing of WAV files with non-standard fmt-tag size and fix
23887           skipping of unrecognized chunks... Someone please fix this thing
23888           to use rifflib so all this is automated.
23889         * sys/v4l/Makefile.am:
23890         * sys/v4l2/Makefile.am:
23891           Add X_CFLAGS because we depend on X (for overlay).
23892
23893 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
23894
23895         * ext/mpeg2dec/gstmpeg2dec.c:
23896           Don't issue a timestamp unless we tagged the frame
23897           with a PTS.
23898
23899 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23900
23901         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
23902           Query the audio element to get the time, not the clock. We're
23903           interested in the element's time here.
23904
23905 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23906
23907         * ext/aalib/gstaasink.c: (gst_aasink_chain):
23908         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23909         * ext/esd/esdsink.c: (gst_esdsink_chain):
23910         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
23911         * ext/mas/massink.c: (gst_massink_chain):
23912         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
23913         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
23914         (gst_matroska_demux_parse_metadata):
23915         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
23916         (gst_mpeg_parse_release_locks):
23917         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
23918         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
23919         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23920         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
23921         (gst_osssink_change_state):
23922         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
23923         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23924         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
23925         (gst_xvideosink_release_locks):
23926         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23927           use element time.
23928         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
23929         (gst_alsa_clock_stop):
23930         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
23931         (gst_audio_clock_get_internal_time):
23932           simplify for use with new clocking code.
23933         * testsuite/alsa/Makefile.am:
23934         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
23935           fix testsuite for new caps system
23936
23937 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23938
23939         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
23940         * ext/flac/gstflacenc.c: (add_one_tag):
23941           length is already host endian, no need to convert. Fixes playback of
23942           tagged files on PPC. (bug #128384)
23943
23944 2004-01-13  Julien MOUTTE <julien@moutte.net>
23945
23946         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
23947         colorbalance interface stating if it is hardware based or software
23948         based.
23949         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
23950         Removing a trailing comma.
23951         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23952         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
23953         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
23954         the documentation seems to be wrong on the -1000 to 1000 interval.
23955
23956 2004-01-12  David Schleef  <ds@schleef.org>
23957
23958         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
23959         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
23960         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
23961         Fix negotiation.  Add a bufferalloc function for the sink pad,
23962         and generally clean up some of the code.
23963
23964 2004-01-12  Julien MOUTTE <julien@moutte.net>
23965
23966         * gst-libs/gst/colorbalance/colorbalancechannel.c:
23967         (gst_color_balance_channel_dispose): Adding safety check in dispose
23968         method.
23969         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23970         (gst_xvimagesink_xcontext_clear),
23971         (gst_xvimagesink_interface_supported),
23972         (gst_xvimagesink_colorbalance_list_channels),
23973         (gst_xvimagesink_colorbalance_set_value),
23974         (gst_xvimagesink_colorbalance_get_value),
23975         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
23976         Adding colorbalance interface support to set XV parameters such as
23977         HUE, BRIGHTNESS, CONTRAST, SATURATION.
23978         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
23979         interface.
23980
23981 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23982
23983         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
23984         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
23985         (gst_audio_convert_init), (gst_audio_convert_set_property),
23986         (gst_audio_convert_get_property), (gst_audio_convert_chain),
23987         (gst_audio_convert_link),
23988         (gst_audio_convert_buffer_to_default_format),
23989         (gst_audio_convert_buffer_from_default_format), (plugin_init):
23990           - implement _getcaps and use it
23991           - improve linking
23992           - remove float caps since no float conversion is actually done
23993           - remove properties and arguments that were to be used for rate
23994             conversion
23995
23996 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23997
23998         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
23999         (gst_audio_structure_set_int):
24000         * gst-libs/gst/audio/audio.h:
24001           add helper functions for _getcaps matching the standard audio
24002           templates
24003
24004 2004-01-12  David Schleef  <ds@schleef.org>
24005
24006         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
24007         Test that pad is negotiated before getting its caps.
24008
24009 2004-01-12  Julien MOUTTE <julien@moutte.net>
24010
24011         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
24012         analyzing the pads of an element the bin is mostly in READY state so
24013         no caps were negotiated. This helper function needs to work with
24014         _get_caps directly then. I was not freeing them though, added that to
24015         fix the mem leak.
24016
24017 2004-01-12  Julien MOUTTE <julien@moutte.net>
24018
24019         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
24020         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
24021         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
24022         than the free_func.
24023
24024 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24025
24026         * sys/oss/gstossaudio.c: (plugin_init):
24027         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
24028         * sys/oss/gstosselement.h:
24029           make an oss debugging category
24030           make failure more descriptive
24031
24032 2004-01-11  David Schleef  <ds@schleef.org>
24033
24034         * ext/ffmpeg/gstffmpeg.c:
24035         * ext/ffmpeg/gstffmpegcodecmap.c:
24036         * ext/ffmpeg/gstffmpegdec.c:
24037         * ext/ffmpeg/gstffmpegenc.c:
24038         * ext/ffmpeg/gstffmpegprotocol.c:
24039         * ext/gdk_pixbuf/gstgdkanimation.c:
24040         * ext/jpeg/gstjpeg.c:
24041         * ext/libpng/gstpng.c:
24042         * ext/mpeg2dec/perftest.c:
24043         * ext/speex/gstspeex.c:
24044         * gst-libs/gst/resample/dtos.c:
24045         * gst/intfloat/gstintfloatconvert.c:
24046         * gst/oneton/gstoneton.c:
24047         * gst/rtjpeg/RTjpeg.c:
24048         * gst/rtp/gstrtp.c:
24049         * sys/dxr3/dxr3init.c:
24050         * sys/glsink/gstgl_nvimage.c:
24051         * sys/glsink/gstgl_pdrimage.c:
24052         * sys/glsink/gstglsink.c:
24053         * testsuite/gst-lint:
24054         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
24055
24056 2004-01-11  David Schleef  <ds@schleef.org>
24057
24058         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
24059         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
24060         * ext/gdk_pixbuf/gstgdkanimation.c:
24061         (gst_gdk_animation_iter_create_pixbuf):
24062         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
24063         (gst_gdk_pixbuf_chain):
24064         * ext/gdk_pixbuf/gstgdkpixbuf.h:
24065         * ext/jack/gstjack.c: (gst_jack_change_state):
24066         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
24067         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
24068         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
24069         * gst/videofilter/gstvideofilter.c:
24070         (gst_videofilter_set_output_size):
24071         Remove all usage of gst_pad_get_caps(), and replace it with
24072         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
24073
24074 2004-01-11  David Schleef  <ds@schleef.org>
24075
24076         * configure.ac:
24077         * ext/Makefile.am: Fixes to make ext/libcaca compile.
24078         * ext/divx/gstdivxdec.c:
24079         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
24080         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
24081         handle images that span multiple buffers.  Now work with both
24082         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
24083         * ext/gdk_pixbuf/gstgdkpixbuf.h:
24084         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
24085         video/video.h changes
24086         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
24087         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
24088         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
24089         of GstData free function.
24090         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
24091         same.
24092
24093 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24094
24095         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
24096         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
24097         (gst_v4l2element_get_property):
24098         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
24099           add norm, channel and frequency properties.
24100         * sys/v4l2/gstv4l2tuner.c:
24101           fixes for tuner interface changes
24102         * sys/v4l2/gstv4l2element.h:
24103         * sys/v4l2/gstv4l2src.c:
24104         * sys/v4l2/gstv4l2src.h:
24105         * sys/v4l2/v4l2src_calls.c:
24106         * sys/v4l2/v4l2src_calls.h:
24107           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
24108
24109 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24110
24111         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
24112         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
24113         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
24114         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
24115         * gst-libs/gst/tuner/tuner.h:
24116           GObjects aren't const.
24117           Add find_by_name functions.
24118           Add checks to _changed functions.
24119         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
24120         (gst_v4l_tuner_get_norm):
24121           Fixes for above.
24122
24123 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24124
24125         * gst-libs/gst/video/video.h:
24126           Fix caps template names to be understandable.
24127           Prefix everything with GST_VIDEO.
24128         * ext/aalib/gstaasink.c:
24129         * ext/divx/gstdivxdec.c:
24130         * ext/divx/gstdivxenc.c:
24131         * ext/gdk_pixbuf/gstgdkpixbuf.c:
24132         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
24133         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
24134         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
24135         * ext/libcaca/gstcacasink.c:
24136         * ext/libpng/gstpngenc.c: (raw_caps_factory):
24137         * ext/snapshot/gstsnapshot.c:
24138         * ext/swfdec/gstswfdec.c:
24139         * ext/xvid/gstxviddec.c:
24140         * ext/xvid/gstxvidenc.c:
24141         * gst/chart/gstchart.c:
24142         * gst/deinterlace/gstdeinterlace.c:
24143         * gst/effectv/gsteffectv.c:
24144         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
24145         * gst/goom/gstgoom.c:
24146         * gst/median/gstmedian.c:
24147         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
24148         (gst_monoscope_srcconnect), (gst_monoscope_chain):
24149         * gst/overlay/gstoverlay.c:
24150         * gst/smooth/gstsmooth.c:
24151         * gst/smpte/gstsmpte.c:
24152         * gst/synaesthesia/gstsynaesthesia.c:
24153         * gst/videocrop/gstvideocrop.c:
24154         * gst/videodrop/gstvideodrop.c:
24155         * gst/y4m/gsty4mencode.c:
24156         * sys/qcam/gstqcamsrc.c:
24157         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
24158           Make them work with new video.h file.
24159         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
24160         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
24161         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
24162         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
24163           Make it work with new buffer allocation system.
24164
24165 2004-01-11  Julien MOUTTE  <julien@moutte.net>
24166
24167         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
24168         pad_alloc_buffer implementation to use ->srcpad
24169         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
24170         pad_alloc_buffer implementation to use ->srcpad
24171         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
24172         pad_alloc_buffer implementation to use ->srcpad
24173         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24174         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
24175         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
24176         a reference to everything we need.
24177         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
24178         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
24179         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
24180         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
24181         a reference to everything we need.
24182         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
24183
24184 2004-01-11  David Schleef  <ds@schleef.org>
24185
24186         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
24187         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
24188         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
24189         structure members.
24190         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
24191         value during a resize/renegotiation.
24192         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
24193         gst_pad_alloc_buffer();
24194         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
24195         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
24196         structure members.
24197         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
24198         Fix for rename of buffer private structure members.
24199         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
24200         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
24201         Fix for rename of buffer private structure members.
24202         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
24203         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
24204         Fix for rename of buffer private structure members.
24205
24206 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
24207
24208         reviewed by: David Schleef <ds@schleef.org>
24209
24210         * gst/videofilter/Makefile.am:
24211         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
24212         from the patch by ds to fit in with recent make_filter changes.
24213
24214 2004-01-11  Julien MOUTTE  <julien@moutte.net>
24215
24216         * configure.ac: Adding examples/switch/Makefile
24217         * examples/Makefile.am: Adding examples/switch
24218         * examples/switch/Makefile.am: Adding switcher example.
24219         * examples/switch/switcher.c: (got_eos), (idle_iterate),
24220         (switch_timer), (main): Adding an example demonstrating switch usage
24221         with 2 videotestsrc showing different patterns.
24222         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
24223         (gst_switch_init): Fixing switch with the new caps system.
24224
24225 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24226
24227         * gst-libs/gst/video/video.h:
24228           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
24229           They should probably be like
24230           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
24231
24232 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24233
24234         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
24235         (qtdemux_parse_trak):
24236           fix audio chunk size/timestamp calculation
24237
24238 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24239
24240         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
24241           fix SVQ3 caps
24242
24243 2004-01-11  Steve Baker  <steve@stevebaker.org>
24244
24245         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
24246         (gst_agingtv_base_init), (gst_agingtv_class_init),
24247         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
24248         (gst_agingtv_set_property), (gst_agingtv_get_property):
24249         Port agingTV to videofilter
24250
24251 2004-01-09  Julien MOUTTE <julien@moutte.net>
24252
24253         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
24254         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
24255
24256 2004-01-09  Julien MOUTTE <julien@moutte.net>
24257
24258         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
24259         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
24260         * gst-libs/gst/xoverlay/xoverlay.c:
24261         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
24262         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
24263         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
24264         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
24265         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
24266         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
24267         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
24268         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
24269         the bufferalloc_function to replace bufferpools, fixing the XOverlay
24270         interface implementation to handle xid being 0 and fix some bugs
24271         triggered by Benjamin's testcase.
24272         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
24273         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
24274         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
24275         the bufferalloc_function to replace bufferpools, fixing the XOverlay
24276         interface implementation to handle xid being 0 and fix some bugs
24277         triggered by Benjamin's testcase.
24278
24279 2004-01-09  David Schleef  <ds@schleef.org>
24280
24281         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
24282         mouse pointer events.  It works.
24283
24284 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24285
24286         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
24287           Use explicit caps - fix capsnego.
24288         * ext/xvid/gstxviddec.c:
24289         * ext/xvid/gstxvidenc.c:
24290           Remove macro-inside-macro which caused compile errors.
24291         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
24292           Error out if it's not a RIFF file. Else we error out without
24293           gst_element_error() which is not good...
24294
24295 2004-01-08  David Schleef  <ds@schleef.org>
24296
24297         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
24298         Fix pad_link function to handle formats that ffmpeg returns
24299         as multiple caps structures.
24300         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
24301         Only complain if source buffer is _smaller_ than expected.
24302         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
24303         (gst_videoscale_handle_src_event): Resize navigation events
24304         when passing them upstream.
24305         * gst/videotestsrc/gstvideotestsrc.c:
24306         * gst/videotestsrc/gstvideotestsrc.h:
24307         * gst/videotestsrc/videotestsrc.c:
24308         * gst/videotestsrc/videotestsrc.h:
24309         Rewrite many of the buffer painting functions to handle odd
24310         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
24311         been verified to work with my video card.
24312         * testsuite/gst-lint:  Add check for elements calling
24313         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
24314
24315 2004-01-08  David Schleef  <ds@schleef.org>
24316
24317         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
24318         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
24319
24320 2004-01-08  Julien MOUTTE  <julien@moutte.net>
24321
24322         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
24323         configure event is not emiting the desired size signal. That fixes
24324         aspect ratio issues with gst-player.
24325
24326 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24327
24328         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
24329           Fix capsnego.
24330
24331 2004-01-08  Julien MOUTTE  <julien@moutte.net>
24332
24333         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
24334         public method to fire size signal.
24335
24336 2004-01-07  Julien MOUTTE  <julien@moutte.net>
24337
24338         * examples/gstplay/Makefile.am: Adding the interface library.
24339         * gst-libs/gst/play/Makefile.am: Adding the interface library.
24340         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
24341         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
24342         GST_IS_X_OVERLAY before signal connect.
24343         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
24344         Removing the have_video_size signal.
24345         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
24346         and associated public method.
24347         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
24348         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
24349         signal.
24350         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
24351         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
24352         signal.
24353         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
24354         Using XOverlay public method to fire size signal.
24355
24356 2004-01-07  David Schleef  <ds@schleef.org>
24357
24358         * gst/videofilter/Makefile.am:
24359         * gst/videofilter/gstvideotemplate.c:
24360         * gst/videofilter/make_filter:
24361         Create gstvideoexample.c in a srcdir!=builddir friendly way.
24362         Convert make_filter to /bin/sh script.
24363
24364 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
24365
24366         * gst/modplug/gstmodplug.cc: fix element description
24367
24368 2004-01-07  Julien MOUTTE  <julien@moutte.net>
24369
24370         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
24371         (got_video_size): Adding some new lines in g_print calls.
24372         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
24373         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
24374         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
24375         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
24376         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
24377         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
24378         Complete code review, reverting some stuff i disagree with, adding
24379         some fixes : time synchronization on invalid timestamps, renegotiation
24380         of private window.
24381         * sys/ximage/ximagesink.h:
24382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
24383         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
24384         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
24385         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
24386         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
24387         (gst_xvimagesink_buffer_new),
24388         (gst_xvimagesink_navigation_send_event),
24389         (gst_xvimagesink_set_xwindow_id),
24390         (gst_xvimagesink_get_desired_size),
24391         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
24392         stuff i disagree with, adding some fixes : Renegotiation of private
24393         window, implementing get_desired_size.
24394
24395 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24396
24397         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
24398         (gst_afsink_handle_event):
24399         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
24400         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
24401         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
24402         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
24403         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
24404           Fix for instantiate-test (see core). Also remove dead code from
24405           jpegenc (which still needs fixing, but that's lower on my TODO
24406           list...).
24407         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
24408           Never return NULL as caps.
24409
24410 2004-01-07  David Schleef  <ds@schleef.org>
24411
24412         * configure.ac:
24413         * ext/Makefile.am:
24414         * ext/librfb/Makefile.am:
24415         * ext/librfb/gstrfbsrc.c:
24416         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
24417         is the protocol used by VNC.
24418
24419 2004-01-07  David Schleef  <ds@schleef.org>
24420
24421         * gst/videofilter/gstvideotemplate.c:
24422         * gst/videofilter/gstvideotemplate.h:
24423         * gst/videofilter/make_filter:
24424         Merge videotemplate header into source file.
24425         * gst/effectv/Makefile.am:
24426         * gst/effectv/gsteffectv.c: (plugin_init):
24427         * gst/effectv/gstwarp.c:
24428         Make warpTV a subclass of videofilter.
24429
24430 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24431
24432         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
24433           Add guard against invalid utf-8 conversions in mad. Just in case.
24434
24435 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24436
24437         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
24438           Fix for bug shown by poisoning
24439
24440 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24441
24442         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
24443         (gst_v4lmjpegsrc_buffer_free):
24444         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
24445         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
24446         (gst_v4lsrc_buffer_free):
24447           Fix for removed bufferpools.
24448
24449 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
24450
24451         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
24452         Fix caps negotiation.
24453
24454         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
24455         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
24456         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
24457         (dvdnavsrc_event):
24458         * ext/mpeg2dec/gstmpeg2dec.c:
24459         * gst-libs/gst/navigation/navigation.c:
24460         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
24461         * gst-libs/gst/navigation/navigation.h:
24462         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
24463         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
24464         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
24465         Super-simple first version of mouse and keyboard events. Clicking
24466         on a DVD menu now works, although it may not take you where you
24467         expected.
24468
24469         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
24470         * gst/videotestsrc/gstvideotestsrc.c:
24471         (gst_videotestsrc_src_fixate):
24472         These fixate functions were broken - they never actually
24473         fixated :)
24474
24475 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24476
24477         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
24478         (gst_icecastsend_init):
24479           fix for new caps system.
24480         * gst-libs/gst/mixer/mixertrack.h:
24481         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
24482           Add 'master track' flag (for tools like ACME that only want to
24483           change the main volume).
24484
24485 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
24486
24487         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
24488         (gst_xvid_csp_to_caps):
24489         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
24490         * ext/xvid/gstxvidenc.c:
24491         ifdef out ARGB type when it isn't available
24492         in xvidcore 1.0.0beta2
24493
24494 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24495
24496         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
24497           When we have received a new SCR right in the first buffer after
24498           a seek (so in the same cycle that handles the discont), we should
24499           handle the buffer instead of unreffing it, else we lose data.
24500
24501 2004-01-06  Iain <iain@prettypeople.org>
24502
24503         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
24504           buffer-frames caps too.
24505
24506         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
24507           caps that we need, don't destroy them all and rebuild them. And when
24508           creating src pads, use the src pad template rather than the sink...
24509
24510 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24511
24512         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
24513           Add pad to element *after* setting functions such as event handler.
24514           Without this, the scheduler (opt) will link pads, set the event
24515           handler from the default event function (dispatcher in gstpad.c)
24516           and *after* that, we will set our own event function, which will
24517           thus never be used (and thus mpegdemux doesn't handle events).
24518
24519 2004-01-04  David Schleef  <ds@schleef.org>
24520
24521         Fix the fixate functions to handle new prototype:
24522         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
24523         * gst/videotestsrc/gstvideotestsrc.c:
24524         (gst_videotestsrc_src_fixate):
24525         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
24526         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
24527         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
24528
24529 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24530
24531         * sys/ximage/ximagesink.h:
24532         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
24533         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
24534         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
24535         (gst_ximagesink_xoverlay_init):
24536           assorted fixes to make (re)embedding work
24537         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
24538         (gst_ximagesink_get_desired_size):
24539           implement desired size additions to XOverlay
24540
24541 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24542
24543         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
24544         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
24545         (gst_x_overlay_got_desired_size):
24546         * gst-libs/gst/xoverlay/xoverlay.h:
24547           Add optional "desired size" signal and querying.
24548
24549 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24550
24551         * gst/matroska/matroska-demux.c:
24552         (gst_matroska_demux_parse_blockgroup):
24553           Fix EBML-laced block parsing. Diffs are relative to previous
24554           lace, not the first lace. Thanks to Mosu from the Matroska
24555           team for detecting this.
24556         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
24557         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
24558         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
24559         (gst_wavparse_change_state):
24560         * gst/wavparse/gstwavparse.h:
24561           Quickfix for capsnego.
24562
24563 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24564
24565         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
24566           Fix indenting, fix pad creation.
24567
24568 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24569
24570         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
24571         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
24572         (gst_xviddec_sink_link):
24573           Implement src_getcaps() so proper size caps is negotiated.
24574
24575 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24576
24577         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
24578           Finish flac decoder on EOS. See #116178.
24579
24580 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24581
24582         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
24583         (gst_matroska_demux_add_stream):
24584         * gst/matroska/matroska-ids.h:
24585           Add getcaps() function to fix capsnego...
24586
24587 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24588
24589         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
24590         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
24591         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
24592           Fix more integer overflows. Again, see #126967.
24593
24594 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24595
24596         * ext/mpeg2dec/gstmpeg2dec.c:
24597           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
24598           #130416.
24599
24600 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24601
24602         * configure.ac:
24603         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
24604         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
24605         * ext/xvid/gstxvid.h:
24606         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
24607         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
24608         (gst_xviddec_src_link), (gst_xviddec_sink_link),
24609         (gst_xviddec_change_state):
24610         * ext/xvid/gstxviddec.h:
24611         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
24612         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
24613         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
24614         (gst_xvidenc_link), (gst_xvidenc_set_property),
24615         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
24616         * ext/xvid/gstxvidenc.h:
24617           Update xvid plugin to latest xvid (1.0.0-beta3) API.
24618
24619 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24620
24621         * gst/rtp/rtp-packet.c:
24622           Add sys/types.h include, since OS X doesn't define in_addr_t
24623           in netinet/in.h, like it does on Linux (see #129600).
24624
24625 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
24626
24627         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
24628
24629         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
24630           Correct logic of dispose function (see #129306).
24631
24632 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24633
24634         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
24635         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
24636         (gst_mpeg_parse_init):
24637         * gst/mpegstream/gstmpegparse.h:
24638           Remove clock (which was never provided, i.e. dead code), and
24639           also fix integer overflows at high PTS values (see #126967).
24640
24641 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24642
24643         * ext/flac/gstflacdec.c:
24644         * ext/libpng/gstpngenc.h:
24645         * ext/mikmod/gstmikmod.h:
24646           OS X fixes (see #126628).
24647
24648 2004-01-02  David Schleef  <ds@schleef.org>
24649
24650         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
24651         (gst_alsa_src_base_init): Remove bogus "src" request pad.
24652         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
24653         (gst_mpeg_parse_class_init): Move pad template registration
24654         to class_init, since the derived class (mpegdemux) doesn't
24655         want them.
24656
24657 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24658
24659         * sys/ximage/Makefile.am:
24660         * sys/xvideo/Makefile.am:
24661         * sys/xvimage/Makefile.am:
24662           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
24663           after installation (see #127664).
24664
24665 2004-01-02  David Schleef  <ds@schleef.org>
24666
24667         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
24668         (gst_ffmpegenc_connect):  Negotiation fixes.
24669         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
24670         Remove inappropriate gst_caps_free().
24671         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24672         Reenable Ronald's internal resize code, since the core handles
24673         it correctly now.
24674
24675 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24676
24677         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
24678         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
24679         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
24680           Fix pad template stuff.
24681
24682 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24683
24684         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
24685         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
24686           fix signed integer reading/writing.
24687
24688 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24689
24690         * ext/alsa/README:
24691           Remove outdated document
24692
24693 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
24694
24695         * gst/cutter/gstcutter.c: (gst_cutter_init):
24696           src pad was being created twice - oops.
24697
24698 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24699
24700         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24701           Comment out internal resize. It doesn't handle the resulting
24702           XEvent internally, does another try_set_caps() which leads to
24703           a really nice loop.
24704           Real fix will come when Julien and Dave are awake. ;).
24705
24706 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24707
24708         * ext/mpeg2enc/gstmpeg2enc.cc:
24709           fix const/nonconst compile issue.
24710
24711 2004-01-02  David Schleef  <ds@schleef.org>
24712
24713         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
24714         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
24715         Add fixate function and a check for bad formats.
24716
24717 2004-01-01  David Schleef  <ds@schleef.org>
24718
24719         Negotiation fixes:
24720         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24721         (gst_audiofilter_init):
24722         * gst/debug/efence.c: (gst_efence_init):
24723         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
24724         (gst_deinterlace_init):
24725         * gst/volume/gstvolume.c: (volume_connect):
24726
24727 2004-01-01  David Schleef  <ds@schleef.org>
24728
24729         Convert elements to use gst_pad_use_explicit_caps() where
24730         appropriate:
24731         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
24732         * ext/audiofile/gstafparse.c: (gst_afparse_init),
24733         (gst_afparse_open_file):
24734         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
24735         (gst_afsrc_open_file):
24736         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
24737         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
24738         (gst_ffmpegdec_chain):
24739         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
24740         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
24741         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
24742         (gst_gdk_pixbuf_chain):
24743         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
24744         (gst_jpegdec_chain):
24745         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
24746         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
24747         (gst_mikmod_negotiate):
24748         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
24749         (gst_mpeg2dec_negotiate_format):
24750         * ext/mpeg2enc/gstmpeg2enc.cc:
24751         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24752         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
24753         (gst_speexdec_sinkconnect):
24754         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
24755         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
24756         (gst_vorbisfile_new_link):
24757         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
24758         (gst_ac3parse_chain):
24759         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
24760         (gst_asf_demux_setup_pad):
24761         * gst/auparse/gstauparse.c: (gst_auparse_init),
24762         (gst_auparse_chain):
24763         * gst/id3/gstid3types.c: (gst_id3types_loop):
24764         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
24765         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
24766         (mp1videoparse_parse_seq):
24767         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
24768         (bpf_from_header):
24769         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
24770         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
24771         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
24772         (gst_mpeg_parse_send_data):
24773         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
24774         (gst_qtdemux_add_stream):
24775         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
24776         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
24777         (gst_wavparse_parse_fmt):
24778
24779 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24780
24781         * configure.ac:
24782           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
24783           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
24784           it therefore uses the wrong include paths. Too bad... Note
24785           that 1.6.1.93 is not release yet. ;).
24786           Also add a check for mplex, which is now using the lib'ified
24787           mplex from mjpegtools, too.
24788         * ext/ffmpeg/gstffmpegcodecmap.c:
24789           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
24790           issues. I don't think ffmpeg handles 3ivx correctly, so this
24791           probably won't work. But it won't hurt either.
24792         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
24793         (gst_ffmpegdec_chain):
24794         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
24795         (gst_ffmpegenc_chain_audio):
24796           Fix memleak in audio encoding. Close codec if open fails, this
24797           calls the cleanup routines so we can re-use the context.
24798         * ext/mpeg2enc/gstmpeg2enc.cc:
24799           Fix pad template names/types, fix memory issue with getcaps().
24800         * ext/mpeg2enc/gstmpeg2encoder.cc:
24801         * ext/mpeg2enc/gstmpeg2encoder.hh:
24802           Fix compile issue with new caps system (const thingy).
24803         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24804         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
24805           We read a first frame right on initing, so that we have a caps
24806           when we init the output. This caps is cached in padprivate and
24807           read as first frame.
24808         * ext/mplex/Makefile.am:
24809         * ext/mplex/gstmplex.cc:
24810         * ext/mplex/gstmplex.h:
24811         * ext/mplex/gstmplex.hh:
24812         * ext/mplex/gstmplexibitstream.cc:
24813         * ext/mplex/gstmplexibitstream.hh:
24814         * ext/mplex/gstmplexjob.cc:
24815         * ext/mplex/gstmplexjob.hh:
24816         * ext/mplex/gstmplexoutputstream.cc:
24817         * ext/mplex/gstmplexoutputstream.hh:
24818           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
24819           had issues, didn't do capsnego, supported only a subset of the
24820           mplex features and required a mplex fork in our local CVS. Plus
24821           that it worked agaist a very old mplex version. Rewriting was
24822           faster than updating it.
24823         * gst-libs/ext/Makefile.am:
24824         * gst-libs/ext/mplex/INSTRUCT:
24825         * gst-libs/ext/mplex/Makefile.am:
24826         * gst-libs/ext/mplex/README:
24827         * gst-libs/ext/mplex/TODO:
24828         * gst-libs/ext/mplex/ac3strm_in.cc:
24829         * gst-libs/ext/mplex/audiostrm.hh:
24830         * gst-libs/ext/mplex/audiostrm_out.cc:
24831         * gst-libs/ext/mplex/aunit.hh:
24832         * gst-libs/ext/mplex/bits.cc:
24833         * gst-libs/ext/mplex/bits.hh:
24834         * gst-libs/ext/mplex/buffer.cc:
24835         * gst-libs/ext/mplex/buffer.hh:
24836         * gst-libs/ext/mplex/fastintfns.h:
24837         * gst-libs/ext/mplex/format_codes.h:
24838         * gst-libs/ext/mplex/inputstrm.cc:
24839         * gst-libs/ext/mplex/inputstrm.hh:
24840         * gst-libs/ext/mplex/lpcmstrm_in.cc:
24841         * gst-libs/ext/mplex/mjpeg_logging.cc:
24842         * gst-libs/ext/mplex/mjpeg_logging.h:
24843         * gst-libs/ext/mplex/mjpeg_types.h:
24844         * gst-libs/ext/mplex/mpastrm_in.cc:
24845         * gst-libs/ext/mplex/mpegconsts.cc:
24846         * gst-libs/ext/mplex/mpegconsts.h:
24847         * gst-libs/ext/mplex/mplexconsts.hh:
24848         * gst-libs/ext/mplex/multplex.cc:
24849         * gst-libs/ext/mplex/outputstream.hh:
24850         * gst-libs/ext/mplex/padstrm.cc:
24851         * gst-libs/ext/mplex/padstrm.hh:
24852         * gst-libs/ext/mplex/stillsstream.cc:
24853         * gst-libs/ext/mplex/stillsstream.hh:
24854         * gst-libs/ext/mplex/systems.cc:
24855         * gst-libs/ext/mplex/systems.hh:
24856         * gst-libs/ext/mplex/vector.cc:
24857         * gst-libs/ext/mplex/vector.hh:
24858         * gst-libs/ext/mplex/videostrm.hh:
24859         * gst-libs/ext/mplex/videostrm_in.cc:
24860         * gst-libs/ext/mplex/videostrm_out.cc:
24861         * gst-libs/ext/mplex/yuv4mpeg.cc:
24862         * gst-libs/ext/mplex/yuv4mpeg.h:
24863         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
24864         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
24865           We don't fork mjpegtools' mplex in our CVS anymore.
24866         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
24867         (gst_avi_demux_add_stream):
24868         * gst/avi/gstavidemux.h:
24869           Add getcaps() function for proper caps nego. This makes some
24870           parts of AVI playback/reading work.
24871         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24872           Resize window on new capsnego. This is probably wrong, but
24873           I'm still committing it because with current capsnego, the
24874           first successfull capsnego is auto-fixated, therefore rounded
24875           down to the lowest values in the caps. this results in a 16x16
24876           XWindow that is not reized when real capsnego finishes.
24877           Dave, I see more cases of this, do you know a proper solution?
24878         * tools/gst-launch-ext.in:
24879           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
24880
24881 2003-12-31  David Schleef  <ds@schleef.org>
24882
24883         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
24884         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
24885           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
24886
24887 2003-12-30  David Schleef  <ds@schleef.org>
24888
24889         * ext/ffmpeg/gstffmpegcolorspace.c:
24890         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
24891         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
24892         (gst_ffmpegcsp_chain): Negotiation fixes
24893         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
24894         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24895         (gst_audio_convert_link), (gst_audio_convert_channels):
24896         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
24897         (gst_audioscale_link), (gst_audioscale_get_buffer),
24898         (gst_audioscale_chain): Negotiation fixes
24899         * gst/audioscale/gstaudioscale.h:
24900         * gst/videofilter/gstvideofilter.c:
24901         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
24902         (gst_videofilter_link), (gst_videofilter_init),
24903         (gst_videofilter_set_output_size), (gst_videofilter_setup),
24904         (gst_videofilter_find_format_by_structure):
24905         * gst/videofilter/gstvideofilter.h: Negotiation fixes
24906         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
24907         (gst_videoscale_link):
24908         * gst/videoscale/videoscale.c: (videoscale_get_structure),
24909         (videoscale_find_by_structure), (gst_videoscale_setup):
24910         * gst/videoscale/videoscale.h: Negotiation fixes
24911         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
24912         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
24913         function, restrict resizing to a multiple of 4 (hack until
24914         everyone supports odd sizes correctly).
24915
24916 2003-12-29  Colin Walters  <walters@verbum.org>
24917
24918         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
24919         signed.
24920
24921 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
24922
24923         * ext/sndfile/gstsf.c: (gst_sf_loop):
24924           Fix warning about discarding const qualifier
24925
24926 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
24927
24928         * gst/cutter/gstcutter.c:
24929         * gst/videoscale/gstvideoscale.c:
24930         * gst/volenv/gstvolenv.c:
24931         * gst-libs/gst/audio/audio.c:
24932         * gst-libs/gst/video/video.c:
24933           Fix warnings
24934
24935 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24936
24937         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24938           Don't send ALSA debugging to stderr.
24939         * ext/alsa/gstalsa.h:
24940           Use GST_WARNING instead of g_warning when ALSA functions fail.
24941
24942 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24943
24944         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
24945           Free XVAdapterInfo correctly.
24946
24947 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24948
24949         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
24950         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
24951           Make id3tag use correct caps nego.
24952
24953 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
24954
24955         * ext/ivorbis/vorbis.c:
24956         * ext/ivorbis/vorbisenc.h:
24957         * ext/ivorbis/vorbisfile.c:
24958           Modify so that it uses the new caps things
24959
24960 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24961
24962         * testsuite/spider/spider1.c: (main):
24963         * testsuite/spider/spider2.c: (main):
24964         * testsuite/spider/spider3.c: (main):
24965           Make tests compile again. They probably don't work.
24966
24967 2003-12-24  Colin Walters  <walters@verbum.org>
24968
24969         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
24970         we can't fixate the caps anymore.
24971
24972 2003-12-23  David Schleef  <ds@schleef.org>
24973
24974         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
24975         * sys/oss/gstosssink.c: (gst_osssink_init),
24976         (gst_osssink_sink_fixate): Add fixate function.
24977
24978 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24979
24980         * ext/ffmpeg/gstffmpegcodecmap.c:
24981         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
24982         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
24983         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
24984         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
24985         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
24986         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24987         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
24988           fix typo in RGB masks, and move back to "old" colorspace
24989           capsnego code until whoever wrote this new crap has actually
24990           tested it so that it works.
24991           And yes, this works, keep it that way please.
24992
24993 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24994
24995         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
24996         (gst_divxdec_init), (gst_divxdec_negotiate):
24997         * ext/divx/gstdivxdec.h:
24998         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
24999         (gst_divxenc_init):
25000         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
25001         (gst_faac_sinkconnect), (gst_faac_srcconnect):
25002         * ext/mpeg2enc/gstmpeg2enc.cc:
25003         * ext/mpeg2enc/gstmpeg2encoder.cc:
25004         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
25005         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
25006         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
25007         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
25008         (dxr3spusink_init):
25009         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
25010         (dxr3videosink_init):
25011           Fix caps breakage after Dave's caps branch merge.
25012
25013 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25014
25015         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
25016           Fix for 24bpp display.
25017
25018 2003-12-23  Colin Walters  <walters@verbum.org>
25019
25020         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
25021         a GnomeVFSHandle directly.
25022
25023 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25024
25025         * gst/volume/Makefile.am:
25026         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
25027         (volume_base_init), (volume_init):
25028           Reenable volume element and fix to work with new caps stuff.
25029           Rhythmbox needs this.
25030
25031 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25032
25033         * gst/qtdemux/qtdemux.c: (plugin_init):
25034           qtdemux requires bytestream
25035
25036 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25037
25038         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
25039           Fix remaining caps handling errors due to CAPS merge.
25040
25041 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25042
25043         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
25044         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
25045         (gst_faad_srcconnect):
25046           Port to new caps system.
25047
25048 2003-12-21  Julien MOUTTE  <julien@moutte.net>
25049
25050         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
25051         (got_video_size), (main): using g_print instead of g_message.
25052         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
25053         signal which was not emitted because of "switch" element added to the
25054         bin but not connected. (Removing from the bin temporarily)
25055
25056 2003-12-21  Julien MOUTTE  <julien@moutte.net>
25057
25058         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
25059         find X development files. I don't understand the previous tests and
25060         they fail on my debian/ppc unstable. This one works.
25061         * examples/gstplay/player.c: (main): Set the pipeline to READY before
25062         exiting.
25063         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
25064         (gst_play_set_video_sink), (gst_play_set_audio_sink),
25065         (gst_play_set_visualization): Add some safety checks in set_ methods
25066         and state_change. This was throwing some ugly CRITICAL messages when
25067         pipeline was getting disposed and casts were failing.
25068
25069 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25070
25071         * configure.ac:
25072           Improve mpeg2enc detection. This is for distributions that do
25073           ship mjpegtools, but without mpeg2enc. Also does object check
25074           for might there ever be ABI incompatibility.
25075         * ext/mpeg2enc/gstmpeg2enc.cc:
25076           Add Andrew as second maintainer (he's helping me), and also add
25077           an error if no caps was set. This happens if I pull before capsnego
25078           and that's something I should solve sometime else.
25079         * gst/matroska/matroska-demux.c:
25080         (gst_matroska_demux_parse_blockgroup):
25081           Fix time parsing.
25082         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
25083         (gst_matroska_mux_track_header):
25084           Add caps to templates.
25085         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
25086           Add mpegversion=1 to prevent confusion with MPEG/AAC.
25087         * gst/mpegstream/gstmpegdemux.c:
25088           Remove layer since it causes warnings about unfixed caps.
25089         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
25090           Fix obvious typo (we error out if caps were set, we should of
25091           course error out if *no* caps were set).
25092         * sys/oss/gstosselement.c: (gst_osselement_convert):
25093           Fix format conversion, we confused bits/bytes.
25094         * sys/oss/gstosselement.h:
25095           Improve documentation for 'bps'.
25096         * sys/v4l/TODO:
25097           Remove stuff about plugins that need removing - this was done
25098           ages ago.
25099         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
25100         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
25101         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
25102         (gst_v4lsrc_src_query):
25103         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
25104         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
25105           Add get_query_types(), get_formats() and query() functions.
25106
25107 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
25108
25109         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
25110         * moved CVS to freedesktop.org